odoo中的domain的所有操作符
Posted qianxunman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了odoo中的domain的所有操作符相关的知识,希望对你有一定的参考价值。
源码js中有一个映射关系:
C:Usersdev01gitprojectodoo12addonswebstaticsrcjswidgetsdomain_selector.js
var operator_mapping = { "=": "=", "!=": _lt("is not ="), ">": ">", "<": "<", ">=": ">=", "<=": "<=", "ilike": _lt("contains"), "not ilike": _lt("does not contain"), "in": _lt("in"), "not in": _lt("not in"), "child_of": _lt("child of"), "parent_of": _lt("parent of"), "like": "like", "not like": "not like", "=like": "=like", "=ilike": "=ilike", // custom "set": _lt("is set"), "not set": _lt("is not set"), };
以上是关于odoo中的domain的所有操作符的主要内容,如果未能解决你的问题,请参考以下文章
odoo many2one或many2many字段动态domain的两种方法
odoo12 通过一个字段控制另一个Many2one字段的domain