Add TEST ONLY as a cancel reason. #530
This commit is contained in:
parent
7d612df076
commit
314c0704f8
1 changed files with 2 additions and 0 deletions
|
|
@ -16,6 +16,7 @@ class JOCancelReasons extends NameValue
|
|||
const WRONG_PRICE_PROVIDED = 'wrong_price_provided';
|
||||
const WRONG_PAYMENT_MODE = 'wrong_payment_mode';
|
||||
const OUT_OF_AREA = 'out_of_area';
|
||||
const TEST_ONLY = 'test_only';
|
||||
|
||||
const COLLECTION = [
|
||||
'wrong_battery' => 'Wrong Battery',
|
||||
|
|
@ -30,5 +31,6 @@ class JOCancelReasons extends NameValue
|
|||
'wrong_price_provided' => 'Wrong Price Provided',
|
||||
'wrong_payment_mode' => 'Wrong Mode of Payment',
|
||||
'out_of_area' => 'Out of Area',
|
||||
'test_only' => 'TEST ONLY',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue