跳至內容
選單
此問題已被標幟
2 回覆
7918 瀏覽次數

I tried doing this:

<field name="allergy_verification" attrs="{'required': [('allergy_ids', '!=', [])]}" />

However if allergy_ids is blank, then allergy_verification is still marked as required. What am I doing wrong?

頭像
捨棄
最佳答案

See https://github.com/odoo/odoo/issues/674

<field name="allergy_verification" attrs="{'required': [('allergy_ids', '!=', [[6, False, []]])]}" />
頭像
捨棄
作者

Cool beans, thanks.

最佳答案

Try the code:-

<field name="allergy_verification" attrs="{'required': [('allergy_ids', '!=', False)]}" />

頭像
捨棄