summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-05-21 09:44:55 -0400
committerChristopher Burger <burgerc@freeside.biz>2018-05-21 09:52:48 -0400
commit0b377f833567c5fd460c11d75bdb5c59a67556c4 (patch)
tree68f8e62f290a29de79e74918e43a7c5dcf1078c9 /FS
parenta37042cb6ab64f04a60ab601911c38c2e490dbbc (diff)
RT# 77964 - refined code to defer dates when waiving setup fee for prorated packages.
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_main/Billing.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm
index 51b49e4..9cf9b56 100644
--- a/FS/FS/cust_main/Billing.pm
+++ b/FS/FS/cust_main/Billing.pm
@@ -1052,10 +1052,8 @@ sub _make_lines {
}
}
- if ($cust_pkg->waive_setup && $part_pkg->plan eq "prorate") {
- $lineitems++;
- $setup = 0 if $part_pkg->prorate_setup($cust_pkg, $time);
- }
+ $lineitems++
+ if $cust_pkg->waive_setup && $part_pkg->can('prorate_setup') && $part_pkg->prorate_setup($cust_pkg, $time);
if ( $cust_pkg->get('setup') ) {
# don't change it