diff options
author | jeff <jeff> | 2007-03-20 17:03:43 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-03-20 17:03:43 +0000 |
commit | 587f0384fb03179f6b504daeada93e193d2ea27f (patch) | |
tree | 0998d5d51ac6112bb80b24031fe7fdfdacc0d48d /httemplate/misc/cust_main_note-import.html | |
parent | 7b3d074cbb694330334469510548d98eebe196ed (diff) |
ticket 1418, a tool for customer note importation
Diffstat (limited to 'httemplate/misc/cust_main_note-import.html')
-rw-r--r-- | httemplate/misc/cust_main_note-import.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/httemplate/misc/cust_main_note-import.html b/httemplate/misc/cust_main_note-import.html new file mode 100644 index 000000000..67f49f326 --- /dev/null +++ b/httemplate/misc/cust_main_note-import.html @@ -0,0 +1,32 @@ +<% include("/elements/header.html",'Batch Customer Note Import') %> + +<FORM ACTION="cust_main_note-import.cgi" METHOD="post" ENCTYPE="multipart/form-data"> + +Import a CSV file containing customer notes records. +<BR><BR> + +File format is CSV, with the following field order: <i>[custnum], last, first, notefield1, notefield2, notefield3...</i> +<BR> +The optional custnum field is identified by being numeric. +Anything after the character sequence #! is ignored. +<BR><BR> + +<% &ntable("#cccccc") %> + +<TR> + <TH ALIGN="right">CSV filename</TH> + <TD><INPUT TYPE="file" NAME="csvfile"></TD> +</TR> +<TR> + <TH ALIGN="right">Include additional possibilites when exact match is found</TH> + <TD><INPUT TYPE="checkbox" NAME="fuzzies"></TD> +</TR> + +</TABLE> +<BR><BR> + +<INPUT TYPE="submit" VALUE="Load and match"> +</FORM> + +<% include('/elements/footer.html') %> + |