8d3c9a4010db0a79d7e95bd9c61bc9f2147a1a01
[freeside.git] / rt / share / html / Ticket / Update.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 <& /Elements/Header, Title  => $title &>
49 <& /Elements/Tabs &>
50
51 % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Ticket => $TicketObj);
52 <& /Elements/ListActions, actions => \@results &>
53
54 <form action="Update.html" name="TicketUpdate"
55     method="post" enctype="multipart/form-data">
56 % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS, Ticket => $TicketObj, CanRespond => $CanRespond, CanComment => $CanComment, ResponseDefault => $ResponseDefault, CommentDefault => $CommentDefault );
57 <input type="hidden" class="hidden" name="QuoteTransaction" value="<% $ARGS{QuoteTransaction}||'' %>" />
58 <input type="hidden" class="hidden" name="DefaultStatus" value="<% $DefaultStatus ||''%>" />
59 <input type="hidden" class="hidden" name="Action" value="<% $Action %>" />
60 <input type="hidden" class="hidden" name="Token" value="<% $ARGS{'Token'} %>" />
61
62 <& /Elements/Crypt/SignEncryptWidget:ShowIssues, self => $gnupg_widget &>
63
64 <div id="ticket-update-metadata">
65   <&|/Widgets/TitleBox, title => loc('Ticket and Transaction') &>
66 <table width="100%" border="0">
67 % $m->callback(CallbackName => 'AfterTableOpens', ARGSRef => \%ARGS, Ticket => $TicketObj);
68
69 <& /Ticket/Elements/EditTransactionCustomFields, 
70     %ARGS,
71     TicketObj   => $TicketObj,
72     UILocation  => 'TimeWorked',
73 &>
74
75 % my $skip;
76 % $m->callback( %ARGS, CallbackName => 'BeforeUpdateType', skip => \$skip );
77 % if (!$skip) {
78 <input type="hidden" class="hidden" name="id" value="<%$TicketObj->Id%>" /><br />
79 % }
80 <tr><td class="label"><&|/l&>Update Type</&>:</td>
81 <td><select name="UpdateType" id="UpdateType">
82 % if ($CanComment) {
83 <option value="private" <% ($ARGS{'UpdateType'} &&  $ARGS{'UpdateType'} eq "private") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$CommentDefault |n %>><&|/l&>Comments (Not sent to requestors)</&></option>
84 % }
85 % if ($CanRespond) {
86 <option value="response" <% ($ARGS{'UpdateType'} && $ARGS{'UpdateType'} eq "response") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$ResponseDefault |n %>><&|/l&>Reply to requestors</&></option>
87 % }
88 </select> 
89
90 <script type="text/javascript">
91     jQuery(function() {
92         jQuery("input[name=TxnSendMailTo]").change(function(ev) {
93             jQuery("input[name=TxnSendMailTo]").filter( function() { return this.value == ev.target.value; } ).prop("checked",jQuery(ev.target).prop('checked'));
94         });
95     });
96 </script>
97
98 % $m->callback( %ARGS, CallbackName => 'AfterUpdateType' );
99 </td></tr>
100
101 <script type="text/javascript">
102 function changeStatus() {
103   var Status_select = document.getElementById('Status');
104   var x = Status_select.options[Status_select.selectedIndex].value;
105   var text = document.getElementById('WillResolve_Date');
106   var button = document.getElementById('WillResolve_Date_date_button');
107   if (x == 'resolved' || x == 'rejected' || x == 'deleted') {
108     text.disabled = true;
109     button.style.display = 'none';
110   }
111   else {
112     text.disabled = false;
113     button.style.display = 'inline';
114   }
115 }
116 </script>
117
118 <& /Ticket/Elements/EditBasics,
119     TicketObj => $TicketObj,
120     InTable   => 1,
121     fields    => [
122         {   name => 'Status',
123             comp => '/Ticket/Elements/SelectStatus',
124             args => {
125                 Name => 'Status',
126                 Default => $DefaultStatus,
127                 TicketObj => $TicketObj,
128                 onchange => 'changeStatus()'
129             },
130         },
131         {   name => 'Resolve this Ticket on',
132             comp => '/Elements/SelectDate',
133             args => {
134                 menu_prefix => 'WillResolve',
135                 current => 0,
136                 ShowTime => 0,
137             },
138         },
139         {   name => 'Owner',
140             comp => '/Elements/SelectOwner',
141             args => {
142                 Name         => "Owner",
143                 TicketObj    => $TicketObj,
144                 QueueObj     => $TicketObj->QueueObj,
145                 DefaultLabel => loc("[_1] (Unchanged)", $TicketObj->OwnerObj->Format),
146                 Default      => $ARGS{'Owner'}
147             }
148         },
149         {   name => 'Worked',
150             comp => '/Elements/EditTimeValue',
151             args => {
152                 Name => 'UpdateTimeWorked',
153                 Default => $ARGS{UpdateTimeWorked}||'',
154             }
155         },
156     ]
157 &>
158
159 <script type="text/javascript">
160 changeStatus();
161 </script>
162
163 % $m->callback( %ARGS, CallbackName => 'AfterWorked', Ticket => $TicketObj );
164
165 <& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $TicketObj, InTable => 1, KeepValue => 1, &>
166
167   <!--</table>-->
168   </&>
169 </div>
170
171 <div id="ticket-update-message">
172   <& /Ticket/Elements/ShowSimplifiedRecipients, TicketObj => $TicketObj, %ARGS &>
173
174   <&|/Widgets/TitleBox, title => loc('Message'), class => 'messagedetails' &>
175   <table width="100%" border="0">
176 <& /Ticket/Elements/UpdateCc, %ARGS, TicketObj => $TicketObj &>
177
178 % if ( $gnupg_widget ) {
179 <tr><td>&nbsp;</td><td>
180 <& /Elements/Crypt/SignEncryptWidget,
181     self => $gnupg_widget,
182     TicketObj => $TicketObj,
183 &>
184 </td></tr>
185 % }
186 % $m->callback( %ARGS, CallbackName => 'AfterGnuPG' );
187
188 <tr><td class="label"><&|/l&>Subject</&>:</td><td> <input type="text" name="UpdateSubject" value="<% $ARGS{UpdateSubject} || $TicketObj->Subject || '' %>" />
189 % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
190 </td></tr>
191
192 <tr><td class="label" valign="top"><&|/l&>Message</&>:</td>
193 <td class="messagebox-container action-<% $type %>">
194 <& /Articles/Elements/BeforeMessageBox, %ARGS &>
195 % $m->callback( %ARGS, CallbackName => 'BeforeMessageBox' );
196 % if (exists $ARGS{UpdateContent}) {
197 % # preserve QuoteTransaction so we can use it to set up sane references/in/reply to
198 % my $temp = $ARGS{'QuoteTransaction'};
199 % delete $ARGS{'QuoteTransaction'};
200 <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0, %ARGS&>
201 % $ARGS{'QuoteTransaction'} = $temp;
202 % } else {
203 % my $IncludeSignature = 1;
204 % $IncludeSignature = 0 if $Action ne 'Respond' && !RT->Config->Get('MessageBoxIncludeSignatureOnComment');
205 <& /Elements/MessageBox, Name=>"UpdateContent", IncludeSignature => $IncludeSignature, %ARGS &>
206 % }
207 % $m->callback( %ARGS, CallbackName => 'AfterMessageBox' );
208 </td></tr>
209
210     <& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $TicketObj &>
211   </table>
212 </&>
213
214 % $m->callback( %ARGS, CallbackName => 'BeforeSubmit', Ticket => $TicketObj );
215
216   <& /Elements/Submit, Label => loc('Update Ticket'), Name => 'SubmitTicket', id => 'SubmitTicket' &>
217
218 % $m->callback( %ARGS, CallbackName => 'BeforeScrips', Ticket => $TicketObj );
219
220 % if ($TicketObj->CurrentUserHasRight('ShowOutgoingEmail')) {
221   <&|/Widgets/TitleBox, title => loc('Scrips and Recipients'), id => 'previewscrips', rolledup => RT->Config->Get('SimplifiedRecipients', $session{'CurrentUser'}) &>
222     <& /Ticket/Elements/PreviewScrips, TicketObj => $TicketObj, %ARGS &>
223   </&>
224 % }
225 </div>
226
227 % $m->callback( %ARGS, CallbackName => 'AfterScrips', Ticket => $TicketObj );
228
229 % if (my $recips = $m->notes("DryRun-Recipients-".$TicketObj->Id)) {
230 <input type="hidden" name="TxnRecipients" value="<% join ",",sort keys %{$recips} %>" />
231 % }
232
233 </form>
234 <hr class="clear" />
235
236 % $m->callback( %ARGS, CallbackName => 'AfterForm', Ticket => $TicketObj );
237
238 <%INIT>
239 my $CanRespond = 0;
240 my $CanComment = 0;
241 my $checks_failure = 0;
242
243 my $TicketObj = LoadTicket($id);
244
245 my @results;
246
247 $m->callback( Ticket => $TicketObj, ARGSRef => \%ARGS, checks_failure => \$checks_failure, results => \@results, CallbackName => 'Initial' );
248 $m->scomp( '/Articles/Elements/SubjectOverride', Ticket => $TicketObj, ARGSRef => \%ARGS, results => \@results );
249
250 unless($DefaultStatus){
251     $DefaultStatus=($ARGS{'Status'} ||$TicketObj->Status());
252 }
253
254 my $title = loc("Update ticket #[_1] ([_2])", $TicketObj->id, $TicketObj->Subject||'');
255
256 # Things needed in the template - we'll do the processing here, just
257 # for the convenience:
258
259 my ($CommentDefault, $ResponseDefault);
260 if ($Action ne 'Respond') {
261     $CommentDefault = qq[ selected="selected"]; 
262     $ResponseDefault = "";
263 } else {
264     $CommentDefault = ""; 
265     $ResponseDefault = qq[ selected="selected"];
266 }
267
268 my $type =             $ARGS{'UpdateType'} ? $ARGS{'UpdateType'} :
269            lc $Action eq 'respond' ? 'response'          :
270            lc $Action eq 'comment' ? 'private'           :
271                                              'none'              ;
272
273
274 $CanRespond = 1 if ( $TicketObj->CurrentUserHasRight('ReplyToTicket') or
275                      $TicketObj->CurrentUserHasRight('ModifyTicket') ); 
276
277 $CanComment = 1 if ( $TicketObj->CurrentUserHasRight('CommentOnTicket') or
278                      $TicketObj->CurrentUserHasRight('ModifyTicket') ); 
279
280 ProcessAttachments(ARGSRef => \%ARGS);
281
282 my %squelched = ProcessTransactionSquelching( \%ARGS );
283 $ARGS{'SquelchMailTo'} = [keys %squelched] if keys %squelched;
284
285 my $gnupg_widget = $m->comp('/Elements/Crypt/SignEncryptWidget:new', Arguments => \%ARGS );
286 $m->comp( '/Elements/Crypt/SignEncryptWidget:Process',
287     self => $gnupg_widget,
288     TicketObj => $TicketObj,
289 );
290
291 if ( $ARGS{'SubmitTicket'} ) {
292
293     my ($status, @msg) = $m->comp(
294         '/Elements/ValidateCustomFields',
295         CustomFields => $TicketObj->TransactionCustomFields,
296         Object => RT::Transaction->new( $session{'CurrentUser'} ),
297         ARGSRef => \%ARGS
298     );
299     unless ( $status ) {
300         push @results, @msg;
301         $checks_failure = 1;
302     }
303     $status = $m->comp('/Elements/Crypt/SignEncryptWidget:Check',
304         self      => $gnupg_widget,
305         TicketObj => $TicketObj,
306     );
307     $checks_failure = 1 unless $status;
308 }
309
310 # check email addresses for RT's
311 {
312     foreach my $field ( qw(UpdateCc UpdateBcc) ) {
313         my $value = $ARGS{ $field };
314         next unless defined $value && length $value;
315
316         my @emails = Email::Address->parse( $value );
317         foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) {
318             push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc(substr($field, 6)) );
319             $checks_failure = 1;
320             $email = undef;
321         }
322         $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails;
323     }
324 }
325 my $skip_update = 0;
326 $m->callback( CallbackName => 'BeforeUpdate', ARGSRef => \%ARGS, skip_update => \$skip_update,
327               checks_failure => $checks_failure, results => \@results, TicketObj => $TicketObj );
328
329 if ( !$checks_failure && !$skip_update && exists $ARGS{SubmitTicket} ) {
330     $m->callback( Ticket => $TicketObj, ARGSRef => \%ARGS, CallbackName => 'BeforeDisplay' );
331     return $m->comp('Display.html', TicketObj => $TicketObj, %ARGS);
332 }
333 </%INIT>
334
335 <%ARGS>
336 $id => undef
337 $Action => ''
338 $DefaultStatus => undef
339 </%ARGS>