1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (c) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  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.
 
  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,
 
  29 #======================================================================
 
  31 # Dunning process module
 
  33 #======================================================================
 
  35 use POSIX qw(strftime);
 
  37 use List::Util qw(notall);
 
  38 use List::MoreUtils qw(none);
 
  42 use SL::DB::Department;
 
  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;
 
  52 require "bin/mozilla/common.pl";
 
  53 require "bin/mozilla/reportgenerator.pl";
 
  54 require "bin/mozilla/io.pl";
 
  61   $main::lxdebug->enter_sub();
 
  63   my $form     = $main::form;
 
  64   my %myconfig = %main::myconfig;
 
  65   my $locale   = $main::locale;
 
  67   $main::auth->assert('config');
 
  69   DN->get_config(\%myconfig, \%$form);
 
  70   $form->get_lists('charts' => { 'key'       => 'ALL_CHARTS',
 
  71                                  'transdate' => 'current_date' });
 
  73   $form->{SELECT_AR_AMOUNT} = [];
 
  74   $form->{SELECT_AR}        = [];
 
  76   foreach my $chart (@{ $form->{ALL_CHARTS} }) {
 
  77     $chart->{LINKS} = { map { $_, 1 } split m/:/, $chart->{link} };
 
  79     if ($chart->{LINKS}->{AR}) {
 
  80       $chart->{AR_selected} = "selected" if $chart->{id} == $form->{AR};
 
  81       push @{ $form->{SELECT_AR} }, $chart;
 
  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;
 
  91   $form->{title}      = $locale->text('Edit Dunning Process Config');
 
  92   $form->{callback} ||= build_std_url("action=edit_config");
 
  94   setup_dn_edit_config_action_bar();
 
  97   print $form->parse_html_template("dunning/edit_config");
 
  99   $main::lxdebug->leave_sub();
 
 103   $main::lxdebug->enter_sub();
 
 105   my $form     = $main::form;
 
 106   my %myconfig = %main::myconfig;
 
 107   my $locale   = $main::locale;
 
 109   $main::auth->assert('dunning_edit');
 
 111   DN->get_config(\%myconfig, \%$form);
 
 113   $form->get_lists("departments" => "ALL_DEPARTMENTS");
 
 115   $form->{SHOW_DUNNING_LEVEL_SELECTION} = $form->{DUNNING}         && scalar @{ $form->{DUNNING} };
 
 116   $form->{SHOW_DEPARTMENT_SELECTION}    = $form->{ALL_DEPARTMENTS} && scalar @{ $form->{ALL_DEPARTMENTS} || [] };
 
 118   $form->{title}    = $locale->text('Start Dunning Process');
 
 120   setup_dn_add_action_bar();
 
 123   print $form->parse_html_template("dunning/add");
 
 125   $main::lxdebug->leave_sub();
 
 129   $main::lxdebug->enter_sub();
 
 131   my $form     = $main::form;
 
 132   my %myconfig = %main::myconfig;
 
 133   my $locale   = $main::locale;
 
 135   $main::auth->assert('dunning_edit');
 
 137   DN->get_invoices(\%myconfig, \%$form);
 
 138   $form->{title} = $locale->text('Start Dunning Process');
 
 140   foreach my $row (@{ $form->{DUNNINGS} }) {
 
 141     $row->{DUNNING_CONFIG} = [ map +{ %{ $_ } }, @{ $form->{DUNNING_CONFIG} } ];
 
 143     if ($row->{next_dunning_config_id}) {
 
 144       map { $_->{SELECTED} = $_->{id} == $row->{next_dunning_config_id} } @{ $row->{DUNNING_CONFIG } };
 
 146     map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, 2) } qw(amount open_amount fee interest);
 
 148     if ($row->{'language_id'}) {
 
 149       $row->{language} = SL::DB::Manager::Language->find_by_or_create('id' => $row->{'language_id'})->{'description'};
 
 153   $form->get_lists('printers'  => 'printers',
 
 154                    'languages' => 'languages');
 
 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));
 
 160   $form->{PRINT_OPTIONS}  = print_options('inline'          => 1,
 
 162                                           'no_postscript'   => 1,
 
 164                                           'no_opendocument' => 1,);
 
 166   setup_dn_show_invoices_action_bar();
 
 168   print $form->parse_html_template("dunning/show_invoices");
 
 170   $main::lxdebug->leave_sub();
 
 174   $main::lxdebug->enter_sub();
 
 176   my $form     = $main::form;
 
 177   my %myconfig = %main::myconfig;
 
 178   my $locale   = $main::locale;
 
 180   $main::auth->assert('config');
 
 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);
 
 191   DN->save_config(\%myconfig, \%$form);
 
 193   if(!exists $form->{addition} && $form->{id} ne "") {
 
 194     $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
 
 195     $form->{addition} = "SAVED FOR DUNNING";
 
 198   # /saving the history
 
 199   $form->redirect($locale->text('Dunning Process Config saved!'));
 
 201   $main::lxdebug->leave_sub();
 
 205   $main::lxdebug->enter_sub();
 
 207   my $form     = $main::form;
 
 208   my %myconfig = %main::myconfig;
 
 209   my $locale   = $main::locale;
 
 211   $main::auth->assert('dunning_edit');
 
 216   undef($form->{DUNNING_PDFS});
 
 218   my $saved_language_id = $form->{language_id};
 
 220   if ($form->{groupinvoices} || $form->{l_include_credit_notes}) {
 
 223     for my $i (1 .. $form->{rowcount}) {
 
 224       next unless ($form->{"active_$i"});
 
 226       $dunnings_for{$form->{"customer_id_$i"}} ||= {};
 
 227       my $dunning_levels = $dunnings_for{$form->{"customer_id_$i"}};
 
 229       $dunning_levels->{$form->{"next_dunning_config_id_$i"}} ||= [];
 
 230       my $level = $dunning_levels->{$form->{"next_dunning_config_id_$i"}};
 
 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"}, };
 
 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};
 
 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), };
 
 256     for my $i (1 .. $form->{rowcount}) {
 
 257       next unless $form->{"active_$i"};
 
 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};
 
 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), };
 
 276   $form->{language_id} = $saved_language_id;
 
 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');
 
 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'));
 
 288       flash('info', t8('The PDF has been created'));
 
 293   if(!exists $form->{addition} && $form->{id} ne "") {
 
 294     $form->{snumbers} = qq|dunning_id_| . $form->{"dunning_id"};
 
 295     $form->{addition} = "DUNNING STARTED";
 
 298   # /saving the history
 
 300   setup_dn_status_action_bar();
 
 301   $form->{"title"} = $locale->text("Dunning status");
 
 303   print $form->parse_html_template('dunning/status', {
 
 304     pdf_filename => $pdf_filename,
 
 305     pdf_content  => $pdf_content,
 
 306     status       => \@status, });
 
 308   $main::lxdebug->leave_sub();
 
 312   $main::lxdebug->enter_sub();
 
 314   my $form     = $main::form;
 
 315   my $locale   = $main::locale;
 
 317   $main::auth->assert('dunning_edit');
 
 319   $form->{"title"} = $locale->text("Set eMail text");
 
 320   $form->header(no_layout => 1);
 
 321   print($form->parse_html_template("dunning/set_email"));
 
 323   $main::lxdebug->leave_sub();
 
 327   $main::lxdebug->enter_sub();
 
 329   my $form     = $main::form;
 
 330   my %myconfig = %main::myconfig;
 
 331   my $locale   = $main::locale;
 
 333   $main::auth->assert('dunning_edit');
 
 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 ]);
 
 339   DN->get_config(\%myconfig, \%$form);
 
 341   $form->{SHOW_DUNNING_LEVELS}   = scalar @{ $form->{DUNNING} };
 
 343   $form->{title}    = $locale->text('Dunnings');
 
 345   setup_dn_search_action_bar();
 
 348   print $form->parse_html_template("dunning/search");
 
 350   $main::lxdebug->leave_sub();
 
 355   $main::lxdebug->enter_sub();
 
 357   my $form     = $main::form;
 
 358   my %myconfig = %main::myconfig;
 
 359   my $locale   = $main::locale;
 
 360   my $cgi      = $::request->{cgi};
 
 362   $main::auth->assert('dunning_edit');
 
 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);
 
 368   report_generator_set_default_sort('customername', 1);
 
 370   DN->get_dunning(\%myconfig, \%$form);
 
 372   if (!$form->{callback}) {
 
 373     $form->{callback} = build_std_url("action=show_dunning", @filter_field_list);
 
 376   $form->get_lists('printers'  => 'printers',
 
 377                    'languages' => 'languages');
 
 379   $form->{type}          = 'dunning';
 
 380   $form->{PRINT_OPTIONS} = print_options('inline'          => 1,
 
 382                                          'no_postscript'   => 1,
 
 384                                          'no_opendocument' => 1,);
 
 385   $form->{title}         = $locale->text('Dunning overview');
 
 387   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 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));
 
 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 },
 
 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});
 
 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);
 
 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";
 
 428   my %alignment = map { $_ => 'right' } qw(transdate duedate amount dunning_date dunning_duedate fee interest salesman dunning_id);
 
 430   my ($current_dunning_rows, $previous_dunning_id, $first_row_for_dunning);
 
 432   $current_dunning_rows  = [];
 
 433   $first_row_for_dunning = 1;
 
 434   $form->{rowcount}      = scalar @{ $form->{DUNNINGS} };
 
 438   foreach my $ref (@{ $form->{DUNNINGS} }) {
 
 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;
 
 447     if ($ref->{'language_id'}) {
 
 448       $ref->{language} = SL::DB::Manager::Language->find_by('id' => $ref->{'language_id'})->{'description'};
 
 452     foreach my $column (keys %{ $ref }) {
 
 454         'data'  => $first_row_for_dunning || (none { $_ eq $column } qw(dunning_description customername dunning_id)) ? $ref->{$column} : '',
 
 456         'align' => $alignment{$column},
 
 458         'link'  => (  $column eq 'invnumber'           ? $edit_url->($ref)
 
 459                     : $column eq 'dunning_description' ? $print_url->($ref)
 
 460                     : $column eq 'dunning_id'          ? $print_url->($ref)
 
 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',
 
 472     if ($first_row_for_dunning) {
 
 473       $row->{language} = {'raw_data' => $cgi->hidden('-name' => "language_id_$i", '-value' => $ref->{language_id})
 
 474                                         . " $ref->{language}" };
 
 476       $row->{language} = { };
 
 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',);
 
 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 };
 
 488         $row->{documents} = { };
 
 491     if ($form->{l_webdav} && $first_row_for_dunning) {
 
 492       my $webdav = SL::Webdav->new(
 
 494         number   => $ref->{dunning_id},
 
 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 };
 
 502         $row->{webdav}    = { };
 
 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 };
 
 518     push @{ $current_dunning_rows }, $row;
 
 520     $previous_dunning_id   = $ref->{dunning_id};
 
 521     $first_row_for_dunning = 0;
 
 524   $report->add_data($current_dunning_rows) if (scalar @{ $current_dunning_rows });
 
 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),
 
 532   $report->set_options_from_form();
 
 534   setup_dn_show_dunning_action_bar();
 
 535   $report->generate_with_headers();
 
 537   $main::lxdebug->leave_sub();
 
 542   $main::lxdebug->enter_sub();
 
 544   my $form     = $main::form;
 
 546   $main::auth->assert('dunning_edit');
 
 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};
 
 555   $main::lxdebug->leave_sub();
 
 559   $main::auth->assert('dunning_edit');
 
 561   my @dunning_ids = map { $::form->{"dunning_id_$_"} } grep { $::form->{"selected_$_"} } (1..$::form->{rowcount});
 
 563   if (!scalar @dunning_ids) {
 
 564     $::form->error($::locale->text('No dunnings have been selected for printing.'));
 
 567   my $dunnings = SL::DB::Manager::Dunning->get_all(query => [ dunning_id => \@dunning_ids ]);
 
 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);
 
 576   flash('info', t8('#1 dunnings have been deleted', scalar @$dunnings));
 
 582   $main::lxdebug->enter_sub();
 
 584   my $form     = $main::form;
 
 585   my %myconfig = %main::myconfig;
 
 586   my $locale   = $main::locale;
 
 588   $main::auth->assert('dunning_edit');
 
 590   $form->{title} = $locale->text('Print dunnings');
 
 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});
 
 595   if (!scalar @dunning_ids) {
 
 596     $form->error($locale->text('No dunnings have been selected for printing.'));
 
 599   $form->{DUNNING_PDFS} = [];
 
 601   my $saved_language_id = $form->{language_id};
 
 603   foreach my $dunning_id (@dunning_ids) {
 
 604     if (!$form->{force_lang}) {
 
 605       $form->{language_id} = $language_ids[$i];
 
 607     $form->{dunning_id} = $dunning_id;
 
 608     DN->print_invoice_for_fees(\%myconfig, $form, $dunning_id);
 
 609     DN->print_dunning(\%myconfig, $form, $dunning_id);
 
 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;
 
 617   $form->{language_id} = $saved_language_id;
 
 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});
 
 623     if ($form->{media} eq 'printer') {
 
 625       $form->info($locale->text('The dunnings have been printed.'));
 
 629     $form->redirect($locale->text('Could not print dunning.'));
 
 632   $main::lxdebug->leave_sub();
 
 636   call_sub($main::form->{nextsub});
 
 640   foreach my $action (qw(delete print_multiple)) {
 
 641     if ($::form->{"action_${action}"}) {
 
 647   $::form->error($::locale->text('No action defined.'));
 
 650 sub setup_dn_add_action_bar {
 
 653   for my $bar ($::request->layout->get('actionbar')) {
 
 657         submit    => [ '#form', { action => "show_invoices" } ],
 
 658         accesskey => 'enter',
 
 664 sub setup_dn_show_invoices_action_bar {
 
 667   for my $bar ($::request->layout->get('actionbar')) {
 
 671         submit    => [ '#form', { action => "save_dunning" } ],
 
 672         checks    => [ [ 'kivi.check_if_entries_selected', '[name^=active_]' ] ],
 
 673         accesskey => 'enter',
 
 680 sub setup_dn_search_action_bar {
 
 683   for my $bar ($::request->layout->get('actionbar')) {
 
 687         submit    => [ '#form', { action => "show_dunning" } ],
 
 688         accesskey => 'enter',
 
 694 sub setup_dn_show_dunning_action_bar {
 
 697   for my $bar ($::request->layout->get('actionbar')) {
 
 701         submit    => [ '#form', { action => "print_multiple" } ],
 
 702         checks    => [ [ 'kivi.check_if_entries_selected', '[name^=selected_]' ] ],
 
 703         accesskey => 'enter',
 
 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!'),
 
 716 sub setup_dn_edit_config_action_bar {
 
 719   for my $bar ($::request->layout->get('actionbar')) {
 
 723         submit    => [ '#form', { action => "save" } ],
 
 724         accesskey => 'enter',
 
 730 sub setup_dn_status_action_bar {
 
 731   for my $bar ($::request->layout->get('actionbar')) {
 
 735         link      => $::form->{callback},
 
 736         accesskey => 'enter',