From ac7b6c6a3d3d92b06c1d3b6f1afb1ac26fbc96b6 Mon Sep 17 00:00:00 2001 From: Bhavan23 Date: Mon, 14 Jul 2025 13:23:56 +0530 Subject: [PATCH] fix(transaction): recalculate tax and total when quantity changes --- 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 d0a43ca9a97..cf7a89c38f3 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -1437,6 +1437,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe ]); } else { this.conversion_factor(doc, cdt, cdn, true) + this.calculate_taxes_and_totals() } }