Merge branch '520-missing-cancel-and-not-willing-to-wait-reason' into 'master'

Resolve "Missing cancel and not willing to wait reason"

Closes #520

See merge request jankstudio/resq!605
This commit is contained in:
Kendrick Chan 2020-10-13 02:37:04 +00:00
commit 6a121ece81
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',
];
}