[fix] In get_bom_items_as_dict don't filter by is_pro_applicable for multi-level bom
diff --git a/erpnext/manufacturing/doctype/bom/bom.py b/erpnext/manufacturing/doctype/bom/bom.py
index 9aab96d..9a3d318 100644
--- a/erpnext/manufacturing/doctype/bom/bom.py
+++ b/erpnext/manufacturing/doctype/bom/bom.py
@@ -391,8 +391,7 @@
if fetch_exploded:
query = query.format(table="BOM Explosion Item",
- conditions="""and item.is_pro_applicable = 0
- and item.is_sub_contracted_item = 0 """)
+ conditions="""and item.is_sub_contracted_item = 0""")
items = frappe.db.sql(query, { "qty": qty, "bom": bom }, as_dict=True)
else:
query = query.format(table="BOM Item", conditions="")