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:
commit
9fa7ee9684
1 changed files with 6 additions and 0 deletions
|
|
@ -12,6 +12,9 @@ class JOCancelReasons extends NameValue
|
||||||
const LATE_DELIVERY = 'late_delivery';
|
const LATE_DELIVERY = 'late_delivery';
|
||||||
const CUSTOMER_BOUGHT_NEW_BATTERY = 'customer_bought_new_battery';
|
const CUSTOMER_BOUGHT_NEW_BATTERY = 'customer_bought_new_battery';
|
||||||
const BATTERY_NO_STOCK = 'battery_no_stock';
|
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 = [
|
const COLLECTION = [
|
||||||
'wrong_battery' => 'Wrong Battery',
|
'wrong_battery' => 'Wrong Battery',
|
||||||
|
|
@ -22,5 +25,8 @@ class JOCancelReasons extends NameValue
|
||||||
'late_delivery' => 'Late Delivery',
|
'late_delivery' => 'Late Delivery',
|
||||||
'customer_bought_new_battery' => 'Customer Already Bought New Battery from Nearby Outlet',
|
'customer_bought_new_battery' => 'Customer Already Bought New Battery from Nearby Outlet',
|
||||||
'battery_no_stock' => 'No Stock of Battery',
|
'battery_no_stock' => 'No Stock of Battery',
|
||||||
|
'system_problem' => 'System Problem',
|
||||||
|
'wrong_price_provided' => 'Wrong Price Provided',
|
||||||
|
'wrong_payment_mode' => 'Wrong Mode of Payment',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue