[fix]: loan charge amount #13

Merged
ameye merged 1 commits from charges_model into master 2025-04-17 16:12:09 +00:00
+1 -1
View File
@@ -56,7 +56,7 @@ class LoanCharge(db.Model):
loan_id = loan_id,
transaction_id = transaction_id,
code = getattr(charge, "code"),
amount = amount,
amount = round(amount, 2),
percent = percent,
description = getattr(charge, "description", ""),
due = due_days,