xml 中 attrs 属性
attrs属性如隐藏 attrs="{'invisible': [('state', '!=', 'draft')]}" 或者只读 attrs="{'readonly': [('state','=', 'done')]}" ,这两个例子都只是单个条件若出现多个条件的情况:
attrs="{'invisible': ['&',('state', 'in', ('draft','submit','quot approve' ,'approve2nd')), ('order_type','not in',('C1'))]}"
添加了‘&’时 模块升级就能 判断 state 且判断 order_type PS:若不加 '&’ 系统默认也会认为 且 判断
同理 换成
attrs="{'invisible': ['|',('state', 'in', ('draft','submit','quot approve' ,'approve2nd')), ('order_type','not in',('C1'))]}"
此时是判断是 state 或 order_type PS:或方法不能省略‘|’