diff options
author | jeff <jeff> | 2007-04-29 22:55:14 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-04-29 22:55:14 +0000 |
commit | 7cdcb8d249f66efdbd5eb4efdd6e07f0f7948b49 (patch) | |
tree | 4b5cf5789e1f37d143490293f84c4651d7b0024b /httemplate/view/cust_main/billing.html | |
parent | ca87d33422b2d19d28773b6f2937cdb84863b124 (diff) |
ticket 1568 config options for new echeck fields and addition to selfservice interface
Diffstat (limited to 'httemplate/view/cust_main/billing.html')
-rw-r--r-- | httemplate/view/cust_main/billing.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 42467bb31..3fcb5d460 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -90,10 +90,12 @@ Billing information <TD ALIGN="right">Bank name</TD> <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD> </TR> +% if ( $conf->exists('show_bankstate') ) { <TR> <TD ALIGN="right"><% $paystate_label %></TD> <TD BGCOLOR="#ffffff"><% $cust_main->paystate || ' ' %></TD> </TR> +% } % } elsif ( $cust_main->payby eq 'LECB' ) { % $cust_main->payinfo =~ /^(\d{3})(\d{3})(\d{4})$/; % my $payinfo = "$1-$2-$3"; |