diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-07-20 16:54:10 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-20 16:54:10 -0700 |
commit | afb9c277f6755444adbcc9bd4681c4d089e74681 (patch) | |
tree | 318d0d0f2a79183a697dabbaea5001c274ec2ebb | |
parent | dc34663a13aa6bf07e3c0c6da0e30149d65e2b7b (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 828fbd3c4..ca48a7068 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -65,7 +65,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 |