我試圖做的條件: A或(B和C)Odoo多重條件
我的代碼:
<field name="x" attrs="{'readonly': ['|',('state','!=', 'ok'), (('state', '=', 'fine'), ('participate_process', '=', False))]}" >
我從網上JS錯誤:
Error: unknown field state,=,to_approve_second domain ["|",["state","!=","ok"],[["state","=","fine"],["participate_process","=",false]]]
另外我試了另一種方式:
<field name="x" attrs="{'readonly': ['|', '&', ('state','!=', 'ok'), ('state', '=', 'fine'), ('participate_process', '=', False)]}" >
但它不起作用..
這些多域名有什麼問題?
你好fueggit,檢查我的答案,如果幫助完整,所以接受答案。 –
你好,我的解決方案是一樣的,是的? ('state','=','fine'),'|',('state' ,'!=','ok')]}「>只是語法有點不同。 – fueggit
也是如此,但使用波蘭語表示法......