summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormark <mark>2011-08-31 08:26:29 +0000
committermark <mark>2011-08-31 08:26:29 +0000
commit81d973916db8389df760f4055b3eb3825b3ed262 (patch)
tree7c34113e491f604c72691b18e8a24024db306c14
parentbbabe74c658a55d27a6dda7b6579bbd332f8f789 (diff)
fix payment application with term discounts, #5318
-rw-r--r--FS/FS/cust_pay.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm
index c80729a4e..3888cd6d0 100644
--- a/FS/FS/cust_pay.pm
+++ b/FS/FS/cust_pay.pm
@@ -204,7 +204,7 @@ sub insert {
}
my @pkgs = $cust_main->_discount_pkgs_and_bill;
my $cust_bill = shift(@pkgs);
- @pkgs = &FS::cust_main::Billing::_discountable_pkgs_at_term($months, @pkgs);
+ @pkgs = &FS::cust_main::Billing_Discount::_discountable_pkgs_at_term($months, @pkgs);
$_->bill($_->last_bill) foreach @pkgs;
$error = $cust_main->bill(
'recurring_only' => 1,