Hi,
On Odoo13, I would like to allow users to create a quotation without having to set a fill some fields such as Fiscal Position or Delivery Date, but force them to fill that data before confirming that quotation.
I'm trying to use:
<field name="fiscal_position_id" attrs="{'required': [('state', 'in', ['sale'])]}"/>But this doesn't restrict the user from Confirming the quotation, it only restricts when I try to edit a confirmed quotation.
How can I do this ?
Thanks in advance!