diff --git a/crm/api/doc.py b/crm/api/doc.py index 4001fa7e..844bdd98 100644 --- a/crm/api/doc.py +++ b/crm/api/doc.py @@ -189,8 +189,8 @@ def get_quick_filters(doctype: str): quick_filters.append( { "label": _(field.label), - "name": field.fieldname, - "type": field.fieldtype, + "fieldname": field.fieldname, + "fieldtype": field.fieldtype, "options": options, } ) diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.json b/crm/fcrm/doctype/crm_call_log/crm_call_log.json index c13c6cc7..96416bf9 100644 --- a/crm/fcrm/doctype/crm_call_log/crm_call_log.json +++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.json @@ -142,6 +142,8 @@ { "fieldname": "telephony_medium", "fieldtype": "Select", + "in_list_view": 1, + "in_standard_filter": 1, "label": "Telephony Medium", "options": "\nManual\nTwilio\nExotel" }, @@ -152,7 +154,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2025-01-11 16:27:56.992950", + "modified": "2025-01-17 21:46:01.558377", "modified_by": "Administrator", "module": "FCRM", "name": "CRM Call Log", diff --git a/frontend/src/components/QuickFilterField.vue b/frontend/src/components/QuickFilterField.vue index a02f67db..84631b4b 100644 --- a/frontend/src/components/QuickFilterField.vue +++ b/frontend/src/components/QuickFilterField.vue @@ -1,13 +1,13 @@