This commit was generated by cvs2svn to compensate for changes in r8690,
[freeside.git] / httemplate / misc / cust_main_note-import.html
1 <% include("/elements/header.html",'Batch Customer Note Import') %>
2
3 <FORM ACTION="cust_main_note-import.cgi" METHOD="post" ENCTYPE="multipart/form-data">
4
5 Import a CSV file containing customer notes records.
6 <BR><BR>
7
8 File format is CSV, with the following field order: <i>[custnum,] last, first, notefield1, notefield2, notefield3...</i>
9 <BR>
10 The optional custnum field is identified by being numeric.
11 Anything after the character sequence #! is ignored.
12 <BR><BR>
13
14 <% &ntable("#cccccc") %>
15
16 <TR>
17   <TH ALIGN="right">CSV filename</TH>
18   <TD><INPUT TYPE="file" NAME="csvfile"></TD>
19 </TR>
20 <TR>
21   <TH ALIGN="right">Include additional possibilites when exact match is found</TH>
22   <TD><INPUT TYPE="checkbox" NAME="fuzzies"></TD>
23 </TR>
24
25 </TABLE>
26 <BR><BR>
27
28 <INPUT TYPE="submit" VALUE="Load and match">
29 </FORM>
30
31 <% include('/elements/footer.html') %>
32
33 <%init>
34
35 die "access denied"
36   unless $FS::CurrentUser::CurrentUser->access_right('Import');
37
38 </%init>
39