summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-taxproduct.html
blob: f9f192a28b95c89d5b833c1138d14a8474c386f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
% if ( $conf->exists('enable_taxproducts') ) { 

    <TR>
      <TD COLSPAN="2">
        <% include('select-taxproduct.html', @_) %>
      </TD>
    </TR>

% } else { 

    <INPUT TYPE="hidden" NAME="taxproductnum" VALUE="<% $opt{taxproductnum} %>">
    <INPUT TYPE="hidden" NAME="tax_override"  VALUE="<% $opt{tax_override}  %>">

% } 

<%init>

my $conf = new FS::Conf; 

my %opt = @_;

</%init>