blob: 7d32553010faa82deabe0b679bfa5b52e6f0a7fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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: '. ( ' '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>
|