RT#14671: Usage for current day when billing outstanding usage (for cancelling custom...
authorJonathan Prykop <jonathan@freeside.biz>
Thu, 12 Feb 2015 04:07:12 +0000 (22:07 -0600)
committerJonathan Prykop <jonathan@freeside.biz>
Thu, 12 Feb 2015 04:07:12 +0000 (22:07 -0600)
FS/FS/part_pkg_link.pm

index aee0131..2460e99 100644 (file)
@@ -260,6 +260,11 @@ sub check {
                ") must be an integer multiple of main package period.";
       }
     }
+    if (( $src_pkg->option('delay_cancel',1) && !$dst_pkg->option('delay_cancel',1) ) ||
+        ( $dst_pkg->option('delay_cancel',1) && !$src_pkg->option('delay_cancel',1) )
+    ) {
+      return "Supplemental package must have same value as main package for automatic suspension on cancel.";
+    }
   }
 
   $self->SUPER::check;