Add missing reasons. #520

This commit is contained in:
Korina Cordero 2020-10-13 02:30:32 +00:00
parent a35f4bc78e
commit 121f3623bb
2 changed files with 4 additions and 0 deletions

View file

@ -10,6 +10,7 @@ class CustomerNotWaitReason extends NameValue
const POST_REPLACEMENT = 'post_replacement';
const POST_RECHARGE = 'post_recharge';
const NORMAL_REQUEST_NOT_URGENT = 'normal_request_not_urgent';
const RUSH_REQUEST = 'rush_request';
const COLLECTION = [
'emergency' => 'Emergency',
@ -18,5 +19,6 @@ class CustomerNotWaitReason extends NameValue
'post_replacement' => 'Post Replacement',
'post_recharge' => 'Post Recharge',
'normal_request_not_urgent' => 'Normal Request not Urgent (Rush below TAT)',
'rush_request' => 'Rush Request',
];
}

View file

@ -15,6 +15,7 @@ class JOCancelReasons extends NameValue
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 COLLECTION = [
'wrong_battery' => 'Wrong Battery',
@ -28,5 +29,6 @@ class JOCancelReasons extends NameValue
'system_problem' => 'System Problem',
'wrong_price_provided' => 'Wrong Price Provided',
'wrong_payment_mode' => 'Wrong Mode of Payment',
'out_of_area' => 'Out of Area',
];
}