fix: dont recompute item wise taxes from front end
This commit is contained in:
parent
9c1d828b1b
commit
393749a611
@ -137,7 +137,9 @@ erpnext.taxes_and_totals = class TaxesAndTotals extends erpnext.payments {
|
|||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
$.each(this.frm.doc["taxes"] || [], function(i, tax) {
|
$.each(this.frm.doc["taxes"] || [], function(i, tax) {
|
||||||
tax.item_wise_tax_detail = {};
|
if (!tax.dont_recompute_tax) {
|
||||||
|
tax.item_wise_tax_detail = {};
|
||||||
|
}
|
||||||
var tax_fields = ["total", "tax_amount_after_discount_amount",
|
var tax_fields = ["total", "tax_amount_after_discount_amount",
|
||||||
"tax_amount_for_current_item", "grand_total_for_current_item",
|
"tax_amount_for_current_item", "grand_total_for_current_item",
|
||||||
"tax_fraction_for_current_item", "grand_total_fraction_for_current_item"];
|
"tax_fraction_for_current_item", "grand_total_fraction_for_current_item"];
|
||||||
@ -421,7 +423,9 @@ erpnext.taxes_and_totals = class TaxesAndTotals extends erpnext.payments {
|
|||||||
current_tax_amount = tax_rate * item.qty;
|
current_tax_amount = tax_rate * item.qty;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.set_item_wise_tax(item, tax, tax_rate, current_tax_amount);
|
if (!tax.dont_recompute_tax) {
|
||||||
|
this.set_item_wise_tax(item, tax, tax_rate, current_tax_amount);
|
||||||
|
}
|
||||||
|
|
||||||
return current_tax_amount;
|
return current_tax_amount;
|
||||||
}
|
}
|
||||||
@ -589,7 +593,9 @@ erpnext.taxes_and_totals = class TaxesAndTotals extends erpnext.payments {
|
|||||||
delete tax[fieldname];
|
delete tax[fieldname];
|
||||||
});
|
});
|
||||||
|
|
||||||
tax.item_wise_tax_detail = JSON.stringify(tax.item_wise_tax_detail);
|
if (!tax.dont_recompute_tax) {
|
||||||
|
tax.item_wise_tax_detail = JSON.stringify(tax.item_wise_tax_detail);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user