summaryrefslogtreecommitdiff
path: root/httemplate/misc/tax_edit_excel.html
blob: 1546393d910fdd6ab737881dbb31bf8d4ec64636 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<% include('/elements/header.html', 'Edit  tax rates with Excel' ) %>

% # 'name' => 'RateImportForm',

<& /elements/form-file_upload.html,
     'name'      => 'TaxEditForm',
     'action'    => 'process/tax_edit_excel.html',
     'num_files' => 1,
     'fields'    => [ 'format' ],
     'message'   => 'Tax Rate edit successful',
     'url'       => $p."browse/cust_main_county.cgi",
     'onsubmit'  => "document.TaxEditForm.submitButton.disabled=true;"
&>

<% &ntable("#cccccc", 2) %>

  <TR>
    <TD ALIGN="left" COLSPAN=2>File format should be as follows:<BR>
      <TABLE>
        <TR><TD><B>Country</B> as standard two letter code</TD></TR>
        <TR><TD><B>State</B> as standard two letter code</TD></TR>
        <TR><TD><B>County name</B></TD></TR>
        <TR><TD><B>City name</B></TD></TR>
        <TR><TD><B>Tax name</B></TD></TR>
        <TR><TD><B>Tax rate</B></TD></TR>
      </TABLE><BR>
      * first row should be blank or contain headers<BR>
      * Tax rate should be formated as a number not percentage.
      <P>
    </TD>
  </TR>
  <TR>
    <TH ALIGN="left" COLSPAN=2>Upload tax rates with Excel (or other .XLS-compatible application)</TH>
  </TR>


  <% include( '/elements/file-upload.html',
                'field' => 'file',
                'label' => '',
                'label_align' => 'left',
            )
  %>

  <INPUT TYPE="hidden" NAME="format" VALUE="default">

  <TR>
    <TD COLSPAN=2 ALIGN="center" STYLE="padding-top:6px">
      <INPUT TYPE    = "submit"
             ID      = "submitButton"
             NAME    = "submitButton"
             VALUE   = "Upload"
      >
    </TD>
  </TR>


</TABLE>

<% include('/elements/footer.html') %>
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');

my $sth = dbh->prepare('SELECT COUNT(*) FROM rate_detail WHERE conn_charge > 0 OR conn_sec > 0 LIMIT 1')
  or die dbh->errstr;
$sth->execute or die $sth->errstr;
my $have_conn = $sth->fetchrow_arrayref->[0];

</%init>