summaryrefslogtreecommitdiff
path: root/FS/FS/cust_main
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-05-15 10:19:33 -0400
committerChristopher Burger <burgerc@freeside.biz>2018-05-21 09:52:26 -0400
commita37042cb6ab64f04a60ab601911c38c2e490dbbc (patch)
treec76b6566f277e9674fbe164a46861db32b5c244b /FS/FS/cust_main
parent46aa8e84c2a28f04e5e218b7afa8dbfc9aae2ff6 (diff)
RT# 77964 - Fixed error where deferring date did not work when waive setup fee was set.
Diffstat (limited to 'FS/FS/cust_main')
-rw-r--r--FS/FS/cust_main/Billing.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm
index 08b10c1..51b49e4 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') ) {