]> git.uio.no Git - usit-rt.git/blame - share/html/Ticket/ModifyAll.html
Putting 4.2.0 on top of 4.0.17
[usit-rt.git] / share / html / Ticket / ModifyAll.html
CommitLineData
84fb5b46
MKG
1%# BEGIN BPS TAGGED BLOCK {{{
2%#
3%# COPYRIGHT:
4%#
403d7b0b 5%# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC
84fb5b46
MKG
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 => loc("Ticket #[_1] Jumbo update: [_2]", $Ticket->Id, $Ticket->Subject) &>
49<& /Elements/Tabs &>
50
51% $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket);
52<& /Elements/ListActions, actions => \@results &>
53
54<form method="post" action="ModifyAll.html" name="TicketModifyAll" enctype="multipart/form-data">
55% $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS );
56<input type="hidden" class="hidden" name="id" value="<%$Ticket->Id%>" />
af59614d 57<input type="hidden" class="hidden" name="Token" value="<% $ARGS{'Token'} %>" />
84fb5b46
MKG
58
59<&| /Widgets/TitleBox, title => loc('Modify ticket # [_1]', $Ticket->Id), class=>'ticket-info-basics' &>
af59614d
MKG
60<& Elements/EditBasics, TicketObj => $Ticket, defaults => \%ARGS &>
61<& /Elements/EditCustomFields, Object => $Ticket, Grouping => 'Basics' &>
84fb5b46
MKG
62</&>
63
64% $m->callback(CallbackName => 'AfterBasics', Ticket => $Ticket);
af59614d
MKG
65
66<& /Elements/EditCustomFieldCustomGroupings, Object => $Ticket &>
84fb5b46
MKG
67
68<&| /Widgets/TitleBox, title => loc('Dates'), class=>'ticket-info-dates'&>
69<& Elements/EditDates, TicketObj => $Ticket &>
70</&>
71
72<br />
73
74
75<&| /Widgets/TitleBox, title => loc('People'), class=>'ticket-info-people' &>
76<& Elements/EditPeople, Ticket => $Ticket, UserField => $UserField, UserString => $UserString, UserOp => $UserOp, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField &>
77</&>
78
79<br />
80
81<&| /Widgets/TitleBox, title => loc('Links'), class=>'ticket-info-links' &>
af59614d
MKG
82<& /Elements/EditLinks, Object => $Ticket &>
83</&>
84
85<br />
86
87<&| /Widgets/TitleBox, title => loc('Merge'), class=>'ticket-info-merge' &>
88<& Elements/EditMerge, Ticket => $Ticket, %ARGS &>
84fb5b46
MKG
89</&>
90
91<br />
92
93<&| /Widgets/TitleBox, title => loc('Update ticket') &>
94<table>
95 <tr>
96 <td class="label"><&|/l&>Update Type</&>:</td>
97 <td class="entry">
98 <select name="UpdateType">
99% if ($CanComment) {
100 <option value="private" ><&|/l&>Comments (Not sent to requestors)</&></option>
101% }
102% if ($CanRespond) {
103 <option value="response"><&|/l&>Reply to requestors</&></option>
104% }
105 </select>
106% $m->callback( %ARGS, CallbackName => 'AfterUpdateType' );
107 </td>
108 </tr>
109 <tr>
110 <td class="label"><&|/l&>Subject</&>:</td>
111 <td class="entry"><input name="UpdateSubject" size="60" value="<%$Ticket->Subject%>" />
112% $m->callback( %ARGS, CallbackName => 'AfterSubject' );
113 </td>
114 </tr>
115
116 <tr><td colspan="2"><& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $Ticket &></td></tr>
117
118<& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $Ticket &>
119
120 <tr>
121 <td class="labeltop"><&|/l&>Content</&>:</td>
122 <td class="entry">
af59614d 123% if (defined $ARGS{UpdateContent} && length($ARGS{UpdateContent})) {
84fb5b46
MKG
124 <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0 &>
125% } else {
126 <& /Elements/MessageBox, Name=>"UpdateContent", QuoteTransaction=>$ARGS{QuoteTransaction} &>
127% }
128 </td></tr>
129</table>
130</&>
131
132
133<& /Elements/Submit,
134 Name => 'SubmitTicket',
135 Label => loc('Save Changes'),
136 Caption => loc("If you've updated anything above, be sure to"), color => "#333399" &>
137</form>
138
139<%INIT>
140
141
142
143my $Ticket = LoadTicket($id);
144my $CustomFields = $Ticket->CustomFields;
145
84fb5b46
MKG
146my $CanRespond = 0;
147my $CanComment = 0;
148
149
150$CanRespond = 1 if ( $Ticket->CurrentUserHasRight('ReplyToTicket') or
151 $Ticket->CurrentUserHasRight('ModifyTicket') );
152
153$CanComment = 1 if ( $Ticket->CurrentUserHasRight('CommentOnTicket') or
154 $Ticket->CurrentUserHasRight('ModifyTicket') );
155
5b0d0914 156ProcessAttachments(ARGSRef => \%ARGS);
84fb5b46 157
84fb5b46 158my @results;
af59614d
MKG
159my $skip_update = 0;
160$m->callback( TicketObj => $Ticket, ARGSRef => \%ARGS, skip_update => \$skip_update );
161
162{
163 my ($status, @msg) = $m->comp(
164 '/Elements/ValidateCustomFields',
165 Object => $Ticket,
166 CustomFields => $CustomFields,
167 ARGSRef => \%ARGS,
168 );
169 unless ($status) {
170 push @results, @msg;
171 $skip_update = 1;
172 }
173}
84fb5b46 174
af59614d
MKG
175# There might be two owners.
176if ( ref ($ARGS{'Owner'} )) {
177 my @owners =@{$ARGS{'Owner'}};
178 delete $ARGS{'Owner'};
179 foreach my $owner(@owners){
180 if (defined($owner) && $owner =~ /\D/) {
181 $ARGS{'Owner'} = $owner unless ($Ticket->OwnerObj->Name eq $owner);
182 }
183 elsif (length $owner) {
184 $ARGS{'Owner'} = $owner unless ($Ticket->OwnerObj->id == $owner);
84fb5b46 185 }
84fb5b46 186 }
af59614d 187}
84fb5b46 188
af59614d 189unless ($skip_update or $OnlySearchForPeople or $OnlySearchForGroup or $ARGS{'AddMoreAttach'} ) {
84fb5b46
MKG
190 push @results, ProcessTicketWatchers( TicketObj => $Ticket, ARGSRef => \%ARGS);
191 push @results, ProcessObjectCustomFieldUpdates( Object => $Ticket, ARGSRef => \%ARGS);
192 push @results, ProcessTicketDates( TicketObj => $Ticket, ARGSRef => \%ARGS);
84fb5b46 193 push @results, ProcessUpdateMessage( TicketObj => $Ticket, ARGSRef=>\%ARGS );
84fb5b46
MKG
194 push @results, ProcessTicketBasics( TicketObj => $Ticket, ARGSRef => \%ARGS );
195 push @results, ProcessTicketLinks( TicketObj => $Ticket, ARGSRef => \%ARGS);
84fb5b46 196
af59614d 197 $Ticket->ApplyTransactionBatch;
84fb5b46 198
af59614d
MKG
199 MaybeRedirectForResults(
200 Actions => \@results,
201 Path => "/Ticket/ModifyAll.html",
202 Arguments => { id => $Ticket->id },
203 );
204}
84fb5b46 205
403d7b0b 206# If they've gone and moved the ticket to somewhere they can't see, etc...
84fb5b46 207unless ($Ticket->CurrentUserHasRight('ShowTicket')) {
403d7b0b
MKG
208 if (@results) {
209 Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@results);
210 } else {
211 Abort("No permission to view ticket");
212 }
84fb5b46
MKG
213}
214
215
216</%INIT>
217
218
219
220<%ARGS>
221$OnlySearchForPeople => undef
222$OnlySearchForGroup => undef
223$UserField => undef
224$UserOp => undef
225$UserString => undef
226$GroupString => undef
227$GroupOp => undef
228$GroupField => undef
229$id => undef
230</%ARGS>
231