summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action/cust_statement_send.pm
blob: 67a94aaa1472746db3bf86ec5f5032f11feeb8d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package FS::part_event::Action::cust_statement_send;

use strict;

use base qw( FS::part_event::Action );

sub description {
  'Send statement (email/print/fax)';
}

sub eventtable_hashref {
  { 'cust_statement' => 1, };
}

sub default_weight {
  95;
}

sub do_action {
  my( $self, $cust_statement ) = @_;

  $cust_statement->send( 'template' => 'statement' ); #XXX configure
                                                      #XXX use an invoice mode?

}

1;