1 <% include("/elements/header.html",'Customer package - Edit dates') %>
4 %# "View this customer (#$custnum)" => popurl(2). "view/cust_main.cgi?$custnum",
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>
12 <FORM NAME="formname" ACTION="process/REAL_cust_pkg.cgi" METHOD="POST">
13 <INPUT TYPE="hidden" NAME="pkgnum" VALUE="<% $pkgnum %>">
15 % # raw error from below
17 <FONT SIZE="+1" COLOR="#ff0000">Error: <% $error %></FONT>
19 % #or, regular error handler
20 <% include('/elements/error.html') %>
22 <% ntable("#cccccc",2) %>
25 <TD ALIGN="right">Package number</TD>
26 <TD BGCOLOR="#ffffff"><% $cust_pkg->pkgnum %></TD>
30 <TD ALIGN="right">Package</TD>
31 <TD BGCOLOR="#ffffff"><% $part_pkg->pkg %></TD>
35 <TD ALIGN="right">Custom</TD>
36 <TD BGCOLOR="#ffffff"><% $part_pkg->custom %></TD>
40 <TD ALIGN="right">Comment</TD>
41 <TD BGCOLOR="#ffffff"><% $part_pkg->comment %></TD>
45 <TD ALIGN="right">Order taker</TD>
46 <TD BGCOLOR="#ffffff"><% $cust_pkg->otaker %></TD>
49 <& .row_display, cust_pkg=>$cust_pkg, column=>'order_date', label=>'Order' &>
50 % if ( $cust_pkg->setup && ! $cust_pkg->start_date ) {
51 <& .row_display, cust_pkg=>$cust_pkg, column=>'start_date', label=>'Start' &>
53 <& .row_edit, cust_pkg=>$cust_pkg, column=>'start_date', label=>'Start' &>
56 <& .row_edit, cust_pkg=>$cust_pkg, column=>'setup', label=>'Setup' &>
57 <& .row_edit, cust_pkg=>$cust_pkg, column=>'last_bill', label=>$last_bill_or_renewed &>
58 <& .row_edit, cust_pkg=>$cust_pkg, column=>'bill', label=>$next_bill_or_prepaid_until &>
59 %#if ( $cust_pkg->contract_end or $part_pkg->option('contract_end_months',1) ) {
60 <& .row_edit, cust_pkg=>$cust_pkg, column=>'contract_end',label=>'Contract end' &>
62 <& .row_display, cust_pkg=>$cust_pkg, column=>'adjourn', label=>'Adjournment', note=>'(will <b>suspend</b> this package when the date is reached)' &>
63 <& .row_display, cust_pkg=>$cust_pkg, column=>'susp', label=>'Suspension' &>
65 <& .row_display, cust_pkg=>$cust_pkg, column=>'expire', label=>'Expiration', note=>'(will <b>cancel</b> this package when the date is reached)' &>
66 <& .row_display, cust_pkg=>$cust_pkg, column=>'cancel', label=>'Cancellation' &>
76 % my $value = $cust_pkg->get($column);
77 % $value = $value ? time2str($format, $value) : "";
80 <TD ALIGN="right"><% $label %> date</TD>
83 NAME = "<% $column %>"
85 ID = "<% $column %>_text"
86 VALUE = "<% $value %>"
88 <IMG SRC = "../images/calendar.png"
89 ID = "<% $column %>_button"
90 STYLE = "cursor: pointer"
94 <BR><FONT SIZE=-1><% $note %></FONT>
99 <SCRIPT TYPE="text/javascript">
101 inputField: "<% $column %>_text",
102 ifFormat: "<% $date_format %>",
103 button: "<% $column %>_button",
117 % if ( $cust_pkg->get($column) ) {
119 <TD ALIGN="right"><% $label %> date</TD>
120 <TD BGCOLOR="#ffffff"><% time2str($format,$cust_pkg->get($column)) %>
122 <BR><FONT SIZE=-1><% $note %></FONT>
132 <INPUT TYPE="submit" VALUE="Apply Changes">
135 <% include('/elements/footer.html') %>
138 my $conf = new FS::Conf;
139 my $date_format = $conf->config('date_format') || '%m/%d/%Y';
141 my $format = $date_format. ' %T'; # %z (%Z)';
147 unless $FS::CurrentUser::CurrentUser->access_right('Edit customer package dates');
151 my( $pkgnum, $cust_pkg );
153 if ( $cgi->param('error') ) {
155 $pkgnum = $cgi->param('pkgnum');
157 if ( $cgi->param('error') =~ /^_/ ) {
160 my %errors = map { $_=>1 } split(',', $cgi->param('error'));
161 $cgi->param('error', '');
163 if ( $errors{'_bill_areyousure'} ) {
164 if ( $cgi->param('bill') =~ /^([\s\d\/\:\-\(\w\)]*)$/ ) {
167 "You are attempting to set the next bill date to $bill, which is
168 in the past. This will charge the customer for the interval
169 from $bill until now. Are you sure you want to do this? ".
170 '<INPUT TYPE="checkbox" NAME="bill_areyousure" VALUE="1">';
174 if ( $errors{'_setup_areyousure'} ) {
176 "You are attempting to remove the setup date. This will re-charge the
177 customer for the setup fee. Are you sure you want to do this? ".
178 '<INPUT TYPE="checkbox" NAME="setup_areyousure" VALUE="1">';
181 if ( $errors{'_start'} ) {
183 "You are attempting to add a start date to a package that has already
187 $error = join('<BR><BR>', @errors );
192 $cust_pkg = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
193 die "No package!" unless $cust_pkg;
195 foreach my $col (qw( start_date setup last_bill bill adjourn expire )) {
196 my $value = $cgi->param($col);
197 $cust_pkg->set( $col, $value ? parse_datetime($value) : '' );
202 my($query) = $cgi->keywords;
203 $query =~ /^(\d+)$/ or die "no pkgnum";
207 $cust_pkg = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum});
208 die "No package!" unless $cust_pkg;
212 my $part_pkg = qsearchs( 'part_pkg', { 'pkgpart' => $cust_pkg->pkgpart } );
214 my( $last_bill_or_renewed, $next_bill_or_prepaid_until );
215 unless ( $part_pkg->is_prepaid ) {
216 #$billed_or_prepaid = 'billed';
217 $last_bill_or_renewed = 'Last bill';
218 $next_bill_or_prepaid_until = 'Next bill';
220 #$billed_or_prepaid = 'prepaid';
221 $last_bill_or_renewed = 'Renewed';
222 $next_bill_or_prepaid_until = 'Prepaid until';