Add Lazada to Transaction Origin. #455

This commit is contained in:
Korina Cordero 2020-08-04 03:45:23 +00:00
parent 7b8fe8c9e6
commit 21c1535e89

View file

@ -10,6 +10,7 @@ class TransactionOrigin extends NameValue
const VIP = 'vip';
const MOBILE_APP = 'mobile_app';
const WALK_IN = 'walk_in';
const LAZADA = 'lazada';
// TODO: for now, resq also gets the walk-in option
const COLLECTION = [
@ -19,5 +20,6 @@ class TransactionOrigin extends NameValue
'vip' => 'VIP',
'mobile_app' => 'Mobile App',
'walk_in' => 'Walk-in',
'lazada' => 'Lazada',
];
}