From a058fe73194e15ce16c147139b26837848188d31 Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Sun, 18 May 2025 22:50:46 +0530 Subject: [PATCH] fix: incorrect qty during reset (#47593) --- .../doctype/serial_and_batch_bundle/serial_and_batch_bundle.py | 1 - 1 file changed, 1 deletion(-) diff --git a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py index eb1658509bd..44f7dd74cd4 100644 --- a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py +++ b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py @@ -517,7 +517,6 @@ class SerialandBatchBundle(Document): "item_code": self.item_code, "warehouse": self.warehouse, "serial_and_batch_bundle": self.name, - "actual_qty": self.total_qty, "company": self.company, "serial_nos": [row.serial_no for row in self.entries if row.serial_no], "batch_nos": {row.batch_no: row for row in self.entries if row.batch_no},