Hi, Is that possible to have two different group of conditions under same domain. Like below, ['|',['&',('land_type','=','government_owned'),('sq_feet','<','800')],['|',('land_type','=','private'),('land_type','=','form_land')]] Here i have (ex. in python logic), (land_type=='government_owned' and sq_feet
I am watching video and really helpfull
thanks brother
Hi,
Is that possible to have two different group of conditions under same domain. Like below,
['|',['&',('land_type','=','government_owned'),('sq_feet','<','800')],['|',('land_type','=','private'),('land_type','=','form_land')]]
Here i have (ex. in python logic),
(land_type=='government_owned' and sq_feet
Yes we can write any domain using and add or operators
@@OdooMates But if I apply this, then I'm getting
"TypeError: unhashable type: 'list'"
May be the written syntax is wrong, start from small domain and then expand and see at which point the error appears
@@OdooMates If i go with, (land_type == 'private or land_type == 'form_land')
or
(land_type=='government_owned' and sq_feet
May be you are combining the domains in wrong way, please show and we will see