Add new rejection reasons #184

This commit is contained in:
Kendrick Chan 2019-02-26 01:45:26 +08:00
parent 924c00c41f
commit fb15b3e3bc

View file

@ -12,6 +12,9 @@ class JORejectionReason extends NameValue
const NO_RIDER_AVAILABLE = 'no_rider_available';
const NO_RIDER_IN_TRANSIT = 'no_rider_in_transit';
const REFUSAL = 'refusal';
const STORE_CLOSED = 'store_closed';
const NO_CREDIT_CARD = 'no_credit_card';
const DISCOUNT = 'discount';
const COLLECTION = [
'administrative' => 'ADMINISTRATIVE',
@ -22,5 +25,8 @@ class JORejectionReason extends NameValue
'no_rider_available' => 'NO RIDER - AVAILABLE',
'no_rider_in_transit' => 'NO RIDER - IN TRANSIT',
'refusal' => 'REFUSAL',
'store_closed' => 'STORE CLOSED',
'no_credit_card' => 'NO CREDIT CARD PAYMENT / NO TERMINAL',
'discount' => 'DISCOUNT',
];
}