Files
exchange-2.0/app/Classes/ValueObjects/Constants/RemarkRefundReason.php
T

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' => '',
];
}