Merge pull request #55772 from frappe/mergify/bp/version-16-hotfix/pr-55769

fix: show inactive product bundles in item where used (backport #55769)
This commit is contained in:
Mihir Kandoi
2026-06-10 19:48:56 +05:30
committed by GitHub

View File

@@ -294,7 +294,7 @@ def get_product_bundle_component_rows(item):
def get_product_bundle_parent_rows(item): def get_product_bundle_parent_rows(item):
rows = frappe.get_all( rows = frappe.get_all(
"Product Bundle", "Product Bundle",
filters={"new_item_code": item, "disabled": 0, "docstatus": 0}, filters={"new_item_code": item, "docstatus": 0},
fields=["name", "new_item_code", "disabled"], fields=["name", "new_item_code", "disabled"],
order_by="name asc", order_by="name asc",
) )
@@ -463,7 +463,7 @@ def get_product_bundle_map(bundle_names):
row.name: row row.name: row
for row in frappe.get_all( for row in frappe.get_all(
"Product Bundle", "Product Bundle",
filters={"name": ["in", bundle_names], "disabled": 0, "docstatus": 0}, filters={"name": ["in", bundle_names], "docstatus": 0},
fields=["name", "new_item_code", "disabled"], fields=["name", "new_item_code", "disabled"],
) )
} }