Resolve "Rejection report" #1031

Merged
jankstudio merged 9 commits from 184-rejection-report into master 2019-02-25 19:10:56 +00:00
Showing only changes of commit fb15b3e3bc - Show all commits

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