Implemented issue 2326 - Add AccountedTime to tag selection for text modules or triggers.

This commit is contained in:
Martin Edenhofer 2018-11-02 08:39:22 +01:00
parent a97e261ac7
commit 764d262cff

View file

@ -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' },