Handle Barcode placeholders before anything else to avoid wrong delegation

Fixes issue #1268
This commit is contained in:
Jan Böhmer 2026-03-07 19:56:14 +01:00
parent 463d7b89f6
commit b8d1414403

View file

@ -114,10 +114,12 @@ final class BarcodeProvider implements PlaceholderProviderInterface
return '<b>IPN Barcode ERROR!</b>: '.$e->getMessage();
}
}
return null;
}
public static function getDefaultPriority(): int
{
//This provider should be checked before all others, so that nothing is delegated for part lots
return 1000;
}
}