コンテンツへスキップ
メニュー
この質問にフラグが付けられました

states="done,ignore"

states="draft"

attrs="{'readonly':[('state','in',['done','ignore'])]}"

attrs="{'required':[('type','in',['sms'])],'invisible':[('type','in',['mail','chat'])]}"

アバター
破棄
著作者

in odoo17 attrs and states is no longer supported brother

最善の回答

You can review the Documentation to learn about that changes

https://www.odoo.com/documentation/17.0/developer/reference/user_interface/view_architectures.html#semantic-components

Use readonly and required and invisible 



アバター
破棄
最善の回答

You can give like this,

       attrs="{

           'readonly': [('state', 'in', ['done', 'ignore'])],

           'required': [('type', 'in', ['sms'])],

           'invisible': [('type', 'in', ['mail', 'chat'])],

           'string': 'Custom Label'

       }"/>

アバター
破棄
関連投稿 返信 ビュー 活動
0
4月 24
1029
1
11月 24
835
0
1月 24
828
5
10月 24
2401
5
12月 24
5342