diff options
author | ivan <ivan> | 2008-01-13 21:14:32 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-01-13 21:14:32 +0000 |
commit | 97e6cec67c0c99ce1b6f0667a09f1e009100189d (patch) | |
tree | 1d43c279a429c8284611e98e327a6049e971192d /httemplate/misc/bill.cgi | |
parent | c223e0957b194e24dccbda5bbc29841385cc0961 (diff) |
ACLs
Diffstat (limited to 'httemplate/misc/bill.cgi')
-rwxr-xr-x | httemplate/misc/bill.cgi | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/httemplate/misc/bill.cgi b/httemplate/misc/bill.cgi index 24dfd6bbd..3c3c48c54 100755 --- a/httemplate/misc/bill.cgi +++ b/httemplate/misc/bill.cgi @@ -1,45 +1,45 @@ -% -%#untaint custnum -%my($query) = $cgi->keywords; -%$query =~ /^(\d*)$/; -%my $custnum = $1; -%my $cust_main = qsearchs('cust_main',{'custnum'=>$custnum}); -%die "Can't find customer!\n" unless $cust_main; -% -%my $conf = new FS::Conf; -% -%my $error = $cust_main->bill( -%# 'time'=>$time -% ); -% -%unless ( $error ) { -% $error = $cust_main->apply_payments_and_credits -% || $cust_main->collect( -% #'invoice-time'=>$time, -% #'batch_card'=> 'yes', -% #'batch_card'=> 'no', -% #'report_badcard'=> 'yes', -% #'retry_card' => 'yes', -% -% 'retry' => 'yes', -% -% #this is used only by cust_main::batch_card -% #need to pick & create an actual config -% #value if we're going to turn this on -% #("realtime-backend" doesn't exist, -% # "backend-realtime" is for something -% # entirely different) -% #'realtime' => $conf->exists('realtime-backend'), -% ); -%} -% %if ( $error ) { -% - -<!-- mason kludge --> -% % errorpage($error); %} else { -% print $cgi->redirect(popurl(2). "view/cust_main.cgi?$custnum"); +<% $cgi->redirect(popurl(2). "view/cust_main.cgi?$custnum") %> %} -% +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Bill customer now'); + +#untaint custnum +my($query) = $cgi->keywords; +$query =~ /^(\d*)$/; +my $custnum = $1; +my $cust_main = qsearchs('cust_main',{'custnum'=>$custnum}); +die "Can't find customer!\n" unless $cust_main; + +my $conf = new FS::Conf; + +my $error = $cust_main->bill( +# 'time'=>$time + ); + +unless ( $error ) { + $error = $cust_main->apply_payments_and_credits + || $cust_main->collect( + #'invoice-time'=>$time, + #'batch_card'=> 'yes', + #'batch_card'=> 'no', + #'report_badcard'=> 'yes', + #'retry_card' => 'yes', + + 'retry' => 'yes', + + #this is used only by cust_main::batch_card + #need to pick & create an actual config + #value if we're going to turn this on + #("realtime-backend" doesn't exist, + # "backend-realtime" is for something + # entirely different) + #'realtime' => $conf->exists('realtime-backend'), + ); +} + +</%init> |