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
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
  30 #======================================================================
 
  32 # Dunning process module
 
  34 #======================================================================
 
  44 use SL::GenericTranslations;
 
  52 use SL::Util qw(trim);
 
  57 use File::Slurp qw(read_file);
 
  62   $main::lxdebug->enter_sub();
 
  64   my ($self, $myconfig, $form) = @_;
 
  67   my $dbh = SL::DB->client->dbh;
 
  71     qq|FROM dunning_config | .
 
  72     qq|ORDER BY dunning_level|;
 
  73   $form->{DUNNING} = selectall_hashref_query($form, $dbh, $query);
 
  75   foreach my $ref (@{ $form->{DUNNING} }) {
 
  76     $ref->{fee} = $form->format_amount($myconfig, $ref->{fee}, 2);
 
  77     $ref->{interest_rate} = $form->format_amount($myconfig, ($ref->{interest_rate} * 100));
 
  81     qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar, dunning_creator
 
  83   ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}, $form->{dunning_creator})
 
  84     = selectrow_query($form, $dbh, $query);
 
  86   $main::lxdebug->leave_sub();
 
  90   my ($self, $myconfig, $form) = @_;
 
  91   $main::lxdebug->enter_sub();
 
  93   my $rc = SL::DB->client->with_transaction(\&_save_config, $self, $myconfig, $form);
 
  95   $::lxdebug->leave_sub;
 
 100   my ($self, $myconfig, $form) = @_;
 
 102   my $dbh = SL::DB->client->dbh;
 
 104   my ($query, @values);
 
 106   for my $i (1 .. $form->{rowcount}) {
 
 107     $form->{"fee_$i"} = $form->parse_amount($myconfig, $form->{"fee_$i"}) * 1;
 
 108     $form->{"interest_rate_$i"} = $form->parse_amount($myconfig, $form->{"interest_rate_$i"}) / 100;
 
 110     if (($form->{"dunning_level_$i"} ne "") &&
 
 111         ($form->{"dunning_description_$i"} ne "")) {
 
 112       @values = (conv_i($form->{"dunning_level_$i"}), $form->{"dunning_description_$i"},
 
 113                  $form->{"email_subject_$i"}, $form->{"email_body_$i"},
 
 114                  $form->{"template_$i"}, $form->{"fee_$i"}, $form->{"interest_rate_$i"},
 
 115                  $form->{"active_$i"} ? 't' : 'f', $form->{"auto_$i"} ? 't' : 'f', $form->{"email_$i"} ? 't' : 'f',
 
 116                  $form->{"email_attachment_$i"} ? 't' : 'f', conv_i($form->{"payment_terms_$i"}), conv_i($form->{"terms_$i"}),
 
 117                  $form->{"create_invoices_for_fees_$i"} ? 't' : 'f',
 
 118                  $form->{"print_original_invoice_$i"} ? 't' : 'f');
 
 119       if ($form->{"id_$i"}) {
 
 121           qq|UPDATE dunning_config SET
 
 122                dunning_level = ?, dunning_description = ?,
 
 123                email_subject = ?, email_body = ?,
 
 124                template = ?, fee = ?, interest_rate = ?,
 
 125                active = ?, auto = ?, email = ?,
 
 126                email_attachment = ?, payment_terms = ?, terms = ?,
 
 127                create_invoices_for_fees = ?,
 
 128                print_original_invoice = ?
 
 130         push(@values, conv_i($form->{"id_$i"}));
 
 133           qq|INSERT INTO dunning_config
 
 134                (dunning_level, dunning_description, email_subject, email_body,
 
 135                 template, fee, interest_rate, active, auto, email,
 
 136                 email_attachment, payment_terms, terms, create_invoices_for_fees,
 
 137                 print_original_invoice)
 
 138              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 140       do_query($form, $dbh, $query, @values);
 
 143     if (($form->{"dunning_description_$i"} eq "") && ($form->{"id_$i"})) {
 
 144       $query = qq|DELETE FROM dunning_config WHERE id = ?|;
 
 145       do_query($form, $dbh, $query, $form->{"id_$i"});
 
 149   $query  = qq|UPDATE defaults SET dunning_ar_amount_fee = ?, dunning_ar_amount_interest = ?, dunning_ar = ?,
 
 150                dunning_creator = ?|;
 
 151   @values = (conv_i($form->{AR_amount_fee}), conv_i($form->{AR_amount_interest}), conv_i($form->{AR}),
 
 152              $form->{dunning_creator});
 
 153   do_query($form, $dbh, $query, @values);
 
 158 sub create_invoice_for_fees {
 
 159   $main::lxdebug->enter_sub();
 
 161   my ($self, $myconfig, $form, $dbh, $dunning_id) = @_;
 
 163   my ($query, @values, $sth, $ref);
 
 165   $query = qq|SELECT dcfg.create_invoices_for_fees
 
 167               LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
 
 168               WHERE d.dunning_id = ?|;
 
 169   my ($create_invoices_for_fees) = selectrow_query($form, $dbh, $query, $dunning_id);
 
 171   if (!$create_invoices_for_fees) {
 
 172     $main::lxdebug->leave_sub();
 
 176   $query = qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar FROM defaults|;
 
 177   ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}) = selectrow_query($form, $dbh, $query);
 
 183            SELECT MAX(d_fee.fee)
 
 185            WHERE (d_fee.trans_id   =  d.trans_id)
 
 186              AND (d_fee.dunning_id <> ?)
 
 187              AND NOT (d_fee.fee_interest_ar_id ISNULL)
 
 192            SELECT MAX(d_interest.interest)
 
 193            FROM dunning d_interest
 
 194            WHERE (d_interest.trans_id   =  d.trans_id)
 
 195              AND (d_interest.dunning_id <> ?)
 
 196              AND NOT (d_interest.fee_interest_ar_id ISNULL)
 
 198          AS max_previous_interest,
 
 201        WHERE dunning_id = ?|;
 
 202   @values = ($dunning_id, $dunning_id, $dunning_id);
 
 203   $sth = prepare_execute_query($form, $dbh, $query, @values);
 
 205   my ($fee_remaining, $interest_remaining) = (0, 0);
 
 206   my ($fee_total, $interest_total) = (0, 0);
 
 210   while (my $ref = $sth->fetchrow_hashref()) {
 
 211     $fee_remaining      += $form->round_amount($ref->{fee}, 2);
 
 212     $fee_remaining      -= $form->round_amount($ref->{max_previous_fee}, 2);
 
 213     $fee_total          += $form->round_amount($ref->{fee}, 2);
 
 214     $interest_remaining += $form->round_amount($ref->{interest}, 2);
 
 215     $interest_remaining -= $form->round_amount($ref->{max_previous_interest}, 2);
 
 216     $interest_total     += $form->round_amount($ref->{interest}, 2);
 
 217     push @link_ids, $ref->{link_id};
 
 222   my $amount = $fee_remaining + $interest_remaining;
 
 225     $main::lxdebug->leave_sub();
 
 229   my ($ar_id) = selectrow_query($form, $dbh, qq|SELECT nextval('glid')|);
 
 230   my $curr = $form->get_default_currency($myconfig);
 
 231   my $trans_number = SL::TransNumber->new(type => 'invoice', dbh => $dbh);
 
 234     qq|INSERT INTO ar (id,          invnumber, transdate, gldate, customer_id,
 
 235                        taxincluded, amount,    netamount, paid,   duedate,
 
 236                        invoice,     currency_id, taxzone_id,      notes,
 
 241          current_date,          -- transdate
 
 242          current_date,          -- gldate
 
 244          (SELECT ar.customer_id
 
 246           LEFT JOIN ar ON (dn.trans_id = ar.id)
 
 247           WHERE dn.dunning_id = ?
 
 254          (SELECT duedate FROM dunning WHERE dunning_id = ? LIMIT 1),
 
 256          (SELECT id FROM currencies WHERE name = ?), -- curr
 
 258          (SELECT taxzone_id FROM customer WHERE id =
 
 259           (SELECT ar.customer_id
 
 261            LEFT JOIN ar ON (dn.trans_id = ar.id)
 
 262            WHERE dn.dunning_id = ?
 
 267          (SELECT id FROM employee WHERE login = ?)
 
 269   @values = ($ar_id,            # id
 
 270              $trans_number->create_unique, # invnumber
 
 271              $dunning_id,       # customer_id
 
 274              $dunning_id,       # duedate
 
 275              $curr,             # default currency
 
 276              $dunning_id,       # taxzone_id
 
 277              sprintf($main::locale->text('Automatically created invoice for fee and interest for dunning %s'), $dunning_id), # notes
 
 278              $::myconfig{login});   # employee_id
 
 279   do_query($form, $dbh, $query, @values);
 
 281   RecordLinks->create_links(
 
 284     'from_table' => 'dunning',
 
 285     'from_ids'   => \@link_ids,
 
 291     qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, taxkey, tax_id, chart_link)
 
 292        VALUES (?, ?, ?, current_date, current_date, 0,
 
 293                (SELECT id   FROM tax   WHERE (taxkey = 0) AND (rate = 0)),
 
 294                (SELECT link FROM chart WHERE id = ?))|;
 
 295   $sth = prepare_query($form, $dbh, $query);
 
 297   @values = ($ar_id, conv_i($form->{AR_amount_fee}), $fee_remaining, conv_i($form->{AR_amount_fee}));
 
 298   do_statement($form, $sth, $query, @values);
 
 300   if ($interest_remaining) {
 
 301     @values = ($ar_id, conv_i($form->{AR_amount_interest}), $interest_remaining, conv_i($form->{AR_amount_interest}));
 
 302     do_statement($form, $sth, $query, @values);
 
 305   @values = ($ar_id, conv_i($form->{AR}), -1 * $amount, conv_i($form->{AR}));
 
 306   do_statement($form, $sth, $query, @values);
 
 310   $query = qq|UPDATE dunning SET fee_interest_ar_id = ? WHERE dunning_id = ?|;
 
 311   do_query($form, $dbh, $query, $ar_id, $dunning_id);
 
 313   $main::lxdebug->leave_sub();
 
 318   my ($self, $myconfig, $form, $rows) = @_;
 
 319   $main::lxdebug->enter_sub();
 
 321   $form->{DUNNING_PDFS_STORAGE} = [];
 
 323   # Catch any error, either exception or a call to form->error
 
 324   # and return it to the calling function.
 
 327     local $form->{__ERROR_HANDLER} = sub { die @_ };
 
 328     $rc = SL::DB->client->with_transaction(\&_save_dunning, $self, $myconfig, $form, $rows);
 
 334   # Save PDFs in filemanagement and webdav after transation succeeded,
 
 335   # because otherwise files in the storage may exists if the transaction
 
 336   # failed. Ignore all errros.
 
 337   # Todo: Maybe catch errros and display them as warnings or non fatal errors in the status.
 
 338   if (!$error && $form->{DUNNING_PDFS_STORAGE} && scalar @{ $form->{DUNNING_PDFS_STORAGE} }) {
 
 339     _store_pdf_to_webdav_and_filemanagement($_->{dunning_id}, $_->{path}, $_->{name}) for @{ $form->{DUNNING_PDFS_STORAGE} };
 
 342   $error       = 'unknown errror' if !$error && !$rc;
 
 343   $rc->{error} = $error           if $error;
 
 345   $::lxdebug->leave_sub;
 
 352   my ($self, $myconfig, $form, $rows) = @_;
 
 354   my $dbh = SL::DB->client->dbh;
 
 356   my ($query, @values);
 
 358   my ($dunning_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
 
 360   my $q_update_ar = qq|UPDATE ar SET dunning_config_id = ? WHERE id = ?|;
 
 361   my $h_update_ar = prepare_query($form, $dbh, $q_update_ar);
 
 363   my $q_insert_dunning =
 
 364     qq|INSERT INTO dunning (id,  dunning_id, dunning_config_id, dunning_level, trans_id,
 
 365                             fee, interest,   transdate,         duedate,       original_invoice_printed)
 
 367                (SELECT dunning_level FROM dunning_config WHERE id = ?),
 
 371                 WHERE dunning_level <= (SELECT dunning_level FROM dunning_config WHERE id = ?)),
 
 372                (SELECT (amount - paid) * (current_date - duedate) FROM ar WHERE id = ?)
 
 373                  * (SELECT interest_rate FROM dunning_config WHERE id = ?)
 
 376                current_date + (SELECT payment_terms FROM dunning_config WHERE id = ?),
 
 378   my $h_insert_dunning = prepare_query($form, $dbh, $q_insert_dunning);
 
 381   my ($next_dunning_config_id, $customer_id);
 
 382   my ($send_email, $print_invoice) = (0, 0);
 
 384   foreach my $row (@{ $rows }) {
 
 385     if ($row->{credit_note}) {
 
 387       %{ $form->{LIST_CREDIT_NOTES}{$row->{customer_id}}{$row->{invoice_id}} } = (
 
 388         open_amount => $form->{"open_amount_$i"},
 
 389         amount      => $form->{"amount_$i"},
 
 390         invnumber   => $form->{"invnumber_$i"},
 
 391         invdate     => $form->{"invdate_$i"},
 
 395     push @invoice_ids, $row->{invoice_id};
 
 396     $next_dunning_config_id = $row->{next_dunning_config_id};
 
 397     $customer_id            = $row->{customer_id};
 
 399     @values = ($row->{next_dunning_config_id}, $row->{invoice_id});
 
 400     do_statement($form, $h_update_ar, $q_update_ar, @values);
 
 402     $send_email       |= $row->{email};
 
 403     $print_invoice    |= $row->{print_invoice};
 
 405     my ($row_id)       = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
 
 406     my $next_config_id = conv_i($row->{next_dunning_config_id});
 
 407     my $invoice_id     = conv_i($row->{invoice_id});
 
 409     @values = ($row_id,         $dunning_id,     $next_config_id,
 
 410                $next_config_id, $invoice_id,     $next_config_id,
 
 411                $invoice_id,     $next_config_id, $next_config_id,
 
 413     do_statement($form, $h_insert_dunning, $q_insert_dunning, @values);
 
 415     RecordLinks->create_links(
 
 418       'from_table' => 'ar',
 
 419       'from_ids'   => $invoice_id,
 
 420       'to_table'   => 'dunning',
 
 424   # die this transaction, because for this customer only credit notes are
 
 426   die "only credit notes are selected for this customer\n" unless $customer_id;
 
 428   $h_update_ar->finish();
 
 429   $h_insert_dunning->finish();
 
 431   $form->{DUNNING_PDFS_EMAIL} = [];
 
 433   $form->{dunning_id} = $dunning_id;
 
 435   $self->create_invoice_for_fees($myconfig, $form, $dbh, $dunning_id);
 
 437   $self->print_invoice_for_fees($myconfig, $form, $dunning_id, $dbh);
 
 438   $self->print_dunning($myconfig, $form, $dunning_id, $dbh);
 
 440   if ($print_invoice) {
 
 441     $self->print_original_invoice($myconfig, $form, $dunning_id, $_) for @invoice_ids;
 
 445     $self->send_email($myconfig, $form, $dunning_id, $dbh);
 
 448   return ({dunning_id => $dunning_id, print_original_invoice => $print_invoice, send_email => $send_email});
 
 452   $main::lxdebug->enter_sub();
 
 454   my ($self, $myconfig, $form, $dunning_id, $dbh) = @_;
 
 458          dcfg.email_body,     dcfg.email_subject, dcfg.email_attachment,
 
 459          COALESCE (NULLIF(c.invoice_mail, ''), c.email) AS recipient, c.name,
 
 460          (SELECT login from employee where id = ar.employee_id) as invoice_employee_login
 
 462        LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
 
 463        LEFT JOIN ar                  ON (d.trans_id          = ar.id)
 
 464        LEFT JOIN customer c          ON (ar.customer_id      = c.id)
 
 465        WHERE (d.dunning_id = ?)
 
 467   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
 
 469   # without a recipient, we cannot send a mail
 
 470   if (!$ref || !$ref->{recipient}) {
 
 471     $main::lxdebug->leave_sub();
 
 472     die $main::locale->text("No email recipient for customer #1 defined.", $ref->{name});
 
 475   # without a sender we cannot send a mail
 
 476   # two cases: check mail from 1. current user OR  2. employee who created the invoice
 
 478   if ($::instance_conf->get_dunning_creator eq 'current_employee') {
 
 479     $from = $myconfig->{email};
 
 480     die $main::locale->text('No email for current user #1 defined.', $myconfig->{name}) unless $from;
 
 483       $from = SL::DB::Manager::AuthUser->find_by(login =>  $ref->{invoice_employee_login})->get_config_value("email");
 
 484       $sign = SL::DB::Manager::AuthUser->find_by(login =>  $ref->{invoice_employee_login})->get_config_value("signature");
 
 487     } or die $main::locale->text('No email for user with login #1 defined.', $ref->{invoice_employee_login});
 
 490   my $template     = SL::Template::create(type => 'PlainText', form => $form, myconfig => $myconfig);
 
 491   my $mail         = Mailer->new();
 
 492   $mail->{bcc}     = $form->get_bcc_defaults($myconfig, $form->{bcc});
 
 493   $mail->{from}    = $from;
 
 494   $mail->{to}      = $ref->{recipient};
 
 495   $mail->{subject} = $template->parse_block($ref->{email_subject});
 
 496   $mail->{message} = $template->parse_block($ref->{email_body});
 
 497   my $sign_backup  = $::myconfig{signature};
 
 498   $::myconfig{signature} = $sign if $sign;
 
 499   $mail->{message} .= $form->create_email_signature();
 
 500   $::myconfig{signature} = $sign_backup if $sign;
 
 502   $mail->{message} =~ s/\r\n/\n/g;
 
 504   if ($ref->{email_attachment} && @{ $form->{DUNNING_PDFS_EMAIL} }) {
 
 505     $mail->{attachments} = $form->{DUNNING_PDFS_EMAIL};
 
 508   $query  = qq|SELECT id FROM dunning WHERE dunning_id = ?|;
 
 509   my @ids = selectall_array_query($form, $dbh, $query, $dunning_id);
 
 510   $mail->{record_id}   = \@ids;
 
 511   $mail->{record_type} = 'dunning';
 
 515   $main::lxdebug->leave_sub();
 
 518 sub set_template_options {
 
 519   $main::lxdebug->enter_sub();
 
 521   my ($self, $myconfig, $form) = @_;
 
 523   my $defaults = SL::DB::Default->get;
 
 524   $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
 
 525   $form->{templates}    = $defaults->templates;
 
 526   $form->{language}     = $form->get_template_language($myconfig);
 
 527   $form->{printer_code} = $form->get_printer_code($myconfig);
 
 529   if ($form->{language} ne "") {
 
 530     $form->{language} = "_" . $form->{language};
 
 533   if ($form->{printer_code} ne "") {
 
 534     $form->{printer_code} = "_" . $form->{printer_code};
 
 537   my $extension = 'html';
 
 538   if ($form->{format} eq 'postscript') {
 
 539     $form->{postscript}   = 1;
 
 542   } elsif ($form->{"format"} =~ /pdf/) {
 
 544     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
 546   } elsif ($form->{"format"} =~ /opendocument/) {
 
 547     $form->{opendocument} = 1;
 
 549   } elsif ($form->{"format"} =~ /excel/) {
 
 555   # search for the template
 
 557   push @template_files, "$form->{formname}_email$form->{language}$form->{printer_code}.$extension" if $form->{media} eq 'email';
 
 558   push @template_files, "$form->{formname}$form->{language}$form->{printer_code}.$extension";
 
 559   push @template_files, "$form->{formname}.$extension";
 
 560   push @template_files, "default.$extension";
 
 563   for my $filename (@template_files) {
 
 564     if (-f ($defaults->templates . "/$filename")) {
 
 565       $form->{IN} = $filename;
 
 570   if (!defined $form->{IN}) {
 
 571     $::form->error($::locale->text('Cannot find matching template for this print request. Please contact your template maintainer. I tried these: #1.', join ', ', map { "'$_'"} @template_files));
 
 574   # prepare meta information for template introspection
 
 575   $form->{template_meta} = {
 
 576     formname  => $form->{formname},
 
 577     language  => SL::DB::Manager::Language->find_by_or_create(id => $form->{language_id} || undef),
 
 578     format    => $form->{format},
 
 579     media     => $form->{media},
 
 580     extension => $extension,
 
 581     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $form->{printer_id} || undef),
 
 582     today     => DateTime->today,
 
 585   $main::lxdebug->leave_sub();
 
 590   $main::lxdebug->enter_sub();
 
 592   my ($self, $myconfig, $form) = @_;
 
 594   # connect to database
 
 595   my $dbh = SL::DB->client->dbh;
 
 600   $form->{customer_id} = $1 if ($form->{customer} =~ /--(\d+)$/);
 
 602   if ($form->{customer_id}) {
 
 603     $where .= qq| AND (a.customer_id = ?)|;
 
 604     push(@values, $form->{customer_id});
 
 606   } elsif ($form->{customer}) {
 
 607     $where .= qq| AND (ct.name ILIKE ?)|;
 
 608     push(@values, like($form->{customer}));
 
 611   if ($form->{department_id}) {
 
 612     $where .= qq| AND (a.department_id = ?)|;
 
 613     push(@values, $form->{department_id});
 
 617     "ordnumber" => "a.ordnumber",
 
 618     "invnumber" => "a.invnumber",
 
 619     "notes"     => "a.notes",
 
 620     "country"   => "ct.country",
 
 622   foreach my $key (keys(%columns)) {
 
 623     next unless ($form->{$key});
 
 624     $where .= qq| AND $columns{$key} ILIKE ?|;
 
 625     push(@values, like($form->{$key}));
 
 628   if ($form->{dunning_level}) {
 
 629     $where .= qq| AND nextcfg.id = ?|;
 
 630     push(@values, conv_i($form->{dunning_level}));
 
 633   $form->{minamount} = $form->parse_amount($myconfig,$form->{minamount});
 
 634   if ($form->{minamount}) {
 
 635     $where .= qq| AND ((a.amount - a.paid) > ?) |;
 
 636     push(@values, trim($form->{minamount}));
 
 642        WHERE dunning_level = (SELECT MAX(dunning_level) FROM dunning_config)|;
 
 643   my ($id_for_max_dunning_level) = selectrow_query($form, $dbh, $query);
 
 645   if (!$form->{l_include_direct_debit}) {
 
 646     $where .= qq| AND NOT COALESCE(a.direct_debit, FALSE) |;
 
 648   my $paid = ($form->{l_include_credit_notes}) ? "WHERE (a.paid <> a.amount)" : "WHERE (a.paid < a.amount)";
 
 652          a.id, a.invoice, a.ordnumber, a.transdate, a.invnumber, a.amount, a.language_id,
 
 653          ct.name AS customername, a.customer_id, a.duedate,
 
 654          a.amount - a.paid AS open_amount,
 
 656          dep.description as departmentname,
 
 658          cfg.dunning_description, cfg.dunning_level,
 
 660          d.transdate AS dunning_date, d.duedate AS dunning_duedate,
 
 663          a.duedate + cfg.terms - current_date AS nextlevel,
 
 664          current_date - COALESCE(d.duedate, a.duedate) AS pastdue,
 
 665          current_date + cfg.payment_terms AS next_duedate,
 
 667          nextcfg.dunning_description AS next_dunning_description,
 
 668          nextcfg.id AS next_dunning_config_id,
 
 669          nextcfg.terms, nextcfg.active, nextcfg.email, nextcfg.print_original_invoice
 
 673        LEFT JOIN customer ct ON (a.customer_id = ct.id)
 
 674        LEFT JOIN department dep ON (a.department_id = dep.id)
 
 675        LEFT JOIN dunning_config cfg ON (a.dunning_config_id = cfg.id)
 
 676        LEFT JOIN dunning_config nextcfg ON
 
 681               WHERE dunning_level >
 
 682                 COALESCE((SELECT dunning_level
 
 684                           WHERE id = a.dunning_config_id
 
 685                           ORDER BY dunning_level DESC
 
 688               ORDER BY dunning_level ASC
 
 691        LEFT JOIN dunning d ON (d.id = (
 
 694          WHERE (d2.trans_id      = a.id)
 
 695            AND (d2.dunning_level = cfg.dunning_level)
 
 698         AND (a.duedate < current_date)
 
 702        ORDER BY a.id, transdate, duedate, name|;
 
 703   my $sth = prepare_execute_query($form, $dbh, $query, $id_for_max_dunning_level, @values);
 
 705   $form->{DUNNINGS} = [];
 
 707   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 708     next if ($ref->{pastdue} < $ref->{terms});
 
 709     $ref->{credit_note} = 1 if ($ref->{amount} < 0 && $form->{l_include_credit_notes});
 
 710     $ref->{interest} = $form->round_amount($ref->{interest}, 2);
 
 711     push(@{ $form->{DUNNINGS} }, $ref);
 
 716   $query = qq|SELECT id, dunning_description FROM dunning_config ORDER BY dunning_level|;
 
 717   $form->{DUNNING_CONFIG} = selectall_hashref_query($form, $dbh, $query);
 
 719   $main::lxdebug->leave_sub();
 
 724   $main::lxdebug->enter_sub();
 
 726   my ($self, $myconfig, $form) = @_;
 
 728   # connect to database
 
 729   my $dbh = SL::DB->client->dbh;
 
 731   my $where = qq| WHERE (da.trans_id = a.id)|;
 
 735   if ($form->{customer_id}) {
 
 736     $where .= qq| AND (a.customer_id = ?)|;
 
 737     push(@values, $form->{customer_id});
 
 739   } elsif ($form->{customer}) {
 
 740     $where .= qq| AND (ct.name ILIKE ?)|;
 
 741     push(@values, like($form->{customer}));
 
 745     "ordnumber" => "a.ordnumber",
 
 746     "invnumber" => "a.invnumber",
 
 747     "notes" => "a.notes",
 
 749   foreach my $key (keys(%columns)) {
 
 750     next unless ($form->{$key});
 
 751     $where .= qq| AND $columns{$key} ILIKE ?|;
 
 752     push(@values, like($form->{$key}));
 
 755   if ($form->{dunning_id}) {
 
 756     $where .= qq| AND da.dunning_id = ?|;
 
 757     push(@values, conv_i($form->{dunning_id}));
 
 760   if ($form->{dunning_level}) {
 
 761     $where .= qq| AND a.dunning_config_id = ?|;
 
 762     push(@values, conv_i($form->{dunning_level}));
 
 765   if ($form->{department_id}) {
 
 766     $where .= qq| AND a.department_id = ?|;
 
 767     push @values, conv_i($form->{department_id});
 
 770   $form->{minamount} = $form->parse_amount($myconfig, $form->{minamount});
 
 771   if ($form->{minamount}) {
 
 772     $where .= qq| AND ((a.amount - a.paid) > ?) |;
 
 773     push(@values, $form->{minamount});
 
 776   if (!$form->{showold}) {
 
 777     $where .= qq| AND (a.amount > a.paid) AND (da.dunning_config_id = a.dunning_config_id) |;
 
 780   if ($form->{transdatefrom}) {
 
 781     $where .= qq| AND a.transdate >= ?|;
 
 782     push(@values, $form->{transdatefrom});
 
 784   if ($form->{transdateto}) {
 
 785     $where .= qq| AND a.transdate <= ?|;
 
 786     push(@values, $form->{transdateto});
 
 788   if ($form->{dunningfrom}) {
 
 789     $where .= qq| AND da.transdate >= ?|;
 
 790     push(@values, $form->{dunningfrom});
 
 792   if ($form->{dunningto}) {
 
 793     $where .= qq| AND da.transdate >= ?|;
 
 794     push(@values, $form->{dunningto});
 
 797   if ($form->{salesman_id}) {
 
 798     $where .= qq| AND a.salesman_id = ?|;
 
 799     push(@values, conv_i($form->{salesman_id}));
 
 803     'dunning_description' => [ qw(dn.dunning_description da.dunning_id customername invnumber) ],
 
 804     'customername'        => [ qw(customername da.dunning_id invnumber) ],
 
 805     'invnumber'           => [ qw(a.invnumber) ],
 
 806     'transdate'           => [ qw(a.transdate a.invnumber) ],
 
 807     'duedate'             => [ qw(a.duedate a.invnumber) ],
 
 808     'dunning_date'        => [ qw(dunning_date da.dunning_id a.invnumber) ],
 
 809     'dunning_duedate'     => [ qw(dunning_duedate da.dunning_id a.invnumber) ],
 
 810     'dunning_id'          => [ qw(dunning_id a.invnumber) ],
 
 811     'salesman'            => [ qw(salesman) ],
 
 814   my $sortdir   = !defined $form->{sortdir}    ? 'ASC'         : $form->{sortdir} ? 'ASC' : 'DESC';
 
 815   my $sortkey   = $sort_columns{$form->{sort}} ? $form->{sort} : 'customername';
 
 816   my $sortorder = join ', ', map { "$_ $sortdir" } @{ $sort_columns{$sortkey} };
 
 819     qq|SELECT a.id, a.ordnumber, a.invoice, a.transdate, a.invnumber, a.amount, a.language_id,
 
 820          ct.name AS customername, ct.id AS customer_id, a.duedate, da.fee,
 
 821          da.interest, dn.dunning_description, dn.dunning_level, da.transdate AS dunning_date,
 
 822          da.duedate AS dunning_duedate, da.dunning_id, da.dunning_config_id,
 
 823          da.id AS dunning_table_id,
 
 826        JOIN customer ct ON (a.customer_id = ct.id)
 
 827        LEFT JOIN employee e2 ON (a.salesman_id = e2.id), dunning da
 
 828        LEFT JOIN dunning_config dn ON (da.dunning_config_id = dn.id)
 
 830        ORDER BY $sortorder|;
 
 832   $form->{DUNNINGS} = selectall_hashref_query($form, $dbh, $query, @values);
 
 834   foreach my $ref (@{ $form->{DUNNINGS} }) {
 
 835     map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2)} qw(amount fee interest);
 
 838   $main::lxdebug->leave_sub();
 
 843   $main::lxdebug->enter_sub();
 
 845   my ($self, $myconfig, $form, $copies, %params) = @_;
 
 847   # Don't allow access outside of $spool.
 
 848   map { $_ =~ s|.*/||; } @{ $form->{DUNNING_PDFS} };
 
 851   $copies         = 1 unless $copies;
 
 852   my $spool       = $::lx_office_conf{paths}->{spool};
 
 853   my $inputfiles  = join " ", map { "$spool/$_ " x $copies } @{ $form->{DUNNING_PDFS} };
 
 854   my $dunning_id  = $form->{dunning_id};
 
 856   $dunning_id     =~ s|[^\d]||g;
 
 858   my $in = IO::File->new($::lx_office_conf{applications}->{ghostscript} . " -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=- $inputfiles |");
 
 859   $form->error($main::locale->text('Could not spawn ghostscript.')) unless $in;
 
 861   my $dunning_filename    = $form->get_formname_translation('dunning');
 
 862   my $attachment_filename = "${dunning_filename}_${dunning_id}.pdf";
 
 864   if ($params{return_content}) {
 
 865     $content = read_file($in);
 
 868     if ($form->{media} eq 'printer') {
 
 869       $form->get_printer_code($myconfig);
 
 871       if ($form->{printer_command}) {
 
 872         $out = IO::File->new("| $form->{printer_command}");
 
 875       $form->error($main::locale->text('Could not spawn the printer command.')) unless $out;
 
 877       $::locale->with_raw_io($out, sub { $out->print($_) while <$in> });
 
 880       print qq|Content-Type: Application/PDF\n| .
 
 881             qq|Content-Disposition: attachment; filename=$attachment_filename\n\n|;
 
 883       $::locale->with_raw_io(\*STDOUT, sub { print while <$in> });
 
 889   map { unlink("$spool/$_") } @{ $form->{DUNNING_PDFS} };
 
 891   $main::lxdebug->leave_sub();
 
 892   return ($attachment_filename, $content) if $params{return_content};
 
 896   $main::lxdebug->enter_sub();
 
 898   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
 
 900   # connect to database
 
 901   my $dbh = $provided_dbh || SL::DB->client->dbh;
 
 903   $dunning_id =~ s|[^\d]||g;
 
 905   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
 906   if ($form->{"language_id"}) {
 
 907     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
 908       AM->get_language_details($myconfig, $form, $form->{language_id});
 
 910     $output_dateformat = $myconfig->{dateformat};
 
 911     $output_numberformat = $myconfig->{numberformat};
 
 912     $output_longdates = 1;
 
 918          da.transdate  AS dunning_date,
 
 919          da.duedate    AS dunning_duedate,
 
 921          dcfg.template AS formname,
 
 922          dcfg.email_subject, dcfg.email_body, dcfg.email_attachment,
 
 924          ar.transdate,       ar.duedate,      ar.customer_id,
 
 925          ar.invnumber,       ar.ordnumber,    ar.cp_id,
 
 926          ar.amount,          ar.netamount,    ar.paid,
 
 927          ar.employee_id,     ar.salesman_id,
 
 928          (SELECT cu.name FROM currencies cu WHERE cu.id = ar.currency_id) AS curr,
 
 929          (SELECT description from department WHERE id = ar.department_id) AS department,
 
 930          ar.amount - ar.paid AS open_amount,
 
 931          ar.amount - ar.paid + da.fee + da.interest AS linetotal
 
 934        LEFT JOIN dunning_config dcfg ON (dcfg.id = da.dunning_config_id)
 
 935        LEFT JOIN ar ON (ar.id = da.trans_id)
 
 936        WHERE (da.dunning_id = ?)|;
 
 938   my $sth = prepare_execute_query($form, $dbh, $query, $dunning_id);
 
 940   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 942       $form->{TEMPLATE_ARRAYS} = {};
 
 943       map({ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} = []; } keys(%{$ref}));
 
 946     map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2) } qw(amount netamount paid open_amount fee interest linetotal);
 
 947     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 948     map { push @{ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} }, $ref->{$_} } keys %$ref;
 
 952   # if we have some credit notes to add, do a safety check on the first customer id
 
 953   # and add one entry for each credit note
 
 954   if ($form->{LIST_CREDIT_NOTES} && $form->{LIST_CREDIT_NOTES}->{$form->{TEMPLATE_ARRAYS}->{"dn_customer_id"}[0]}) {
 
 955     my $first_customer_id = $form->{TEMPLATE_ARRAYS}->{"dn_customer_id"}[0];
 
 956     while ( my ($cred_id, $value) = each(%{ $form->{LIST_CREDIT_NOTES}->{$first_customer_id} } ) ) {
 
 957       map { push @{ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} }, $value->{$_} } keys %{ $value };
 
 962          c.id AS customer_id, c.name,         c.street,       c.zipcode,   c.city,
 
 963          c.country,           c.department_1, c.department_2, c.email,     c.customernumber,
 
 964          c.greeting,          c.contact,      c.phone,        c.fax,       c.homepage,
 
 965          c.email,             c.taxincluded,  c.business_id,  c.taxnumber, c.iban,
 
 970        LEFT JOIN ar          ON (d.trans_id = ar.id)
 
 971        LEFT JOIN customer c  ON (ar.customer_id = c.id)
 
 972        LEFT JOIN contacts co ON (ar.cp_id = co.cp_id)
 
 973        LEFT JOIN employee e  ON (ar.salesman_id = e.id)
 
 974        WHERE (d.dunning_id = ?)
 
 976   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
 
 977   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
 981          cfg.interest_rate, cfg.template AS formname, cfg.dunning_level,
 
 982          cfg.email_subject, cfg.email_body, cfg.email_attachment,
 
 983          d.transdate AS dunning_date,
 
 986           WHERE dunning_id = ?)
 
 988          (SELECT SUM(interest)
 
 990           WHERE dunning_id = ?)
 
 992          (SELECT SUM(amount) - SUM(paid)
 
 997              WHERE dunning_id = ?))
 
1000        LEFT JOIN dunning_config cfg ON (d.dunning_config_id = cfg.id)
 
1001        WHERE d.dunning_id = ?
 
1003   $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id, $dunning_id, $dunning_id, $dunning_id);
 
1004   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1006   $form->{interest_rate}     = $form->format_amount($myconfig, $ref->{interest_rate} * 100);
 
1007   $form->{fee}               = $form->format_amount($myconfig, $ref->{fee}, 2);
 
1008   $form->{total_interest}    = $form->format_amount($myconfig, $form->round_amount($ref->{total_interest}, 2), 2);
 
1009   my $total_open_amount      = $ref->{total_open_amount};
 
1010   if ($form->{l_include_credit_notes}) {
 
1011     # a bit stupid, but redo calc because of credit notes
 
1012     $total_open_amount      = 0;
 
1013     foreach my $amount (@{ $form->{TEMPLATE_ARRAYS}->{dn_open_amount} }) {
 
1014       $total_open_amount += $form->parse_amount($myconfig, $amount, 2);
 
1017   $form->{total_open_amount} = $form->format_amount($myconfig, $form->round_amount($total_open_amount, 2), 2);
 
1018   $form->{total_amount}      = $form->format_amount($myconfig, $form->round_amount($ref->{fee} + $ref->{total_interest} + $total_open_amount, 2), 2);
 
1020   $::form->format_dates($output_dateformat, $output_longdates,
 
1021     qw(dn_dunning_date dn_dunning_duedate dn_transdate dn_duedate
 
1022           dunning_date    dunning_duedate    transdate    duedate)
 
1024   $::form->reformat_numbers($output_numberformat, 2, qw(
 
1025     dn_amount dn_netamount dn_paid dn_open_amount dn_fee dn_interest dn_linetotal
 
1026        amount    netamount    paid    open_amount    fee    interest    linetotal
 
1027     total_interest total_open_interest total_amount total_open_amount
 
1029   $::form->reformat_numbers($output_numberformat, undef, qw(interest_rate));
 
1031   $self->set_customer_cvars($myconfig, $form);
 
1032   $self->set_template_options($myconfig, $form);
 
1034   my $filename          = "dunning_${dunning_id}_" . Common::unique_id() . ".pdf";
 
1035   my $spool             = $::lx_office_conf{paths}->{spool};
 
1036   $form->{OUT}          = "${spool}/$filename";
 
1037   $form->{keep_tmpfile} = 1;
 
1039   delete $form->{tmpfile};
 
1041   my $employee_id = ($::instance_conf->get_dunning_creator eq 'invoice_employee') ?
 
1042                       $form->{employee_id}                                        :
 
1043                       SL::DB::Manager::Employee->current->id;
 
1045   $form->get_employee_data('prefix' => 'employee', 'id' => $employee_id);
 
1046   $form->get_employee_data('prefix' => 'salesman', 'id' => $form->{salesman_id});
 
1048   $form->{attachment_type}    = "dunning";
 
1049   if ( $form->{dunning_level} ) {
 
1050     $form->{attachment_type} .= $form->{dunning_level} if $form->{dunning_level} < 4;
 
1052   $form->{attachment_filename} = $form->get_formname_translation($form->{attachment_type}) . "_${dunning_id}.pdf";
 
1053   $form->{attachment_id} = $form->{invoice_id};
 
1055   # this generates the file in the spool directory
 
1056   $form->parse_template($myconfig);
 
1058   push @{ $form->{DUNNING_PDFS} }        , $filename;
 
1059   push @{ $form->{DUNNING_PDFS_EMAIL} }  , { 'path'       => "${spool}/$filename",
 
1060                                              'name'       => $form->get_formname_translation('dunning') . "_${dunning_id}.pdf" };
 
1061   push @{ $form->{DUNNING_PDFS_STORAGE} }, { 'dunning_id' => $dunning_id,
 
1062                                              'path'       => "${spool}/$filename",
 
1063                                              'name'       => $form->get_formname_translation('dunning') . "_${dunning_id}.pdf" };
 
1065   $main::lxdebug->leave_sub();
 
1068 sub print_invoice_for_fees {
 
1069   $main::lxdebug->enter_sub();
 
1071   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
 
1073   my $dbh = $provided_dbh || SL::DB->client->dbh;
 
1075   my ($query, @values, $sth);
 
1079          d.fee_interest_ar_id,
 
1080          d.trans_id AS invoice_id,
 
1084        LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
 
1085        WHERE d.dunning_id = ?|;
 
1086   my ($ar_id, $invoice_id, $template, $dunning_level) = selectrow_query($form, $dbh, $query, $dunning_id);
 
1089     $main::lxdebug->leave_sub();
 
1093   my $saved_form = save_form();
 
1095   $query = qq|SELECT SUM(fee), SUM(interest) FROM dunning WHERE id = ?|;
 
1096   my ($fee_total, $interest_total) = selectrow_query($form, $dbh, $query, $dunning_id);
 
1100          ar.invnumber, ar.transdate AS invdate, ar.amount, ar.netamount,
 
1101          ar.duedate,   ar.notes,     ar.notes AS invoicenotes, ar.customer_id,
 
1103          c.name,      c.department_1,   c.department_2, c.street, c.zipcode, c.city, c.country,
 
1104          c.contact,   c.customernumber, c.phone,        c.fax,    c.email,
 
1105          c.taxnumber, c.greeting
 
1108        LEFT JOIN customer c ON (ar.customer_id = c.id)
 
1110   my $ref = selectfirst_hashref_query($form, $dbh, $query, $ar_id);
 
1111   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1113   $query = qq|SELECT * FROM employee WHERE login = ?|;
 
1114   $ref = selectfirst_hashref_query($form, $dbh, $query, $::myconfig{login});
 
1115   map { $form->{"employee_${_}"} = $ref->{$_} } keys %{ $ref };
 
1117   $query = qq|SELECT * FROM acc_trans WHERE trans_id = ? ORDER BY acc_trans_id ASC|;
 
1118   $sth   = prepare_execute_query($form, $dbh, $query, $ar_id);
 
1120   my ($row, $fee, $interest) = (0, 0, 0);
 
1122   while ($ref = $sth->fetchrow_hashref()) {
 
1123     next if ($ref->{amount} < 0);
 
1128       $fee = $ref->{amount};
 
1130       $interest = $ref->{amount};
 
1134   $form->{fee}        = $form->round_amount($fee,             2);
 
1135   $form->{interest}   = $form->round_amount($interest,        2);
 
1136   $form->{invamount}  = $form->round_amount($fee + $interest, 2);
 
1137   $form->{dunning_id} = $dunning_id;
 
1138   $form->{formname}   = "${template}_invoice";
 
1140   map { $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) } qw(fee interest invamount);
 
1142   $self->set_customer_cvars($myconfig, $form);
 
1143   $self->set_template_options($myconfig, $form);
 
1145   my $filename = Common::unique_id() . "dunning_invoice_" . $form->{invnumber} . ".pdf";
 
1147   my $spool             = $::lx_office_conf{paths}->{spool};
 
1148   $form->{OUT}          = "$spool/$filename";
 
1149   $form->{keep_tmpfile} = 1;
 
1150   delete $form->{tmpfile};
 
1152   map { delete $form->{$_} } grep /^[a-z_]+_\d+$/, keys %{ $form };
 
1154   my $attachment_filename      = $form->get_formname_translation('dunning_invoice') . "_" . $form->{invnumber} . ".pdf";
 
1155   $form->{attachment_filename} = $attachment_filename;
 
1156   $form->{attachment_type}     = "dunning";
 
1157   $form->{attachment_id}       = $invoice_id;
 
1158   $form->parse_template($myconfig);
 
1160   restore_form($saved_form);
 
1162   push @{ $form->{DUNNING_PDFS} },         $filename;
 
1163   push @{ $form->{DUNNING_PDFS_EMAIL} },   { 'path'       => "${spool}/$filename",
 
1164                                              'name'       => $attachment_filename };
 
1165   push @{ $form->{DUNNING_PDFS_STORAGE} }, { 'dunning_id' => $dunning_id,
 
1166                                              'path'       => "${spool}/$filename",
 
1167                                              'name'       => $attachment_filename };
 
1169   $main::lxdebug->leave_sub();
 
1172 sub set_customer_cvars {
 
1173   my ($self, $myconfig, $form) = @_;
 
1175   my $custom_variables = CVar->get_custom_variables(dbh      => $form->get_standard_dbh,
 
1177                                                     trans_id => $form->{customer_id});
 
1178   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
 
1180   $form->{cp_greeting} = GenericTranslations->get(dbh              => $form->get_standard_dbh,
 
1181                                                   translation_type => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
 
1182                                                   language_id      => $form->{language_id},
 
1183                                                   allow_fallback   => 1);
 
1184   if ($form->{cp_id}) {
 
1185     $custom_variables = CVar->get_custom_variables(dbh      => $form->get_standard_dbh,
 
1186                                                    module   => 'Contacts',
 
1187                                                    trans_id => $form->{cp_id});
 
1188     $form->{"cp_cvar_$_->{name}"} = $_->{value} for @{ $custom_variables };
 
1193 sub print_original_invoice {
 
1194   my ($self, $myconfig, $form, $dunning_id, $invoice_id) = @_;
 
1195   # get one invoice as object and print to pdf
 
1196   my $invoice = SL::DB::Invoice->new(id => $invoice_id)->load;
 
1198   die "Invalid invoice object" unless ref($invoice) eq 'SL::DB::Invoice';
 
1200   my $print_form          = Form->new('');
 
1201   $print_form->{type}     = 'invoice';
 
1202   $print_form->{formname} = 'invoice',
 
1203   $print_form->{format}   = 'pdf',
 
1204   $print_form->{media}    = 'file';
 
1205   # no language override, should always be the object's language
 
1206   $invoice->flatten_to_form($print_form, format_amounts => 1);
 
1207   for my $i (1 .. $print_form->{rowcount}) {
 
1208     $print_form->{"sellprice_$i"} = $print_form->{"fxsellprice_$i"};
 
1210   $print_form->prepare_for_printing;
 
1212   my $filename = SL::Helper::CreatePDF->create_pdf(
 
1213                    template               => 'invoice.tex',
 
1214                    variables              => $print_form,
 
1215                    return                 => 'file_name',
 
1216                    variable_content_types => {
 
1217                      longdescription => 'html',
 
1218                      partnotes       => 'html',
 
1223   my $spool       = $::lx_office_conf{paths}->{spool};
 
1224   my ($volume, $directory, $file_name) = File::Spec->splitpath($filename);
 
1225   my $full_file_name                   = File::Spec->catfile($spool, $file_name);
 
1227   move($filename, $full_file_name) or die "The move operation failed: $!";
 
1229   # form get_formname_translation should use language_id_$i
 
1230   my $saved_reicpient_locale = $form->{recipient_locale};
 
1231   $form->{recipient_locale}  = $invoice->language;
 
1233   my $attachment_filename    = $form->get_formname_translation('invoice') . "_" . $invoice->invnumber . ".pdf";
 
1235   push @{ $form->{DUNNING_PDFS} },         $file_name;
 
1236   push @{ $form->{DUNNING_PDFS_EMAIL} },   { 'path'       => "${spool}/$file_name",
 
1237                                              'name'       => $attachment_filename };
 
1238   push @{ $form->{DUNNING_PDFS_STORAGE} }, { 'dunning_id' => $dunning_id,
 
1239                                              'path'       => "${spool}/$file_name",
 
1240                                              'name'       => $attachment_filename };
 
1242   $form->{recipient_locale}  = $saved_reicpient_locale;
 
1245 sub _store_pdf_to_webdav_and_filemanagement {
 
1246   my ($dunning_id, $path, $name) =@_;
 
1250   if ($::instance_conf->get_doc_storage) {
 
1253         object_id   => $dunning_id,
 
1254         object_type => 'dunning',
 
1255         mime_type   => 'application/pdf',
 
1256         source      => 'created',
 
1257         file_type   => 'document',
 
1263       push @errors, $::locale->text('Storing PDF in storage backend failed: #1', $@);
 
1267   if ($::instance_conf->get_webdav_documents) {
 
1269       my $webdav = SL::Webdav->new(
 
1271         number   => $dunning_id,
 
1273       my $webdav_file = SL::Webdav::File->new(
 
1277       $webdav_file->store(file => $path);
 
1279       push @errors, $::locale->text('Storing PDF to webdav folder failed: #1', $@);