RT# 82137 - default payment amount now has processing fee in total if processing...
[freeside.git] / httemplate / elements / tr-select-taxoverride.html
1 % if ( FS::TaxEngine->new->info->{override} ) {
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 %opt = @_;
13 my $cell_style = $opt{'cell_style'}? 'STYLE="'. $opt{cell_style}. '"' : '';
14 my $name = $opt{element_name} || $opt{field} || 'tax_override';
15
16 </%init>