mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-21 21:43:57 +00:00
17 lines
476 B
PHP
17 lines
476 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' => '',
|
|
];
|
|
}
|