Add new fields for transaction origin. #784

This commit is contained in:
Korina Cordero 2024-01-30 01:30:09 -05:00
parent 9c081b416e
commit 0e2afaa400

View file

@ -17,6 +17,10 @@ class TransactionOrigin extends NameValue
const YOKOHAMA_TWITTER = 'yokohama_twitter'; const YOKOHAMA_TWITTER = 'yokohama_twitter';
const YOKOHAMA_INSTAGRAM = 'yokohama_instagram'; const YOKOHAMA_INSTAGRAM = 'yokohama_instagram';
const YOKOHAMA_CAROUSELL = 'yokohama_carousell'; const YOKOHAMA_CAROUSELL = 'yokohama_carousell';
const HOTLINE_MANILA = 'hotline_manila';
const HOTLINE_CEBU = 'hotline_cebu';
const FACEBOOK_MANILA = 'facebook_manila';
const FACEBOOK_CEBU = 'facebook_cebu';
// TODO: for now, resq also gets the walk-in option // TODO: for now, resq also gets the walk-in option
// resq also gets new YOKOHAMA options // resq also gets new YOKOHAMA options
@ -34,5 +38,9 @@ class TransactionOrigin extends NameValue
'yokohama_twitter' => 'Yokohama Twitter', 'yokohama_twitter' => 'Yokohama Twitter',
'yokohama_instagram' => 'Yokohama Instagram', 'yokohama_instagram' => 'Yokohama Instagram',
'yokohama_carousell' => 'Yokohama Carousell', 'yokohama_carousell' => 'Yokohama Carousell',
'hotline_manila' => 'Hotline Manila',
'hotline_cebu' => 'Hotline Cebu',
'facebook_manila' => 'Facebook Manila',
'facebook_cebu' => 'Facebook Cebu'
]; ];
} }