mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
22 lines
607 B
PHP
22 lines
607 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
class RemarkRefundReason
|
|
{
|
|
public const REFUND_REASONS = [
|
|
'Not enough stock' => 'Return Inward',
|
|
'Goods Damage/ Loss Compensation' => 'Return Inward',
|
|
'Cancel Partial Order' => 'Return Inward',
|
|
'Overpaid due to Supplier amend price' => 'Discount Allowed',
|
|
'Defective Item' => 'Discount Allowed',
|
|
'Cancel Full Order' => 'Return Inward',
|
|
'Others' => '',
|
|
];
|
|
|
|
public const REFUND_REASONS_GROUP = [
|
|
'Return Inward' => '510-0000',
|
|
'Discount Allowed' => '511-0000',
|
|
];
|
|
}
|