Revision 2a1e7ba2
Von Martin Helmling martin.helmling@octosoft.eu vor fast 8 Jahren hinzugefügt
SL/BackgroundJob/CreatePeriodicInvoices.pm | ||
---|---|---|
65 | 65 |
} |
66 | 66 |
} |
67 | 67 |
|
68 |
$self->_print_invoice($_) for @invoices_to_print;
|
|
69 |
$self->_email_invoice($_) for @invoices_to_email;
|
|
68 |
foreach my $inv ( @invoices_to_print ) { $self->_print_invoice($inv); }
|
|
69 |
foreach my $inv ( @invoices_to_email ) { $self->_email_invoice($inv); }
|
|
70 | 70 |
|
71 | 71 |
$self->_send_summary_email( |
72 | 72 |
[ map { $_->{invoice} } @new_invoices ], |
Auch abrufbar als: Unified diff
BUGFIX: Benachrichtigung automatisch erstellter Rechnungen fehlerhaft
Dieses Problem wird im Redmine Ticket #218 angesprochen.
Durch Verwendung einer lokalen Variable behoben