diff options
| author | cvs2git <cvs2git> | 2007-03-20 20:11:08 +0000 |
|---|---|---|
| committer | cvs2git <cvs2git> | 2007-03-20 20:11:08 +0000 |
| commit | 2d568f3b0ef121dd444c47298e8a2a6a8e7d1648 (patch) | |
| tree | f9fdc9e19c4e473cd85f6714d60c216bcea852b4 /httemplate/misc/cust_main_note-import.html | |
| parent | 463a8d80985520e6b05785bbf81846feed1b08ea (diff) | |
| parent | 9f4b217a918ce2fd00138fb91f50ee21a2a77bae (diff) | |
This commit was manufactured by cvs2svn to create branch
'FREESIDE_1_7_BRANCH'.
Diffstat (limited to 'httemplate/misc/cust_main_note-import.html')
| -rw-r--r-- | httemplate/misc/cust_main_note-import.html | 39 |
1 files changed, 39 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..d8fefa732 --- /dev/null +++ b/httemplate/misc/cust_main_note-import.html @@ -0,0 +1,39 @@ +<% 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') %> + +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Import'); + +</%init> + |
