This commit was generated by cvs2svn to compensate for changes in r11022,
[freeside.git] / FS / FS / part_event / Action / cust_bill_send_reminder.pm
1 package FS::part_event::Action::cust_bill_send_reminder;
2
3 use strict;
4 use base qw( FS::part_event::Action );
5
6 sub description { 'Send invoice (email/print/fax) reminder'; }
7
8 sub eventtable_hashref {
9   { 'cust_bill' => 1 };
10 }
11
12 sub option_fields {
13   (
14     'notice_name'  => 'Reminder name',
15     #'notes' => { 'label' => 'Reminder notes' }, 
16     #include standard notes?  no/prepend/append
17   );
18 }
19
20 sub default_weight { 50; }
21
22 sub do_action {
23   my( $self, $cust_bill ) = @_;
24
25   #my $cust_main = $self->cust_main($cust_bill);
26   #my $cust_main = $cust_bill->cust_main;
27
28   $cust_bill->send({ 'notice_name' => $self->option('notice_name') });
29 }
30
31 1;