X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg%2Fflat.pm;h=f23717bc5649bb43e9f86d85d80450d27d487d6e;hp=84599ea8ade19a23467ba1ee6a8cc97d71b6304a;hb=8f56a7435988ef9952c2b3f1f08450c63961becb;hpb=fff049dbe17c71d13d18c9edf714b3ca0d60c67b diff --git a/FS/FS/part_pkg/flat.pm b/FS/FS/part_pkg/flat.pm index 84599ea8a..f23717bc5 100644 --- a/FS/FS/part_pkg/flat.pm +++ b/FS/FS/part_pkg/flat.pm @@ -235,6 +235,8 @@ sub calc_remain { $time = time; } + my $sources = $options{'cust_credit_source_bill_pkg'}; + my $next_bill = $cust_pkg->getfield('bill') || 0; return 0 if ! $self->base_recur($cust_pkg, \$time) @@ -270,17 +272,30 @@ sub calc_remain { $amount = $amount * ($edate - $time) / ($edate - $cust_bill_pkg->sdate); } + # calculate tax adjustment. we're not doing full credit_lineitems here + # (e.g. not applying the credit to the past billing of this package) + # so just include the adjustment in the source record with the rest + # of the credit + my %tax_adjust = FS::cust_credit->calculate_tax_adjustment( + 'custnum' => $cust_pkg->custnum, + 'billpkgnums' => [ $cust_bill_pkg->billpkgnum ], + 'setuprecurs' => [ 'recur' ], + 'amounts' => [ $amount ], + ); + $amount += $tax_adjust{taxtotal}; + + $amount = sprintf('%.2f', $amount); # ensure that amounts add up right $credit += $amount; - push @{ $options{'cust_credit_source_bill_pkg'} }, - new FS::cust_credit_source_bill_pkg { - 'billpkgnum' => $cust_bill_pkg->billpkgnum, - 'amount' => sprintf('%.2f', $amount), - 'currency' => $cust_bill_pkg->cust_bill->currency, - } - if $options{'cust_credit_source_bill_pkg'}; - - } + if ( $sources ) { + push @$sources, + FS::cust_credit_source_bill_pkg->new( { + 'billpkgnum' => $cust_bill_pkg->billpkgnum, + 'amount' => $amount, + 'currency' => $cust_bill_pkg->cust_bill->currency, + } ); + } + } # foreach $cust_bill_pkg sprintf('%.2f', $credit);