diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-11-01 12:56:48 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-02-08 08:37:30 -0500 |
commit | 1050e60086386799dbba6e5bbcfc5a29e78eddb5 (patch) | |
tree | e5a002c4c6941f45b1cd974d758439423c62ddc6 /httemplate/misc/process | |
parent | 51766e3b6bb6188c121d3829614738a927c23a2c (diff) |
RT# 75095 - Added Ooma integration to one time charges
Conflicts:
FS/FS/cust_main/Import_Charges.pm
httemplate/misc/process/cust_main-import_charges.cgi
Diffstat (limited to 'httemplate/misc/process')
-rw-r--r-- | httemplate/misc/process/cust_main-import_charges.cgi | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/httemplate/misc/process/cust_main-import_charges.cgi b/httemplate/misc/process/cust_main-import_charges.cgi index bda3e3b70..42ca82592 100644 --- a/httemplate/misc/process/cust_main-import_charges.cgi +++ b/httemplate/misc/process/cust_main-import_charges.cgi @@ -1,24 +1,10 @@ -% if ( $error ) { -% errorpage($error); -% } else { - <% include('/elements/header.html','Import successful') %> - <% include('/elements/footer.html') %> -% } +<% $server->process %> <%init> die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Import'); -my $fh = $cgi->upload('csvfile'); -#warn $cgi; -#warn $fh; - -my $error = defined($fh) - ? FS::cust_main::batch_charge( { - filehandle => $fh, - 'agentnum' => scalar($cgi->param('agentnum')), - 'format' => scalar($cgi->param('format')), - } ) - : 'No file'; +my $server = + new FS::UI::Web::JSRPC 'FS::cust_main::Import_Charges::batch_charge', $cgi; </%init> |