RT# 37817 - added a declaration to cust bill event actions that send out invoices
[freeside.git] / FS / FS / part_event / Action / cust_bill_send_alternate.pm
1 package FS::part_event::Action::cust_bill_send_alternate;
2
3 use strict;
4 use base qw( FS::part_event::Action );
5
6 sub description { 'Send invoice (email/print/fax) with alternate template'; }
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     'templatename' => { label    => 'Template',
20                         type     => 'select-invoice_template',
21                       },
22   );
23 }
24
25 sub default_weight { 50; }
26
27 sub do_action {
28   my( $self, $cust_bill ) = @_;
29
30   #my $cust_main = $self->cust_main($cust_bill);
31   my $cust_main = $cust_bill->cust_main;
32
33   $cust_bill->set('mode' => $self->option('modenum'));
34   $cust_bill->send({'template' => $self->option('templatename')});
35 }
36
37 1;