X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FAction%2Fcust_bill_send_reminder.pm;h=354f969d4cfcd4ca7f7233bbc9fd5def47abd55b;hb=313a3715952e448b9efda129597e83df514be4ec;hp=2ba8136dd61c44add52ed8425ad5a08a660a8595;hpb=63a268637b2d51a8766412617724b9436439deb6;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 2ba8136dd..354f969d4 100644 --- a/FS/FS/part_event/Action/cust_bill_send_reminder.pm +++ b/FS/FS/part_event/Action/cust_bill_send_reminder.pm @@ -11,9 +11,14 @@ sub eventtable_hashref { sub option_fields { ( - 'notice_name' => 'Reminder name', - #'notes' => { 'label' => 'Reminder notes' }, - #include standard notes? no/prepend/append + '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' }, # invoice mode does this + 'lpr' => 'Optional alternate print command', ); } @@ -22,10 +27,11 @@ 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->send({ 'notice_name' => $self->option('notice_name') }); + $cust_bill->set('mode' => $self->option('modenum')); + $cust_bill->send({ + 'notice_name' => $self->option('notice_name'), + 'lpr' => $self->option('lpr'), + }); } 1;