Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
3560 มุมมอง

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

อวตาร
ละทิ้ง