summaryrefslogtreecommitdiff
path: root/FS/FS/cust_main.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2019-10-24 19:55:40 -0700
committerIvan Kohler <ivan@freeside.biz>2019-10-24 19:55:40 -0700
commit4d0392a07d82ee1e0002218410d47b7021d30977 (patch)
tree114114e8bd295c0c99def40aae165a05daba2fe1 /FS/FS/cust_main.pm
parent23c155d0e96cd65a5e678a018254c9399eaccb9b (diff)
suspend event option to skip packages with a start_date, RT#83847
Diffstat (limited to 'FS/FS/cust_main.pm')
-rw-r--r--FS/FS/cust_main.pm10
1 files changed, 8 insertions, 2 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index 49760a1..801aa8c 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -2304,8 +2304,14 @@ Returns a list: an empty list on success or a list of errors.
=cut
sub suspend {
- my $self = shift;
- grep { $_->suspend(@_) } $self->unsuspended_pkgs;
+ my($self, %opt) = @_;
+
+ my @pkgs = $self->unsuspended_pkgs;
+
+ @pkgs = grep { ! $_->get('start_date') } @pkgs
+ if $opt{skip_future_startdate};
+
+ grep { $_->suspend(%opt) } @pkgs;
}
=item suspend_if_pkgpart HASHREF | PKGPART [ , PKGPART ... ]