36 lines
1.5 KiB
PHP
36 lines
1.5 KiB
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 SYSTEM_PROBLEM = 'system_problem';
|
|
const WRONG_PRICE_PROVIDED = 'wrong_price_provided';
|
|
const WRONG_PAYMENT_MODE = 'wrong_payment_mode';
|
|
const OUT_OF_AREA = 'out_of_area';
|
|
const TEST_ONLY = 'test_only';
|
|
|
|
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',
|
|
'system_problem' => 'System Problem',
|
|
'wrong_price_provided' => 'Wrong Price Provided',
|
|
'wrong_payment_mode' => 'Wrong Mode of Payment',
|
|
'out_of_area' => 'Out of Area',
|
|
'test_only' => 'TEST ONLY',
|
|
];
|
|
}
|