Hello,
I fill the data in a field on Product in Backoffice with CSV. I keep the data that this field can receive in my enum.
..core-items.xml
<enumtypes>
<enumtype code="RegionalAssortmentFlagEnum" generate="true" autocreate="true">
<value code="PUSH" />
<value code="COMING_SOON" />
<value code="SWAP" />
<value code="STOP" />
<value code="VALIDATED" />
<value code="PHASE_OUT" />
<value code="NOT_ASSIGNED" />
</enumtype>
</enumtypes>
If this field is empty in CSV, I get the following error in backoffice. But when importing CSV there is no error, only this in Backoffice.
If it is sent with one of the enum values in the CSV, Backoffice does not throw an error and it looks properly.
How do I avoid getting this error in Backoffice?
Thank you so much for your help in advance.