Add missing reasons. #520
This commit is contained in:
parent
a35f4bc78e
commit
121f3623bb
2 changed files with 4 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ class CustomerNotWaitReason extends NameValue
|
||||||
const POST_REPLACEMENT = 'post_replacement';
|
const POST_REPLACEMENT = 'post_replacement';
|
||||||
const POST_RECHARGE = 'post_recharge';
|
const POST_RECHARGE = 'post_recharge';
|
||||||
const NORMAL_REQUEST_NOT_URGENT = 'normal_request_not_urgent';
|
const NORMAL_REQUEST_NOT_URGENT = 'normal_request_not_urgent';
|
||||||
|
const RUSH_REQUEST = 'rush_request';
|
||||||
|
|
||||||
const COLLECTION = [
|
const COLLECTION = [
|
||||||
'emergency' => 'Emergency',
|
'emergency' => 'Emergency',
|
||||||
|
|
@ -18,5 +19,6 @@ class CustomerNotWaitReason extends NameValue
|
||||||
'post_replacement' => 'Post Replacement',
|
'post_replacement' => 'Post Replacement',
|
||||||
'post_recharge' => 'Post Recharge',
|
'post_recharge' => 'Post Recharge',
|
||||||
'normal_request_not_urgent' => 'Normal Request not Urgent (Rush below TAT)',
|
'normal_request_not_urgent' => 'Normal Request not Urgent (Rush below TAT)',
|
||||||
|
'rush_request' => 'Rush Request',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ class JOCancelReasons extends NameValue
|
||||||
const SYSTEM_PROBLEM = 'system_problem';
|
const SYSTEM_PROBLEM = 'system_problem';
|
||||||
const WRONG_PRICE_PROVIDED = 'wrong_price_provided';
|
const WRONG_PRICE_PROVIDED = 'wrong_price_provided';
|
||||||
const WRONG_PAYMENT_MODE = 'wrong_payment_mode';
|
const WRONG_PAYMENT_MODE = 'wrong_payment_mode';
|
||||||
|
const OUT_OF_AREA = 'out_of_area';
|
||||||
|
|
||||||
const COLLECTION = [
|
const COLLECTION = [
|
||||||
'wrong_battery' => 'Wrong Battery',
|
'wrong_battery' => 'Wrong Battery',
|
||||||
|
|
@ -28,5 +29,6 @@ class JOCancelReasons extends NameValue
|
||||||
'system_problem' => 'System Problem',
|
'system_problem' => 'System Problem',
|
||||||
'wrong_price_provided' => 'Wrong Price Provided',
|
'wrong_price_provided' => 'Wrong Price Provided',
|
||||||
'wrong_payment_mode' => 'Wrong Mode of Payment',
|
'wrong_payment_mode' => 'Wrong Mode of Payment',
|
||||||
|
'out_of_area' => 'Out of Area',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue