diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/misc/tax-import.cgi | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/misc/tax-import.cgi')
-rw-r--r-- | httemplate/misc/tax-import.cgi | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/httemplate/misc/tax-import.cgi b/httemplate/misc/tax-import.cgi deleted file mode 100644 index ceb74645c..000000000 --- a/httemplate/misc/tax-import.cgi +++ /dev/null @@ -1,74 +0,0 @@ -<% include("/elements/header.html",'Batch Tax Rate Import') %> - -Import a CSV file set containing tax rate records. -<BR><BR> - -<% include( '/elements/form-file_upload.html', - 'name' => 'TaxRateUpload', - 'action' => 'process/tax-import.cgi', - 'num_files' => 6, - 'fields' => [ 'format', 'reload' ], - 'message' => 'Tax rates imported', - ) -%> - -<% &ntable("#cccccc", 2) %> - - <TR> - <TH ALIGN="right">Format</TH> - <TD> - <SELECT NAME="format"> - <!-- <OPTION VALUE="cch-update" SELECTED>CCH update (CSV) --> - <OPTION VALUE="cch">CCH import (CSV) - <!-- <OPTION VALUE="cch-fixed-update">CCH update (fixed length) --> - <OPTION VALUE="cch-fixed">CCH import (fixed length) - </SELECT> - </TD> - </TR> - - <TR> - <TH ALIGN="right">Replace existing data from this vendor</TH> - <TD> - <INPUT NAME="reload" TYPE="checkbox" VALUE="1" CHECKED> - </TD> - </TR> - - <% include( '/elements/file-upload.html', - 'field' => [ 'geocodefile', - 'codefile', - 'plus4file', - 'zipfile', - 'txmatrixfile', - 'detailfile', - ], - 'label' => [ 'geocode filename', - 'code filename', - 'plus4 filename', - 'zip filename', - 'txmatrix filename', - 'detail filename', - ], - 'debug' => 0, - ) - %> - - <TR> - <TD COLSPAN=2 ALIGN="center" STYLE="padding-top:6px"> - <INPUT TYPE = "submit" - VALUE = "Import CSV files" - onClick = "document.TaxRateUpload.submit.disabled=true;" - > - </TD> - </TR> - -</TABLE> - -</FORM> - -<% include('/elements/footer.html') %> -<%init> - -die "access denied" - unless $FS::CurrentUser::CurrentUser->access_right('Import'); - -</%init> |