What is

<– is not a new Java operator (even though it may look like it), but there are 2 normal operators: < and — while (var2 <– var1) is the same as while(var2 < (–var1)), which can be translated to plain english as: decrement the var1 variable ( –var is a prefix decrementation, ie. decrement the … Read more

Which are the available domain operators in Openerp / Odoo?

This gives a overview: List of Domain operators: ! (Not), | (Or), & (And) List of Term operators: ‘=’, ‘!=’, ‘<=’, ‘<‘, ‘>’, ‘>=’, ‘=?’, ‘=like’, ‘=ilike’, ‘like’, ‘not like’, ‘ilike’, ‘not ilike’, ‘in’, ‘not in’, ‘child_of’ Usage: Input records: Record 1: Openerp Record 2: openerp Record 3: Opensource Record 4: opensource Record 5: Open … Read more