diff options
author | mark <mark> | 2010-07-06 12:18:11 +0000 |
---|---|---|
committer | mark <mark> | 2010-07-06 12:18:11 +0000 |
commit | 4a5fcee4c1aa3ca07ac0a7921f9bd0e645ddc788 (patch) | |
tree | 7bd4b6a1ccfd7d79ef5c91fb54d59bad00bdd6a7 /httemplate/misc/bill.cgi | |
parent | f52e5491164eb407549716ebfd36fae6f692b1c1 (diff) |
"Bill now" link uses job queue/progressbar, RT#8995
Diffstat (limited to 'httemplate/misc/bill.cgi')
-rwxr-xr-x | httemplate/misc/bill.cgi | 36 |
1 files changed, 3 insertions, 33 deletions
diff --git a/httemplate/misc/bill.cgi b/httemplate/misc/bill.cgi index 6151dce51..2bc43d7b3 100755 --- a/httemplate/misc/bill.cgi +++ b/httemplate/misc/bill.cgi @@ -1,38 +1,8 @@ -%if ( $error ) { -% errorpage($error); -%} else { -<% $cgi->redirect(popurl(2). "view/cust_main.cgi?$custnum") %> -%} +<% $server->process %> <%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_and_collect( 'fatal' => 'return', - 'retry' => 'yes', - ); - - #'invoice-time'=>$time, - #'batch_card'=> 'yes', - #'batch_card'=> 'no', - #'report_badcard'=> 'yes', - #'retry_card' => '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'), - +my $server = FS::UI::Web::JSRPC->new('FS::cust_main::process_bill_and_collect', $cgi); </%init> + |