Round profit values
This commit is contained in:
parent
acaaaf554e
commit
11f596708d
|
@ -21,7 +21,8 @@ class Profit(LoginRequiredMixin, OTPRequiredMixin, ObjectRead):
|
|||
user=self.request.user, nordigen=NordigenClient, agora=AgoraClient
|
||||
)
|
||||
)
|
||||
print("RES", res)
|
||||
for key in res.keys():
|
||||
res[key] = round(res[key], 2)
|
||||
results = {
|
||||
"Bank balance total": res["total_sinks_usd"],
|
||||
"Platform balance total": res["total_usd_agora"],
|
||||
|
@ -38,4 +39,5 @@ class Profit(LoginRequiredMixin, OTPRequiredMixin, ObjectRead):
|
|||
],
|
||||
"Withdrawal trigger": res["withdraw_threshold"],
|
||||
}
|
||||
|
||||
return results
|
||||
|
|
Loading…
Reference in New Issue