X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FAction%2Fcust_bill_send_reminder.pm;h=f3326d52ce84374e1f3c7ba2219ec6a35411e005;hb=121510b6337b7f75f25d583730a65f3fc63bbfbe;hp=073bb8fd32b736691a0ca88755b0c7c1b0e194d5;hpb=3d0a1bb06b895c5be6e3f0517d355442a6b1e125;p=freeside.git diff --git a/FS/FS/part_event/Action/cust_bill_send_reminder.pm b/FS/FS/part_event/Action/cust_bill_send_reminder.pm index 073bb8fd3..f3326d52c 100644 --- a/FS/FS/part_event/Action/cust_bill_send_reminder.pm +++ b/FS/FS/part_event/Action/cust_bill_send_reminder.pm @@ -5,15 +5,22 @@ use base qw( FS::part_event::Action ); sub description { 'Send invoice (email/print/fax) reminder'; } +## declaring that this action will send out an invoice +sub will_send_invoice { 1; } + sub eventtable_hashref { { 'cust_bill' => 1 }; } sub option_fields { ( + 'modenum' => { label => 'Invoice mode', + type => 'select-invoice_mode', + }, + # totally unnecessary, since the invoice mode can set notice_name and lpr, + # but for compatibility... 'notice_name' => 'Reminder name', - #'notes' => { 'label' => 'Reminder notes' }, - #include standard notes? no/prepend/append + #'notes' => { 'label' => 'Reminder notes' }, # invoice mode does this 'lpr' => 'Optional alternate print command', ); } @@ -23,9 +30,7 @@ sub default_weight { 50; } sub do_action { my( $self, $cust_bill ) = @_; - #my $cust_main = $self->cust_main($cust_bill); - #my $cust_main = $cust_bill->cust_main; - + $cust_bill->set('mode' => $self->option('modenum')); $cust_bill->send({ 'notice_name' => $self->option('notice_name'), 'lpr' => $self->option('lpr'),