summaryrefslogtreecommitdiff
path: root/rt/webrt/SelfService/Display.html
blob: 2d44f148e0c7a6bbaaad0b4d9d31d493ef00816d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
%# $Header: /home/cvs/cvsroot/freeside/rt/webrt/SelfService/Attic/Display.html,v 1.1 2002-08-12 06:17:09 ivan Exp $
%# Copyright 1996-2001 Jesse Vincent <jesse@fsck.com>

<& /SelfService/Elements/Header, Title => 'Display ticket #'.$Ticket->id &>


<& /Elements/ListActions, actions => \@results &>

<TABLE>
    <TR>
	<TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	Ticket Id
	</TD>
      <TD>
	<%$Ticket->Id%>
	</TD>
      </TR>
    <TR>	
      <TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	Requestors
	</TD>
      <TD>
	<%$Ticket->RequestorsAsString%>
      </TD>
      </TR>
    <TR>	
      <TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	Cc
	</TD>
      <TD>
	<%$Ticket->CcAsString%>
      </TD>
    </TR>

  <TR>	
      <TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	Status
	</TD>
      <TD>
	<%$Ticket->Status%>
      </TD>
    </TR>

    <TR>	
      <TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	Queue
	</TD>
      <TD>
	<%$Ticket->QueueObj->Name%> (<%$Ticket->QueueObj->Description%>)
      </TD>
    </TR>
    <TR>	
      <TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	Priority
      </TD>
      <TD>
	<%$Ticket->Priority %>
      </TD>
    </TR>
 
%  if ($Ticket->TimeWorked) {
   <TR>	
      <TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	Worked
      </TD>
      <TD>
	<%$Ticket->TimeWorked %> minutes
      </TD>
    </TR>
% }
    
% my $selects = $Ticket->QueueObj->KeywordSelects;
% while (my $select = $selects->Next) {
    <TR>
      <TD VALIGN=TOP WIDTH="20%" ALIGN=RIGHT>
	<%$select->Name%>
      </TD>
      <TD>
% my $object_keywords = $Ticket->KeywordsObj($select->id);	
% while (my $keyword = $object_keywords->Next) {
	<%$keyword->KeywordObj->RelativePath($select->KeywordObj)%>
% }
%}
	</TD>
      </TR>




	</TABLE>
<TABLE BORDER=0 CELLSPACING=0>
% my ($i);
%while (my $Transaction = $Transactions->Next) {
% $i++;
%	if ($Transactions->IsLast) {
	<a name="lasttrans"></a>
% 	}
	<& /Ticket/Elements/ShowTransaction, Transaction => $Transaction, 
					     RowNum => $i,
					     Ticket => $Ticket &>

%}
</TABLE>


<%INIT>

my ($field, @results);

# {{{ Load the ticket
#If we get handed two ids, mason will make them an array. bleck.
# We want teh first one. Just because there's no other sensible way
# to deal
my @id = (ref $id eq 'ARRAY') ? @{$id} : ($id);                


my $Ticket = new RT::Ticket($session{'CurrentUser'});
if ($id[0] eq 'new') {
    # {{{ Create a new ticket
    
    my $Queue = new RT::Queue($session{'CurrentUser'});	
    unless ($Queue->Load($ARGS{'Queue'})) {
	$m->comp('Error.html', Why => 'Queue not found');
	$m->abort;
    }
    
    unless ($Queue->CurrentUserHasRight('CreateTicket')) {
	$m->comp('Error.html', Why => 'You have no permission to create tickets in that queue.');
  	$m->abort; 
    }
    
    my @Requestors = split(/,/,$ARGS{'Requestors'});
    my @Cc = split(/,/,$ARGS{'Cc'});
    

    my $MIMEObj = MakeMIMEEntity ( Subject => $ARGS{'Subject'},
				   From => $ARGS{'From'},
				   Cc => $ARGS{'Cc'},
				   Body => $ARGS{'Content'},
				   AttachmentFieldName => 'Attach');

    #TODO in Create_Details.html: priorities and due-date      
    my ($id, $Trans, $ErrMsg)= $Ticket->Create(Queue=>$ARGS{Queue},
					       Requestor=> \@Requestors,
					       Cc => \@Cc,
					       Subject=>$ARGS{Subject},
					       MIMEObj => $MIMEObj	  
					      );         
    unless ($id && $Trans) {
	$m->comp('Error.html', Why => $ErrMsg);
   	$m->abort(); 
    }

    push(@results, $ErrMsg);

    # }}}
}
else {
    unless ($Ticket->Load($id[0])) {
	$m->comp('Error.html', Why =>"Couldn't load ticket '$id'");
	$m->abort();
    }
}
# }}}

unless ($session{'CurrentUser'}->HasQueueRight ( TicketObj => $Ticket,
						 Right => 'ShowTicket')) {
    $m->comp('Error.html', Why => "No permission to display that ticket");
    $m->abort();
}

my ($code, $msg);

#Update the status
if ((defined $ARGS{'Status'}) and 
    ($ARGS{'Status'} ne $Ticket->Status)) {
    ($code, $msg) = $Ticket->SetStatus($ARGS{'Status'});
    push @results, "$msg";
}

ProcessUpdateMessage(ARGSRef=>\%ARGS, Actions=>\@results, TicketObj=>$Ticket);

my $Transactions = $Ticket->Transactions;

</%INIT>


<%ARGS>
$id => undef
</%ARGS>