Merge branch '481-resq-additional-cancel-reasons' into '480-resq-august-28-release'

Added cancellation reasons. #481

See merge request jankstudio/resq!563
This commit is contained in:
Korina Cordero 2020-08-28 05:29:45 +00:00
commit 9fa7ee9684

View file

@ -12,6 +12,9 @@ class JOCancelReasons extends NameValue
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 COLLECTION = [
'wrong_battery' => 'Wrong Battery',
@ -22,5 +25,8 @@ class JOCancelReasons extends NameValue
'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',
];
}