Skip to Content
Menu
This question has been flagged
5 Replies
2490 Views

Hi everybody!

I would like to add a custom filter and always be displayed in the filter menu, could it be?

Thanks.

Avatar
Discard
Best Answer

You can save a filter, make it default and share it with all users:


The defined filter remains in the filter menu (with the filter definition) and is available under favorites with the saved name:



If you want to do this programmatically, here is an interesting post:

http://107.167.187.43/index.php/topics/view/searching-grouping

Avatar
Discard
Author Best Answer

But there is no option to appear in the filter menu and not on the favorites?

Avatar
Discard

See my amended answer.

Best Answer

If you meant have particular custom filter to the default filter list, you need to modify view

let's assume you want to have a custom filter for "Sale Price" over 10

first, you need to find the field name. activate the developer mode (i.e. help, about, activate developer mode)

edit a product

move the mouse over "Sale Price" and you will find the field name: "list_price"

Also, you would find that the object is "product.template"

then go to the setting, section (top bar) and select Technical->User Interface->Views

there search for views based on their object. i.e. put product.template in the search box and select the second item in the search box which searches over "objects"
then you will find that from "search" views, "product.template.search" would be the main view and others have been inherited from that

open it

and add this:

                    <filter string="over10" name="over_10" domain="[('list_price','>=',10)]"/>

save, go to any product search page (as you have modified the main search view) and you will see "over10" in the list of predefined filters

Avatar
Discard
Best Answer

Add filter in the search view and set context "search_default"+"name of filter" to 1.

Eg:

<filter string="Active" domain="[('account_type','=','normal')]" name="name_of_active"/>

Add context in action

<field name="context">{'search_default_name_of_active':1}</field>


Avatar
Discard