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