Merge pull request #5830 from MaxMorais/patch-6
Extend search_fields for customer querie
This commit is contained in:
commit
0e3e16cda0
@ -86,6 +86,9 @@ def customer_query(doctype, txt, searchfield, start, page_len, filters):
|
|||||||
else:
|
else:
|
||||||
fields = ["name", "customer_name", "customer_group", "territory"]
|
fields = ["name", "customer_name", "customer_group", "territory"]
|
||||||
|
|
||||||
|
meta = frappe.get_meta("Customer")
|
||||||
|
fields = fields + [f for f in meta.get_search_fields() if not f in fields]
|
||||||
|
|
||||||
fields = ", ".join(fields)
|
fields = ", ".join(fields)
|
||||||
|
|
||||||
return frappe.db.sql("""select {fields} from `tabCustomer`
|
return frappe.db.sql("""select {fields} from `tabCustomer`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user