I am new to spryker, I want to add prefix to order reference number, but there is a prefix in it by default, I couldn't find where the prefix comes from. Can anyone help me on this
Spryker add prefix to order reference number
104 views Asked by Dalbin Shimy At
1
Prefix creation is happening here :
https://github.com/spryker/spryker-core/blob/2b06c2c1e21d43098f6708b7cb0db56af57243b6/Bundles/Sales/src/Spryker/Zed/Sales/SalesConfig.php#L92
In core implementation, it is a concatenation with predefined uniqueIdentifierSeparator of store name and environment prefix ,which can be set in config_default.php as
Extending SalesConfig in project level could be a solution.