Resolve "Resq - September 10 release" #1414

Merged
jankstudio merged 67 commits from 485-resq-september-10-release into master 2020-10-12 14:43:29 +00:00
Showing only changes of commit 9fa7ee9684 - Show all commits

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',
];
}