Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
8623 Prikazi

i want to set multiple domain with or condition <field name="domain">[ ('is_pattern','=',True)]</field> or is_die = true

now i m using '|' sign for or condition but it is giving an error

what is the proper syntax

Avatar
Opusti
Best Answer

Openerp uses Polish Notation in domain and search parameters. So your code will be:

<field name="domain">['|', ('is_pattern','=',True), ('is_die','=',True)]</field>
Avatar
Opusti