Files
shipping-portal/app/Classes/ValueObjects/Constants/WarehouseReferences.php
T
edmondlang e7c0e17ee4 Merge branch 'master' of https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal into multi-payment-final
# Conflicts:
# app/Classes/Modules/Segments/ControllersLogic/UpdateConstantPostcodeLogic.php
# app/Classes/ValueObjects/Constants/TransactionType.php
# routes/api.php
# routes/web.php
2023-04-28 18:20:42 +08:00

59 lines
1.3 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 YD_FS_WEST_MALAYSIA = 'FS-V01';
public const YD_FS_EAST_MALAYSIA = 'FS-V02';
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
}