fix: Ignore for Purchase Invoices

(cherry picked from commit d3fd2fd2c535733939ed69439301033052f45712)
This commit is contained in:
Deepesh Garg 2022-03-24 13:35:32 +05:30 committed by mergify-bot
parent 8cfa3a9ece
commit b2ac773cca

View File

@ -678,7 +678,7 @@ class calculate_taxes_and_totals(object):
self.doc.precision("base_change_amount"))
def calculate_write_off_amount(self):
if self.doc.write_off_outstanding_amount_automatically:
if self.doc.get('write_off_outstanding_amount_automatically'):
self.doc.write_off_amount = flt(self.doc.outstanding_amount, self.doc.precision("write_off_amount"))
self.doc.base_write_off_amount = flt(self.doc.write_off_amount * self.doc.conversion_rate,
self.doc.precision("base_write_off_amount"))