summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action
diff options
context:
space:
mode:
authorJason (Jayce^) Hall <jayce@lug-nut.com>2015-01-08 14:44:49 -0700
committerJason (Jayce^) Hall <jayce@lug-nut.com>2015-01-08 14:44:49 -0700
commit52a223d87f3bc7068dbda03b86b10add80ec273b (patch)
tree2f9b86dfaf175963d67ddf03c3ae797502debe1f /FS/FS/part_event/Action
parent005784113c4ddfb3924ae68408c87dc6cb171640 (diff)
Creating the ability to suspend from an invoice, suspending all
not-cancelled cust_pkg's on that invoice. Also creates a new part_event Action that let's you trigger this as an invoice event.
Diffstat (limited to 'FS/FS/part_event/Action')
-rw-r--r--FS/FS/part_event/Action/cust_bill_suspend.pm41
1 files changed, 41 insertions, 0 deletions
diff --git a/FS/FS/part_event/Action/cust_bill_suspend.pm b/FS/FS/part_event/Action/cust_bill_suspend.pm
new file mode 100644
index 0000000..339d6b9
--- /dev/null
+++ b/FS/FS/part_event/Action/cust_bill_suspend.pm
@@ -0,0 +1,41 @@
+package FS::part_event::Action::cust_bill_suspend;
+
+use strict;
+use base qw( FS::part_event::Action );
+
+sub description { 'Suspend packages on this invoice'; }
+
+sub eventtable_hashref {
+ { 'cust_bill' => 1 };
+}
+
+sub option_fields {
+ (
+ 'reasonnum' => { 'label' => 'Reason',
+ 'type' => 'select-reason',
+ 'reason_class' => 'S',
+ },
+ 'suspend_bill' => { 'label' => 'Continue recurring billing while suspended',
+ 'type' => 'checkbox',
+ 'value' => 'Y',
+ },
+ );
+}
+
+sub default_weight { 10; }
+
+sub do_action {
+ my( $self, $cust_bill ) = @_;
+
+ my @err = $cust_bill->suspend(
+ 'reason' => $self->option('reasonnum'),
+ 'options' => { 'suspend_bill' => $self->option('suspend_bill') },
+ );
+
+ die join(' / ', @err) if scalar(@err);
+
+ return '';
+
+}
+
+1;