diff options
Diffstat (limited to 'httemplate/elements/tr-select-payby.html')
-rw-r--r-- | httemplate/elements/tr-select-payby.html | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/httemplate/elements/tr-select-payby.html b/httemplate/elements/tr-select-payby.html deleted file mode 100644 index 354eb5580..000000000 --- a/httemplate/elements/tr-select-payby.html +++ /dev/null @@ -1,37 +0,0 @@ -<% include ('tr-td-label.html', 'label' => 'Payment type', @_ ) %> - - <TD <% $style %>> - - <% include( '/elements/select-payby.html', - 'curr_value' => $curr_value, - %opt - ) - %> - - </TD> - -</TR> - -<%init> - -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(); -} - -my $curr_value = $opt{'curr_value'} || $opt{'value'}; - -</%init> - |