如何过滤 openerp 中的 many2one 字段。
_columns = {
'hello': fields.selection([('1','one'),('2','two')],'hello'),
'product_id': fields.many2one('product.product',
'Product',
domain=[('type','=',hello)])'
...
}
如果假设 product.product 具有名为 type 的字段,该字段也是 selection 并且其值与 hello 相同,它在 xml 或 python 中是否有效?