diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-05-07 10:31:12 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-05-07 10:31:12 -0400 |
| commit | fad6e3456699062c05301bff45243a88df93e312 (patch) | |
| tree | 4b4fb564d40f26ea813f015fe5f1b8d06acfc6ea | |
| parent | 6b7a7b26239e9bdb02931242c321afd6e2fd9b39 (diff) | |
RT# 77964 - Added check for prorate package in billing.pm fix for V3 backport
| -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 debff8a53..8a6056b67 100644 --- a/FS/FS/cust_main/Billing.pm +++ b/FS/FS/cust_main/Billing.pm @@ -1253,6 +1253,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); + } + $cust_pkg->setfield('setup', $time) unless $cust_pkg->setup; #do need it, but it won't get written to the db |
