diff options
author | ivan <ivan> | 2011-10-17 20:56:14 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-10-17 20:56:14 +0000 |
commit | 17470f0458a1cf5cf3ef7ebbcbbda836d37a7ee1 (patch) | |
tree | 2e57c4479a84d547c816bfb076029e74e8d44ba4 /httemplate/view | |
parent | 83bc1fdf7145a2525b7e48f1dc6064e55ab4f31b (diff) |
remove echeck-no_routing, never should have been there in the first place
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/cust_main/billing.html | 10 | ||||
-rw-r--r-- | httemplate/view/cust_main/payment_history.html | 6 |
2 files changed, 5 insertions, 11 deletions
diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 09c0b4d1d..1e7adf000 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -93,12 +93,10 @@ </TD> </TR> -% unless ( $conf->exists('echeck-no_routing') ) { - <TR> - <TD ALIGN="right"><% mt('ABA/Routing code') |h %></TD> - <TD BGCOLOR="#ffffff"><% $aba %></TD> - </TR> -% } +<TR> + <TD ALIGN="right"><% mt('ABA/Routing code') |h %></TD> + <TD BGCOLOR="#ffffff"><% $aba %></TD> +</TR> % if ( $conf->exists('cust_main-require-bank-branch') ) { <TR> diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html index 24988eae4..64a708976 100644 --- a/httemplate/view/cust_main/payment_history.html +++ b/httemplate/view/cust_main/payment_history.html @@ -513,11 +513,7 @@ sub translate_payinfo { $payinfo = $object->paymask; } elsif ( $payby eq 'CHEK' ) { my( $account, $aba ) = split('@', $object->paymask ); - if ( $conf->exists('echeck-no_routing') ) { - $payinfo = emt("Acct #[_1]", $account); - } else { - $payinfo = emt("ABA [_1], Acct #[_2]",$aba,$account); - } + $payinfo = emt("ABA [_1], Acct #[_2]",$aba,$account); } ($payby,$payinfo); |