mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 20:44:01 +00:00
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class WarehouseReferences {
|
|
|
|
public const VT_GUANG_ZHOU = 'GZ-V01';
|
|
|
|
public const YD_GUANG_ZHOU = 'GZ-V02';
|
|
|
|
public const VT_YIWU = 'YW-V01';
|
|
|
|
public const YD_YIWU = 'YW-V02';
|
|
|
|
public const VT_KLANG = 'KL-V01';
|
|
|
|
public const YD_KLANG = 'KL-V02';
|
|
|
|
public const VT_SABAH = 'SB-V01';
|
|
|
|
public const VT_SARAWAK = 'SRW-V01';
|
|
|
|
public const VT_DESTINATION_WAREHOUSE = [
|
|
1 => self::VT_KLANG,
|
|
2 => self::VT_KLANG,
|
|
3 => self::VT_KLANG,
|
|
4 => self::VT_KLANG,
|
|
5 => self::VT_SABAH,
|
|
6 => self::VT_KLANG,
|
|
7 => self::VT_KLANG,
|
|
8 => self::VT_KLANG,
|
|
9 => self::VT_KLANG,
|
|
10 => self::VT_KLANG,
|
|
11 => self::VT_KLANG,
|
|
12 => self::VT_KLANG,
|
|
13 => self::VT_SABAH,
|
|
14 => self::VT_SARAWAK,
|
|
15 => self::VT_KLANG,
|
|
16 => self::VT_KLANG,
|
|
];
|
|
|
|
public const YD_DESTINATION_WAREHOUSE = self::YD_KLANG;
|
|
|
|
public const YD_EXEMPT_LIST = [230, 294, 320, 652, 1248, 1726];
|
|
|
|
//2376 qce
|
|
|
|
}
|