summaryrefslogtreecommitdiff
path: root/httemplate/misc/rate_edit_excel.html
diff options
context:
space:
mode:
authorivan <ivan>2009-05-04 00:22:44 +0000
committerivan <ivan>2009-05-04 00:22:44 +0000
commit9f73c5d4c0954b3a03bfcb5e010fc288a7071209 (patch)
treebfe63d695b93f8899a2510393c2b315ac1f569d9 /httemplate/misc/rate_edit_excel.html
parentb9ec1f7c51efb5122b7dc88ccadb34e9e99a3b6f (diff)
add menu item and page for d/ling and edit rates with excel. RT#5108
Diffstat (limited to 'httemplate/misc/rate_edit_excel.html')
-rw-r--r--httemplate/misc/rate_edit_excel.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/httemplate/misc/rate_edit_excel.html b/httemplate/misc/rate_edit_excel.html
new file mode 100644
index 0000000..7d32553
--- /dev/null
+++ b/httemplate/misc/rate_edit_excel.html
@@ -0,0 +1,51 @@
+<% include('/elements/header.html', 'Edit rates with Excel' ) %>
+
+<% include( '/elements/form-file_upload.html',
+ 'name' => 'RateImportForm',
+ 'action' => 'process/rate_edit_excel.html',
+ 'num_files' => 1,
+ 'fields' => [ 'format' ], #?
+ 'message' => 'Rate edit successful',
+ 'url' => $p."browse/rate_region.html",
+ )
+%>
+
+<% &ntable("#cccccc", 2) %>
+
+ <TR>
+ <TH ALIGN="left">1. Download current rates:</TH>
+ <TD>
+ <A HREF="<%$p%>/browse/rate_region.html?show_rates=1;_type=regions.xls">Download rate spreadsheet</A>
+ </TD>
+ </TR>
+
+ <TR>
+ <TH ALIGN="left" COLSPAN=2>2. Edit rates with Excel (or other .XLS-compatible application)</TH>
+ </TR>
+
+ <% include( '/elements/file-upload.html',
+ 'field' => 'file',
+ 'label' => '3. Upload edited rate file: '. ( '&nbsp'x4 ), #yuck
+ )
+ %>
+
+ <TR>
+ <TD COLSPAN=2 ALIGN="center" STYLE="padding-top:6px">
+ <INPUT TYPE = "submit"
+ ID = "submit"
+ VALUE = "Upload"
+ onClick = "document.RateImportForm.submit.disabled=true;"
+ >
+ </TD>
+ </TR>
+
+
+</TABLE>
+
+<% include('/elements/footer.html') %>
+<%init>
+
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
+
+</%init>