April 2016
Beginner to intermediate
400 pages
9h 16m
English
When opening your list view, you'll notice the search field to the upper right. If you type something there, you get suggestions about what to search for and there is also a set of predefined filters to choose from. This recipe will walk you through how to define those suggestions and options.
<record id="search_all_customers" model="ir.ui.view">
<field name="model">res.partner</field>
<field name="arch" type="xml">
<search>
<field name="name" />
<field name="category_id"
filter_domain="[('category_id', 'child_of', self)]" />
<field name="bank_ids" widget="many2one" />
<filter name="suppliers"
string="Suppliers"
domain="[('supplier', '=', True)]" />
</search>
</field>
</record>Read now
Unlock full access