From 56e58ef3018e3e6674e25050cd9de2a4e20fb24d Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Mon, 19 Jan 2026 15:13:08 +0530 Subject: [PATCH] fix: qty with serial no count --- erpnext/public/js/controllers/transaction.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index 937bb8b8513..54474305643 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -945,11 +945,10 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe // Replace all occurences of comma with line feed item.serial_no = item.serial_no.replace(/,/g, "\n"); item.conversion_factor = item.conversion_factor || 1; - refresh_field("serial_no", item.name, item.parentfield); if (!doc.is_return) { setTimeout(() => { me.update_qty(cdt, cdn); - }, 3000); + }, 300); } } }