diff options
author | Mark Wells <mark@freeside.biz> | 2015-10-02 16:05:41 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-10-02 16:05:41 -0700 |
commit | 61a0dc609fd2b7db3571f8f86672481d1e064331 (patch) | |
tree | fd667a3e003d21e1eca790990bb52698de44e75f | |
parent | bf6c11bc520aa4e4e0fa75f0469c66a11cf11a31 (diff) |
fix unit setup fee on prorate-deferred packages, #31276
-rw-r--r-- | FS/FS/cust_main/Billing.pm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm index 2d7b690df..eee0958e0 100644 --- a/FS/FS/cust_main/Billing.pm +++ b/FS/FS/cust_main/Billing.pm @@ -1024,8 +1024,14 @@ sub _make_lines { return "$@ running calc_setup for $cust_pkg\n" if $@; - $unitsetup = $cust_pkg->base_setup() - || $setup; #XXX uuh + # Only increment unitsetup here if there IS a setup fee. + # prorate_defer_bill may cause calc_setup on a setup-stage package + # to return zero, and the setup fee to be charged later. (This happens + # when it's first billed on the prorate cutoff day. RT#31276.) + if ( $setup ) { + $unitsetup = $cust_pkg->base_setup() + || $setup; #XXX uuh + } if ( $setup_param{'billed_currency'} ) { $setup_billed_currency = delete $setup_param{'billed_currency'}; @@ -1196,7 +1202,7 @@ sub _make_lines { # Add an additional setup fee at the billing stage. # Used for prorate_defer_bill. $setup += $param{'setup_fee'}; - $unitsetup += $param{'setup_fee'}; + $unitsetup = $cust_pkg->base_setup(); $lineitems++; } |