commit | a9ea49c9767c50bd5c69d6fbc8a04a47a3bc12bc | [log] [tgz] |
---|---|---|
author | deepeshgarg007 <deepeshgarg6@gmail.com> | Thu Jul 04 15:56:34 2019 +0530 |
committer | deepeshgarg007 <deepeshgarg6@gmail.com> | Thu Jul 04 15:56:34 2019 +0530 |
tree | 2b12d15d8a508ff3b81eba351cd463b01cb22e79 | |
parent | 29734dae181279c8d478d7c58dab291e81c69abf [diff] |
fix: Additonal discount not get set in sales transactions
diff --git a/erpnext/selling/sales_common.js b/erpnext/selling/sales_common.js index 9bae58b..ad3f27c 100644 --- a/erpnext/selling/sales_common.js +++ b/erpnext/selling/sales_common.js
@@ -145,6 +145,11 @@ }, discount_amount: function(doc, cdt, cdn) { + + if(doc.name === cdn) { + return; + } + var item = frappe.get_doc(cdt, cdn); item.discount_percentage = 0.0; this.apply_discount_on_item(doc, cdt, cdn, 'discount_amount');