From 2b1fdba7fd4d06bb0e17784cdd763953956cc70d Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 16 Jul 2025 12:09:58 +0530 Subject: [PATCH] fix(transaction): recalculate tax and total when quantity changes (backport #48565) (#48625) fix(transaction): recalculate tax and total when quantity changes (cherry picked from commit ac7b6c6a3d3d92b06c1d3b6f1afb1ac26fbc96b6) Co-authored-by: Bhavan23 --- erpnext/public/js/controllers/transaction.js | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index c7260ccc722..03cb670c4df 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -1407,6 +1407,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe ]); } else { this.conversion_factor(doc, cdt, cdn, true) + this.calculate_taxes_and_totals() } }