关于通过many2one字段执行attrs
-
具体是这样的,我们有这样一个需求,就是根据Type of Package的值改变另一个字段,将其变成只读
[attachimg=1]
Type of Package是这样的many2one字段'ul' : fields.many2one('product.ul', 'Type of Package', required=True),
product.py
<field name="ul"/>
product_view.xml
我尝试attrs="{'readonly':[('ul','=','Carton Box')]}"
``` attrs="{'readonly':[('ul','=','1')]}" ```
都不成功
-
id应该是整数,试试 [('ul', '=', 1)]