X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2FREAL_cust_pkg.cgi;h=78dd0fafaf9749a901252b9b963b74259395ad1f;hb=8f5c91d6c7a8dc85a8b6768a149b4c7b3e144c38;hp=d9b7579f68200941a4ebe86ca936d08adf017fa8;hpb=4eec09b9bb69dea116c0f8b5fa81862125aa587c;p=freeside.git diff --git a/httemplate/edit/REAL_cust_pkg.cgi b/httemplate/edit/REAL_cust_pkg.cgi index d9b7579f6..78dd0fafa 100755 --- a/httemplate/edit/REAL_cust_pkg.cgi +++ b/httemplate/edit/REAL_cust_pkg.cgi @@ -1,12 +1,17 @@ - <% -# my $error =''; my $pkgnum = ''; if ( $cgi->param('error') ) { $error = $cgi->param('error'); $pkgnum = $cgi->param('pkgnum'); + if ( $error eq '_bill_areyousure' ) { + my $bill = $cgi->param('bill'); + $error = "You are attempting to set the next bill date to $bill, which is + in the past. This will charge the customer for the interval + from $bill until now. Are you sure you want to do this? ". + ''; + } } else { my($query) = $cgi->keywords; $query =~ /^(\d+)$/ or die "no pkgnum"; @@ -22,20 +27,24 @@ if ( $error ) { #$cust_pkg->$_(str2time($cgi->param($_)) foreach qw(setup bill); $cust_pkg->setup(str2time($cgi->param('setup'))); $cust_pkg->bill(str2time($cgi->param('bill'))); + $cust_pkg->last_bill(str2time($cgi->param('last_bill'))); } #my $custnum = $cust_pkg->getfield('custnum'); -print header('Package Edit'); #, menubar( +%> + +<%= header('Customer package - Edit dates') %> +<% +#, menubar( # "View this customer (#$custnum)" => popurl(2). "view/cust_main.cgi?$custnum", # 'Main Menu' => popurl(2) #)); - %> - - - - + + + + <% @@ -49,67 +58,106 @@ my($pkg,$comment)=($part_pkg->getfield('pkg'),$part_pkg->getfield('comment')); my($setup,$bill)=($cust_pkg->getfield('setup'),$cust_pkg->getfield('bill')); my $otaker = $cust_pkg->getfield('otaker'); -print '
', qq!!; +%> + + + + +<% if ( $error ) { %> + Error: <%= $error %> +<% } %> -print qq!Error: $error! - if $error; +<% #my $format = "%c %z (%Z)"; my $format = "%m/%d/%Y %T %z (%Z)"; -print ntable("#cccccc",2), - 'Package number', - $pkgnum, '', - 'Package', - $pkg, '', - 'Comment', - $comment, '', - 'Order taker', - $otaker, '', - 'Setup date'. - ''. - ' '. - ''; - -print 'Last bill date', - ''. - ' '. - '' - if $cust_pkg->dbdef_table->column('last_bill'); - -print 'Next bill date', - ''. - ' '. - ''; - -print 'Suspension date', - time2str($format, $susp), '' - if $susp; - -#print 'Expiration date', -# time2str("%D",$expire), '' -# if $expire; -print 'Expiration date'. - '', - ''. - ' '. - '
(will cancel this package'. - ' when the date is reached)'. - ''; - -print 'Cancellation date', - time2str($format, $cancel), '' - if $cancel; +#false laziness w/view/cust_main/packages.html +#my( $billed_or_prepaid, +my( $last_bill_or_renewed, $next_bill_or_prepaid_until ); +unless ( $part_pkg->is_prepaid ) { + #$billed_or_prepaid = 'billed'; + $last_bill_or_renewed = 'Last bill'; + $next_bill_or_prepaid_until = 'Next bill'; +} else { + #$billed_or_prepaid = 'prepaid'; + $last_bill_or_renewed = 'Renewed'; + $next_bill_or_prepaid_until = 'Prepaid until'; +} %> + +<%= ntable("#cccccc",2) %> + + + Package number + <%= $pkgnum %> + + + + Package + <%= $pkg %> + + + + Comment + <%= $comment %> + + + + Order taker + <%= $otaker %> + + + + Setup date + + "> + + + + + + <%= $last_bill_or_renewed %> date + + "> + + + + + + <%= $next_bill_or_prepaid_until %> date + + "> + + + + + <% if ( $susp ) { %> + + Suspension date + <%= time2str($format, $susp) %> + + <% } %> + + + Expiration date + + "> + +
(will cancel this package when the date is reached) + + + + <% if ( $cancel ) { %> + + Cancellation date + <%= time2str($format, $cancel) %> + + <% } %> + +