Sometimes I found ('','','') expression for domain or ['','',''].
I want to know : Where do I use () or [] for write domain expression?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Sometimes I found ('','','') expression for domain or ['','',''].
I want to know : Where do I use () or [] for write domain expression?
The two datatype are equal in this case. If you create a filter you can use tuple or list. The standard is to set the filters as list of tuple. This is an example:
filter = [('name', 'ilike', 'OpenERP'), ('type', '=', 'erp')]
I can use list or tuple in .xml file AND in UI form ?
You can use tuple and list in every point of the software. This type of data are part of python.
thanks for your answer
Hello Denis,
Domain is a python code for optional restriction in the form of arguments for search.
Syntax:
domain = [['field_name', 'operator', 'value'], ...]
For example,
domain = [('state','<>','draft'), ('country_id', '=', country_id)]
Thank you.
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-se| Publicações relacionadas | Respostas | Visualizações | Atividade | |
|---|---|---|---|---|
|
naked domain set up
Resolvido
|
3
jul. 25
|
6431 | ||
|
0
mai. 25
|
1752 | |||
|
2
mar. 24
|
3042 | |||
|
0
jan. 23
|
2554 | |||
|
1
nov. 22
|
3952 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.