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:
Kendrick Chan 2021-01-04 09:08:45 +00:00
commit bc05ade550

View file

@ -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',
];
}