combine ticket notification scrips, #15353
[freeside.git] / httemplate / elements / tr-select-taxoverride.html
1 % if ( $conf->exists('enable_taxproducts') ) { 
2   <%include('tr-td-label.html', @_) %>
3     <TD <% $cell_style %>><% include('select-taxoverride.html', @_) %></TD>
4   </TR>
5
6 % } else { 
7   <INPUT TYPE="hidden" NAME="<% $name %>" VALUE="<% $opt{value} %>">
8 % } 
9
10 <%init>
11
12 my $conf = new FS::Conf;
13
14 my %opt = @_;
15 my $cell_style = $opt{'cell_style'}? 'STYLE="'. $opt{cell_style}. '"' : '';
16 my $name = $opt{element_name} || $opt{field} || 'tax_override';
17
18 </%init>