diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-05-15 10:19:33 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-05-15 10:19:33 -0400 |
commit | 60c34bd328a404008313d4ab78d25152ebdb9226 (patch) | |
tree | 3fd6add8bf5d124c36df617ce69ec797e57308d3 | |
parent | c0a48dabc8d0d2a66dc6a596a66c9d40c7d37489 (diff) |
RT# 77964 - Fixed error where deferring date did not work when waive setup fee was set.
-rw-r--r-- | FS/FS/cust_main/Billing.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm index 08b10c1ff..51b49e4f0 100644 --- a/FS/FS/cust_main/Billing.pm +++ b/FS/FS/cust_main/Billing.pm @@ -1052,6 +1052,11 @@ sub _make_lines { } } + if ($cust_pkg->waive_setup && $part_pkg->plan eq "prorate") { + $lineitems++; + $setup = 0 if $part_pkg->prorate_setup($cust_pkg, $time); + } + if ( $cust_pkg->get('setup') ) { # don't change it } elsif ( $cust_pkg->get('start_date') ) { |