test action
[kivitendo-erp.git] / bin / mozilla / dn.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2006
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28 # MA 02110-1335, USA.
29 #======================================================================
30 #
31 # Dunning process module
32 #
33 #======================================================================
34
35 use POSIX qw(strftime);
36
37 use List::Util qw(notall);
38 use List::MoreUtils qw(none);
39
40 use SL::IS;
41 use SL::DN;
42 use SL::DB::Department;
43 use SL::DB::Dunning;
44 use SL::File;
45 use SL::Helper::Flash qw(flash);
46 use SL::Locale::String qw(t8);
47 use SL::Presenter::EmailJournal;
48 use SL::Presenter::FileObject;
49 use SL::Presenter::WebdavObject;
50 use SL::ReportGenerator;
51
52 require "bin/mozilla/common.pl";
53 require "bin/mozilla/reportgenerator.pl";
54 require "bin/mozilla/io.pl";
55
56 use strict;
57
58 1;
59
60 sub edit_config {
61   $main::lxdebug->enter_sub();
62
63   my $form     = $main::form;
64   my %myconfig = %main::myconfig;
65   my $locale   = $main::locale;
66
67   $main::auth->assert('config');
68
69   DN->get_config(\%myconfig, \%$form);
70   $form->get_lists('charts' => { 'key'       => 'ALL_CHARTS',
71                                  'transdate' => 'current_date' });
72
73   $form->{SELECT_AR_AMOUNT} = [];
74   $form->{SELECT_AR}        = [];
75
76   foreach my $chart (@{ $form->{ALL_CHARTS} }) {
77     $chart->{LINKS} = { map { $_, 1 } split m/:/, $chart->{link} };
78
79     if ($chart->{LINKS}->{AR}) {
80       $chart->{AR_selected} = "selected" if $chart->{id} == $form->{AR};
81       push @{ $form->{SELECT_AR} }, $chart;
82     }
83
84     if ($chart->{LINKS}->{AR_amount}) {
85       $chart->{AR_amount_fee_selected}      = "selected" if $chart->{id} == $form->{AR_amount_fee};
86       $chart->{AR_amount_interest_selected} = "selected" if $chart->{id} == $form->{AR_amount_interest};
87       push @{ $form->{SELECT_AR_AMOUNT} }, $chart;
88     }
89   }
90
91   $form->{title}      = $locale->text('Edit Dunning Process Config');
92   $form->{callback} ||= build_std_url("action=edit_config");
93
94   setup_dn_edit_config_action_bar();
95
96   $form->header();
97   print $form->parse_html_template("dunning/edit_config");
98
99   $main::lxdebug->leave_sub();
100 }
101
102 sub add {
103   $main::lxdebug->enter_sub();
104
105   my $form     = $main::form;
106   my %myconfig = %main::myconfig;
107   my $locale   = $main::locale;
108
109   $main::auth->assert('dunning_edit');
110
111   DN->get_config(\%myconfig, \%$form);
112
113   $form->get_lists("departments" => "ALL_DEPARTMENTS");
114
115   $form->{SHOW_DUNNING_LEVEL_SELECTION} = $form->{DUNNING}         && scalar @{ $form->{DUNNING} };
116   $form->{SHOW_DEPARTMENT_SELECTION}    = $form->{ALL_DEPARTMENTS} && scalar @{ $form->{ALL_DEPARTMENTS} || [] };
117
118   $form->{title}    = $locale->text('Start Dunning Process');
119
120   setup_dn_add_action_bar();
121   $form->header();
122
123   print $form->parse_html_template("dunning/add");
124
125   $main::lxdebug->leave_sub();
126 }
127
128 sub show_invoices {
129   $main::lxdebug->enter_sub();
130
131   my $form     = $main::form;
132   my %myconfig = %main::myconfig;
133   my $locale   = $main::locale;
134
135   $main::auth->assert('dunning_edit');
136
137   DN->get_invoices(\%myconfig, \%$form);
138   $form->{title} = $locale->text('Start Dunning Process');
139
140   foreach my $row (@{ $form->{DUNNINGS} }) {
141     $row->{DUNNING_CONFIG} = [ map +{ %{ $_ } }, @{ $form->{DUNNING_CONFIG} } ];
142
143     if ($row->{next_dunning_config_id}) {
144       map { $_->{SELECTED} = $_->{id} == $row->{next_dunning_config_id} } @{ $row->{DUNNING_CONFIG } };
145     }
146     map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, 2) } qw(amount open_amount fee interest);
147
148     if ($row->{'language_id'}) {
149       $row->{language} = SL::DB::Manager::Language->find_by_or_create('id' => $row->{'language_id'})->{'description'};
150     }
151   }
152
153   $form->get_lists('printers'  => 'printers',
154                    'languages' => 'languages');
155
156   $form->{type}           = 'dunning';
157   $form->{rowcount}       = scalar @{ $form->{DUNNINGS} };
158   $form->{callback}     ||= build_std_url("action=show_invoices", qw(customer invnumber ordnumber groupinvoices minamount dunning_level notes));
159
160   $form->{PRINT_OPTIONS}  = print_options('inline'          => 1,
161                                           'no_queue'        => 1,
162                                           'no_postscript'   => 1,
163                                           'no_html'         => 1,
164                                           'no_opendocument' => 1,);
165
166   setup_dn_show_invoices_action_bar();
167   $form->header();
168   print $form->parse_html_template("dunning/show_invoices");
169
170   $main::lxdebug->leave_sub();
171 }
172
173 sub save {
174   $main::lxdebug->enter_sub();
175
176   my $form     = $main::form;
177   my %myconfig = %main::myconfig;
178   my $locale   = $main::locale;
179
180   $main::auth->assert('config');
181
182   for my $i (1 .. $form->{rowcount}) {
183     if ($form->{"dunning_description_$i"} ne "") {
184       $form->isblank("dunning_level_$i", $locale->text('Dunning Level missing in row '). $i);
185       $form->isblank("dunning_description_$i", $locale->text('Dunning Description missing in row '). $i);
186       $form->isblank("terms_$i", $locale->text('Terms missing in row '). $i);
187       $form->isblank("payment_terms_$i", $locale->text('Payment Terms missing in row '). $i);
188     }
189   }
190
191   DN->save_config(\%myconfig, \%$form);
192   # saving the history
193   if(!exists $form->{addition} && $form->{id} ne "") {
194     $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
195     $form->{addition} = "SAVED FOR DUNNING";
196     $form->save_history;
197   }
198   # /saving the history
199   $form->redirect($locale->text('Dunning Process Config saved!'));
200
201   $main::lxdebug->leave_sub();
202 }
203
204 sub save_dunning {
205   $main::lxdebug->enter_sub();
206
207   my $form     = $main::form;
208   my %myconfig = %main::myconfig;
209   my $locale   = $main::locale;
210
211   $main::auth->assert('dunning_edit');
212
213   my $active=1;
214   my @rows = ();
215   my @status;
216   undef($form->{DUNNING_PDFS});
217
218   my $saved_language_id = $form->{language_id};
219
220   if ($form->{groupinvoices} || $form->{l_include_credit_notes}) {
221     my %dunnings_for;
222
223     for my $i (1 .. $form->{rowcount}) {
224       next unless ($form->{"active_$i"});
225
226       $dunnings_for{$form->{"customer_id_$i"}} ||= {};
227       my $dunning_levels = $dunnings_for{$form->{"customer_id_$i"}};
228
229       $dunning_levels->{$form->{"next_dunning_config_id_$i"}} ||= [];
230       my $level = $dunning_levels->{$form->{"next_dunning_config_id_$i"}};
231
232       push @{ $level }, { "row"                    => $i,
233                           "invoice_id"             => $form->{"inv_id_$i"},
234                           "credit_note"            => $form->{"credit_note_$i"},
235                           "customer_id"            => $form->{"customer_id_$i"},
236                           "language_id"            => $form->{"language_id_$i"},
237                           "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
238                           "print_invoice"          => $form->{"include_invoice_$i"},
239                           "email"                  => $form->{"email_$i"}, };
240     }
241
242     foreach my $levels (values %dunnings_for) {
243       foreach my $level (values %{ $levels }) {
244         next unless scalar @{ $level };
245         if (!$form->{force_lang}) {
246           $form->{language_id} = @{$level}[0]->{language_id};
247         }
248         my $rc =  DN->save_dunning(\%myconfig, $form, $level);
249         $rc->{error} =~ s{\n}{<br />}g if $rc->{error};
250         push @status, { invnumbers => [map { $form->{'invnumber_' . $_->{row}} } @$level],
251                         map { ( $_ => $rc->{$_} ) } qw(error dunning_id print_original_invoice send_email), };
252       }
253     }
254
255   } else {
256     for my $i (1 .. $form->{rowcount}) {
257       next unless $form->{"active_$i"};
258
259       my $level = [ { "row"                    => $i,
260                       "invoice_id"             => $form->{"inv_id_$i"},
261                       "customer_id"            => $form->{"customer_id_$i"},
262                       "language_id"            => $form->{"language_id_$i"},
263                       "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"},
264                       "print_invoice"          => $form->{"include_invoice_$i"},
265                       "email"                  => $form->{"email_$i"}, } ];
266       if (!$form->{force_lang}) {
267         $form->{language_id} = @{$level}[0]->{language_id};
268       }
269       my $rc = DN->save_dunning(\%myconfig, $form, $level);
270       $rc->{error} =~ s{\n}{<br />}g if $rc->{error};
271       push @status, { invnumbers => [map { $form->{'invnumber_' . $_->{row}} } @$level],
272                       map { ( $_ => $rc->{$_} ) } qw(error dunning_id print_original_invoice send_email), };
273     }
274   }
275
276   $form->{language_id} = $saved_language_id;
277
278   my $pdf_filename;
279   my $pdf_content;
280   if ($form->{DUNNING_PDFS} && scalar @{ $form->{DUNNING_PDFS} }) {
281     $form->{dunning_id} = strftime("%Y%m%d", localtime time) if scalar @{ $form->{DUNNING_PDFS}} > 1;
282     ($pdf_filename, $pdf_content) = DN->melt_pdfs(\%myconfig, $form, $form->{copies}, return_content => $form->{media} ne 'printer');
283
284     flash('info', t8('Dunning Process started for selected invoices!'));
285     if ($form->{media} eq 'printer') {
286       flash('info', t8('The PDF has been printed'));
287     } else {
288       flash('info', t8('The PDF has been created'));
289     }
290   }
291
292   # saving the history
293   if(!exists $form->{addition} && $form->{id} ne "") {
294     $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
295     $form->{addition} = "DUNNING STARTED";
296     $form->save_history;
297   }
298   # /saving the history
299
300   setup_dn_status_action_bar();
301   $form->{"title"} = $locale->text("Dunning status");
302   $form->header();
303   print $form->parse_html_template('dunning/status', {
304     pdf_filename => $pdf_filename,
305     pdf_content  => $pdf_content,
306     status       => \@status, });
307
308   $main::lxdebug->leave_sub();
309 }
310
311 sub set_email {
312   $main::lxdebug->enter_sub();
313
314   my $form     = $main::form;
315   my $locale   = $main::locale;
316
317   $main::auth->assert('dunning_edit');
318
319   $form->{"title"} = $locale->text("Set eMail text");
320   $form->header(no_layout => 1);
321   print($form->parse_html_template("dunning/set_email"));
322
323   $main::lxdebug->leave_sub();
324 }
325
326 sub search {
327   $main::lxdebug->enter_sub();
328
329   my $form     = $main::form;
330   my %myconfig = %main::myconfig;
331   my $locale   = $main::locale;
332
333   $main::auth->assert('dunning_edit');
334
335   $form->get_lists("customers"   => "ALL_CUSTOMERS",
336                    "departments" => "ALL_DEPARTMENTS");
337   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
338
339   DN->get_config(\%myconfig, \%$form);
340
341   $form->{SHOW_DUNNING_LEVELS}   = scalar @{ $form->{DUNNING} };
342
343   $form->{title}    = $locale->text('Dunnings');
344
345   setup_dn_search_action_bar();
346   $form->header();
347
348   print $form->parse_html_template("dunning/search");
349
350   $main::lxdebug->leave_sub();
351
352 }
353
354 sub show_dunning {
355   $main::lxdebug->enter_sub();
356
357   my $form     = $main::form;
358   my %myconfig = %main::myconfig;
359   my $locale   = $main::locale;
360   my $cgi      = $::request->{cgi};
361
362   $main::auth->assert('dunning_edit');
363
364   my @filter_field_list = qw(customer_id customer dunning_id dunning_level department_id invnumber ordnumber
365                              transdatefrom transdateto dunningfrom dunningto notes showold l_salesman salesman_id
366                              l_mails l_webdav l_documents);
367
368   report_generator_set_default_sort('customername', 1);
369
370   DN->get_dunning(\%myconfig, \%$form);
371
372   if (!$form->{callback}) {
373     $form->{callback} = build_std_url("action=show_dunning", @filter_field_list);
374   }
375
376   $form->get_lists('printers'  => 'printers',
377                    'languages' => 'languages');
378
379   $form->{type}          = 'dunning';
380   $form->{PRINT_OPTIONS} = print_options('inline'          => 1,
381                                          'no_queue'        => 1,
382                                          'no_postscript'   => 1,
383                                          'no_html'         => 1,
384                                          'no_opendocument' => 1,);
385   $form->{title}         = $locale->text('Dunning overview');
386
387   my $report = SL::ReportGenerator->new(\%myconfig, $form);
388
389   $report->set_options('std_column_visibility' => 1,
390                        'title'                 => $form->{title});
391   $report->set_export_options('show_dunning', @filter_field_list, qw(sort sortdir));
392
393   my %column_defs         =  (
394     'checkbox'            => { 'text' => '', 'visible' => 'HTML' },
395     'dunning_description' => { 'text' => $locale->text('Dunning Level') },
396     'customername'        => { 'text' => $locale->text('Customername') },
397     'departmentname'      => { 'text' => $locale->text('Department') },
398     'language'            => { 'text' => $locale->text('Language') },
399     'invnumber'           => { 'text' => $locale->text('Invnumber') },
400     'transdate'           => { 'text' => $locale->text('Invdate') },
401     'duedate'             => { 'text' => $locale->text('Invoice Duedate') },
402     'amount'              => { 'text' => $locale->text('Amount') },
403     'dunning_id'          => { 'text' => $locale->text('Dunning number') },
404     'dunning_date'        => { 'text' => $locale->text('Dunning Date') },
405     'dunning_duedate'     => { 'text' => $locale->text('Dunning Duedate') },
406     'fee'                 => { 'text' => $locale->text('Total Fees') },
407     'interest'            => { 'text' => $locale->text('Interest') },
408     'salesman'            => { 'text' => $locale->text('Salesperson'), 'visible' => $form->{l_salesman} ? 1 : 0 },
409     'documents'           => { 'text' => $locale->text('Documents'),   'visible' => $form->{l_documents}? 1 : 0 },
410     'webdav'              => { 'text' => $locale->text('WebDAV'),      'visible' => $form->{l_webdav}   ? 1 : 0 },
411     'mails'               => { 'text' => $locale->text('Mails'),       'visible' => $form->{l_mails}    ? 1 : 0 },
412   );
413
414   $report->set_columns(%column_defs);
415   $report->set_column_order(qw(checkbox dunning_description dunning_id customername language invnumber transdate
416                                duedate amount dunning_date dunning_duedate fee interest salesman departmentname mails webdav documents));
417   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
418
419   my $edit_url  = sub { build_std_url('script=' . ($_[0]->{invoice} ? 'is' : 'ar') . '.pl', 'action=edit', 'callback') . '&id=' . $::form->escape($_[0]->{id}) };
420   my $print_url = sub { build_std_url('action=print_dunning', 'format=pdf', 'media=screen', 'dunning_id='.$_[0]->{dunning_id}, 'language_id=' . $_[0]->{language_id}) };
421   my $sort_url  = build_std_url('action=show_dunning', grep { $form->{$_} } @filter_field_list);
422
423   foreach my $name (qw(dunning_description customername invnumber transdate duedate dunning_date dunning_duedate salesman dunning_id)) {
424     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
425     $column_defs{$name}->{link} = $sort_url . "&sort=$name&sortdir=$sortdir";
426   }
427
428   my %alignment = map { $_ => 'right' } qw(transdate duedate amount dunning_date dunning_duedate fee interest salesman dunning_id);
429
430   my ($current_dunning_rows, $previous_dunning_id, $first_row_for_dunning);
431
432   $current_dunning_rows  = [];
433   $first_row_for_dunning = 1;
434   $form->{rowcount}      = scalar @{ $form->{DUNNINGS} };
435
436   my $i = 0;
437
438   foreach my $ref (@{ $form->{DUNNINGS} }) {
439     $i++;
440
441     if ($previous_dunning_id != $ref->{dunning_id}) {
442       $report->add_data($current_dunning_rows) if (scalar @{ $current_dunning_rows });
443       $current_dunning_rows  = [];
444       $first_row_for_dunning = 1;
445     }
446
447     if ($ref->{'language_id'}) {
448       $ref->{language} = SL::DB::Manager::Language->find_by('id' => $ref->{'language_id'})->{'description'};
449     }
450
451     my $row = { };
452     foreach my $column (keys %{ $ref }) {
453       $row->{$column} = {
454         'data'  => $first_row_for_dunning || (none { $_ eq $column } qw(dunning_description customername dunning_id)) ? $ref->{$column} : '',
455
456         'align' => $alignment{$column},
457
458         'link'  => (  $column eq 'invnumber'           ? $edit_url->($ref)
459                     : $column eq 'dunning_description' ? $print_url->($ref)
460                     : $column eq 'dunning_id'          ? $print_url->($ref)
461                     :                                    ''),
462       };
463     }
464
465     $row->{checkbox} = !$first_row_for_dunning ? { } : {
466       'raw_data' =>   $cgi->hidden('-name' => "dunning_id_$i", '-value' => $ref->{dunning_id})
467                     . $cgi->checkbox('-name' => "selected_$i", '-value' => 1, '-label' => ''),
468       'valign'   => 'center',
469       'align'    => 'center',
470     };
471
472     if ($first_row_for_dunning) {
473       $row->{language} = {'raw_data' => $cgi->hidden('-name' => "language_id_$i", '-value' => $ref->{language_id})
474                                         . " $ref->{language}" };
475     } else {
476       $row->{language} = { };
477     }
478
479     if ($form->{l_documents} && $first_row_for_dunning) {
480       my @files  = SL::File->get_all_versions(object_id   => $ref->{dunning_id},
481                                               object_type => 'dunning',
482                                               file_type   => 'document',);
483       if (scalar @files) {
484         my $html          = join '<br>', map { SL::Presenter::FileObject::file_object($_) } @files;
485         my $text          = join "\n",   map { $_->file_name                              } @files;
486         $row->{documents} = { 'raw_data' => $html, data => $text };
487       } else {
488         $row->{documents} = { };
489       }
490     }
491     if ($form->{l_webdav} && $first_row_for_dunning) {
492       my $webdav = SL::Webdav->new(
493         type     => 'dunning',
494         number   => $ref->{dunning_id},
495       );
496       my @all_objects = $webdav->get_all_objects;
497       if (scalar @all_objects) {
498         my $html          = join '<br>', map { SL::Presenter::WebdavObject::webdav_object($_) } @all_objects;
499         my $text          = join "\n",   map { $_->filename                                   } @all_objects;
500         $row->{webdav}    = { 'raw_data' => $html, data => $text };
501       } else {
502         $row->{webdav}    = { };
503       }
504     }
505
506     if ($form->{l_mails}) {
507       my @mail_links = RecordLinks->get_links(from_table => 'dunning', to_table => 'email_journal', from_id => $ref->{dunning_table_id});
508       if (scalar @mail_links) {
509         my $email_journals = SL::DB::Manager::EmailJournal->get_all(where => [id => [ map { $_->{to_id} } @mail_links ]]);
510         my $html          = join '<br>', map { SL::Presenter::EmailJournal::email_journal($_) } @$email_journals;
511         my $text          = join "\n",   map { $_->subject                                    } @$email_journals;
512         $row->{mails}     = { 'raw_data' => $html, data => $text };
513       } else {
514         $row->{mails}     = { };
515       }
516     }
517
518     push @{ $current_dunning_rows }, $row;
519
520     $previous_dunning_id   = $ref->{dunning_id};
521     $first_row_for_dunning = 0;
522   }
523
524   $report->add_data($current_dunning_rows) if (scalar @{ $current_dunning_rows });
525
526   $report->set_options('raw_top_info_text'    => $form->parse_html_template('dunning/show_dunning_top'),
527                        'raw_bottom_info_text' => $form->parse_html_template('dunning/show_dunning_bottom'),
528                        'output_format'        => 'HTML',
529                        'attachment_basename'  => $locale->text('dunning_list') . strftime('_%Y%m%d', localtime time),
530     );
531
532   $report->set_options_from_form();
533
534   setup_dn_show_dunning_action_bar();
535   $report->generate_with_headers();
536
537   $main::lxdebug->leave_sub();
538
539 }
540
541 sub print_dunning {
542   $main::lxdebug->enter_sub();
543
544   my $form     = $main::form;
545
546   $main::auth->assert('dunning_edit');
547
548   $form->{rowcount}     = 1;
549   $form->{selected_1}   = 1;
550   $form->{dunning_id_1} = $form->{dunning_id};
551   $form->{language_id_1} = $form->{language_id};
552
553   print_multiple();
554
555   $main::lxdebug->leave_sub();
556 }
557
558 sub delete {
559   $main::auth->assert('dunning_edit');
560
561   my @dunning_ids = map { $::form->{"dunning_id_$_"} } grep { $::form->{"selected_$_"} } (1..$::form->{rowcount});
562
563   if (!scalar @dunning_ids) {
564     $::form->error($::locale->text('No dunnings have been selected for printing.'));
565   }
566
567   my $dunnings = SL::DB::Manager::Dunning->get_all(query => [ dunning_id => \@dunning_ids ]);
568
569   SL::DB::Dunning->new->db->with_transaction(sub {
570     for my $dunning (@$dunnings) {
571       SL::DB::Manager::Invoice->find_by(id => $dunning->trans_id)->update_attributes(dunning_config_id => undef);
572       $dunning->delete;
573     }
574   });
575
576   flash('info', t8('#1 dunnings have been deleted', scalar @$dunnings));
577
578   search();
579 }
580
581 sub print_multiple {
582   $main::lxdebug->enter_sub();
583
584   my $form     = $main::form;
585   my %myconfig = %main::myconfig;
586   my $locale   = $main::locale;
587
588   $main::auth->assert('dunning_edit');
589
590   $form->{title} = $locale->text('Print dunnings');
591
592   my @dunning_ids = map { $form->{"dunning_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount});
593   my @language_ids = map { $form->{"language_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount});
594
595   if (!scalar @dunning_ids) {
596     $form->error($locale->text('No dunnings have been selected for printing.'));
597   }
598
599   $form->{DUNNING_PDFS} = [];
600
601   my $saved_language_id = $form->{language_id};
602   my $i = 0;
603   foreach my $dunning_id (@dunning_ids) {
604     if (!$form->{force_lang}) {
605       $form->{language_id} = $language_ids[$i];
606     }
607     $form->{dunning_id} = $dunning_id;
608     DN->print_invoice_for_fees(\%myconfig, $form, $dunning_id);
609     DN->print_dunning(\%myconfig, $form, $dunning_id);
610
611     # print original dunned invoices, if they where printed on dunning run
612     my $dunnings = SL::DB::Manager::Dunning->get_all(where => [dunning_id => $dunning_id, original_invoice_printed => 1]);
613     DN->print_original_invoice(\%myconfig, $form, $dunning_id, $_->trans_id) for @$dunnings;
614
615     $i++;
616   }
617   $form->{language_id} = $saved_language_id;
618
619   if (scalar @{ $form->{DUNNING_PDFS} }) {
620     $form->{dunning_id} = strftime("%Y%m%d", localtime time) if scalar @{ $form->{DUNNING_PDFS}} > 1;
621     DN->melt_pdfs(\%myconfig, $form, $form->{copies});
622
623     if ($form->{media} eq 'printer') {
624       $form->header();
625       $form->info($locale->text('The dunnings have been printed.'));
626     }
627
628   } else {
629     $form->redirect($locale->text('Could not print dunning.'));
630   }
631
632   $main::lxdebug->leave_sub();
633 }
634
635 sub continue {
636   call_sub($main::form->{nextsub});
637 }
638
639 sub dispatcher {
640   foreach my $action (qw(delete print_multiple)) {
641     if ($::form->{"action_${action}"}) {
642       call_sub($action);
643       return;
644     }
645   }
646
647   $::form->error($::locale->text('No action defined.'));
648 }
649
650 sub setup_dn_add_action_bar {
651   my %params = @_;
652
653   for my $bar ($::request->layout->get('actionbar')) {
654     $bar->add(
655       action => [
656         t8('Search'),
657         submit    => [ '#form', { action => "show_invoices" } ],
658         accesskey => 'enter',
659       ],
660     );
661   }
662 }
663
664 sub setup_dn_show_invoices_action_bar {
665   my %params = @_;
666
667   for my $bar ($::request->layout->get('actionbar')) {
668     $bar->add(
669       action => [
670         t8('Create'),
671         submit    => [ '#form', { action => "save_dunning" } ],
672         checks    => [ [ 'kivi.check_if_entries_selected', '[name^=active_]' ] ],
673         accesskey => 'enter',
674         only_once => 1,
675       ],
676     );
677   }
678 }
679
680 sub setup_dn_search_action_bar {
681   my %params = @_;
682
683   for my $bar ($::request->layout->get('actionbar')) {
684     $bar->add(
685       action => [
686         t8('Search'),
687         submit    => [ '#form', { action => "show_dunning" } ],
688         accesskey => 'enter',
689       ],
690     );
691   }
692 }
693
694 sub setup_dn_show_dunning_action_bar {
695   my %params = @_;
696
697   for my $bar ($::request->layout->get('actionbar')) {
698     $bar->add(
699       action => [
700         t8('Print'),
701         submit    => [ '#form', { action => "print_multiple" } ],
702         checks    => [ [ 'kivi.check_if_entries_selected', '[name^=selected_]' ] ],
703         accesskey => 'enter',
704       ],
705
706       action => [
707         t8('Delete'),
708         submit  => [ '#form', { action => "delete" } ],
709         checks  => [ [ 'kivi.check_if_entries_selected', '[name^=selected_]' ] ],
710         confirm => $::locale->text('This resets the dunning process for the selected invoices. Posted dunning invoices will not be changed!'),
711       ],
712     );
713   }
714 }
715
716 sub setup_dn_edit_config_action_bar {
717   my %params = @_;
718
719   for my $bar ($::request->layout->get('actionbar')) {
720     $bar->add(
721       action => [
722         t8('Save'),
723         submit    => [ '#form', { action => "save" } ],
724         accesskey => 'enter',
725       ],
726     );
727   }
728 }
729
730 sub setup_dn_status_action_bar {
731   for my $bar ($::request->layout->get('actionbar')) {
732     $bar->add(
733       action => [
734         t8('Back'),
735         link      => $::form->{callback},
736         accesskey => 'enter',
737       ],
738     );
739   }
740
741 }
742
743 # end of main