Option to ignore old CDRs, RT#81480
[freeside.git] / httemplate / elements / tr-select-payby.html
index 354eb55..94c303f 100644 (file)
@@ -1,12 +1,11 @@
-<% include ('tr-td-label.html', 'label' => 'Payment type', @_ ) %>
+<& tr-td-label.html, 'label' => emt('Payment type'), @_  &>
 
   <TD <% $style %>>
 
-    <% include( '/elements/select-payby.html'
+    <& /elements/select-payby.html
                   'curr_value'  => $curr_value,
                   %opt
-              )
-    %>
+    &>
 
   </TD>
 
 
 my %opt = @_;
 
-#my $onchange = $opt{'onchange'}
-#                 ? 'onChange="'. $opt{'onchange'}. '(this)"'
-#                 : '';
-
 my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
 
 my $method = 'payby2longname';
 $method = 'cust_payby2longname'  if $opt{'payby_type'} eq 'cust';
-#$method = 'event_payby2longname' if $opt{'payby_type'} eq 'event';
-#$method = 'pay_payby2longname'   if $opt{'payby_type'} eq 'pay';
 
 unless ( $opt{'paybys'} ) {
   tie %{ $opt{'paybys'} }, 'Tie::IxHash', FS::payby->$method();