X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fmisc%2Fupload-batch.cgi;h=5b4961be336583a474a10f3ff12966ceb52412ca;hb=be10e7a1421c13eec4b1bb3676eaf5c84344e601;hp=565a6da5cf876e31ad1e65f03c3947c56ec77faf;hpb=c8f80bd5aaeb0f3844a7cece4bfe250d4f89f745;p=freeside.git diff --git a/httemplate/misc/upload-batch.cgi b/httemplate/misc/upload-batch.cgi index 565a6da5c..5b4961be3 100644 --- a/httemplate/misc/upload-batch.cgi +++ b/httemplate/misc/upload-batch.cgi @@ -1,28 +1,32 @@ -<% +% +% +% my $fh = $cgi->upload('batch_results'); +% $cgi->param('batchnum') =~ /^(\d+)$/; +% my $paybatch = $1; +% +% my $error = defined($fh) +% ? FS::cust_pay_batch::import_results( { +% 'filehandle' => $fh, +% 'format' => $cgi->param('format'), +% 'paybatch' => $paybatch, +% } ) +% : 'No file'; +% +% if ( $error ) { +% - my $fh = $cgi->upload('batch_results'); - my $filename = $cgi->param('batch_results'); - my $paybatch = basename($filename); - - 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 { - %> +% +% eidiot($error); +%# $cgi->param('error', $error); +%# print $cgi->redirect( "${p}cust_main-import.cgi +% } else { +% + - <%= header('Batch results upload sucessful') %> <% - } -%> + <% include("/elements/header.html",'Batch results upload successful') %> +% +% } +% +