Add new rejection reasons #184
This commit is contained in:
parent
924c00c41f
commit
fb15b3e3bc
1 changed files with 6 additions and 0 deletions
|
|
@ -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',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue