We've already seen the first example of a domain in the first action, which was [('customer', '=', True)]. Often, you need to display a subset of all available records from an action, or to allow only a subset of possible records to be the target of a many2one relation. The way to describe these filters in Odoo is by using domains. This recipe illustrates how to use a domain to display a selection of partners.
Defining filters on record lists – Domain
How to do it...
To display a subset of partners from your action, you need to perform the following steps:
- Add an action for non-French speaking customers:
<record id="action_my_customers" model="ir.actions.act_window"...