good morning,
With the information provided by "ventura", letters can be entered in the UPC field.
You have to make the changes indicated in the /classes/Validate.php file
public static function isUpc($upc)
{
return !$upc || preg_match('/^[a-zA-Z0-9]{0,12}$/', $upc);
}
and
/src/PrestaShopBundle/Form/Admin/Product/ProductOptions.php
->add('upc', FormType\TextType::class, [
'required' => false,
'label' => $this->translator->trans('UPC barcode', [], 'Admin.Catalog.Feature'),
'constraints' => [
new Assert\Regex('/^[a-zA-Z0-9]{0,12}$/'),
],
'empty_data' => '',
])
a greeting