diff options
author | jeff <jeff> | 2007-04-07 00:17:36 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-04-07 00:17:36 +0000 |
commit | 03dd706eeb32ffdbde752f60d0d1987092b0a598 (patch) | |
tree | f2f5d85d68ade804cb32faf30326d9d2c1684eb6 | |
parent | a233a099b6e4464fced8e42629d118ab7154c9ef (diff) |
ommitted file (backport)
-rw-r--r-- | httemplate/view/cust_main/billing.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 1f80dc5bc..435403bda 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -89,10 +89,14 @@ Billing information <TR> <TD ALIGN="right">Account number</TD> <TD BGCOLOR="#ffffff"><% 'x'x(length($account)-2). substr($account,(length($account)-2)) %></TD> + <TD ALIGN="right">Account type</TD> + <TD BGCOLOR="#ffffff"><% $cust_main->paytype %></TD> </TR> <TR> <TD ALIGN="right">Bank name</TD> <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD> + <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})$/; @@ -189,4 +193,9 @@ Billing information </TABLE></TD></TR></TABLE> +<%once> +my $paystate_label = FS::Msgcat::_gettext('paystate'); +$paystate_label = 'Bank state' if $paystate_label =~/^paystate$/; + +</%once> |