diff options
author | jeff <jeff> | 2007-03-20 20:11:07 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-03-20 20:11:07 +0000 |
commit | 9f4b217a918ce2fd00138fb91f50ee21a2a77bae (patch) | |
tree | 22a3d31bb2094276f7369cb7b8be6103c5d37ec8 /httemplate/misc/cust_main_note-import.html | |
parent | ac0ffef1dd511febd1ffa851dfd8b3772b968b09 (diff) |
acls on new import
Diffstat (limited to 'httemplate/misc/cust_main_note-import.html')
-rw-r--r-- | httemplate/misc/cust_main_note-import.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/misc/cust_main_note-import.html b/httemplate/misc/cust_main_note-import.html index 67f49f326..d8fefa732 100644 --- a/httemplate/misc/cust_main_note-import.html +++ b/httemplate/misc/cust_main_note-import.html @@ -5,7 +5,7 @@ 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> +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. @@ -30,3 +30,10 @@ Anything after the character sequence #! is ignored. <% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Import'); + +</%init> + |