تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
3547 أدوات العرض

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

الصورة الرمزية
إهمال