This question has been flagged
3 Replies
4057 Views

Hi Folks ,

How Can I  add new filter in Group by Search in CRM Customer List view

I want to Add Sales Team in filer as gruop by.

 

Thanks in Advance

Amol

Avatar
Discard
Best Answer

Inherit the search view you are supposed to change and add this

<filter string="Salels Team" context="{'group_by': 'section_id'}"/> 

Avatar
Discard
Best Answer

inherit the search view and add this

<filter string="Salels Team" context="{'group_by': 'section_id'}"/>

Avatar
Discard
Best Answer

Hello Amol,

You should inherit the 'Customer Search' view in your custom module and add the 'Sales Team' field after 'Country' by using

<filter string="Salels Team" context="{'group_by': 'section_id'}"/> 

And you can have the group by filter as you required.

Thanks.

Avatar
Discard