From 50cb49cb0076463ee011f5fda745c02028df0e61 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 21 Jan 2020 13:04:21 +0530 Subject: [PATCH] fix: Don't fetch price list rate on change of qty (#20363) --- erpnext/public/js/controllers/transaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index 8cfde8cf97..51ab48a3ab 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -968,7 +968,7 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({ qty: function(doc, cdt, cdn) { let item = frappe.get_doc(cdt, cdn); - this.conversion_factor(doc, cdt, cdn, false); + this.conversion_factor(doc, cdt, cdn, true); this.apply_pricing_rule(item, true); },