hi i am adding a domain on a field and it works fine
have a look at my code
domain="[('fee_type','=','academic')]"
what i want is that i have to add on the name "additional" too? that is "fee_type=academic and additional"
what is the syntax
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
hi i am adding a domain on a field and it works fine
have a look at my code
domain="[('fee_type','=','academic')]"
what i want is that i have to add on the name "additional" too? that is "fee_type=academic and additional"
what is the syntax
domain="[('fee_type','=','academic'), ('fee_type','=','additional')]"
or
domain="[('fee_type', 'in', ['academic', 'additional'])]"
thanks to both of you,,its working
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
Hi, try this domain="[('fee_type', 'in', ['academic', 'additional'])]"