support importing charges by agent_custid
[freeside.git] / httemplate / misc / process / cust_main-import_charges.cgi
index 14df1bd..bda3e3b 100644 (file)
@@ -1,26 +1,24 @@
-<%
+% if ( $error ) {
+%   errorpage($error);
+%  } else {
+     <% include('/elements/header.html','Import successful') %> 
+     <% include('/elements/footer.html') %> 
+%  }
+<%init>
 
-  my $fh = $cgi->upload('csvfile');
-  #warn $cgi;
-  #warn $fh;
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('Import');
 
-  my $error = defined($fh)
-    ? FS::cust_main::batch_charge( {
-        filehandle => $fh,
-        'fields'    => [qw( custnum amount pkg )],
-      } )
-    : 'No file';
+my $fh = $cgi->upload('csvfile');
+#warn $cgi;
+#warn $fh;
 
-  if ( $error ) {
-    %>
-    <!-- mason kludge -->
-    <%
-    eidiot($error);
-#    $cgi->param('error', $error);
-#    print $cgi->redirect( "${p}cust_main-import_charges.cgi
-  } else {
-    %>
-    <!-- mason kludge -->
-    <%= header('Import sucessful') %> <%
-  }
-%>
+my $error = defined($fh)
+  ? FS::cust_main::batch_charge( {
+      filehandle => $fh,
+      'agentnum' => scalar($cgi->param('agentnum')),
+      'format'   => scalar($cgi->param('format')),
+    } )
+  : 'No file';
+
+</%init>