X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fmisc%2Fupload-batch.cgi;h=be80b1ff75a94a628c04ba622fcda3b4563f4abb;hp=5d01501778b81c597530f0e40ac8b0068f058b04;hb=1fc8addc56f8daf12397da568eb1ac1b27fd3984;hpb=b8cfd0780aa40bb07f3215bf9cb58011f5e32a35 diff --git a/httemplate/misc/upload-batch.cgi b/httemplate/misc/upload-batch.cgi index 5d0150177..be80b1ff7 100644 --- a/httemplate/misc/upload-batch.cgi +++ b/httemplate/misc/upload-batch.cgi @@ -1,30 +1,10 @@ -<% +<% $server->process %> +<%init> - my $fh = $cgi->upload('batch_results'); - my $filename = $cgi->param('batch_results'); - $filename =~ /^(.*[\/\\])?([^\/\\]+)$/ - or die "unparsable filename: $filename\n"; - my $paybatch = $2; +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Process batches'); - my $error = defined($fh) - ? FS::cust_pay_batch::import_results( { - 'filehandle' => $fh, - 'format' => $cgi->param('format'), - 'paybatch' => $paybatch, - } ) - : 'No file'; - - if ( $error ) { - %> - - <% - eidiot($error); -# $cgi->param('error', $error); -# print $cgi->redirect( "${p}cust_main-import.cgi - } else { - %> - - <%= header('Batch results upload sucessful') %> <% - } -%> +my $server = + new FS::UI::Web::JSRPC 'FS::pay_batch::process_import_results', $cgi; +