diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-07-20 16:54:07 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-20 16:54:07 -0700 |
commit | 551810451d0c6455d823eca8c916d6f131f99354 (patch) | |
tree | 92715a8349e54b943d43ce19a075e46cdbccf4c9 | |
parent | 4915d6e8fd9dbc933049da8051e2fcfb66da0f8c (diff) |
fix new recurring display vs. price plans that need a cust_pkg, RT#36813, RT#21565
-rw-r--r-- | httemplate/view/cust_main/billing.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 7027ebd87..c031ce929 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -61,7 +61,7 @@ % % #add recurring amounts for this package and its billing add-ons % foreach my $l_part_pkg ( $part_pkg->self_and_bill_linked ) { -% $pkg_amount += $l_part_pkg->base_recur; +% $pkg_amount += $l_part_pkg->base_recur($cust_pkg); % } % % #subtract amounts for any active discounts |