Resolve "Superficial UAT changes for release" #864

Merged
jankstudio merged 12 commits from 66-superficial-uat-changes-for-release into master 2018-04-03 05:55:22 +00:00
Showing only changes of commit b234fb5344 - Show all commits

View file

@ -7,16 +7,18 @@ class JOStatus extends NameValue
const PENDING = 'pending';
const RIDER_ASSIGN = 'rider_assign';
const ASSIGNED = 'assigned';
const IN_TRANSIT = 'in_transit';
const IN_PROGRESS = 'in_progress';
const CANCELLED = 'cancelled';
const FULFILLED = 'fulfilled';
const COLLECTION = [
'pending' => 'Pending',
'pending' => 'For Dispatch',
'rider_assign' => 'For Rider Assignment',
'assigned' => 'Assigned',
'in_transit' => 'In Transit',
'in_progress' => 'In Progress',
'cancelled' => 'Cancelled',
'fulfilled' => 'Fulfilled',
'fulfilled' => 'Completed',
];
}