A robust code specification is crucial within the commercial market industry, especially for online stores like Amazon. The integration of online stores with Warehouse Management Systems (WMS) is essential as both systems handle extensive seller and product data. Therefore, we recommend implementing a solid structure and providing robust support for these systems.
These specifications cover a variety of online stores, including Coupang, 11th Street, Naver Storefarm, and many others for a while.
We have provided the API Documentation on the web. For more information, please visit https://www.palgle.com/good-code/ ❤️
- Normal good code parser
- Gift good code parser
- Set good code parser
- Complex good code parser
- Option Good code parser(No code, it matched by name)
- Receipt code parser
- Location code parser
- SKU parser
composer require cable8mm/good-codeVisit repository - https://github.com/cable8mm/aipro
<?phpuseApp\Models\OptionGood;
useCable8mm\GoodCode\Enums\GoodCodeType;
useCable8mm\GoodCode\GoodCode;
/** * For option products, retrieve the master_code of the option and update it. */if (GoodCodeType::of($this->data->get('sellerGoodsCd')) == GoodCodeType::OPTION) {
$code = GoodCode::of(
$this->data->get('sellerGoodsCd'),
option: $this->data->get('option'),
callback: function ($key, $option) {
return OptionGood::findMasterCode($key)->option($option)->first()->masterCode();
}
)->code();
$this->data->put('masterGoodsCd', $code);
}<?phpuseCable8mm\GoodCode\Enums\GoodCodeType;
useCable8mm\GoodCode\GoodCode;
useCable8mm\GoodCode\ValueObjects\SetGood;
/** * For composite and gift products, retrieve the set product and update the master_code. */if (
GoodCodeType::of($this->data->get('sellerGoodsCd')) == GoodCodeType::COMPLEX
|| GoodCodeType::of($this->data->get('sellerGoodsCd')) == GoodCodeType::GIFT
) {
$code = GoodCode::of(
$this->data->get('sellerGoodsCd'),
callback: function ($key) {
return SetGood::findComCode($key)->master_code;
}
)->code();
$this->data->put('masterGoodsCd', $code);
}<?phpuseCable8mm\GoodCode\GoodCode;
print GoodCode::of('SET7369x4zz4235x6')->value();
//=> ['7369'=>4,'4235'=>6]print GoodCode::setCodeOf(['1234' => 2, '5678' => 1,])->code();
//=> 'set1234x2ZZ5678x1'<?phpuseCable8mm\GoodCode\GoodCode;
print GoodCode::of('COM10', callback: function ($key) {
$a = [ 10 => '123'];
return$a[$key];
})->value();
//=> '123'<?phpuseCable8mm\GoodCode\GoodCode;
print GoodCode::of('GIF11', callback: function ($key) {
$a = [
11 => '456',
];
return$a[$key];
});
//=> '456'Tip
option-code are matching with bothoption-codeandoption-good-option name. Unfortunately all of online shops like Coupang and 11st have not send any key for option to sellers.
<?phpuseCable8mm\GoodCode\GoodCode;
print GoodCode::of($optionCode, option: $optionName, callback: function ($key, $option) {
$a = [
10 => [
'Super Smash Bros. Ultimate' => 'COM4',
'Animal Crossing: New Horizons' => '3124',
'The Legend of Zelda: Tears of the Kingdom' => '1234',
'Call of Duty®: Black Ops 6' => '2314',
'Grand Theft Auto V' => '43123',
'42342' => 'Marvel\'s Spider-Man 2',
],
];
return$a[$key][$option];
})->value();
//=> '3124'<?phpuseCable8mm\GoodCode\ValueObjects\SetGood;
print SetGood::of('SET43x3zz253x3')->goods();
//=> ['43' => 3, '253' => 3]print SetGood::ofArray(['43' => 3, '253' => 3])->code();
//=> SET43x3zz253x3<?phpuseCable8mm\GoodCode\ReceiptCode;
print ReceiptCode::of('PO-20250312-0001')->code;
//=> PO-20250312-0001print ReceiptCode::of('PO-20250312-0001')->prefix;
//=> POprint ReceiptCode::of('PO-20250312-0001')->ymd;
//=> 20250312print ReceiptCode::of('PO-20250312-0001')->number;
//=> 0001print ReceiptCode::of('PO-20250312-0001')->nextCode();
//=> PO-20250312-0002print ReceiptCode::of()->nextCode();
//=> PO-[Today's ymd]-0001print ReceiptCode::of(prefix: 'CT')->nextCode();
//=> CT-[Today's ymd]-0001print LocationCode::of(warehouse: 'AUK', rack: 'R3', shelf: 'S32')->locationCode();
print LocationCode::of(['warehouse' => 'AUK', 'rack' => 'R3', 'shelf' => 'S32'])->locationCode();
print (string) LocationCode::of(warehouse: 'AUK', rack: 'R3', shelf: 'S32'); // Stringable supported//=> AUK-R3-S32print Sku::of(code: 123, prefix: 'PO'); //=> PO123print Sku::of(123); //=> 123print Sku::of(123, prefix: 'PO'); //=> PO123composer lintcomposer test| Type | Notation | Description | Implement |
|---|---|---|---|
Normal Code | - | Match only one good | Yes |
Set Code | SET | Match one more good, max 255 characters | Yes |
Complex Code | COM | Shorten code for Set Code | Yes |
Gift Code | GIF | Alias Complex Code | Yes |
Option Code | OPT | Very complicated code. Not mastercode, but code + search name.(eq. wemakeprice, naver petWindow and all most OpenMarket options) | Yes |
The Good Code Parser is open-sourced software licensed under the MIT license.