diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-30 05:29:49 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-06-30 05:29:49 -0500 |
commit | cc577407362f8b64817afbe89d23888a0a5b63f9 (patch) | |
tree | 2fd341725f902043dcdf470ecc51977824d89a5e /FS | |
parent | d13dae1c37c36c27f1ac9fd134c5d8b3a4fb9754 (diff) |
RT#30705: Change contract end date when changing packages [got rid of chronology requirements]
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_pkg.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm index 5bd307b0f..8e8872871 100644 --- a/FS/FS/cust_pkg.pm +++ b/FS/FS/cust_pkg.pm @@ -1986,9 +1986,6 @@ sub _check_change { #option shouldn't be passed, throw error if it's non-empty return "Cannot add contract end date when changing packages " . $self->pkgnum; } - if ($opt->{'start_date'} && ($opt->{'contract_end'} < $opt->{'start_date'})) { - return "Contract end date is before change date"; - } } return ''; } |