Resolve "Ticket changes" #830

Merged
arcticzero merged 5 commits from 21-ticket-changes into master 2018-02-26 09:53:57 +00:00
Showing only changes of commit fd982a1e05 - Show all commits

View file

@ -4,17 +4,20 @@ namespace App\Ramcar;
class TicketType extends NameValue
{
const COMPLAINT = 'complaint';
const QUESTION = 'question';
const ORDERS = 'orders';
const BILLING = 'billing';
const OTHER = 'other';
const COMPLAINT = 'complaint';
const INQUIRY = 'inquiry';
const ORDERS = 'orders';
const BILLING = 'billing';
const OTHER = 'other';
const FOR_FOLLOW_UP = 'for_follow_up';
const COLLECTION = [
'complaint' => 'Complaint',
'question' => 'Question',
'inquiry' => 'Inquiry',
'orders' => 'Orders',
'billing' => 'Billing',
'other' => 'Other',
'for_follow_up' => 'For follow-up',
];
}