Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
3559 Lượt xem

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..

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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

Ảnh đại diện
Huỷ bỏ
Tác giả

It is work correctly, Thank you Ravi Gadhia..

Câu trả lời hay nhất

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

Ảnh đại diện
Huỷ bỏ