From 764d262cffb284bd991bd6bfa77053a7034a9201 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Fri, 2 Nov 2018 08:39:22 +0100 Subject: [PATCH] Implemented issue 2326 - Add AccountedTime to tag selection for text modules or triggers. --- app/assets/javascripts/app/models/ticket.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/javascripts/app/models/ticket.coffee b/app/assets/javascripts/app/models/ticket.coffee index 9c2f924e9..0b72415e3 100644 --- a/app/assets/javascripts/app/models/ticket.coffee +++ b/app/assets/javascripts/app/models/ticket.coffee @@ -13,6 +13,7 @@ class App.Ticket extends App.Model { name: 'pending_time', display: 'Pending till', tag: 'datetime', null: true, width: '130px' }, { name: 'priority_id', display: 'Priority', tag: 'select', multiple: false, null: false, relation: 'TicketPriority', default: '2 normal', width: '12%', edit: true, customer: true }, { name: 'article_count', display: 'Article#', readonly: 1, width: '12%' }, + { name: 'time_unit', display: 'Accounted Time', readonly: 1, width: '12%' }, { name: 'escalation_at', display: 'Escalation', tag: 'datetime', null: true, readonly: 1, width: '110px', class: 'escalation' }, { name: 'last_contact_at', display: 'Last contact', tag: 'datetime', null: true, readonly: 1, width: '110px' }, { name: 'last_contact_agent_at', display: 'Last contact (agent)', tag: 'datetime', null: true, readonly: 1, width: '110px' },