mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 19:59:12 +00:00
fix(ux): added exception of template item in filters (#27560)
(cherry picked from commit 5c249decbb)
# Conflicts:
# erpnext/manufacturing/doctype/bom/bom.py
This commit is contained in:
@@ -1346,6 +1346,7 @@ def item_query(doctype, txt, searchfield, start, page_len, filters):
|
|||||||
if not has_variants:
|
if not has_variants:
|
||||||
query_filters["has_variants"] = 0
|
query_filters["has_variants"] = 0
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
if filters:
|
if filters:
|
||||||
for fieldname, value in filters.items():
|
for fieldname, value in filters.items():
|
||||||
query_filters[fieldname] = value
|
query_filters[fieldname] = value
|
||||||
@@ -1360,6 +1361,11 @@ def item_query(doctype, txt, searchfield, start, page_len, filters):
|
|||||||
limit_page_length=page_len,
|
limit_page_length=page_len,
|
||||||
as_list=1,
|
as_list=1,
|
||||||
)
|
)
|
||||||
|
=======
|
||||||
|
if filters and filters.get("is_stock_item"):
|
||||||
|
or_cond_filters["is_stock_item"] = 1
|
||||||
|
or_cond_filters["has_variants"] = 1
|
||||||
|
>>>>>>> 5c249decbb (fix(ux): added exception of template item in filters (#27560))
|
||||||
|
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
|
|||||||
Reference in New Issue
Block a user