v4 style
[freeside.git] / httemplate / elements / tr-select-taxproduct.html
1 % if ( $conf->config('tax_data_vendor') ) { # still not quite right
2   <%include('tr-td-label.html', @_) %>
3     <TD <% $cell_style %>><% include('select-taxproduct.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} || 'taxproductnum';
17
18 </%init>