chore: Remove unnecessary print statements

This commit is contained in:
Suraj Shetty
2021-05-06 18:37:45 +05:30
parent bdf8c528f1
commit c702408f99
4 changed files with 2 additions and 8 deletions

View File

@@ -1006,7 +1006,6 @@ class AccountsController(TransactionBase):
else:
grand_total -= self.get("total_advance")
base_grand_total = flt(grand_total * self.get("conversion_rate"), self.precision("base_grand_total"))
print(grand_total, base_grand_total)
if total != flt(grand_total, self.precision("grand_total")) or \
base_total != flt(base_grand_total, self.precision("base_grand_total")):
frappe.throw(_("Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"))