From: Ivan Kohler <ivan@freeside.biz>
Date: Thu, 16 Jan 2014 09:55:26 +0000 (-0800)
Subject: don't allow a start date for packages definitions with prorate_defer_bill, RT#25650
X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;ds=sidebyside;h=1efc66e89de98933be289a9dde70c7fbd20f72c0;p=freeside.git

don't allow a start date for packages definitions with prorate_defer_bill, RT#25650
---

diff --git a/FS/FS/part_pkg/delayed_Mixin.pm b/FS/FS/part_pkg/delayed_Mixin.pm
index ae286d351..751a72357 100644
--- a/FS/FS/part_pkg/delayed_Mixin.pm
+++ b/FS/FS/part_pkg/delayed_Mixin.pm
@@ -51,7 +51,10 @@ sub calc_remain {
   return $self->NEXT::calc_remain($cust_pkg, %options);
 }
 
-sub can_start_date { ! shift->option('delay_setup', 1) }
+sub can_start_date {
+  my $self = shift;
+  ! $self->option('delay_setup', 1) && $self->NEXT::can_start_date(@_);
+}
 
 sub default_start_date {
   my $self = shift;