How is it possible to make a condition with :
A & ( (B & C) | (D & E) | (F & G) )
??
( and if you can explain how it works .. because in the documentation, it's very light )
Thank you very much
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
How is it possible to make a condition with :
A & ( (B & C) | (D & E) | (F & G) )
??
( and if you can explain how it works .. because in the documentation, it's very light )
Thank you very much
Hello Julien,
your domain should be this :
&, A, '|', '|', &, B, C, &, D, E, &, F, G
To get it, you need to follow this step by step:
Considering :
Q = (B & C) | (D & E)
A & ( (B & C) | (D & E) | (F & G) ) = A & ( Q | (F & G) )
SO it would be :
&, A, Q | (F & G)
&, A, |, Q, (F & G)
&, A, |, Q, &, F, G (M)
Now for Q it will be :
Q = (B & C) | (D & E)
|, (B &C), (D & E)
|, &, B, C, &, D, E
Take that and replace it in (M), you will get :
&, A, |, |, &, B, C, &, D, E, &, F, G
Upvote if this helps!
Thank you
Create an account today to enjoy exclusive features and engage with our awesome community!
Tilmeld dig| Related Posts | Besvarelser | Visninger | Aktivitet | |
|---|---|---|---|---|
|
1
maj 24
|
3367 | |||
|
1
nov. 22
|
5980 | |||
|
2
jul. 22
|
4473 | |||
|
2
jul. 17
|
7791 | |||
|
5
jul. 15
|
6621 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.