26 lines
1,019 B
PHP
26 lines
1,019 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class JOCancelReasons extends NameValue
|
|
{
|
|
const WRONG_BATTERY = 'wrong_battery';
|
|
const CUSTOMER_NO_SHOW = 'customer_no_show';
|
|
const RESCHEDULE = 'reschedule';
|
|
const LOCATION_CHANGE = 'location_change';
|
|
const WORKING_BATTERY = 'battery_working';
|
|
const LATE_DELIVERY = 'late_delivery';
|
|
const CUSTOMER_BOUGHT_NEW_BATTERY = 'customer_bought_new_battery';
|
|
const BATTERY_NO_STOCK = 'battery_no_stock';
|
|
|
|
const COLLECTION = [
|
|
'wrong_battery' => 'Wrong Battery',
|
|
'customer_no_show' => 'Customer No Show',
|
|
'reschedule' => 'Reschedule',
|
|
'location_change' => 'Change Location',
|
|
'battery_working' => 'Battery is Already Working',
|
|
'late_delivery' => 'Late Delivery',
|
|
'customer_bought_new_battery' => 'Customer Already Bought New Battery from Nearby Outlet',
|
|
'battery_no_stock' => 'No Stock of Battery',
|
|
];
|
|
}
|