diff --git a/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py b/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py index c7ba791dfea..34be8fc6a7f 100644 --- a/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py +++ b/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py @@ -182,7 +182,7 @@ def get_items(filters): pbi.uom, pbi.qty, ) - .where(pb.new_item_code.isin(parent_items) & (IfNull(pb.disabled, 0) == 0)) + .where(pb.new_item_code.isin(parent_items)) ).run(as_dict=1) child_items = set()