Hi everyone,
I am trying to use multiple condition for my domain but I got this error:
ValueError: Invalid leaf ('&', ('A', '=', True), ('B', '=', False)
I have no idea why. Everything looks well. I would like to have (A & !B) OR (C & !D )
This is my code (OpenERP 7):
<field name="domain">['|',('&',('A','=', True),('B','=', False)),('&',('C','!=', True),('D','=', False))]</field>
What is wrong with my code? Some idea?
Thank you a lot :-),
Selverine