1
0

Update loan_charge.py

This commit is contained in:
VivianDee
2025-04-17 16:51:01 +01:00
parent 0587efb95c
commit f2f592d507
+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,