fix visual regression not displaying package and comment on date editing
[freeside.git] / httemplate / edit / REAL_cust_pkg.cgi
1 <% include("/elements/header.html",'Customer package - Edit dates') %>
2
3 %#, menubar(
4 %#  "View this customer (#$custnum)" => popurl(2). "view/cust_main.cgi?$custnum",
5 %#));
6
7 <LINK REL="stylesheet" TYPE="text/css" HREF="../elements/calendar-win2k-2.css" TITLE="win2k-2">
8 <SCRIPT TYPE="text/javascript" SRC="../elements/calendar_stripped.js"></SCRIPT>
9 <SCRIPT TYPE="text/javascript" SRC="../elements/calendar-en.js"></SCRIPT>
10 <SCRIPT TYPE="text/javascript" SRC="../elements/calendar-setup.js"></SCRIPT>
11
12 <FORM NAME="formname" ACTION="process/REAL_cust_pkg.cgi" METHOD="POST">
13 <INPUT TYPE="hidden" NAME="pkgnum" VALUE="<% $pkgnum %>">
14
15 % # raw error from below
16 % if ( $error ) { 
17   <FONT SIZE="+1" COLOR="#ff0000">Error: <% $error %></FONT>
18 % } 
19 % #or, regular error handler
20 <% include('/elements/error.html') %>
21
22 <% ntable("#cccccc",2) %>
23
24   <TR>
25     <TD ALIGN="right">Package number</TD>
26     <TD BGCOLOR="#ffffff"><% $cust_pkg->pkgnum %></TD>
27   </TR>
28
29   <TR>
30     <TD ALIGN="right">Package</TD>
31     <TD BGCOLOR="#ffffff"><% $part_pkg->pkg %></TD>
32   </TR>
33
34   <TR>
35     <TD ALIGN="right">Comment</TD>
36     <TD BGCOLOR="#ffffff"><% $part_pkg->comment %></TD>
37   </TR>
38
39   <TR>
40     <TD ALIGN="right">Order taker</TD>
41     <TD BGCOLOR="#ffffff"><% $cust_pkg->otaker %></TD>
42   </TR>
43
44   <& .row_edit, cust_pkg=>$cust_pkg, column=>'setup',     label=>'Setup' &>
45   <& .row_edit, cust_pkg=>$cust_pkg, column=>'last_bill', label=>$last_bill_or_renewed &>
46   <& .row_edit, cust_pkg=>$cust_pkg, column=>'bill',      label=>$next_bill_or_prepaid_until &>
47   <& .row_edit, cust_pkg=>$cust_pkg, column=>'adjourn',   label=>'Adjournment', note=>'(will <b>suspend</b> this package when the date is reached)' &>
48   <& .row_display, cust_pkg=>$cust_pkg, column=>'susp',   label=>'Suspension' &>
49
50   <& .row_edit, cust_pkg=>$cust_pkg, column=>'expire',   label=>'Expiration', note=>'(will <b>cancel</b> this package when the date is reached)' &>
51   <& .row_display, cust_pkg=>$cust_pkg, column=>'cancel',   label=>'Cancellation' &>
52
53 <%def .row_edit>
54 <%args>
55   $cust_pkg
56   $column
57   $label
58   $note => ''
59 </%args>
60 % my $value = $cust_pkg->get($column);
61 % $value = $value ? time2str($format, $value) : "";
62
63   <TR>
64     <TD ALIGN="right"><% $label %> date</TD>
65     <TD>
66       <INPUT TYPE  = "text"
67              NAME  = "<% $column %>"
68              SIZE  = 32
69              ID    = "<% $column %>_text"
70              VALUE = "<% $value %>"
71       >
72       <IMG SRC   = "../images/calendar.png"
73            ID    = "<% $column %>_button"
74            STYLE = "cursor: pointer"
75            TITLE = "Select date"
76       >
77 %     if ( $note ) {
78         <BR><FONT SIZE=-1><% $note %></FONT>
79 %     }
80     </TD>
81   </TR>
82
83   <SCRIPT TYPE="text/javascript">
84     Calendar.setup({
85       inputField: "<% $column %>_text",
86       ifFormat:   "%m/%d/%Y",
87       button:     "<% $column %>_button",
88       align:      "BR"
89     });
90   </SCRIPT>
91
92 </%def>
93
94 <%def .row_display>
95 <%args>
96   $cust_pkg
97   $column
98   $label
99 </%args>
100 % if ( $cust_pkg->get($column) ) { 
101     <TR>
102       <TD ALIGN="right"><% $label %> date</TD>
103       <TD BGCOLOR="#ffffff"><% time2str($format,$cust_pkg->get($column)) %></TD>
104     </TR>
105 % } 
106 </%def>
107
108 </TABLE>
109
110 <BR>
111 <INPUT TYPE="submit" VALUE="Apply Changes">
112 </FORM>
113
114 <% include('/elements/footer.html') %>
115
116 <%once>
117
118 #my $format = "%c %z (%Z)";
119 my $format = "%m/%d/%Y %T %z (%Z)";
120
121 #false laziness w/view/cust_main/packages.html
122 #my( $billed_or_prepaid,
123
124 </%once>
125 <%init>
126
127 die "access denied"
128   unless $FS::CurrentUser::CurrentUser->access_right('Edit customer package dates');
129
130 my $error = '';
131 my( $pkgnum, $cust_pkg );
132
133 if ( $cgi->param('error') ) {
134
135   $pkgnum = $cgi->param('pkgnum');
136   if ( $cgi->param('error') eq '_bill_areyousure' ) {
137     if ( $cgi->param('bill') =~ /^([\s\d\/\:\-\(\w\)]*)$/ ) {
138       my $bill = $1;
139       $cgi->param('error', '');
140       $error = "You are attempting to set the next bill date to $bill, which is
141                 in the past.  This will charge the customer for the interval
142                 from $bill until now.  Are you sure you want to do this? ".
143                '<INPUT TYPE="checkbox" NAME="bill_areyousure" VALUE="1">';
144     }
145   }
146
147   #get package record
148   $cust_pkg = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
149   die "No package!" unless $cust_pkg;
150
151   foreach my $col (qw( setup last_bill bill adjourn expire )) {
152     my $value = $cgi->param($col);
153     $cust_pkg->set( $col, $value ? str2time($value) : '' );
154   }
155
156 } else {
157
158   my($query) = $cgi->keywords;
159   $query =~ /^(\d+)$/ or die "no pkgnum";
160   $pkgnum = $1;
161
162   #get package record
163   $cust_pkg = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
164   die "No package!" unless $cust_pkg;
165
166 }
167
168 my $part_pkg = qsearchs( 'part_pkg', { 'pkgpart' => $cust_pkg->pkgpart } );
169
170 my( $last_bill_or_renewed, $next_bill_or_prepaid_until );
171 unless ( $part_pkg->is_prepaid ) {
172   #$billed_or_prepaid = 'billed';
173   $last_bill_or_renewed = 'Last bill';
174   $next_bill_or_prepaid_until = 'Next bill';
175 } else {
176   #$billed_or_prepaid = 'prepaid';
177   $last_bill_or_renewed = 'Renewed';
178   $next_bill_or_prepaid_until = 'Prepaid until';
179 }
180
181 </%init>