Add queue ticket types #175

This commit is contained in:
Kendrick Chan 2019-01-28 01:07:45 +08:00
parent c517a9ccfd
commit a0d611264d

View file

@ -12,6 +12,9 @@ class TicketType extends NameValue
const FOR_FOLLOW_UP = 'for_follow_up';
const RESQ_INQUIRY = 'resq_inquiry';
const BATTERY_QUEUE = 'battery_queue';
const RESQ_QUEUE = 'resq_queue';
const COLLECTION = [
'complaint' => 'Complaint',
'inquiry' => 'Inquiry',
@ -20,5 +23,7 @@ class TicketType extends NameValue
'other' => 'Other',
'for_follow_up' => 'For follow-up',
'resq_inquiry' => 'RESQ Inquiry',
'battery_queue' => 'Battery Queue (XFER)',
'resq_queue' => 'Resq Queue (XFER)',
];
}