Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
2 Besvarelser
7901 Visninger

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?

Avatar
Kassér
Bedste svar

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

<field name="allergy_verification" attrs="{'required': [('allergy_ids', '!=', [[6, False, []]])]}" />
Avatar
Kassér
Forfatter

Cool beans, thanks.

Bedste svar

Try the code:-

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

Avatar
Kassér