fix: Incorrect discount amount on amended document

This commit is contained in:
Deepesh Garg 2021-07-01 21:17:17 +05:30
parent 621927d9f9
commit 07d9f3f74b

View File

@ -67,6 +67,8 @@ erpnext.taxes_and_totals = erpnext.payments.extend({
calculate_discount_amount: function(){
if (frappe.meta.get_docfield(this.frm.doc.doctype, "discount_amount")) {
this.calculate_item_values();
this.calculate_net_total();
this.set_discount_amount();
this.apply_discount_amount();
}