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