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 392b02e6cdc..af2915692ce 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 @@ -514,7 +514,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},