Similar to cust_bill_suspend, create the ability to CANCEL the packages
authorJason (Jayce^) Hall <jayce@lug-nut.com>
Thu, 8 Jan 2015 22:37:52 +0000 (15:37 -0700)
committerJason (Jayce^) Hall <jayce@lug-nut.com>
Thu, 8 Jan 2015 22:37:52 +0000 (15:37 -0700)
on an invoice. Create an invoice event that can trigger this.

FS/FS/cust_bill.pm
FS/FS/part_event/Action/cust_bill_cancel.pm [new file with mode: 0644]

index 92ff5f3..0b8cb02 100644 (file)
@@ -641,7 +641,7 @@ sub suspend {
   my $self = shift;
 
   grep { $_->suspend(@_) } 
-  grep { $_->getfield('cancel') } 
+  grep {! $_->getfield('cancel') } 
   $self->cust_pkg;
 
 }
@@ -665,6 +665,36 @@ sub cust_suspend_if_balance_over {
   }
 }
 
+=item cancel
+
+Cancel the packages on this invoice. Largely similar to the cust_main version, but does not bother yet with banned payment options
+
+=cut
+
+sub cancel {
+  my( $self, %opt ) = @_;
+
+  warn "$me cancel called on cust_bill ". $self->invnum . " with options ".
+       join(', ', map { "$_: $opt{$_}" } keys %opt ). "\n"
+    if $DEBUG;
+
+  return ( 'access denied' )
+    unless $FS::CurrentUser::CurrentUser->access_right('Cancel customer');
+
+  my @pkgs = $self->cust_pkg;
+
+  if ( !$opt{nobill} && $conf->exists('bill_usage_on_cancel') ) {
+    $opt{nobill} = 1;
+    my $error = $self->cust_main->bill( pkg_list => [ @pkgs ], cancel => 1 );
+    warn "Error billing during cancel, custnum ". $self->custnum. ": $error"
+      if $error;
+  }
+
+  grep { $_ } map { $_->cancel(%opt) }
+  grep {! $_->getfield('cancel') } 
+  @pkgs;
+}
+
 =item cust_bill_pay
 
 Returns all payment applications (see L<FS::cust_bill_pay>) for this invoice.
diff --git a/FS/FS/part_event/Action/cust_bill_cancel.pm b/FS/FS/part_event/Action/cust_bill_cancel.pm
new file mode 100644 (file)
index 0000000..70cce46
--- /dev/null
@@ -0,0 +1,35 @@
+package FS::part_event::Action::cust_bill_cancel;
+
+use strict;
+use base qw( FS::part_event::Action );
+
+sub description { 'Cancel packages on this invoice'; }
+
+sub eventtable_hashref {
+  { 'cust_bill' => 1 };
+}
+
+sub option_fields {
+  (
+    'reasonnum'    => { 'label'        => 'Reason',
+                        'type'         => 'select-reason',
+                        'reason_class' => 'C',
+                      },
+  );
+}
+
+sub default_weight { 10; }
+
+sub do_action {
+  my( $self, $cust_bill ) = @_;
+
+  my @err = $cust_bill->cancel(
+    'reason'  => $self->option('reasonnum'),
+  );
+
+  die join(' / ', @err) if scalar(@err);
+
+  return '';
+}
+
+1;