bug fix for discounts on setup fees, RT11512
authorlevinse <levinse>
Mon, 13 Jun 2011 21:25:09 +0000 (21:25 +0000)
committerlevinse <levinse>
Mon, 13 Jun 2011 21:25:09 +0000 (21:25 +0000)
FS/FS/part_pkg/discount_Mixin.pm

index 17e2f53..a789ab3 100644 (file)
@@ -120,6 +120,9 @@ sub calc_discount {
         $param->{'discount_left_recur'}{$discount->discountnum} = 0;
         $months = 1;
     }
+    elsif ( $discount->setup && $discount->months == 1 && $discount->amount ) {
+        next;
+    }
 
     my $error = $cust_pkg_discount->increment_months_used($months)
         if (defined $param->{'real_pkgpart'}