RT# 77964 - refined code to defer dates when waiving setup fee for prorated packages.
[freeside.git] / FS / FS / cust_main / Billing.pm
index 8a6056b..79a0c9e 100644 (file)
@@ -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;