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);
 
  61   $main::lxdebug->enter_sub();
 
  63   my ($self, $myconfig, $form) = @_;
 
  66   my $dbh = SL::DB->client->dbh;
 
  70     qq|FROM dunning_config | .
 
  71     qq|ORDER BY dunning_level|;
 
  72   $form->{DUNNING} = selectall_hashref_query($form, $dbh, $query);
 
  74   foreach my $ref (@{ $form->{DUNNING} }) {
 
  75     $ref->{fee} = $form->format_amount($myconfig, $ref->{fee}, 2);
 
  76     $ref->{interest_rate} = $form->format_amount($myconfig, ($ref->{interest_rate} * 100));
 
  80     qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar, dunning_creator
 
  82   ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}, $form->{dunning_creator})
 
  83     = selectrow_query($form, $dbh, $query);
 
  85   $main::lxdebug->leave_sub();
 
  89   my ($self, $myconfig, $form) = @_;
 
  90   $main::lxdebug->enter_sub();
 
  92   my $rc = SL::DB->client->with_transaction(\&_save_config, $self, $myconfig, $form);
 
  94   $::lxdebug->leave_sub;
 
  99   my ($self, $myconfig, $form) = @_;
 
 101   my $dbh = SL::DB->client->dbh;
 
 103   my ($query, @values);
 
 105   for my $i (1 .. $form->{rowcount}) {
 
 106     $form->{"fee_$i"} = $form->parse_amount($myconfig, $form->{"fee_$i"}) * 1;
 
 107     $form->{"interest_rate_$i"} = $form->parse_amount($myconfig, $form->{"interest_rate_$i"}) / 100;
 
 109     if (($form->{"dunning_level_$i"} ne "") &&
 
 110         ($form->{"dunning_description_$i"} ne "")) {
 
 111       @values = (conv_i($form->{"dunning_level_$i"}), $form->{"dunning_description_$i"},
 
 112                  $form->{"email_subject_$i"}, $form->{"email_body_$i"},
 
 113                  $form->{"template_$i"}, $form->{"fee_$i"}, $form->{"interest_rate_$i"},
 
 114                  $form->{"active_$i"} ? 't' : 'f', $form->{"auto_$i"} ? 't' : 'f', $form->{"email_$i"} ? 't' : 'f',
 
 115                  $form->{"email_attachment_$i"} ? 't' : 'f', conv_i($form->{"payment_terms_$i"}), conv_i($form->{"terms_$i"}),
 
 116                  $form->{"create_invoices_for_fees_$i"} ? 't' : 'f',
 
 117                  $form->{"print_original_invoice_$i"} ? 't' : 'f');
 
 118       if ($form->{"id_$i"}) {
 
 120           qq|UPDATE dunning_config SET
 
 121                dunning_level = ?, dunning_description = ?,
 
 122                email_subject = ?, email_body = ?,
 
 123                template = ?, fee = ?, interest_rate = ?,
 
 124                active = ?, auto = ?, email = ?,
 
 125                email_attachment = ?, payment_terms = ?, terms = ?,
 
 126                create_invoices_for_fees = ?,
 
 127                print_original_invoice = ?
 
 129         push(@values, conv_i($form->{"id_$i"}));
 
 132           qq|INSERT INTO dunning_config
 
 133                (dunning_level, dunning_description, email_subject, email_body,
 
 134                 template, fee, interest_rate, active, auto, email,
 
 135                 email_attachment, payment_terms, terms, create_invoices_for_fees,
 
 136                 print_original_invoice)
 
 137              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 139       do_query($form, $dbh, $query, @values);
 
 142     if (($form->{"dunning_description_$i"} eq "") && ($form->{"id_$i"})) {
 
 143       $query = qq|DELETE FROM dunning_config WHERE id = ?|;
 
 144       do_query($form, $dbh, $query, $form->{"id_$i"});
 
 148   $query  = qq|UPDATE defaults SET dunning_ar_amount_fee = ?, dunning_ar_amount_interest = ?, dunning_ar = ?,
 
 149                dunning_creator = ?|;
 
 150   @values = (conv_i($form->{AR_amount_fee}), conv_i($form->{AR_amount_interest}), conv_i($form->{AR}),
 
 151              $form->{dunning_creator});
 
 152   do_query($form, $dbh, $query, @values);
 
 157 sub create_invoice_for_fees {
 
 158   $main::lxdebug->enter_sub();
 
 160   my ($self, $myconfig, $form, $dbh, $dunning_id) = @_;
 
 162   my ($query, @values, $sth, $ref);
 
 164   $query = qq|SELECT dcfg.create_invoices_for_fees
 
 166               LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
 
 167               WHERE d.dunning_id = ?|;
 
 168   my ($create_invoices_for_fees) = selectrow_query($form, $dbh, $query, $dunning_id);
 
 170   if (!$create_invoices_for_fees) {
 
 171     $main::lxdebug->leave_sub();
 
 175   $query = qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar FROM defaults|;
 
 176   ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}) = selectrow_query($form, $dbh, $query);
 
 182            SELECT MAX(d_fee.fee)
 
 184            WHERE (d_fee.trans_id   =  d.trans_id)
 
 185              AND (d_fee.dunning_id <> ?)
 
 186              AND NOT (d_fee.fee_interest_ar_id ISNULL)
 
 191            SELECT MAX(d_interest.interest)
 
 192            FROM dunning d_interest
 
 193            WHERE (d_interest.trans_id   =  d.trans_id)
 
 194              AND (d_interest.dunning_id <> ?)
 
 195              AND NOT (d_interest.fee_interest_ar_id ISNULL)
 
 197          AS max_previous_interest,
 
 200        WHERE dunning_id = ?|;
 
 201   @values = ($dunning_id, $dunning_id, $dunning_id);
 
 202   $sth = prepare_execute_query($form, $dbh, $query, @values);
 
 204   my ($fee_remaining, $interest_remaining) = (0, 0);
 
 205   my ($fee_total, $interest_total) = (0, 0);
 
 209   while (my $ref = $sth->fetchrow_hashref()) {
 
 210     $fee_remaining      += $form->round_amount($ref->{fee}, 2);
 
 211     $fee_remaining      -= $form->round_amount($ref->{max_previous_fee}, 2);
 
 212     $fee_total          += $form->round_amount($ref->{fee}, 2);
 
 213     $interest_remaining += $form->round_amount($ref->{interest}, 2);
 
 214     $interest_remaining -= $form->round_amount($ref->{max_previous_interest}, 2);
 
 215     $interest_total     += $form->round_amount($ref->{interest}, 2);
 
 216     push @link_ids, $ref->{link_id};
 
 221   my $amount = $fee_remaining + $interest_remaining;
 
 224     $main::lxdebug->leave_sub();
 
 228   my ($ar_id) = selectrow_query($form, $dbh, qq|SELECT nextval('glid')|);
 
 229   my $curr = $form->get_default_currency($myconfig);
 
 230   my $trans_number = SL::TransNumber->new(type => 'invoice', dbh => $dbh);
 
 233     qq|INSERT INTO ar (id,          invnumber, transdate, gldate, customer_id,
 
 234                        taxincluded, amount,    netamount, paid,   duedate,
 
 235                        invoice,     currency_id, taxzone_id,      notes,
 
 240          current_date,          -- transdate
 
 241          current_date,          -- gldate
 
 243          (SELECT ar.customer_id
 
 245           LEFT JOIN ar ON (dn.trans_id = ar.id)
 
 246           WHERE dn.dunning_id = ?
 
 253          (SELECT duedate FROM dunning WHERE dunning_id = ? LIMIT 1),
 
 255          (SELECT id FROM currencies WHERE name = ?), -- curr
 
 257          (SELECT taxzone_id FROM customer WHERE id =
 
 258           (SELECT ar.customer_id
 
 260            LEFT JOIN ar ON (dn.trans_id = ar.id)
 
 261            WHERE dn.dunning_id = ?
 
 266          (SELECT id FROM employee WHERE login = ?)
 
 268   @values = ($ar_id,            # id
 
 269              $trans_number->create_unique, # invnumber
 
 270              $dunning_id,       # customer_id
 
 273              $dunning_id,       # duedate
 
 274              $curr,             # default currency
 
 275              $dunning_id,       # taxzone_id
 
 276              sprintf($main::locale->text('Automatically created invoice for fee and interest for dunning %s'), $dunning_id), # notes
 
 277              $::myconfig{login});   # employee_id
 
 278   do_query($form, $dbh, $query, @values);
 
 280   RecordLinks->create_links(
 
 283     'from_table' => 'dunning',
 
 284     'from_ids'   => \@link_ids,
 
 290     qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, taxkey, tax_id, chart_link)
 
 291        VALUES (?, ?, ?, current_date, current_date, 0,
 
 292                (SELECT id   FROM tax   WHERE (taxkey = 0) AND (rate = 0)),
 
 293                (SELECT link FROM chart WHERE id = ?))|;
 
 294   $sth = prepare_query($form, $dbh, $query);
 
 296   @values = ($ar_id, conv_i($form->{AR_amount_fee}), $fee_remaining, conv_i($form->{AR_amount_fee}));
 
 297   do_statement($form, $sth, $query, @values);
 
 299   if ($interest_remaining) {
 
 300     @values = ($ar_id, conv_i($form->{AR_amount_interest}), $interest_remaining, conv_i($form->{AR_amount_interest}));
 
 301     do_statement($form, $sth, $query, @values);
 
 304   @values = ($ar_id, conv_i($form->{AR}), -1 * $amount, conv_i($form->{AR}));
 
 305   do_statement($form, $sth, $query, @values);
 
 309   $query = qq|UPDATE dunning SET fee_interest_ar_id = ? WHERE dunning_id = ?|;
 
 310   do_query($form, $dbh, $query, $ar_id, $dunning_id);
 
 312   $main::lxdebug->leave_sub();
 
 317   my ($self, $myconfig, $form, $rows) = @_;
 
 318   $main::lxdebug->enter_sub();
 
 320   my $rc = SL::DB->client->with_transaction(\&_save_dunning, $self, $myconfig, $form, $rows);
 
 323     die SL::DB->client->error
 
 325   $::lxdebug->leave_sub;
 
 332   my ($self, $myconfig, $form, $rows) = @_;
 
 334   my $dbh = SL::DB->client->dbh;
 
 336   my ($query, @values);
 
 338   my ($dunning_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
 
 340   my $q_update_ar = qq|UPDATE ar SET dunning_config_id = ? WHERE id = ?|;
 
 341   my $h_update_ar = prepare_query($form, $dbh, $q_update_ar);
 
 343   my $q_insert_dunning =
 
 344     qq|INSERT INTO dunning (id,  dunning_id, dunning_config_id, dunning_level, trans_id,
 
 345                             fee, interest,   transdate,         duedate,       original_invoice_printed)
 
 347                (SELECT dunning_level FROM dunning_config WHERE id = ?),
 
 351                 WHERE dunning_level <= (SELECT dunning_level FROM dunning_config WHERE id = ?)),
 
 352                (SELECT (amount - paid) * (current_date - duedate) FROM ar WHERE id = ?)
 
 353                  * (SELECT interest_rate FROM dunning_config WHERE id = ?)
 
 356                current_date + (SELECT payment_terms FROM dunning_config WHERE id = ?),
 
 358   my $h_insert_dunning = prepare_query($form, $dbh, $q_insert_dunning);
 
 361   my ($next_dunning_config_id, $customer_id);
 
 362   my ($send_email, $print_invoice) = (0, 0);
 
 364   foreach my $row (@{ $rows }) {
 
 365     if ($row->{credit_note}) {
 
 367       %{ $form->{LIST_CREDIT_NOTES}{$row->{customer_id}}{$row->{invoice_id}} } = (
 
 368         open_amount => $form->{"open_amount_$i"},
 
 369         amount      => $form->{"amount_$i"},
 
 370         invnumber   => $form->{"invnumber_$i"},
 
 371         invdate     => $form->{"invdate_$i"},
 
 375     push @invoice_ids, $row->{invoice_id};
 
 376     $next_dunning_config_id = $row->{next_dunning_config_id};
 
 377     $customer_id            = $row->{customer_id};
 
 379     @values = ($row->{next_dunning_config_id}, $row->{invoice_id});
 
 380     do_statement($form, $h_update_ar, $q_update_ar, @values);
 
 382     $send_email       |= $row->{email};
 
 383     $print_invoice    |= $row->{print_invoice};
 
 385     my ($row_id)       = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
 
 386     my $next_config_id = conv_i($row->{next_dunning_config_id});
 
 387     my $invoice_id     = conv_i($row->{invoice_id});
 
 389     @values = ($row_id,         $dunning_id,     $next_config_id,
 
 390                $next_config_id, $invoice_id,     $next_config_id,
 
 391                $invoice_id,     $next_config_id, $next_config_id,
 
 393     do_statement($form, $h_insert_dunning, $q_insert_dunning, @values);
 
 395     RecordLinks->create_links(
 
 398       'from_table' => 'ar',
 
 399       'from_ids'   => $invoice_id,
 
 400       'to_table'   => 'dunning',
 
 404   # die this transaction, because for this customer only credit notes are
 
 406   return unless $customer_id;
 
 408   $h_update_ar->finish();
 
 409   $h_insert_dunning->finish();
 
 411   $form->{DUNNING_PDFS_EMAIL} = [];
 
 413   $form->{dunning_id} = $dunning_id;
 
 415   $self->create_invoice_for_fees($myconfig, $form, $dbh, $dunning_id);
 
 417   $self->print_invoice_for_fees($myconfig, $form, $dunning_id, $dbh);
 
 418   $self->print_dunning($myconfig, $form, $dunning_id, $dbh);
 
 420   if ($print_invoice) {
 
 421     $self->print_original_invoice($myconfig, $form, $_) for @invoice_ids;
 
 425     $self->send_email($myconfig, $form, $dunning_id, $dbh);
 
 432   $main::lxdebug->enter_sub();
 
 434   my ($self, $myconfig, $form, $dunning_id, $dbh) = @_;
 
 438          dcfg.email_body,     dcfg.email_subject, dcfg.email_attachment,
 
 439          COALESCE (NULLIF(c.invoice_mail, ''), c.email) AS recipient, c.name,
 
 440          (SELECT login from employee where id = ar.employee_id) as invoice_employee_login
 
 442        LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
 
 443        LEFT JOIN ar                  ON (d.trans_id          = ar.id)
 
 444        LEFT JOIN customer c          ON (ar.customer_id      = c.id)
 
 445        WHERE (d.dunning_id = ?)
 
 447   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
 
 449   # without a recipient, we cannot send a mail
 
 450   if (!$ref || !$ref->{recipient}) {
 
 451     $main::lxdebug->leave_sub();
 
 452     die $main::locale->text("No email recipient for customer #1 defined.", $ref->{name});
 
 455   # without a sender we cannot send a mail
 
 456   # two cases: check mail from 1. current user OR  2. employee who created the invoice
 
 458   if ($::instance_conf->get_dunning_creator eq 'current_employee') {
 
 459     $from = $myconfig->{email};
 
 460     die $main::locale->text('No email for current user #1 defined.', $myconfig->{name}) unless $from;
 
 463       $from = SL::DB::Manager::AuthUser->find_by(login =>  $ref->{invoice_employee_login})->get_config_value("email");
 
 464       $sign = SL::DB::Manager::AuthUser->find_by(login =>  $ref->{invoice_employee_login})->get_config_value("signature");
 
 467     } or die $main::locale->text('No email for user with login #1 defined.', $ref->{invoice_employee_login});
 
 470   my $template     = SL::Template::create(type => 'PlainText', form => $form, myconfig => $myconfig);
 
 471   my $mail         = Mailer->new();
 
 472   $mail->{bcc}     = $form->get_bcc_defaults($myconfig, $form->{bcc});
 
 473   $mail->{from}    = $from;
 
 474   $mail->{to}      = $ref->{recipient};
 
 475   $mail->{subject} = $template->parse_block($ref->{email_subject});
 
 476   $mail->{message} = $template->parse_block($ref->{email_body});
 
 477   my $sign_backup  = $::myconfig{signature};
 
 478   $::myconfig{signature} = $sign if $sign;
 
 479   $mail->{message} .= $form->create_email_signature();
 
 480   $::myconfig{signature} = $sign_backup if $sign;
 
 482   $mail->{message} =~ s/\r\n/\n/g;
 
 484   if ($ref->{email_attachment} && @{ $form->{DUNNING_PDFS_EMAIL} }) {
 
 485     $mail->{attachments} = $form->{DUNNING_PDFS_EMAIL};
 
 490   $main::lxdebug->leave_sub();
 
 493 sub set_template_options {
 
 494   $main::lxdebug->enter_sub();
 
 496   my ($self, $myconfig, $form) = @_;
 
 498   my $defaults = SL::DB::Default->get;
 
 499   $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
 
 500   $form->{templates}    = $defaults->templates;
 
 501   $form->{language}     = $form->get_template_language($myconfig);
 
 502   $form->{printer_code} = $form->get_printer_code($myconfig);
 
 504   if ($form->{language} ne "") {
 
 505     $form->{language} = "_" . $form->{language};
 
 508   if ($form->{printer_code} ne "") {
 
 509     $form->{printer_code} = "_" . $form->{printer_code};
 
 512   my $extension = 'html';
 
 513   if ($form->{format} eq 'postscript') {
 
 514     $form->{postscript}   = 1;
 
 517   } elsif ($form->{"format"} =~ /pdf/) {
 
 519     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
 521   } elsif ($form->{"format"} =~ /opendocument/) {
 
 522     $form->{opendocument} = 1;
 
 524   } elsif ($form->{"format"} =~ /excel/) {
 
 530   # search for the template
 
 532   push @template_files, "$form->{formname}_email$form->{language}$form->{printer_code}.$extension" if $form->{media} eq 'email';
 
 533   push @template_files, "$form->{formname}$form->{language}$form->{printer_code}.$extension";
 
 534   push @template_files, "$form->{formname}.$extension";
 
 535   push @template_files, "default.$extension";
 
 538   for my $filename (@template_files) {
 
 539     if (-f ($defaults->templates . "/$filename")) {
 
 540       $form->{IN} = $filename;
 
 545   if (!defined $form->{IN}) {
 
 546     $::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));
 
 549   # prepare meta information for template introspection
 
 550   $form->{template_meta} = {
 
 551     formname  => $form->{formname},
 
 552     language  => SL::DB::Manager::Language->find_by_or_create(id => $form->{language_id} || undef),
 
 553     format    => $form->{format},
 
 554     media     => $form->{media},
 
 555     extension => $extension,
 
 556     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $form->{printer_id} || undef),
 
 557     today     => DateTime->today,
 
 560   $main::lxdebug->leave_sub();
 
 565   $main::lxdebug->enter_sub();
 
 567   my ($self, $myconfig, $form) = @_;
 
 569   # connect to database
 
 570   my $dbh = SL::DB->client->dbh;
 
 575   $form->{customer_id} = $1 if ($form->{customer} =~ /--(\d+)$/);
 
 577   if ($form->{customer_id}) {
 
 578     $where .= qq| AND (a.customer_id = ?)|;
 
 579     push(@values, $form->{customer_id});
 
 581   } elsif ($form->{customer}) {
 
 582     $where .= qq| AND (ct.name ILIKE ?)|;
 
 583     push(@values, like($form->{customer}));
 
 586   if ($form->{department_id}) {
 
 587     $where .= qq| AND (a.department_id = ?)|;
 
 588     push(@values, $form->{department_id});
 
 592     "ordnumber" => "a.ordnumber",
 
 593     "invnumber" => "a.invnumber",
 
 594     "notes"     => "a.notes",
 
 595     "country"   => "ct.country",
 
 597   foreach my $key (keys(%columns)) {
 
 598     next unless ($form->{$key});
 
 599     $where .= qq| AND $columns{$key} ILIKE ?|;
 
 600     push(@values, like($form->{$key}));
 
 603   if ($form->{dunning_level}) {
 
 604     $where .= qq| AND nextcfg.id = ?|;
 
 605     push(@values, conv_i($form->{dunning_level}));
 
 608   $form->{minamount} = $form->parse_amount($myconfig,$form->{minamount});
 
 609   if ($form->{minamount}) {
 
 610     $where .= qq| AND ((a.amount - a.paid) > ?) |;
 
 611     push(@values, trim($form->{minamount}));
 
 617        WHERE dunning_level = (SELECT MAX(dunning_level) FROM dunning_config)|;
 
 618   my ($id_for_max_dunning_level) = selectrow_query($form, $dbh, $query);
 
 620   if (!$form->{l_include_direct_debit}) {
 
 621     $where .= qq| AND NOT COALESCE(a.direct_debit, FALSE) |;
 
 623   my $paid = ($form->{l_include_credit_notes}) ? "WHERE (a.paid <> a.amount)" : "WHERE (a.paid < a.amount)";
 
 627          a.id, a.invoice, a.ordnumber, a.transdate, a.invnumber, a.amount, a.language_id,
 
 628          ct.name AS customername, a.customer_id, a.duedate,
 
 629          a.amount - a.paid AS open_amount,
 
 631          dep.description as departmentname,
 
 633          cfg.dunning_description, cfg.dunning_level,
 
 635          d.transdate AS dunning_date, d.duedate AS dunning_duedate,
 
 638          a.duedate + cfg.terms - current_date AS nextlevel,
 
 639          current_date - COALESCE(d.duedate, a.duedate) AS pastdue,
 
 640          current_date + cfg.payment_terms AS next_duedate,
 
 642          nextcfg.dunning_description AS next_dunning_description,
 
 643          nextcfg.id AS next_dunning_config_id,
 
 644          nextcfg.terms, nextcfg.active, nextcfg.email, nextcfg.print_original_invoice
 
 648        LEFT JOIN customer ct ON (a.customer_id = ct.id)
 
 649        LEFT JOIN department dep ON (a.department_id = dep.id)
 
 650        LEFT JOIN dunning_config cfg ON (a.dunning_config_id = cfg.id)
 
 651        LEFT JOIN dunning_config nextcfg ON
 
 656               WHERE dunning_level >
 
 657                 COALESCE((SELECT dunning_level
 
 659                           WHERE id = a.dunning_config_id
 
 660                           ORDER BY dunning_level DESC
 
 663               ORDER BY dunning_level ASC
 
 666        LEFT JOIN dunning d ON (d.id = (
 
 669          WHERE (d2.trans_id      = a.id)
 
 670            AND (d2.dunning_level = cfg.dunning_level)
 
 673         AND (a.duedate < current_date)
 
 677        ORDER BY a.id, transdate, duedate, name|;
 
 678   my $sth = prepare_execute_query($form, $dbh, $query, $id_for_max_dunning_level, @values);
 
 680   $form->{DUNNINGS} = [];
 
 682   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 683     next if ($ref->{pastdue} < $ref->{terms});
 
 684     $ref->{credit_note} = 1 if ($ref->{amount} < 0 && $form->{l_include_credit_notes});
 
 685     $ref->{interest} = $form->round_amount($ref->{interest}, 2);
 
 686     push(@{ $form->{DUNNINGS} }, $ref);
 
 691   $query = qq|SELECT id, dunning_description FROM dunning_config ORDER BY dunning_level|;
 
 692   $form->{DUNNING_CONFIG} = selectall_hashref_query($form, $dbh, $query);
 
 694   $main::lxdebug->leave_sub();
 
 699   $main::lxdebug->enter_sub();
 
 701   my ($self, $myconfig, $form) = @_;
 
 703   # connect to database
 
 704   my $dbh = SL::DB->client->dbh;
 
 706   my $where = qq| WHERE (da.trans_id = a.id)|;
 
 710   if ($form->{customer_id}) {
 
 711     $where .= qq| AND (a.customer_id = ?)|;
 
 712     push(@values, $form->{customer_id});
 
 714   } elsif ($form->{customer}) {
 
 715     $where .= qq| AND (ct.name ILIKE ?)|;
 
 716     push(@values, like($form->{customer}));
 
 720     "ordnumber" => "a.ordnumber",
 
 721     "invnumber" => "a.invnumber",
 
 722     "notes" => "a.notes",
 
 724   foreach my $key (keys(%columns)) {
 
 725     next unless ($form->{$key});
 
 726     $where .= qq| AND $columns{$key} ILIKE ?|;
 
 727     push(@values, like($form->{$key}));
 
 730   if ($form->{dunning_level}) {
 
 731     $where .= qq| AND a.dunning_config_id = ?|;
 
 732     push(@values, conv_i($form->{dunning_level}));
 
 735   if ($form->{department_id}) {
 
 736     $where .= qq| AND a.department_id = ?|;
 
 737     push @values, conv_i($form->{department_id});
 
 740   $form->{minamount} = $form->parse_amount($myconfig, $form->{minamount});
 
 741   if ($form->{minamount}) {
 
 742     $where .= qq| AND ((a.amount - a.paid) > ?) |;
 
 743     push(@values, $form->{minamount});
 
 746   if (!$form->{showold}) {
 
 747     $where .= qq| AND (a.amount > a.paid) AND (da.dunning_config_id = a.dunning_config_id) |;
 
 750   if ($form->{transdatefrom}) {
 
 751     $where .= qq| AND a.transdate >= ?|;
 
 752     push(@values, $form->{transdatefrom});
 
 754   if ($form->{transdateto}) {
 
 755     $where .= qq| AND a.transdate <= ?|;
 
 756     push(@values, $form->{transdateto});
 
 758   if ($form->{dunningfrom}) {
 
 759     $where .= qq| AND da.transdate >= ?|;
 
 760     push(@values, $form->{dunningfrom});
 
 762   if ($form->{dunningto}) {
 
 763     $where .= qq| AND da.transdate >= ?|;
 
 764     push(@values, $form->{dunningto});
 
 767   if ($form->{salesman_id}) {
 
 768     $where .= qq| AND a.salesman_id = ?|;
 
 769     push(@values, conv_i($form->{salesman_id}));
 
 773     'dunning_description' => [ qw(dn.dunning_description customername invnumber) ],
 
 774     'customername'        => [ qw(customername invnumber) ],
 
 775     'invnumber'           => [ qw(a.invnumber) ],
 
 776     'transdate'           => [ qw(a.transdate a.invnumber) ],
 
 777     'duedate'             => [ qw(a.duedate a.invnumber) ],
 
 778     'dunning_date'        => [ qw(dunning_date a.invnumber) ],
 
 779     'dunning_duedate'     => [ qw(dunning_duedate a.invnumber) ],
 
 780     'salesman'            => [ qw(salesman) ],
 
 783   my $sortdir   = !defined $form->{sortdir}    ? 'ASC'         : $form->{sortdir} ? 'ASC' : 'DESC';
 
 784   my $sortkey   = $sort_columns{$form->{sort}} ? $form->{sort} : 'customername';
 
 785   my $sortorder = join ', ', map { "$_ $sortdir" } (@{ $sort_columns{$sortkey} }, 'da.dunning_id');
 
 788     qq|SELECT a.id, a.ordnumber, a.invoice, a.transdate, a.invnumber, a.amount, a.language_id,
 
 789          ct.name AS customername, ct.id AS customer_id, a.duedate, da.fee,
 
 790          da.interest, dn.dunning_description, dn.dunning_level, da.transdate AS dunning_date,
 
 791          da.duedate AS dunning_duedate, da.dunning_id, da.dunning_config_id,
 
 794        JOIN customer ct ON (a.customer_id = ct.id)
 
 795        LEFT JOIN employee e2 ON (a.salesman_id = e2.id), dunning da
 
 796        LEFT JOIN dunning_config dn ON (da.dunning_config_id = dn.id)
 
 798        ORDER BY $sortorder|;
 
 800   $form->{DUNNINGS} = selectall_hashref_query($form, $dbh, $query, @values);
 
 802   foreach my $ref (@{ $form->{DUNNINGS} }) {
 
 803     map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2)} qw(amount fee interest);
 
 806   $main::lxdebug->leave_sub();
 
 811   $main::lxdebug->enter_sub();
 
 813   my ($self, $myconfig, $form, $copies) = @_;
 
 815   # Don't allow access outside of $spool.
 
 816   map { $_ =~ s|.*/||; } @{ $form->{DUNNING_PDFS} };
 
 819   $copies         = 1 unless $copies;
 
 820   my $spool       = $::lx_office_conf{paths}->{spool};
 
 821   my $inputfiles  = join " ", map { "$spool/$_ " x $copies } @{ $form->{DUNNING_PDFS} };
 
 822   my $dunning_id  = $form->{dunning_id};
 
 824   $dunning_id     =~ s|[^\d]||g;
 
 826   my $in = IO::File->new($::lx_office_conf{applications}->{ghostscript} . " -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=- $inputfiles |");
 
 827   $form->error($main::locale->text('Could not spawn ghostscript.')) unless $in;
 
 829   if ($form->{media} eq 'printer') {
 
 830     $form->get_printer_code($myconfig);
 
 832     if ($form->{printer_command}) {
 
 833       $out = IO::File->new("| $form->{printer_command}");
 
 836     $::locale->with_raw_io($out, sub { $out->print($_) while <$in> });
 
 838     $form->error($main::locale->text('Could not spawn the printer command.')) unless $out;
 
 841     my $dunning_filename = $form->get_formname_translation('dunning');
 
 842     print qq|Content-Type: Application/PDF\n| .
 
 843           qq|Content-Disposition: attachment; filename="${dunning_filename}_${dunning_id}.pdf"\n\n|;
 
 845     $::locale->with_raw_io(\*STDOUT, sub { print while <$in> });
 
 850   map { unlink("$spool/$_") } @{ $form->{DUNNING_PDFS} };
 
 852   $main::lxdebug->leave_sub();
 
 856   $main::lxdebug->enter_sub();
 
 858   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
 
 860   # connect to database
 
 861   my $dbh = $provided_dbh || SL::DB->client->dbh;
 
 863   $dunning_id =~ s|[^\d]||g;
 
 865   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates, @dunned_invoices);
 
 866   if ($form->{"language_id"}) {
 
 867     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
 868       AM->get_language_details($myconfig, $form, $form->{language_id});
 
 870     $output_dateformat = $myconfig->{dateformat};
 
 871     $output_numberformat = $myconfig->{numberformat};
 
 872     $output_longdates = 1;
 
 878          da.transdate  AS dunning_date,
 
 879          da.duedate    AS dunning_duedate,
 
 881          dcfg.template AS formname,
 
 882          dcfg.email_subject, dcfg.email_body, dcfg.email_attachment,
 
 884          ar.transdate,       ar.duedate,      ar.customer_id,
 
 885          ar.invnumber,       ar.ordnumber,    ar.cp_id,
 
 886          ar.amount,          ar.netamount,    ar.paid,
 
 887          ar.employee_id,     ar.salesman_id,  ar.id AS dunned_invoice_id,
 
 888          (SELECT cu.name FROM currencies cu WHERE cu.id = ar.currency_id) AS curr,
 
 889          (SELECT description from department WHERE id = ar.department_id) AS department,
 
 890          ar.amount - ar.paid AS open_amount,
 
 891          ar.amount - ar.paid + da.fee + da.interest AS linetotal
 
 894        LEFT JOIN dunning_config dcfg ON (dcfg.id = da.dunning_config_id)
 
 895        LEFT JOIN ar ON (ar.id = da.trans_id)
 
 896        WHERE (da.dunning_id = ?)|;
 
 898   my $sth = prepare_execute_query($form, $dbh, $query, $dunning_id);
 
 900   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 902       $form->{TEMPLATE_ARRAYS} = {};
 
 903       map({ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} = []; } keys(%{$ref}));
 
 906     map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2) } qw(amount netamount paid open_amount fee interest linetotal);
 
 907     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 908     map { push @{ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} }, $ref->{$_} } keys %$ref;
 
 909     push @dunned_invoices, {id => $ref->{dunned_invoice_id}, invnumber => $ref->{invnumber}};
 
 913   # if we have some credit notes to add, do a safety check on the first customer id
 
 914   # and add one entry for each credit note
 
 915   if ($form->{LIST_CREDIT_NOTES} && $form->{LIST_CREDIT_NOTES}->{$form->{TEMPLATE_ARRAYS}->{"dn_customer_id"}[0]}) {
 
 916     my $first_customer_id = $form->{TEMPLATE_ARRAYS}->{"dn_customer_id"}[0];
 
 917     while ( my ($cred_id, $value) = each(%{ $form->{LIST_CREDIT_NOTES}->{$first_customer_id} } ) ) {
 
 918       map { push @{ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} }, $value->{$_} } keys %{ $value };
 
 923          c.id AS customer_id, c.name,         c.street,       c.zipcode,   c.city,
 
 924          c.country,           c.department_1, c.department_2, c.email,     c.customernumber,
 
 925          c.greeting,          c.contact,      c.phone,        c.fax,       c.homepage,
 
 926          c.email,             c.taxincluded,  c.business_id,  c.taxnumber, c.iban,
 
 931        LEFT JOIN ar          ON (d.trans_id = ar.id)
 
 932        LEFT JOIN customer c  ON (ar.customer_id = c.id)
 
 933        LEFT JOIN contacts co ON (ar.cp_id = co.cp_id)
 
 934        LEFT JOIN employee e  ON (ar.salesman_id = e.id)
 
 935        WHERE (d.dunning_id = ?)
 
 937   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
 
 938   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
 942          cfg.interest_rate, cfg.template AS formname, cfg.dunning_level,
 
 943          cfg.email_subject, cfg.email_body, cfg.email_attachment,
 
 944          d.transdate AS dunning_date,
 
 947           WHERE dunning_id = ?)
 
 949          (SELECT SUM(interest)
 
 951           WHERE dunning_id = ?)
 
 953          (SELECT SUM(amount) - SUM(paid)
 
 958              WHERE dunning_id = ?))
 
 961        LEFT JOIN dunning_config cfg ON (d.dunning_config_id = cfg.id)
 
 962        WHERE d.dunning_id = ?
 
 964   $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id, $dunning_id, $dunning_id, $dunning_id);
 
 965   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
 967   $form->{interest_rate}     = $form->format_amount($myconfig, $ref->{interest_rate} * 100);
 
 968   $form->{fee}               = $form->format_amount($myconfig, $ref->{fee}, 2);
 
 969   $form->{total_interest}    = $form->format_amount($myconfig, $form->round_amount($ref->{total_interest}, 2), 2);
 
 970   my $total_open_amount      = $ref->{total_open_amount};
 
 971   if ($form->{l_include_credit_notes}) {
 
 972     # a bit stupid, but redo calc because of credit notes
 
 973     $total_open_amount      = 0;
 
 974     foreach my $amount (@{ $form->{TEMPLATE_ARRAYS}->{dn_open_amount} }) {
 
 975       $total_open_amount += $form->parse_amount($myconfig, $amount, 2);
 
 978   $form->{total_open_amount} = $form->format_amount($myconfig, $form->round_amount($total_open_amount, 2), 2);
 
 979   $form->{total_amount}      = $form->format_amount($myconfig, $form->round_amount($ref->{fee} + $ref->{total_interest} + $total_open_amount, 2), 2);
 
 981   $::form->format_dates($output_dateformat, $output_longdates,
 
 982     qw(dn_dunning_date dn_dunning_duedate dn_transdate dn_duedate
 
 983           dunning_date    dunning_duedate    transdate    duedate)
 
 985   $::form->reformat_numbers($output_numberformat, 2, qw(
 
 986     dn_amount dn_netamount dn_paid dn_open_amount dn_fee dn_interest dn_linetotal
 
 987        amount    netamount    paid    open_amount    fee    interest    linetotal
 
 988     total_interest total_open_interest total_amount total_open_amount
 
 990   $::form->reformat_numbers($output_numberformat, undef, qw(interest_rate));
 
 992   $self->set_customer_cvars($myconfig, $form);
 
 993   $self->set_template_options($myconfig, $form);
 
 995   my $filename          = "dunning_${dunning_id}_" . Common::unique_id() . ".pdf";
 
 996   my $spool             = $::lx_office_conf{paths}->{spool};
 
 997   $form->{OUT}          = "${spool}/$filename";
 
 998   $form->{keep_tmpfile} = 1;
 
1000   delete $form->{tmpfile};
 
1002   push @{ $form->{DUNNING_PDFS} }, $filename;
 
1003   push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'path' => "${spool}/$filename",
 
1004                                            'name'     => $form->get_formname_translation('dunning') . "_${dunning_id}.pdf" };
 
1006   my $employee_id = ($::instance_conf->get_dunning_creator eq 'invoice_employee') ?
 
1007                       $form->{employee_id}                                        :
 
1008                       SL::DB::Manager::Employee->current->id;
 
1010   $form->get_employee_data('prefix' => 'employee', 'id' => $employee_id);
 
1011   $form->get_employee_data('prefix' => 'salesman', 'id' => $form->{salesman_id});
 
1013   $form->{attachment_type}    = "dunning";
 
1014   if ( $form->{dunning_level} ) {
 
1015     $form->{attachment_type} .= $form->{dunning_level} if $form->{dunning_level} < 4;
 
1017   $form->{attachment_filename} = $form->get_formname_translation($form->{attachment_type}) . "_${dunning_id}.pdf";
 
1018   $form->{attachment_id} = $form->{invoice_id};
 
1020   # this generates the file in the spool directory
 
1021   $form->parse_template($myconfig);
 
1023   # save dunning pdf in filemanagement/webdav for each invoice
 
1024   foreach my $dunned_invoice (@dunned_invoices) {
 
1025     if ($::instance_conf->get_doc_storage) {
 
1027         object_id   => $dunned_invoice->{id},
 
1028         object_type => $form->{attachment_type},
 
1029         mime_type   => 'application/pdf',
 
1030         source      => 'created',
 
1031         file_type   => 'document',
 
1032         file_name   => $form->{attachment_filename},
 
1033         file_path   => "${spool}/$filename",
 
1037     if ($::instance_conf->get_webdav_documents) {
 
1038       my $webdav = SL::Webdav->new(
 
1040         number   => $dunned_invoice->{invnumber},
 
1042       my $webdav_file = SL::Webdav::File->new(
 
1044         filename => $form->{attachment_filename},
 
1046       $webdav_file->store(file => "${spool}/$filename");
 
1050   $main::lxdebug->leave_sub();
 
1053 sub print_invoice_for_fees {
 
1054   $main::lxdebug->enter_sub();
 
1056   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
 
1058   my $dbh = $provided_dbh || SL::DB->client->dbh;
 
1060   my ($query, @values, $sth);
 
1064          d.fee_interest_ar_id,
 
1065          d.trans_id AS invoice_id,
 
1069        LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
 
1070        WHERE d.dunning_id = ?|;
 
1071   my ($ar_id, $invoice_id, $template, $dunning_level) = selectrow_query($form, $dbh, $query, $dunning_id);
 
1074     $main::lxdebug->leave_sub();
 
1078   my $saved_form = save_form();
 
1080   $query = qq|SELECT SUM(fee), SUM(interest) FROM dunning WHERE id = ?|;
 
1081   my ($fee_total, $interest_total) = selectrow_query($form, $dbh, $query, $dunning_id);
 
1085          ar.invnumber, ar.transdate AS invdate, ar.amount, ar.netamount,
 
1086          ar.duedate,   ar.notes,     ar.notes AS invoicenotes, ar.customer_id,
 
1088          c.name,      c.department_1,   c.department_2, c.street, c.zipcode, c.city, c.country,
 
1089          c.contact,   c.customernumber, c.phone,        c.fax,    c.email,
 
1090          c.taxnumber, c.greeting
 
1093        LEFT JOIN customer c ON (ar.customer_id = c.id)
 
1095   my $ref = selectfirst_hashref_query($form, $dbh, $query, $ar_id);
 
1096   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1098   $query = qq|SELECT * FROM employee WHERE login = ?|;
 
1099   $ref = selectfirst_hashref_query($form, $dbh, $query, $::myconfig{login});
 
1100   map { $form->{"employee_${_}"} = $ref->{$_} } keys %{ $ref };
 
1102   $query = qq|SELECT * FROM acc_trans WHERE trans_id = ? ORDER BY acc_trans_id ASC|;
 
1103   $sth   = prepare_execute_query($form, $dbh, $query, $ar_id);
 
1105   my ($row, $fee, $interest) = (0, 0, 0);
 
1107   while ($ref = $sth->fetchrow_hashref()) {
 
1108     next if ($ref->{amount} < 0);
 
1113       $fee = $ref->{amount};
 
1115       $interest = $ref->{amount};
 
1119   $form->{fee}        = $form->round_amount($fee,             2);
 
1120   $form->{interest}   = $form->round_amount($interest,        2);
 
1121   $form->{invamount}  = $form->round_amount($fee + $interest, 2);
 
1122   $form->{dunning_id} = $dunning_id;
 
1123   $form->{formname}   = "${template}_invoice";
 
1125   map { $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) } qw(fee interest invamount);
 
1127   $self->set_customer_cvars($myconfig, $form);
 
1128   $self->set_template_options($myconfig, $form);
 
1130   my $filename = Common::unique_id() . "dunning_invoice_${dunning_id}.pdf";
 
1132   my $spool             = $::lx_office_conf{paths}->{spool};
 
1133   $form->{OUT}          = "$spool/$filename";
 
1134   $form->{keep_tmpfile} = 1;
 
1135   delete $form->{tmpfile};
 
1137   map { delete $form->{$_} } grep /^[a-z_]+_\d+$/, keys %{ $form };
 
1139   my $attachment_filename      = $form->get_formname_translation('dunning_invoice') . "_${dunning_id}.pdf";
 
1140   $form->{attachment_filename} = $attachment_filename;
 
1141   $form->{attachment_type}     = "dunning";
 
1142   $form->{attachment_id}       = $invoice_id;
 
1143   $form->parse_template($myconfig);
 
1145   restore_form($saved_form);
 
1147   push @{ $form->{DUNNING_PDFS} }, $filename;
 
1148   push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'path' => "${spool}/$filename",
 
1149                                            'name' => $attachment_filename };
 
1151   # save dunning fee pdf in filemanagement/webdav for each dunned invoice
 
1152   if ($::instance_conf->get_doc_storage || $::instance_conf->get_webdav_documents) {
 
1153     $query              = qq|SELECT trans_id, invnumber FROM dunning LEFT JOIN ar ON (ar.id = trans_id) WHERE dunning_id = ?|;
 
1154     my $dunned_invoices = selectall_hashref_query($form, $dbh, $query, $dunning_id);
 
1156     foreach my $dunned_invoice (@$dunned_invoices) {
 
1157       if ($::instance_conf->get_doc_storage) {
 
1159           object_id   => $dunned_invoice->{trans_id},
 
1160           object_type => 'dunning',
 
1161           mime_type   => 'application/pdf',
 
1162           source      => 'created',
 
1163           file_type   => 'document',
 
1164           file_name   => $attachment_filename,
 
1165           file_path   => "${spool}/$filename",
 
1169       if ($::instance_conf->get_webdav_documents) {
 
1170         my $webdav = SL::Webdav->new(
 
1172           number   => $dunned_invoice->{invnumber},
 
1174         my $webdav_file = SL::Webdav::File->new(
 
1176           filename => $attachment_filename,
 
1178         $webdav_file->store(file => "${spool}/$filename");
 
1183   $main::lxdebug->leave_sub();
 
1186 sub set_customer_cvars {
 
1187   my ($self, $myconfig, $form) = @_;
 
1189   my $custom_variables = CVar->get_custom_variables(dbh      => $form->get_standard_dbh,
 
1191                                                     trans_id => $form->{customer_id});
 
1192   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
 
1194   $form->{cp_greeting} = GenericTranslations->get(dbh              => $form->get_standard_dbh,
 
1195                                                   translation_type => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
 
1196                                                   language_id      => $form->{language_id},
 
1197                                                   allow_fallback   => 1);
 
1198   if ($form->{cp_id}) {
 
1199     $custom_variables = CVar->get_custom_variables(dbh      => $form->get_standard_dbh,
 
1200                                                    module   => 'Contacts',
 
1201                                                    trans_id => $form->{cp_id});
 
1202     $form->{"cp_cvar_$_->{name}"} = $_->{value} for @{ $custom_variables };
 
1207 sub print_original_invoice {
 
1208   my ($self, $myconfig, $form, $invoice_id) = @_;
 
1209   # get one invoice as object and print to pdf
 
1210   my $invoice = SL::DB::Invoice->new(id => $invoice_id)->load;
 
1212   die "Invalid invoice object" unless ref($invoice) eq 'SL::DB::Invoice';
 
1214   my $print_form          = Form->new('');
 
1215   $print_form->{type}     = 'invoice';
 
1216   $print_form->{formname} = 'invoice',
 
1217   $print_form->{format}   = 'pdf',
 
1218   $print_form->{media}    = 'file';
 
1219   # no language override, should always be the object's language
 
1220   $invoice->flatten_to_form($print_form, format_amounts => 1);
 
1221   for my $i (1 .. $print_form->{rowcount}) {
 
1222     $print_form->{"sellprice_$i"} = $print_form->{"fxsellprice_$i"};
 
1224   $print_form->prepare_for_printing;
 
1226   my $filename = SL::Helper::CreatePDF->create_pdf(
 
1227                    template               => 'invoice.tex',
 
1228                    variables              => $print_form,
 
1229                    return                 => 'file_name',
 
1230                    variable_content_types => {
 
1231                      longdescription => 'html',
 
1232                      partnotes       => 'html',
 
1237   my $spool       = $::lx_office_conf{paths}->{spool};
 
1238   my ($volume, $directory, $file_name) = File::Spec->splitpath($filename);
 
1239   my $full_file_name                   = File::Spec->catfile($spool, $file_name);
 
1241   move($filename, $full_file_name) or die "The move operation failed: $!";
 
1243   # form get_formname_translation should use language_id_$i
 
1244   my $saved_reicpient_locale = $form->{recipient_locale};
 
1245   $form->{recipient_locale}  = $invoice->language;
 
1247   my $attachment_filename    = $form->get_formname_translation('invoice') . "_" . $invoice->invnumber . ".pdf";
 
1249   push @{ $form->{DUNNING_PDFS} }, $file_name;
 
1250   push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'path' => "${spool}/$file_name",
 
1251                                            'name' => $attachment_filename };
 
1253   $form->{recipient_locale}  = $saved_reicpient_locale;
 
1255   # save original invoice pdf in filemanagement/webdav for dunned invoice
 
1256   if ($::instance_conf->get_doc_storage) {
 
1258       object_id   => $invoice_id,
 
1259       object_type => 'dunning_orig_invoice',
 
1260       mime_type   => 'application/pdf',
 
1261       source      => 'created',
 
1262       file_type   => 'document',
 
1263       file_name   => $attachment_filename,
 
1264       file_path   => "${spool}/$file_name",
 
1267   if ($::instance_conf->get_webdav_documents) {
 
1268     my $webdav = SL::Webdav->new(
 
1270       number   => $invoice->invnumber,
 
1272     my $webdav_file = SL::Webdav::File->new(
 
1274       filename => $attachment_filename,
 
1276     $webdav_file->store(file => "${spool}/$file_name");