Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
8631 Vues

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
Ignorer
Meilleure réponse

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
Ignorer