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

How to hide the one2many sub field based on above field.

For example: i want to hide sale order line discount field field if the payment_term field have some specific value..

アバター
破棄
最善の回答

you can use attrs `column_invisible`in tree/list view of one2many field
​e.g. 
<field name="discount" attrs="{'column_invisible': [('parent.state','=', 'done')]}"/>

アバター
破棄
著作者

It is work correctly, Thank you Ravi Gadhia..

最善の回答

In onchange of payment_term check your condition and make the discount field invisible=True

アバター
破棄