fix interaction of percentage discount and quantity, #19354, etc.
authorMark Wells <mark@freeside.biz>
Tue, 27 Oct 2015 23:28:32 +0000 (16:28 -0700)
committerMark Wells <mark@freeside.biz>
Tue, 27 Oct 2015 23:37:47 +0000 (16:37 -0700)
FS/FS/part_pkg/discount_Mixin.pm

index 1e39f6a..dcca343 100644 (file)
@@ -145,7 +145,7 @@ sub calc_discount {
       # XXX it would be more accurate for calc_recur to just _tell us_ what
       # it's going to charge
 
       # XXX it would be more accurate for calc_recur to just _tell us_ what
       # it's going to charge
 
-      my $recur_charge = $br * ($cust_pkg->quantity || 1) * $chg_months / $self->freq;
+      my $recur_charge = $br * $chg_months / $self->freq;
       # round this, because the real recur charge is rounded
       $recur_charge = sprintf('%.2f', $recur_charge);
 
       # round this, because the real recur charge is rounded
       $recur_charge = sprintf('%.2f', $recur_charge);