diff options
author | Christopher Burger <burgerc@freeside.biz> | 2018-05-21 09:44:55 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-05-21 11:25:40 -0400 |
commit | a8981b8fc11c032fd4fa1a3943c4785391a9ffb4 (patch) | |
tree | 0764835b9024187b4d33e750d5b4fd27167a295e | |
parent | f1205344753e1b44945ccc0daa1c78d0f7fa7c45 (diff) |
RT# 77964 - refined code to defer dates when waiving setup fee for prorated packages.
-rw-r--r-- | FS/FS/cust_main/Billing.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm index 8a6056b67..79a0c9ed1 100644 --- a/FS/FS/cust_main/Billing.pm +++ b/FS/FS/cust_main/Billing.pm @@ -1253,10 +1253,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); $cust_pkg->setfield('setup', $time) unless $cust_pkg->setup; |