Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

Domain notation using multiple and nested '|' and '&'

形象
odoo
1 备注
形象
丢弃
形象
odoo
-

DO NOT do what "Sehrish" suggested, unless you know you have a good reason to do so. It might be easier than figuring out polish notation, but what you're effectively doing is retrieving all records of the given model from the database and then filtering, which is very likely going to be horrible for performance because unless you have maybe 100 records max, you're going to be pulling a lot of data.

4 答案
0
形象
odoo
最佳答案

My method for simplification:

(1) Start with the outermost operator and move it to the start of the expression.

"(A operator B)"  becomes  "operator (A B)"

(2) Repeat step 1 for each sub expression with an operator to move.

"A operator (B operator C)"  becomes  "operator A (B operator C)"  then "operator A (operator B C)"

(3) Remove all brackets.

"A operator (B operator C)"  becomes  "operator A operator B C"

So for my example:

( A or B ) AND ( C or D or E )

First simplification:

AND ( A or B ) ( C or D or E )

left side

AND ( or A B ) ( C or D or E )

right side outer

AND ( or A B ) ( or C ( D or E ) )

right side inner

AND ( or A B ) ( or C ( or D E ) )

remove brackets

AND or A B or C or D E

In OpenERP domain syntax this would be:

[ '&', '|', (A), (B), '|', (C), '|', (D), (E) ] 
1 备注
形象
丢弃
形象
odoo
-

Rule convert [ '&', '|', (A), (B), '|', (C), '|', (D), (E) ] ---> ( A or B ) AND ( C or D or E ).
with formula complex: ['|', '|','&', (a), (b), '&', (c), '|', '|', (d), (e), '&', '&', (f), (g), (h), (i)]

thanks you!

0
形象
odoo
最佳答案

OpenERP uses Polish Notation for Domain filters.

First you should understand what is polish notation. You can find detailed information in wikipedia about polish notation. http://en.wikipedia.org/wiki/Polish_notation

About your question

( A OR B ) AND ( C OR D OR E )

should converted to the polish notation as

AND OR A B OR OR C D E

And should be solved by the algorithm with following order [] represents operation

AND [OR A B] OR OR C D E         Result of [OR A B] is F
AND F OR [OR C D] E              Result of [OR C D] is G
AND F [OR G E]                   Result of [OR G E] is H
[AND F H]

it starts from LEFT to Right.

"If another operator is found before two operands are found, then the old operator is placed aside until this new operator is resolved. This process iterates until an operator is resolved, which must happen eventually, as there must be one more operand than there are operators in a complete statement." From wikipedia article.

you can also use in operator instead of writing three separate tuples with OR operator like

['&',('field2', 'in', ['A', 'B']),('state', 'in', ['open', 'closed', 'draft'])]

you can check the various use of the domain filters in the actions list from

Settings > Actions > Window Actions (technical features should be on)

6 注释
形象
丢弃
形象
odoo
-

Thanks! I did read that Wikipedia article. When I read 'the result is a syntax lacking parentheses or other brackets that can still be parsed without ambiguity' I figured you were not supposed to use parentheses! Isn't the arity of & and | fixed ?

形象
odoo
-

I was looking at AND(OR A B)(OR C OR D E) when I made that comment. Can that be written as AND OR A B OR C OR D E

形象
odoo
-

Just corrected my answer please read it again,

形象
odoo
-

So does that mean AND OR A B OR C OR D E is also acceptable?

形象
odoo
-

order will be AND [OR A B] OR C OR D E -> AND [OR A B] OR C [OR D E] -> AND [OR A B] [OR C [OR D E]] so yes it gives the same result.

形象
odoo
-

Thanks. Both answers helped me formulate the process I outlined in my answer.

0
形象
odoo
最佳答案

Your first guess is OK. You may find easyer to understan it if you start with the Reversed Polish Notation, which is a little more intuitive for programmers.

en.wikipedia.org/wiki/Reverse_Polish_notation

There is a good example:

The infix expression "5 + ((1 + 2) * 4) − 3" can be written down like this in RPN:

5 1 2 + 4 * + 3 -

The reversed notation is exactly the same, but enables you to resolve without going back and forth.

The infix expression requires you to compute first the inner addition "1 + 2", then multiply by 4, then add 5 and finally add 3, off course you can change some orders and thats one problem.

With reverse polish notation you apply the operators you find to the inmediately preceding operands in the stack, the partial result replace them as a new operand, you follow the same with the next operator, an so on until there's no more operators. In this case: "5 1 2 + 4 * + 3 -" you find + and apply to 1 and 2, replace with the partial result, now your stack is "5 3 4 * + 3 -", find first operator again, *, and apply to two preceding operands, 4 and 3, now you have this stack "5 12 + 3 -", find the next operator, + , and apply to preceding operands, 5 and 12, replace the result in the stack "17 3 -", again, find the firs operator and apply the preceding operands: "14". Done.

In this example you take always two operands because thats that's what apply to the operators, if you find unary operator (a negation for example) you apply to only one preceding operand. You could find an operator which requires 3 or more operands.

In your example, if you reverse and simplify the expression you get this:

E D C | | B A | &

If you resolv this logical expresion with the same algorithm follow in the previous numeric example, you'll find you get exactly what you want.

Thereafter, you only need to acomodate your mind to the non-reversed notation, which is the same, perhaps a little bit less intuitive.

Hope this helps.

Best regards.

4 注释
形象
丢弃
形象
odoo
-

Thanks. All this makes sense apart from the 'reverse and simplify the expression'! That's the part I was a foolproof method for. I get AND OR A B OR C OR D E as I comment above when I do it. If that's right then I think I have a method.

形象
odoo
-

Pablo can we write Domain filters also in reverse polish notation or did you give this since it is easier to understand ? Do we need to reverse the reverse polish notation to use in domain filters?

形象
odoo
-

OpenERP uses direct Polish Notation, not reversed. I use reverse notation to explain the method because I personally find the reverse notation a little bit more intuitive, but that's not necesary true for everybody, and I think Ray found a very clean way to explain the direct Polish Notation.

形象
odoo
-

Thnak you for explanation.

0
形象
odoo
最佳答案

You can also use Python lambda expression to filtered out the record set. 

self.env['your.model'].search([]).filtered(lambda x:
(x.field1.id == some_id.id and x.field2.id == False and x.field3.id == some_id.id and x.name == name.strip().upper()) or
(x.field1.id == some_id.id and x.field2.id == some_id.id and x.field3.id == some_id.id and x.name == name.strip().upper())
)

Here we have OR operator between 2 main chunks of filters (which have AND operators)

形象
丢弃