rt 4.2.14 (#13852)
[freeside.git] / rt / share / html / Admin / Scrips / Objects.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2017 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 <& /Admin/Elements/Header, Title => $title &>
49 <& /Elements/Tabs &>
50 <& /Elements/ListActions &>
51
52 <form action="Objects.html" method="post" name="AddRemoveScrip">
53 <input type="hidden" class="hidden" name="id" value="<% $id %>" />
54 <input type="hidden" class="hidden" name="From" value="<% $From || q{} %>" />
55
56 % if ( $global ) {
57 <h2><&|/l&>Applies to all objects</&></h2>
58 <label>
59 <input type="checkbox" name="RemoveScrip-<% $id %>" value="0" />
60 <&|/l&>check this box to remove this scrip from all objects and be able to choose specific objects.</&>
61 </label>
62
63 <& /Admin/Elements/SelectStageForAdded,
64     Default => $Stage || $global->Stage,
65     Label   => loc("Select global scrip stage:")
66     &>
67 % } else {
68 <h2><&|/l&>Apply globally</&></h2>
69
70 <label>
71 <input type="checkbox" name="AddScrip-<% $id %>" value="0" />
72 <&|/l&>check this box to apply this scrip to all objects.</&>
73 </label>
74
75 <h2><&|/l&>Selected objects</&></h2>
76 <& /Elements/CollectionList,
77     OrderBy => 'id',
78     Order => 'ASC',
79     %ARGS,
80     Collection => $added,
81     Rows => 0,
82     Page => 1,
83     Format        => $format,
84     DisplayFormat => "'__CheckBox.{RemoveScrip-$id}__','__ScripStage.{$id}__',". $format,
85     AllowSorting => 0,
86     ShowEmpty    => 0,
87     PassArguments => [
88         qw(id Stage Format Rows Page Order OrderBy),
89     ],
90 &>
91
92 <h2><&|/l&>Unselected objects</&></h2>
93 <& /Elements/CollectionList,
94     OrderBy => 'Name',
95     Order   => 'ASC',
96     %ARGS,
97     Collection    => $not_added,
98     Rows          => $rows,
99     Format        => $format,
100     DisplayFormat => "'__CheckBox.{AddScrip-". $id ."}__',". $format,
101     AllowSorting  => 1,
102     ShowEmpty     => 0,
103     PassArguments => [
104         qw(id Stage Format Rows Page Order OrderBy),
105     ],
106 &>
107
108 <& /Admin/Elements/SelectStageForAdded, Default => $Stage &>
109 <div style="text-align:right">
110 <% loc('You can change template if needed') %>:
111 <& Elements/SelectTemplate, Scrip => $scrip, Default => $Template &>
112 </div>
113
114 % }
115
116 <& /Elements/Submit, Name => 'Update' &>
117 </form>
118
119 <%ARGS>
120 $id => undef
121 $Stage => undef
122 $Template => ''
123 $Update => 0
124 $From   => undef
125 </%ARGS>
126 <%INIT>
127 my $scrip = RT::Scrip->new( $session{'CurrentUser'} );
128 $scrip->Load($id) or Abort(loc("Could not load scrip #[_1]", $id));
129 $id = $scrip->id;
130
131 my $global = $scrip->IsGlobal;
132
133 if ( $Update ) {
134     my (@results);
135     if ( $Template ) {
136         my ($status, $msg) = $scrip->SetTemplate( $Template );
137         push @results, loc('Template: [_1]', $msg);
138     }
139     if ( defined (my $del = $ARGS{"RemoveScrip-$id"}) ) {
140         foreach my $id ( ref $del? (@$del) : ($del) ) {
141             my ($status, $msg) = $scrip->RemoveFromObject( $id );
142             push @results, $msg;
143         }
144     }
145     if ( defined (my $add = $ARGS{"AddScrip-$id"}) ) {
146         foreach my $id ( ref $add? (@$add) : ($add) ) {
147             my ($status, $msg) = $scrip->AddToObject( $id, Stage => $Stage );
148             push @results, $msg;
149         }
150     }
151     if ($global and $global->Stage ne $Stage) {
152         my ($status, $msg) = $global->SetStage($Stage);
153         push @results, $msg;
154     }
155     MaybeRedirectForResults(
156         Actions   => \@results,
157         Arguments => {
158             id => $id,
159             From => $From,
160         },
161     );
162 }
163
164 my $added = $scrip->AddedTo;
165 my $not_added = $scrip->NotAddedTo;
166
167 my $format = RT->Config->Get('AdminSearchResultFormat')->{'Queues'};
168 my $rows = RT->Config->Get('AdminSearchResultRows')->{'Queues'} || 50;
169
170 my $title = loc('Modify associated objects for scrip #[_1]', $id);
171
172 </%INIT>