diff --git a/erpnext/stock/serial_batch_bundle.py b/erpnext/stock/serial_batch_bundle.py index c6089284beef..650c66dd4086 100644 --- a/erpnext/stock/serial_batch_bundle.py +++ b/erpnext/stock/serial_batch_bundle.py @@ -634,7 +634,6 @@ def get_batch_no_ledgers(self) -> list[dict]: parent = frappe.qb.DocType("Serial and Batch Bundle") child = frappe.qb.DocType("Serial and Batch Entry") - sle = frappe.qb.DocType("Stock Ledger Entry") timestamp_condition = "" if self.sle.posting_date: @@ -667,14 +666,6 @@ def get_batch_no_ledgers(self) -> list[dict]: & (parent.docstatus == 1) & (parent.is_cancelled == 0) & (parent.type_of_transaction.isin(["Inward", "Outward"])) - & ( - ExistsCriterion( - frappe.qb.from_(sle) - .select(sle.name) - .where((parent.name == sle.serial_and_batch_bundle) & (sle.is_cancelled == 0)) - ) - | (parent.voucher_type == "POS Invoice") - ) ) .groupby(child.batch_no) )