summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2010-08-03 06:31:09 +0000
committerivan <ivan>2010-08-03 06:31:09 +0000
commitdbab5e19dd56c2439a7c74c1dad5dcbd43e82865 (patch)
treeef3261cab43369745d8f767f352c2d42355c6a32
parent720cf723d2c8e88760704e2fdc50ebf48e0574f2 (diff)
fix problem with expiring discounts, RT#6679
-rw-r--r--FS/FS/part_pkg/flat.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_pkg/flat.pm b/FS/FS/part_pkg/flat.pm
index 6db6eee24..cc2310503 100644
--- a/FS/FS/part_pkg/flat.pm
+++ b/FS/FS/part_pkg/flat.pm
@@ -192,7 +192,7 @@ sub calc_discount {
my $months = $discount->months
? min( $chg_months,
- $discount->months - $cust_pkg->months_used )
+ $discount->months - $cust_pkg_discount->months_used )
: $chg_months;
my $error = $cust_pkg_discount->increment_months_used($months);