helpdesk 0.0.41 → 0.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/helpdesk/ticket.rb +8 -0
- data/app/views/helpdesk/admin/tickets/_ticket.html.haml +3 -3
- data/app/views/helpdesk/admin/tickets/index.html.haml +2 -2
- data/app/views/helpdesk/admin/tickets/show.html.haml +1 -1
- data/app/views/helpdesk/notifications_mailer/ticket_created_notification.html.haml +1 -1
- data/app/views/helpdesk/tickets/_ticket.html.haml +3 -3
- data/app/views/helpdesk/tickets/show.html.haml +2 -2
- data/lib/helpdesk/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dff8888556e31a2eefa08bb210d31f15459616ec
|
4
|
+
data.tar.gz: abdbd924e7bbf69ae57310a637499cf93948f7db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 234528ecc4875bb6f8b9ab61d7794a26c968e154e8b1648a5b59dec944479710f20d7d5ed982acf67981845a48ebbd8bf50b34af1ce73e6e4610fa9abc7819f7
|
7
|
+
data.tar.gz: b75c2470071b6243739ac8b36eaee0d449377f5f7b73eecd26dc3e358e933109d9f972990b96acabfd8faf1b3efefb940893ffa79327a4de4c94d4122c73e661
|
@@ -41,6 +41,14 @@ module Helpdesk
|
|
41
41
|
before_create :set_status
|
42
42
|
after_create :send_email
|
43
43
|
|
44
|
+
def ticket_type_tr_class
|
45
|
+
ticket_type.tr_class rescue ''
|
46
|
+
end
|
47
|
+
|
48
|
+
def ticket_type_title
|
49
|
+
ticket_type.title rescue ''
|
50
|
+
end
|
51
|
+
|
44
52
|
def set_status
|
45
53
|
if self.status.blank?
|
46
54
|
self.status = :new
|
@@ -1,6 +1,6 @@
|
|
1
1
|
%table.table.table-bordered
|
2
2
|
%tbody
|
3
|
-
%tr{:class=>ticket.
|
3
|
+
%tr{:class=>ticket.ticket_type_tr_class}
|
4
4
|
%td{colspan:2}
|
5
5
|
%h4
|
6
6
|
="##{ticket.subject}"
|
@@ -12,7 +12,7 @@
|
|
12
12
|
%td{rowspan:2}
|
13
13
|
= status_label humanize_with_i18n(ticket.status,'helpdesk.tickets.statuses'), Helpdesk::Ticket::STATUS_CLASS_BY_KEY[ticket.status.to_sym]
|
14
14
|
|
15
|
-
= ticket.
|
15
|
+
= ticket.ticket_type_title
|
16
16
|
= auto_link(simple_format(ticket.description), :html => { :target => "_blank" })
|
17
17
|
%tr
|
18
18
|
%td
|
@@ -50,7 +50,7 @@
|
|
50
50
|
%div.comment-body
|
51
51
|
= auto_link(simple_format(comment.comment), :html => { :target => "_blank" })
|
52
52
|
|
53
|
-
%tr{:class=>ticket.
|
53
|
+
%tr{:class=>ticket.ticket_type_tr_class}
|
54
54
|
%td{colspan:2}
|
55
55
|
- if show_button
|
56
56
|
= link_to 'Show', admin_ticket_url(ticket), class: 'btn btn-block'
|
@@ -20,11 +20,11 @@
|
|
20
20
|
|
21
21
|
%tbody
|
22
22
|
- @tickets.each do |ticket|
|
23
|
-
%tr{:class=>ticket.
|
23
|
+
%tr{:class=>ticket.ticket_type_tr_class}
|
24
24
|
%td
|
25
25
|
= Helpdesk::Ticket::STATUS_BY_KEY[ticket.status.to_sym]
|
26
26
|
%td= ticket.id
|
27
|
-
%td= ticket.
|
27
|
+
%td= ticket.ticket_type_title
|
28
28
|
%td= ticket.subject
|
29
29
|
%td
|
30
30
|
- if ticket.requester
|
@@ -1,6 +1,6 @@
|
|
1
1
|
%table.table.table-bordered
|
2
2
|
%tbody
|
3
|
-
%tr{:class=>ticket.
|
3
|
+
%tr{:class=>ticket.ticket_type_tr_class}
|
4
4
|
%td{colspan:2}
|
5
5
|
%h4
|
6
6
|
="##{ticket.subject}"
|
@@ -11,7 +11,7 @@
|
|
11
11
|
= ticket.requester.send Helpdesk.display_user.to_sym
|
12
12
|
%td{rowspan:2}
|
13
13
|
= status_label humanize_with_i18n(ticket.status,'helpdesk.tickets.statuses'), Helpdesk::Ticket::STATUS_CLASS_BY_KEY[ticket.status.to_sym]
|
14
|
-
= ticket.
|
14
|
+
= ticket.ticket_type_title
|
15
15
|
|
16
16
|
= auto_link(simple_format(ticket.description), :html => { :target => "_blank" })
|
17
17
|
%tr
|
@@ -48,7 +48,7 @@
|
|
48
48
|
%div.comment-body
|
49
49
|
= auto_link(simple_format(comment.comment), :html => { :target => "_blank" })
|
50
50
|
|
51
|
-
%tr{:class=>ticket.
|
51
|
+
%tr{:class=>ticket.ticket_type_tr_class}
|
52
52
|
%td{colspan:2}
|
53
53
|
- if show_button
|
54
54
|
= link_to ticket.subject, ticket_url(I18n.locale,ticket), class: 'btn btn-block'
|
@@ -6,14 +6,14 @@
|
|
6
6
|
- unless @ticket.open?
|
7
7
|
%table.table
|
8
8
|
%tbody
|
9
|
-
%tr{:class=>@ticket.
|
9
|
+
%tr{:class=>@ticket.ticket_type_tr_class}
|
10
10
|
%td{style:'width:100px'}
|
11
11
|
%td
|
12
12
|
= t('helpdesk.tickets.ticket_closed')
|
13
13
|
- if @ticket.open? || helpdesk_user == @ticket.requester
|
14
14
|
%table.table
|
15
15
|
%tbody
|
16
|
-
%tr{:class=>@ticket.
|
16
|
+
%tr{:class=>@ticket.ticket_type_tr_class}
|
17
17
|
%td{style:'width:100px'}
|
18
18
|
%td
|
19
19
|
= simple_form_for(@ticket, :html => {:class => 'form-vertical' }) do |f|
|
data/lib/helpdesk/version.rb
CHANGED