summaryrefslogtreecommitdiff
path: root/httemplate/misc/process
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-11-01 12:56:48 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-12-04 10:00:19 -0500
commitf47f799b5b48bbd9997a02c9798a081ac5640ee9 (patch)
treec2ac366a2e1e4e3680290323823ceb463a17108d /httemplate/misc/process
parent7e28826efeda93775671b85f559e77b75aabaa17 (diff)
RT# 75095 - Added Ooma integration to one time charges
Diffstat (limited to 'httemplate/misc/process')
-rw-r--r--httemplate/misc/process/cust_main-import_charges.cgi20
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 d877ad17d..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::Import_Charges::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>