Add TEST ONLY as a cancel reason. #530

This commit is contained in:
Korina Cordero 2021-01-04 07:20:05 +00:00
parent 7d612df076
commit 314c0704f8

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