test action
[kivitendo-erp.git] / SL / DN.pm
1 #======================================================================
2 # LX-Office ERP
3 # Copyright (C) 2006
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
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.
21 #
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,
29 # MA 02110-1335, USA.
30 #======================================================================
31 #
32 # Dunning process module
33 #
34 #======================================================================
35
36 package DN;
37
38 use SL::Common;
39 use SL::DBUtils;
40 use SL::DB::AuthUser;
41 use SL::DB::Default;
42 use SL::DB::Employee;
43 use SL::File;
44 use SL::GenericTranslations;
45 use SL::IS;
46 use SL::Mailer;
47 use SL::MoreCommon;
48 use SL::Template;
49 use SL::DB::Printer;
50 use SL::DB::Language;
51 use SL::TransNumber;
52 use SL::Util qw(trim);
53 use SL::DB;
54 use SL::Webdav;
55
56 use File::Copy;
57 use File::Slurp qw(read_file);
58
59 use strict;
60
61 sub get_config {
62   $main::lxdebug->enter_sub();
63
64   my ($self, $myconfig, $form) = @_;
65
66   # connect to database
67   my $dbh = SL::DB->client->dbh;
68
69   my $query =
70     qq|SELECT * | .
71     qq|FROM dunning_config | .
72     qq|ORDER BY dunning_level|;
73   $form->{DUNNING} = selectall_hashref_query($form, $dbh, $query);
74
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));
78   }
79
80   $query =
81     qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar, dunning_creator
82        FROM defaults|;
83   ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}, $form->{dunning_creator})
84     = selectrow_query($form, $dbh, $query);
85
86   $main::lxdebug->leave_sub();
87 }
88
89 sub save_config {
90   my ($self, $myconfig, $form) = @_;
91   $main::lxdebug->enter_sub();
92
93   my $rc = SL::DB->client->with_transaction(\&_save_config, $self, $myconfig, $form);
94
95   $::lxdebug->leave_sub;
96   return $rc;
97 }
98
99 sub _save_config {
100   my ($self, $myconfig, $form) = @_;
101
102   my $dbh = SL::DB->client->dbh;
103
104   my ($query, @values);
105
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;
109
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"}) {
120         $query =
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 = ?
129              WHERE id = ?|;
130         push(@values, conv_i($form->{"id_$i"}));
131       } else {
132         $query =
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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
139       }
140       do_query($form, $dbh, $query, @values);
141     }
142
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"});
146     }
147   }
148
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);
154
155   return 1;
156 }
157
158 sub create_invoice_for_fees {
159   $main::lxdebug->enter_sub();
160
161   my ($self, $myconfig, $form, $dbh, $dunning_id) = @_;
162
163   my ($query, @values, $sth, $ref);
164
165   $query = qq|SELECT dcfg.create_invoices_for_fees
166               FROM dunning d
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);
170
171   if (!$create_invoices_for_fees) {
172     $main::lxdebug->leave_sub();
173     return;
174   }
175
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);
178
179   $query =
180     qq|SELECT
181          fee,
182          COALESCE((
183            SELECT MAX(d_fee.fee)
184            FROM dunning d_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)
188          ), 0)
189          AS max_previous_fee,
190          interest,
191          COALESCE((
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)
197          ), 0)
198          AS max_previous_interest,
199          d.id AS link_id
200        FROM dunning d
201        WHERE dunning_id = ?|;
202   @values = ($dunning_id, $dunning_id, $dunning_id);
203   $sth = prepare_execute_query($form, $dbh, $query, @values);
204
205   my ($fee_remaining, $interest_remaining) = (0, 0);
206   my ($fee_total, $interest_total) = (0, 0);
207
208   my @link_ids;
209
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};
218   }
219
220   $sth->finish();
221
222   my $amount = $fee_remaining + $interest_remaining;
223
224   if (!$amount) {
225     $main::lxdebug->leave_sub();
226     return;
227   }
228
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);
232
233   $query =
234     qq|INSERT INTO ar (id,          invnumber, transdate, gldate, customer_id,
235                        taxincluded, amount,    netamount, paid,   duedate,
236                        invoice,     currency_id, taxzone_id,      notes,
237                        employee_id)
238        VALUES (
239          ?,                     -- id
240          ?,                     -- invnumber
241          current_date,          -- transdate
242          current_date,          -- gldate
243          -- customer_id:
244          (SELECT ar.customer_id
245           FROM dunning dn
246           LEFT JOIN ar ON (dn.trans_id = ar.id)
247           WHERE dn.dunning_id = ?
248           LIMIT 1),
249          'f',                   -- taxincluded
250          ?,                     -- amount
251          ?,                     -- netamount
252          0,                     -- paid
253          -- duedate:
254          (SELECT duedate FROM dunning WHERE dunning_id = ? LIMIT 1),
255          'f',                   -- invoice
256          (SELECT id FROM currencies WHERE name = ?), -- curr
257          --taxzone_id:
258          (SELECT taxzone_id FROM customer WHERE id =
259           (SELECT ar.customer_id
260            FROM dunning dn
261            LEFT JOIN ar ON (dn.trans_id = ar.id)
262            WHERE dn.dunning_id = ?
263            LIMIT 1)
264          ),
265          ?,                     -- notes
266          -- employee_id:
267          (SELECT id FROM employee WHERE login = ?)
268        )|;
269   @values = ($ar_id,            # id
270              $trans_number->create_unique, # invnumber
271              $dunning_id,       # customer_id
272              $amount,
273              $amount,
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);
280
281   RecordLinks->create_links(
282     'dbh'        => $dbh,
283     'mode'       => 'ids',
284     'from_table' => 'dunning',
285     'from_ids'   => \@link_ids,
286     'to_table'   => 'ar',
287     'to_id'      => $ar_id,
288   );
289
290   $query =
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);
296
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);
299
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);
303   }
304
305   @values = ($ar_id, conv_i($form->{AR}), -1 * $amount, conv_i($form->{AR}));
306   do_statement($form, $sth, $query, @values);
307
308   $sth->finish();
309
310   $query = qq|UPDATE dunning SET fee_interest_ar_id = ? WHERE dunning_id = ?|;
311   do_query($form, $dbh, $query, $ar_id, $dunning_id);
312
313   $main::lxdebug->leave_sub();
314 }
315
316
317 sub save_dunning {
318   my ($self, $myconfig, $form, $rows) = @_;
319   $main::lxdebug->enter_sub();
320
321   $form->{DUNNING_PDFS_STORAGE} = [];
322
323   # Catch any error, either exception or a call to form->error
324   # and return it to the calling function.
325   my ($error, $rc);
326   eval {
327     local $form->{__ERROR_HANDLER} = sub { die @_ };
328     $rc = SL::DB->client->with_transaction(\&_save_dunning, $self, $myconfig, $form, $rows);
329     1;
330   } or do {
331     $error = $@;
332   };
333
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} };
340   }
341
342   $error       = 'unknown errror' if !$error && !$rc;
343   $rc->{error} = $error           if $error;
344
345   $::lxdebug->leave_sub;
346
347   return $rc;
348 }
349
350
351 sub _save_dunning {
352   my ($self, $myconfig, $form, $rows) = @_;
353
354   my $dbh = SL::DB->client->dbh;
355
356   my ($query, @values);
357
358   my ($dunning_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
359
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);
362
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)
366        VALUES (?, ?, ?,
367                (SELECT dunning_level FROM dunning_config WHERE id = ?),
368                ?,
369                (SELECT SUM(fee)
370                 FROM dunning_config
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 = ?)
374                  / 360,
375                current_date,
376                current_date + (SELECT payment_terms FROM dunning_config WHERE id = ?),
377                ?)|;
378   my $h_insert_dunning = prepare_query($form, $dbh, $q_insert_dunning);
379
380   my @invoice_ids;
381   my ($next_dunning_config_id, $customer_id);
382   my ($send_email, $print_invoice) = (0, 0);
383
384   foreach my $row (@{ $rows }) {
385     if ($row->{credit_note}) {
386       my $i = $row->{row};
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"},
392       );
393       next;
394     }
395     push @invoice_ids, $row->{invoice_id};
396     $next_dunning_config_id = $row->{next_dunning_config_id};
397     $customer_id            = $row->{customer_id};
398
399     @values = ($row->{next_dunning_config_id}, $row->{invoice_id});
400     do_statement($form, $h_update_ar, $q_update_ar, @values);
401
402     $send_email       |= $row->{email};
403     $print_invoice    |= $row->{print_invoice};
404
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});
408
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,
412                $print_invoice);
413     do_statement($form, $h_insert_dunning, $q_insert_dunning, @values);
414
415     RecordLinks->create_links(
416       'dbh'        => $dbh,
417       'mode'       => 'ids',
418       'from_table' => 'ar',
419       'from_ids'   => $invoice_id,
420       'to_table'   => 'dunning',
421       'to_id'      => $row_id,
422     );
423   }
424   # die this transaction, because for this customer only credit notes are
425   # selected ...
426   die "only credit notes are selected for this customer\n" unless $customer_id;
427
428   $h_update_ar->finish();
429   $h_insert_dunning->finish();
430
431   $form->{DUNNING_PDFS_EMAIL} = [];
432
433   $form->{dunning_id} = $dunning_id;
434
435   $self->create_invoice_for_fees($myconfig, $form, $dbh, $dunning_id);
436
437   $self->print_invoice_for_fees($myconfig, $form, $dunning_id, $dbh);
438   $self->print_dunning($myconfig, $form, $dunning_id, $dbh);
439
440   if ($print_invoice) {
441     $self->print_original_invoice($myconfig, $form, $dunning_id, $_) for @invoice_ids;
442   }
443
444   if ($send_email) {
445     $self->send_email($myconfig, $form, $dunning_id, $dbh);
446   }
447
448   return ({dunning_id => $dunning_id, print_original_invoice => $print_invoice, send_email => $send_email});
449 }
450
451 sub send_email {
452   $main::lxdebug->enter_sub();
453
454   my ($self, $myconfig, $form, $dunning_id, $dbh) = @_;
455
456   my $query =
457     qq|SELECT
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
461        FROM dunning d
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 = ?)
466        LIMIT 1|;
467   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
468
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});
473   }
474
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
477   my ($from, $sign);
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;
481   } else {
482     eval {
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");
485       die unless ($from);
486       1;
487     } or die $main::locale->text('No email for user with login #1 defined.', $ref->{invoice_employee_login});
488   }
489
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;
501
502   $mail->{message} =~ s/\r\n/\n/g;
503
504   if ($ref->{email_attachment} && @{ $form->{DUNNING_PDFS_EMAIL} }) {
505     $mail->{attachments} = $form->{DUNNING_PDFS_EMAIL};
506   }
507
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';
512
513   $mail->send();
514
515   $main::lxdebug->leave_sub();
516 }
517
518 sub set_template_options {
519   $main::lxdebug->enter_sub();
520
521   my ($self, $myconfig, $form) = @_;
522
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);
528
529   if ($form->{language} ne "") {
530     $form->{language} = "_" . $form->{language};
531   }
532
533   if ($form->{printer_code} ne "") {
534     $form->{printer_code} = "_" . $form->{printer_code};
535   }
536
537   my $extension = 'html';
538   if ($form->{format} eq 'postscript') {
539     $form->{postscript}   = 1;
540     $extension            = 'tex';
541
542   } elsif ($form->{"format"} =~ /pdf/) {
543     $form->{pdf}          = 1;
544     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
545
546   } elsif ($form->{"format"} =~ /opendocument/) {
547     $form->{opendocument} = 1;
548     $extension            = 'odt';
549   } elsif ($form->{"format"} =~ /excel/) {
550     $form->{excel} = 1;
551     $extension            = 'xls';
552   }
553
554
555   # search for the template
556   my @template_files;
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";
561
562   $form->{IN} = undef;
563   for my $filename (@template_files) {
564     if (-f ($defaults->templates . "/$filename")) {
565       $form->{IN} = $filename;
566       last;
567     }
568   }
569
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));
572   }
573
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,
583   };
584
585   $main::lxdebug->leave_sub();
586 }
587
588 sub get_invoices {
589
590   $main::lxdebug->enter_sub();
591
592   my ($self, $myconfig, $form) = @_;
593
594   # connect to database
595   my $dbh = SL::DB->client->dbh;
596
597   my $where;
598   my @values;
599
600   $form->{customer_id} = $1 if ($form->{customer} =~ /--(\d+)$/);
601
602   if ($form->{customer_id}) {
603     $where .= qq| AND (a.customer_id = ?)|;
604     push(@values, $form->{customer_id});
605
606   } elsif ($form->{customer}) {
607     $where .= qq| AND (ct.name ILIKE ?)|;
608     push(@values, like($form->{customer}));
609   }
610
611   if ($form->{department_id}) {
612     $where .= qq| AND (a.department_id = ?)|;
613     push(@values, $form->{department_id});
614   }
615
616   my %columns = (
617     "ordnumber" => "a.ordnumber",
618     "invnumber" => "a.invnumber",
619     "notes"     => "a.notes",
620     "country"   => "ct.country",
621     );
622   foreach my $key (keys(%columns)) {
623     next unless ($form->{$key});
624     $where .= qq| AND $columns{$key} ILIKE ?|;
625     push(@values, like($form->{$key}));
626   }
627
628   if ($form->{dunning_level}) {
629     $where .= qq| AND nextcfg.id = ?|;
630     push(@values, conv_i($form->{dunning_level}));
631   }
632
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}));
637   }
638
639   my $query =
640     qq|SELECT id
641        FROM dunning_config
642        WHERE dunning_level = (SELECT MAX(dunning_level) FROM dunning_config)|;
643   my ($id_for_max_dunning_level) = selectrow_query($form, $dbh, $query);
644
645   if (!$form->{l_include_direct_debit}) {
646     $where .= qq| AND NOT COALESCE(a.direct_debit, FALSE) |;
647   }
648   my $paid = ($form->{l_include_credit_notes}) ? "WHERE (a.paid <> a.amount)" : "WHERE (a.paid < a.amount)";
649
650   $query =
651     qq|SELECT
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,
655          a.direct_debit,
656          dep.description as departmentname,
657
658          cfg.dunning_description, cfg.dunning_level,
659
660          d.transdate AS dunning_date, d.duedate AS dunning_duedate,
661          d.fee, d.interest,
662
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,
666
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
670
671        FROM ar a
672
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
677          (nextcfg.id =
678            COALESCE(
679              (SELECT id
680               FROM dunning_config
681               WHERE dunning_level >
682                 COALESCE((SELECT dunning_level
683                           FROM dunning_config
684                           WHERE id = a.dunning_config_id
685                           ORDER BY dunning_level DESC
686                           LIMIT 1),
687                          0)
688               ORDER BY dunning_level ASC
689               LIMIT 1)
690              , ?))
691        LEFT JOIN dunning d ON (d.id = (
692          SELECT MAX(d2.id)
693          FROM dunning d2
694          WHERE (d2.trans_id      = a.id)
695            AND (d2.dunning_level = cfg.dunning_level)
696        ))
697         $paid
698         AND (a.duedate < current_date)
699
700        $where
701
702        ORDER BY a.id, transdate, duedate, name|;
703   my $sth = prepare_execute_query($form, $dbh, $query, $id_for_max_dunning_level, @values);
704
705   $form->{DUNNINGS} = [];
706
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);
712   }
713
714   $sth->finish;
715
716   $query = qq|SELECT id, dunning_description FROM dunning_config ORDER BY dunning_level|;
717   $form->{DUNNING_CONFIG} = selectall_hashref_query($form, $dbh, $query);
718
719   $main::lxdebug->leave_sub();
720 }
721
722 sub get_dunning {
723
724   $main::lxdebug->enter_sub();
725
726   my ($self, $myconfig, $form) = @_;
727
728   # connect to database
729   my $dbh = SL::DB->client->dbh;
730
731   my $where = qq| WHERE (da.trans_id = a.id)|;
732
733   my @values;
734
735   if ($form->{customer_id}) {
736     $where .= qq| AND (a.customer_id = ?)|;
737     push(@values, $form->{customer_id});
738
739   } elsif ($form->{customer}) {
740     $where .= qq| AND (ct.name ILIKE ?)|;
741     push(@values, like($form->{customer}));
742   }
743
744   my %columns = (
745     "ordnumber" => "a.ordnumber",
746     "invnumber" => "a.invnumber",
747     "notes" => "a.notes",
748     );
749   foreach my $key (keys(%columns)) {
750     next unless ($form->{$key});
751     $where .= qq| AND $columns{$key} ILIKE ?|;
752     push(@values, like($form->{$key}));
753   }
754
755   if ($form->{dunning_id}) {
756     $where .= qq| AND da.dunning_id = ?|;
757     push(@values, conv_i($form->{dunning_id}));
758   }
759
760   if ($form->{dunning_level}) {
761     $where .= qq| AND a.dunning_config_id = ?|;
762     push(@values, conv_i($form->{dunning_level}));
763   }
764
765   if ($form->{department_id}) {
766     $where .= qq| AND a.department_id = ?|;
767     push @values, conv_i($form->{department_id});
768   }
769
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});
774   }
775
776   if (!$form->{showold}) {
777     $where .= qq| AND (a.amount > a.paid) AND (da.dunning_config_id = a.dunning_config_id) |;
778   }
779
780   if ($form->{transdatefrom}) {
781     $where .= qq| AND a.transdate >= ?|;
782     push(@values, $form->{transdatefrom});
783   }
784   if ($form->{transdateto}) {
785     $where .= qq| AND a.transdate <= ?|;
786     push(@values, $form->{transdateto});
787   }
788   if ($form->{dunningfrom}) {
789     $where .= qq| AND da.transdate >= ?|;
790     push(@values, $form->{dunningfrom});
791   }
792   if ($form->{dunningto}) {
793     $where .= qq| AND da.transdate >= ?|;
794     push(@values, $form->{dunningto});
795   }
796
797   if ($form->{salesman_id}) {
798     $where .= qq| AND a.salesman_id = ?|;
799     push(@values, conv_i($form->{salesman_id}));
800   }
801
802   my %sort_columns = (
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) ],
812     );
813
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} };
817
818   my $query =
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,
824          e2.name AS salesman
825        FROM ar a
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)
829        $where
830        ORDER BY $sortorder|;
831
832   $form->{DUNNINGS} = selectall_hashref_query($form, $dbh, $query, @values);
833
834   foreach my $ref (@{ $form->{DUNNINGS} }) {
835     map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2)} qw(amount fee interest);
836   }
837
838   $main::lxdebug->leave_sub();
839 }
840
841 sub melt_pdfs {
842
843   $main::lxdebug->enter_sub();
844
845   my ($self, $myconfig, $form, $copies, %params) = @_;
846
847   # Don't allow access outside of $spool.
848   map { $_ =~ s|.*/||; } @{ $form->{DUNNING_PDFS} };
849
850   $copies        *= 1;
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};
855
856   $dunning_id     =~ s|[^\d]||g;
857
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;
860
861   my $dunning_filename    = $form->get_formname_translation('dunning');
862   my $attachment_filename = "${dunning_filename}_${dunning_id}.pdf";
863   my $content;
864   if ($params{return_content}) {
865     $content = read_file($in);
866
867   } else {
868     if ($form->{media} eq 'printer') {
869       $form->get_printer_code($myconfig);
870       my $out;
871       if ($form->{printer_command}) {
872         $out = IO::File->new("| $form->{printer_command}");
873       }
874
875       $form->error($main::locale->text('Could not spawn the printer command.')) unless $out;
876
877       $::locale->with_raw_io($out, sub { $out->print($_) while <$in> });
878
879     } else {
880       print qq|Content-Type: Application/PDF\n| .
881             qq|Content-Disposition: attachment; filename=$attachment_filename\n\n|;
882
883       $::locale->with_raw_io(\*STDOUT, sub { print while <$in> });
884     }
885   }
886
887   $in->close();
888
889   map { unlink("$spool/$_") } @{ $form->{DUNNING_PDFS} };
890
891   $main::lxdebug->leave_sub();
892   return ($attachment_filename, $content) if $params{return_content};
893 }
894
895 sub print_dunning {
896   $main::lxdebug->enter_sub();
897
898   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
899
900   # connect to database
901   my $dbh = $provided_dbh || SL::DB->client->dbh;
902
903   $dunning_id =~ s|[^\d]||g;
904
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});
909   } else {
910     $output_dateformat = $myconfig->{dateformat};
911     $output_numberformat = $myconfig->{numberformat};
912     $output_longdates = 1;
913   }
914
915   my $query =
916     qq|SELECT
917          da.fee, da.interest,
918          da.transdate  AS dunning_date,
919          da.duedate    AS dunning_duedate,
920
921          dcfg.template AS formname,
922          dcfg.email_subject, dcfg.email_body, dcfg.email_attachment,
923
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
932
933        FROM dunning da
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 = ?)|;
937
938   my $sth = prepare_execute_query($form, $dbh, $query, $dunning_id);
939   my $first = 1;
940   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
941     if ($first) {
942       $form->{TEMPLATE_ARRAYS} = {};
943       map({ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} = []; } keys(%{$ref}));
944       $first = 0;
945     }
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;
949   }
950   $sth->finish();
951
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 };
958     }
959   }
960   $query =
961     qq|SELECT
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,
966          c.ustid,
967          ar.id AS invoice_id,
968          co.*
969        FROM dunning d
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 = ?)
975        LIMIT 1|;
976   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
977   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
978
979   $query =
980     qq|SELECT
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,
984          (SELECT SUM(fee)
985           FROM dunning
986           WHERE dunning_id = ?)
987          AS fee,
988          (SELECT SUM(interest)
989           FROM dunning
990           WHERE dunning_id = ?)
991          AS total_interest,
992          (SELECT SUM(amount) - SUM(paid)
993           FROM ar
994           WHERE id IN
995             (SELECT trans_id
996              FROM dunning
997              WHERE dunning_id = ?))
998          AS total_open_amount
999        FROM dunning d
1000        LEFT JOIN dunning_config cfg ON (d.dunning_config_id = cfg.id)
1001        WHERE d.dunning_id = ?
1002        LIMIT 1|;
1003   $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id, $dunning_id, $dunning_id, $dunning_id);
1004   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1005
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);
1015     }
1016   }
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);
1019
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)
1023   );
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
1028   ));
1029   $::form->reformat_numbers($output_numberformat, undef, qw(interest_rate));
1030
1031   $self->set_customer_cvars($myconfig, $form);
1032   $self->set_template_options($myconfig, $form);
1033
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;
1038
1039   delete $form->{tmpfile};
1040
1041   my $employee_id = ($::instance_conf->get_dunning_creator eq 'invoice_employee') ?
1042                       $form->{employee_id}                                        :
1043                       SL::DB::Manager::Employee->current->id;
1044
1045   $form->get_employee_data('prefix' => 'employee', 'id' => $employee_id);
1046   $form->get_employee_data('prefix' => 'salesman', 'id' => $form->{salesman_id});
1047
1048   $form->{attachment_type}    = "dunning";
1049   if ( $form->{dunning_level} ) {
1050     $form->{attachment_type} .= $form->{dunning_level} if $form->{dunning_level} < 4;
1051   }
1052   $form->{attachment_filename} = $form->get_formname_translation($form->{attachment_type}) . "_${dunning_id}.pdf";
1053   $form->{attachment_id} = $form->{invoice_id};
1054
1055   # this generates the file in the spool directory
1056   $form->parse_template($myconfig);
1057
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" };
1064
1065   $main::lxdebug->leave_sub();
1066 }
1067
1068 sub print_invoice_for_fees {
1069   $main::lxdebug->enter_sub();
1070
1071   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
1072
1073   my $dbh = $provided_dbh || SL::DB->client->dbh;
1074
1075   my ($query, @values, $sth);
1076
1077   $query =
1078     qq|SELECT
1079          d.fee_interest_ar_id,
1080          d.trans_id AS invoice_id,
1081          dcfg.template,
1082          dcfg.dunning_level
1083        FROM dunning d
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);
1087
1088   if (!$ar_id) {
1089     $main::lxdebug->leave_sub();
1090     return;
1091   }
1092
1093   my $saved_form = save_form();
1094
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);
1097
1098   $query =
1099     qq|SELECT
1100          ar.invnumber, ar.transdate AS invdate, ar.amount, ar.netamount,
1101          ar.duedate,   ar.notes,     ar.notes AS invoicenotes, ar.customer_id,
1102
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
1106
1107        FROM ar
1108        LEFT JOIN customer c ON (ar.customer_id = c.id)
1109        WHERE ar.id = ?|;
1110   my $ref = selectfirst_hashref_query($form, $dbh, $query, $ar_id);
1111   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1112
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 };
1116
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);
1119
1120   my ($row, $fee, $interest) = (0, 0, 0);
1121
1122   while ($ref = $sth->fetchrow_hashref()) {
1123     next if ($ref->{amount} < 0);
1124
1125     $row++;
1126
1127     if ($row == 1) {
1128       $fee = $ref->{amount};
1129     } else {
1130       $interest = $ref->{amount};
1131     }
1132   }
1133
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";
1139
1140   map { $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) } qw(fee interest invamount);
1141
1142   $self->set_customer_cvars($myconfig, $form);
1143   $self->set_template_options($myconfig, $form);
1144
1145   my $filename = Common::unique_id() . "dunning_invoice_" . $form->{invnumber} . ".pdf";
1146
1147   my $spool             = $::lx_office_conf{paths}->{spool};
1148   $form->{OUT}          = "$spool/$filename";
1149   $form->{keep_tmpfile} = 1;
1150   delete $form->{tmpfile};
1151
1152   map { delete $form->{$_} } grep /^[a-z_]+_\d+$/, keys %{ $form };
1153
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);
1159
1160   restore_form($saved_form);
1161
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 };
1168
1169   $main::lxdebug->leave_sub();
1170 }
1171
1172 sub set_customer_cvars {
1173   my ($self, $myconfig, $form) = @_;
1174
1175   my $custom_variables = CVar->get_custom_variables(dbh      => $form->get_standard_dbh,
1176                                                     module   => 'CT',
1177                                                     trans_id => $form->{customer_id});
1178   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
1179
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 };
1189   }
1190
1191 }
1192
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;
1197
1198   die "Invalid invoice object" unless ref($invoice) eq 'SL::DB::Invoice';
1199
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"};
1209   }
1210   $print_form->prepare_for_printing;
1211
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',
1219                      notes           => 'html',
1220                    },
1221   );
1222
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);
1226
1227   move($filename, $full_file_name) or die "The move operation failed: $!";
1228
1229   # form get_formname_translation should use language_id_$i
1230   my $saved_reicpient_locale = $form->{recipient_locale};
1231   $form->{recipient_locale}  = $invoice->language;
1232
1233   my $attachment_filename    = $form->get_formname_translation('invoice') . "_" . $invoice->invnumber . ".pdf";
1234
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 };
1241
1242   $form->{recipient_locale}  = $saved_reicpient_locale;
1243 }
1244
1245 sub _store_pdf_to_webdav_and_filemanagement {
1246   my ($dunning_id, $path, $name) =@_;
1247
1248   my @errors;
1249
1250   if ($::instance_conf->get_doc_storage) {
1251     eval {
1252       SL::File->save(
1253         object_id   => $dunning_id,
1254         object_type => 'dunning',
1255         mime_type   => 'application/pdf',
1256         source      => 'created',
1257         file_type   => 'document',
1258         file_name   => $name,
1259         file_path   => $path,
1260       );
1261       1;
1262     } or do {
1263       push @errors, $::locale->text('Storing PDF in storage backend failed: #1', $@);
1264     };
1265   }
1266
1267   if ($::instance_conf->get_webdav_documents) {
1268     eval {
1269       my $webdav = SL::Webdav->new(
1270         type     => 'dunning',
1271         number   => $dunning_id,
1272       );
1273       my $webdav_file = SL::Webdav::File->new(
1274         webdav   => $webdav,
1275         filename => $name,
1276       );
1277       $webdav_file->store(file => $path);
1278     } or do {
1279       push @errors, $::locale->text('Storing PDF to webdav folder failed: #1', $@);
1280     };
1281   }
1282
1283   return @errors;
1284 }
1285
1286
1287 1;