Domain inversion does not work on sao when using a domain with multiple boolean conditions
In sao client in file M2O, domain dont work.
campo1 = fields.Many2One('model.model',
'Problema',
domain=[
('is_bool1', '=', True),
('is_bool2', '=', True),
]
)
when is 1 domain work.
In tryton work well.
In 4.6 and 4.8
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
- Pablo Padulles added sao + 1 deleted label
added sao + 1 deleted label
- Owner
I do not understand.
- Cédric Krier added 1 deleted label and removed 1 deleted label
added 1 deleted label and removed 1 deleted label
- Author
ok, i will do what I can....
class Model1(ModelSQL, ModelView):
'Model1'
__name__ = 'model.model'
name = fields.Char('Char')
bool1 = fields.Boolean(
'bool1')
bool2 = fields.Boolean(
'bool2')
class Model2(ModelSQL, ModelView):
'Model2'
__name__ = 'model.model2'
m2o = fields.Many2One('model.model',
'Problema',
domain=[
('bool1', '=', True),
('bool2', '=', True)
],
)
This code, dont work when put NEW RECORD in M2O... in tree view work. - Owner
I still do not understand. What is not working? What do you mean in a tree view?
- Author
a tree view work , the problem is when creating a new record with a m2o, and this m2o have domain BOOLEAN.
- Owner
I still do not understand. Please explain what is not working.
What is the expected behavior, what is the current behavior etc. - Author
In Sao -> https://youtu.be/PfRTykYBdZw
In tryton -> https://youtu.be/jW1Mj0Tgihc
The behavior is different with the domain - Developer
So after viweing the videos I will resume it as Domain inversion does not work on sao when using a domain which includes a multiple boolean condition.
- Sergi Almacellas Abellana added 1 deleted label and removed 1 deleted label
added 1 deleted label and removed 1 deleted label
- Owner
Indeed it is the #4073 (closed) which was not implemented in sao.
Here is review56331002 - Cédric Krier assigned to @ced
assigned to @ced
- Cédric Krier added type::behavior + 1 deleted label and removed 1 deleted label
added type::behavior + 1 deleted label and removed 1 deleted label
review56331002 updated at https://codereview.tryton.org/56331002/#ps1
New changeset 532976d3ab2d by Cédric Krier in branch 'default':
Fix domain inversion evaluation of constrained field
https://hg.tryton.org/sao/rev/532976d3ab2d- Roundup Robot added 1 deleted label and removed 1 deleted label
added 1 deleted label and removed 1 deleted label
- Roundup Robot closed
closed
New changeset e30446ac03ca by Cédric Krier in branch 'default':
Fix domain inversion evaluation of constrained field
https://hg.tryton.org/tryton-env/rev/e30446ac03caNew changeset ccb7109abf12 by Cédric Krier in branch '4.8':
Fix domain inversion evaluation of constrained field
https://hg.tryton.org/sao/rev/ccb7109abf12
New changeset d04a3ce20123 by Cédric Krier in branch '4.6':
Fix domain inversion evaluation of constrained field
https://hg.tryton.org/sao/rev/d04a3ce20123
New changeset 4bbcfd1a892c by Cédric Krier in branch '4.4':
Fix domain inversion evaluation of constrained field
https://hg.tryton.org/sao/rev/4bbcfd1a892c
New changeset f97a9d4be7b4 by Cédric Krier in branch '4.2':
Fix domain inversion evaluation of constrained field
https://hg.tryton.org/sao/rev/f97a9d4be7b4
New changeset c0367252b725 by Cédric Krier in branch '4.0':
Fix domain inversion evaluation of constrained field
https://hg.tryton.org/sao/rev/c0367252b725