rt 4.2.15
[freeside.git] / rt / share / html / Ticket / Elements / EditBasics
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2018 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 <%ARGS>
49 $TicketObj => undef
50 @fields => ()
51 $InTable => 0
52 %defaults => ()
53 </%ARGS>
54 <%INIT>
55 my $WillResolveObj = $TicketObj->WillResolveObj if defined $TicketObj;
56 unless ( @fields ) {
57     my $subject = $defaults{'Subject'} || $TicketObj->Subject;
58     @fields = (
59         {   name => 'Subject',
60             html => '<input name="Subject" value="'.(defined($subject) ? $m->interp->apply_escapes( $subject, 'h' ) : '').'" />',
61         },
62         {   name => 'Status',
63             comp => '/Ticket/Elements/SelectStatus',
64             args => {
65                 Name => 'Status',
66                 Default => $defaults{'Status'},
67                 DefaultFromArgs => 0,
68                 TicketObj => $TicketObj,
69                 onchange => 'changeStatus()',
70             },
71         },
72         {   name => 'Resolve this Ticket on',
73             comp => '/Elements/SelectDate',
74             args => {
75                 menu_prefix => 'WillResolve',
76                 Default => $ARGS{'WillResolve'} || 
77                            (defined($WillResolveObj) 
78                             and $WillResolveObj->Unix > 0 ?
79                               $WillResolveObj->Date : ''),
80                 current => 0,
81                 ShowTime => 0,
82             },
83         },
84         {   name => 'Queue',
85             comp => '/Elements/SelectQueue',
86             args => {
87                 Name => 'Queue',
88                 Default => $defaults{'Queue'} || $TicketObj->QueueObj->Id,
89                 ShowNullOption => 0,
90             }
91         },
92         {   name => 'Owner',
93             comp => '/Elements/SelectOwner',
94             args => {
95                 Name => 'Owner',
96                 QueueObj => $TicketObj->QueueObj,
97                 TicketObj => $TicketObj,
98                 Default => $defaults{'Owner'} || $TicketObj->OwnerObj->Id,
99                 DefaultValue => 0,
100             }
101         },
102         # Time Estimated, Worked, and Left
103         (
104             map {
105                 (my $field = $_) =~ s/ //g;
106                 {
107                     name => $_,
108                     comp => '/Elements/EditTimeValue',
109                     args => {
110                         Name => $field,
111                         Default => $defaults{$field} || $TicketObj->$field,
112                     }
113                 }
114             } ('Time Estimated', 'Time Worked', 'Time Left')
115         ),
116         # Priority and Final Priority
117         (
118             map {
119                 (my $field = $_) =~ s/ //g;
120                 {
121                     name => $_,
122                     comp => '/Elements/SelectPriority',
123                     args => {
124                         Name => $field,
125                         Default => $defaults{$field} || $TicketObj->$field,
126                     }
127                 }
128             } ('Priority', 'Final Priority')
129         ),
130     );
131 }
132
133 $m->callback( CallbackName => 'MassageFields', %ARGS, TicketObj => $TicketObj, Fields => \@fields );
134
135 # Process the field list, skipping if html is provided and running the
136 # components otherwise
137 for my $field (@fields) {
138     next if defined $field->{'html'};
139     if ( $field->{'comp'} ) {
140         $field->{'html'} = $m->scomp($field->{'comp'}, %{$field->{'args'} || {}});
141     }
142 }
143 </%INIT>
144
145 % unless ($InTable) {
146 <table>
147 % }
148 % for my $field (@fields) {
149  <tr class="<% lc $field->{'name'} %>">\
150 <td class="label"><% loc($field->{'name'}) %>:</td>\
151 <td class="value"><% $field->{'html'} |n %></td>\
152 </tr>
153 % }
154 % $m->callback( CallbackName => 'EndOfList', TicketObj => $TicketObj, %ARGS, Fields => \@fields );
155 % unless ($InTable) {
156 </table>
157 % }
158 <script type="text/javascript">
159 function changeStatus() {
160   var Status_select = document.getElementById('Status');
161   var x = Status_select.options[Status_select.selectedIndex].value;
162   var text = document.getElementById('WillResolve_Date');
163   var button = document.getElementById('WillResolve_Date_date_button');
164   if (x == 'resolved' || x == 'rejected' || x == 'deleted') {
165     text.disabled = true;
166     button.style.display = 'none';
167   }
168   else {
169     text.disabled = false;
170     button.style.display = 'inline';
171   }
172 }
173 </script>