Adjust JO status entries #66
This commit is contained in:
parent
451eb46bb9
commit
b234fb5344
1 changed files with 4 additions and 2 deletions
|
|
@ -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',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue