diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-08-31 22:26:32 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-08-31 22:26:32 -0500 |
commit | 259777e4667fc8a45496ba2805d1f7e01c75ac7b (patch) | |
tree | 7a041440834c95c25ab66b6065d90e24f3e2e65c /httemplate | |
parent | f61619b95f05b576518ea698ad7e22267b4c36c4 (diff) |
RT#71890: SelfService API: Return monthly recurring fee [display_recurring, v3 reconcile bug fix]
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/view/cust_main/billing.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index eed3baf4b..7be320131 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -30,8 +30,8 @@ % if ( $cust_main->num_ncancelled_pkgs < 54 ) { % foreach my $freq_info ($cust_main->display_recurring) { <TR> - <TH ALIGN="right"><% emt( ucfirst($freq_info->{'freq_pretty'}). ' recurring' ) %></TH> - <TD><% $money_char. sprintf('%.2f', $freq_info->{'amount'}) %></TD> + <TD ALIGN="right"><% emt( ucfirst($freq_info->{'freq_pretty'}). ' recurring' ) %></TD> + <TD BGCOLOR="#ffffff"><% $money_char. sprintf('%.2f', $freq_info->{'amount'}) %></TD> </TR> % } % } |