fix: negative stock error while making stock reconciliation (#40016)

fix: negative stock error while making stock reco
diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
index 9ad73db..06fd5f9 100644
--- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
+++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py
@@ -909,8 +909,9 @@
 		if allow_negative_stock:
 			return True
 
-		if all(
-			(not d.batch_no or (d.batch_no and flt(d.qty) == flt(d.current_qty))) for d in self.items
+		if any(
+			((d.serial_and_batch_bundle or d.batch_no) and flt(d.qty) == flt(d.current_qty))
+			for d in self.items
 		):
 			allow_negative_stock = True