This commit was generated by cvs2svn to compensate for changes in r11022,
[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 sub eventtable_hashref {
9   { 'cust_bill' => 1 };
10 }
11
12 sub default_weight { 50; }
13
14 sub do_action {
15   my( $self, $cust_bill ) = @_;
16
17   $cust_bill->send;
18 }
19
20 1;