X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FAction%2Fsuspend.pm;h=84a710158fc7120c097068f37a772ac667d51139;hb=bb7e827141c9ed68f30765c9ca2ddcd1d760ad2d;hp=c77728e61a740034cbf6280280750640781d8b44;hpb=40a7b3dc653e099f7bd0bd762b649b04c4432db2;p=freeside.git diff --git a/FS/FS/part_event/Action/suspend.pm b/FS/FS/part_event/Action/suspend.pm index c77728e61..84a710158 100644 --- a/FS/FS/part_event/Action/suspend.pm +++ b/FS/FS/part_event/Action/suspend.pm @@ -3,14 +3,18 @@ package FS::part_event::Action::suspend; use strict; use base qw( FS::part_event::Action ); -sub description { 'Suspend'; } +sub description { 'Suspend all of this customer\'s packages'; } sub option_fields { ( - 'reasonnum' => { 'label' => 'Reason', - 'type' => 'select-reason', - 'reason_class' => 'S', - }, + 'reasonnum' => { 'label' => 'Reason', + 'type' => 'select-reason', + 'reason_class' => 'S', + }, + 'suspend_bill' => { 'label' => 'Continue recurring billing while suspended', + 'type' => 'checkbox', + 'value' => 'Y', + }, ); } @@ -21,7 +25,10 @@ sub do_action { my $cust_main = $self->cust_main($cust_object); - my @err = $cust_main->suspend( 'reason' => $self->option('reasonnum') ); + my @err = $cust_main->suspend( + 'reason' => $self->option('reasonnum'), + 'options' => { 'suspend_bill' => $self->option('suspend_bill') }, + ); die join(' / ', @err) if scalar(@err);