fix: precision rounding issue during pos return validation (#19034)

This commit is contained in:
Sun Howwrongbum
2019-09-13 11:08:02 +05:30
committed by Nabin Hait
parent 2b0c845cb8
commit 7cabcdd9a2

View File

@@ -207,7 +207,7 @@ class SalesInvoice(SellingController):
for payment in self.payments:
total_amount_in_payments += payment.amount
invoice_total = self.rounded_total or self.grand_total
if total_amount_in_payments < invoice_total:
if flt(total_amount_in_payments, self.precision("grand_total")) < invoice_total:
frappe.throw(_("Total payments amount can't be greater than {}".format(-invoice_total)))
def validate_pos_paid_amount(self):