mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
55 lines
1.2 KiB
PHP
55 lines
1.2 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 YD_GUANG_ZHOU_2 = 'GZ-V03';
|
|
|
|
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, 1248, 1726, 2349, 2574];
|
|
|
|
public const MIN_CBM_EXEMPT_LIST = [230, 294, 320, 652, 1248, 1726, 2349, 2574];
|
|
|
|
public const REPLICA_WHITE_LIST = [502, 2237];
|
|
|
|
//2376 qce
|
|
|
|
}
|