This commit was generated by cvs2svn to compensate for changes in r9232,
[freeside.git] / httemplate / misc / cust_main-import_charges.cgi
1 <% include('/elements/header.html', 'Batch Customer Charge') %>
2
3 <FORM ACTION="process/cust_main-import_charges.cgi" METHOD="post" ENCTYPE="multipart/form-data">
4
5 Import a CSV file containing customer charges.<BR><BR>
6 Default file format is CSV, with the following field order: <i>custnum, amount, description</i><BR><BR>
7 If <i>amount</i> is negative, a credit will be applied instead.<BR><BR>
8 <BR><BR>
9
10 CSV Filename: <INPUT TYPE="file" NAME="csvfile"><BR><BR>
11 <INPUT TYPE="submit" VALUE="Import">
12
13 </FORM>
14
15 <% include('/elements/footer.html') %>
16
17 <%init>
18
19 die "access denied"
20   unless $FS::CurrentUser::CurrentUser->access_right('Import');
21
22 </%init>