summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-payby.html
diff options
context:
space:
mode:
authorivan <ivan>2008-03-01 22:23:41 +0000
committerivan <ivan>2008-03-01 22:23:41 +0000
commitbd39db7a960f64d6a19e714aa8d74ccab1fd04c5 (patch)
tree8211e13c8ebfed934312c3393b488060982e8ad2 /httemplate/elements/tr-select-payby.html
parent162a742110ede26cbb904b1f38c6a99e4b692eef (diff)
add payby selection to adv. customer search
Diffstat (limited to 'httemplate/elements/tr-select-payby.html')
-rw-r--r--httemplate/elements/tr-select-payby.html37
1 files changed, 37 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..354eb5580
--- /dev/null
+++ b/httemplate/elements/tr-select-payby.html
@@ -0,0 +1,37 @@
+<% 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>
+