commit | 8c3713b649c7777e35be74b7afe437cec682359e | [log] [tgz] |
---|---|---|
author | s-aga-r <sagarsharma.s312@gmail.com> | Tue Nov 28 11:12:55 2023 +0530 |
committer | s-aga-r <sagarsharma.s312@gmail.com> | Tue Nov 28 11:12:55 2023 +0530 |
tree | 04515b2b870d35b1c0ba43bd3f97d74b059096f3 | |
parent | 729fc738af7d78a6f75cb0f794f4c4451d74cd05 [diff] |
fix: don't select all fields
diff --git a/erpnext/selling/doctype/product_bundle/product_bundle.py b/erpnext/selling/doctype/product_bundle/product_bundle.py index c934f0d..3d4ffeb 100644 --- a/erpnext/selling/doctype/product_bundle/product_bundle.py +++ b/erpnext/selling/doctype/product_bundle/product_bundle.py
@@ -80,7 +80,7 @@ item = frappe.qb.DocType("Item") query = ( frappe.qb.from_(item) - .select("*") + .select(item.item_code, item.item_name) .where( (item.is_stock_item == 0) & (item.is_fixed_asset == 0) & (item[searchfield].like(f"%{txt}%")) )