diff options
Diffstat (limited to 'httemplate/elements/tr-select-payby.html')
-rw-r--r-- | httemplate/elements/tr-select-payby.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/httemplate/elements/tr-select-payby.html b/httemplate/elements/tr-select-payby.html new file mode 100644 index 000000000..94c303fc4 --- /dev/null +++ b/httemplate/elements/tr-select-payby.html @@ -0,0 +1,30 @@ +<& tr-td-label.html, 'label' => emt('Payment type'), @_ &> + + <TD <% $style %>> + + <& /elements/select-payby.html, + 'curr_value' => $curr_value, + %opt + &> + + </TD> + +</TR> + +<%init> + +my %opt = @_; + +my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; + +my $method = 'payby2longname'; +$method = 'cust_payby2longname' if $opt{'payby_type'} eq 'cust'; + +unless ( $opt{'paybys'} ) { + tie %{ $opt{'paybys'} }, 'Tie::IxHash', FS::payby->$method(); +} + +my $curr_value = $opt{'curr_value'} || $opt{'value'}; + +</%init> + |