RT# 37817 - added a declaration to cust bill event actions that send out invoices
[freeside.git] / FS / FS / part_event / Action / cust_bill_send.pm
1 package FS::part_event::Action::cust_bill_send;
2
3 use strict;
4 use base qw( FS::part_event::Action );
5
6 sub description { 'Send invoice (email/print/fax)'; }
7
8 ## declaring that this action will send out an invoice
9 sub will_send_invoice { 1; }
10
11 sub eventtable_hashref {
12   { 'cust_bill' => 1 };
13 }
14
15 sub option_fields {
16   (
17     'modenum'     => { label  => 'Invoice mode',
18                        type   => 'select-invoice_mode',
19                      },
20   );
21 }
22
23 sub default_weight { 50; }
24
25 sub do_action {
26   my( $self, $cust_bill ) = @_;
27
28   $cust_bill->set('mode' => $self->option('modenum'));
29   $cust_bill->send;
30 }
31
32 1;