Merge branch '530-add-test-only-as-a-cancel-reason' into 'master'
Resolve "Add TEST ONLY as a cancel reason" Closes #530 See merge request jankstudio/resq!615
This commit is contained in:
commit
bc05ade550
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