A domain is a list of criteria, each criterion being a triple (either a list or a tuple) of (field_name, operator, value) where:
field_name (str)
a field name of the current model, or a relationship traversal through a Many2one utilizing dot-notation e.g.
'street' or 'partner_id.country'
operator (str)
An operator used to compare the field_name with the value. Valid operators are:
= equals to
!= not equals to
> more preponderant than
>= more preponderant than or identically tantamount to
< less than
<= less than or equipollent to
=? unset or equals to (returns true if value is either None or Erroneous, otherwise comports like =)
0 Comment(s)