Merge pull request #57866 from krishna-254/fix/product-bundle-item-search

fix: optimize product bundle item search
This commit is contained in:
Mihir Kandoi
2026-08-07 16:02:51 +05:30
committed by GitHub

View File

@@ -9,6 +9,11 @@ frappe.ui.form.on("Product Bundle", {
query: "erpnext.selling.doctype.product_bundle.product_bundle.get_new_item_code",
};
});
frm.set_query("item_code", "items", () => {
return {
query: "erpnext.controllers.queries.item_query",
};
});
// A submitted bundle is immutable. To change it, create a new version
// (a fresh draft copied from this one) and submit that instead.