I want to make a field required, but to not break the workflow from before the field was required. I want to make it required only after a specific date.
<field name="create_date" invisible="1"/>
<field name="customer_answer" nolabel="1" attrs="{'required': [('create_date', '>', '2019-11-18 8:00:00')]}"/>
I've tried it with the above example and with one with '>' but it doesn't work. Can I even do this?