add elements for selecting taxproduct
[freeside.git] / httemplate / elements / tr-select-taxproduct.html
1 % if ( $conf->exists('enable_taxproducts') ) { 
2
3     <TR>
4       <TD COLSPAN="2">
5         <% include('select-taxproduct.html', @_) %>
6       </TD>
7     </TR>
8
9 % } else { 
10
11     <INPUT TYPE="hidden" NAME="taxproductnum" VALUE="<% $opt{taxproductnum} %>">
12     <INPUT TYPE="hidden" NAME="tax_override"  VALUE="<% $opt{tax_override}  %>">
13
14 % } 
15
16 <%init>
17
18 my $conf = new FS::Conf; 
19
20 my %opt = @_;
21
22 </%init>