Sprache bei Mahnungen
[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., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #======================================================================
30 #
31 # Dunning process module
32 #
33 #======================================================================
34
35 package DN;
36
37 use SL::Common;
38 use SL::DBUtils;
39 use SL::GenericTranslations;
40 use SL::IS;
41 use SL::Mailer;
42 use SL::MoreCommon;
43 use SL::Template;
44 use SL::DB::Printer;
45 use SL::DB::Language;
46
47 use strict;
48
49 sub get_config {
50   $main::lxdebug->enter_sub();
51
52   my ($self, $myconfig, $form) = @_;
53
54   # connect to database
55   my $dbh = $form->dbconnect($myconfig);
56
57   my $query =
58     qq|SELECT * | .
59     qq|FROM dunning_config | .
60     qq|ORDER BY dunning_level|;
61   $form->{DUNNING} = selectall_hashref_query($form, $dbh, $query);
62
63   foreach my $ref (@{ $form->{DUNNING} }) {
64     $ref->{fee} = $form->format_amount($myconfig, $ref->{fee}, 2);
65     $ref->{interest_rate} = $form->format_amount($myconfig, ($ref->{interest_rate} * 100));
66   }
67
68   $query =
69     qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar
70        FROM defaults|;
71   ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}) = selectrow_query($form, $dbh, $query);
72
73   $dbh->disconnect();
74
75   $main::lxdebug->leave_sub();
76 }
77
78 sub save_config {
79   $main::lxdebug->enter_sub();
80
81   my ($self, $myconfig, $form) = @_;
82
83   # connect to database
84   my $dbh = $form->dbconnect_noauto($myconfig);
85
86   my ($query, @values);
87
88   for my $i (1 .. $form->{rowcount}) {
89     $form->{"fee_$i"} = $form->parse_amount($myconfig, $form->{"fee_$i"}) * 1;
90     $form->{"interest_rate_$i"} = $form->parse_amount($myconfig, $form->{"interest_rate_$i"}) / 100;
91
92     if (($form->{"dunning_level_$i"} ne "") &&
93         ($form->{"dunning_description_$i"} ne "")) {
94       @values = (conv_i($form->{"dunning_level_$i"}), $form->{"dunning_description_$i"},
95                  $form->{"email_subject_$i"}, $form->{"email_body_$i"},
96                  $form->{"template_$i"}, $form->{"fee_$i"}, $form->{"interest_rate_$i"},
97                  $form->{"active_$i"} ? 't' : 'f', $form->{"auto_$i"} ? 't' : 'f', $form->{"email_$i"} ? 't' : 'f',
98                  $form->{"email_attachment_$i"} ? 't' : 'f', conv_i($form->{"payment_terms_$i"}), conv_i($form->{"terms_$i"}),
99                  $form->{"create_invoices_for_fees_$i"} ? 't' : 'f');
100       if ($form->{"id_$i"}) {
101         $query =
102           qq|UPDATE dunning_config SET
103                dunning_level = ?, dunning_description = ?,
104                email_subject = ?, email_body = ?,
105                template = ?, fee = ?, interest_rate = ?,
106                active = ?, auto = ?, email = ?,
107                email_attachment = ?, payment_terms = ?, terms = ?,
108                create_invoices_for_fees = ?
109              WHERE id = ?|;
110         push(@values, conv_i($form->{"id_$i"}));
111       } else {
112         $query =
113           qq|INSERT INTO dunning_config
114                (dunning_level, dunning_description, email_subject, email_body,
115                 template, fee, interest_rate, active, auto, email,
116                 email_attachment, payment_terms, terms, create_invoices_for_fees)
117              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
118       }
119       do_query($form, $dbh, $query, @values);
120     }
121
122     if (($form->{"dunning_description_$i"} eq "") && ($form->{"id_$i"})) {
123       $query = qq|DELETE FROM dunning_config WHERE id = ?|;
124       do_query($form, $dbh, $query, $form->{"id_$i"});
125     }
126   }
127
128   $query  = qq|UPDATE defaults SET dunning_ar_amount_fee = ?, dunning_ar_amount_interest = ?, dunning_ar = ?|;
129   @values = (conv_i($form->{AR_amount_fee}), conv_i($form->{AR_amount_interest}), conv_i($form->{AR}));
130   do_query($form, $dbh, $query, @values);
131
132   $dbh->commit();
133   $dbh->disconnect();
134
135   $main::lxdebug->leave_sub();
136 }
137
138 sub create_invoice_for_fees {
139   $main::lxdebug->enter_sub();
140
141   my ($self, $myconfig, $form, $dbh, $dunning_id) = @_;
142
143   my ($query, @values, $sth, $ref);
144
145   $query = qq|SELECT dcfg.create_invoices_for_fees
146               FROM dunning d
147               LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
148               WHERE d.dunning_id = ?|;
149   my ($create_invoices_for_fees) = selectrow_query($form, $dbh, $query, $dunning_id);
150
151   if (!$create_invoices_for_fees) {
152     $main::lxdebug->leave_sub();
153     return;
154   }
155
156   $query = qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar FROM defaults|;
157   ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}) = selectrow_query($form, $dbh, $query);
158
159   $query =
160     qq|SELECT
161          fee,
162          COALESCE((
163            SELECT MAX(d_fee.fee)
164            FROM dunning d_fee
165            WHERE (d_fee.trans_id   =  d.trans_id)
166              AND (d_fee.dunning_id <> ?)
167              AND NOT (d_fee.fee_interest_ar_id ISNULL)
168          ), 0)
169          AS max_previous_fee,
170          interest,
171          COALESCE((
172            SELECT MAX(d_interest.interest)
173            FROM dunning d_interest
174            WHERE (d_interest.trans_id   =  d.trans_id)
175              AND (d_interest.dunning_id <> ?)
176              AND NOT (d_interest.fee_interest_ar_id ISNULL)
177          ), 0)
178          AS max_previous_interest
179        FROM dunning d
180        WHERE dunning_id = ?|;
181   @values = ($dunning_id, $dunning_id, $dunning_id);
182   $sth = prepare_execute_query($form, $dbh, $query, @values);
183
184   my ($fee_remaining, $interest_remaining) = (0, 0);
185   my ($fee_total, $interest_total) = (0, 0);
186
187   while (my $ref = $sth->fetchrow_hashref()) {
188     $fee_remaining      += $form->round_amount($ref->{fee}, 2);
189     $fee_remaining      -= $form->round_amount($ref->{max_previous_fee}, 2);
190     $fee_total          += $form->round_amount($ref->{fee}, 2);
191     $interest_remaining += $form->round_amount($ref->{interest}, 2);
192     $interest_remaining -= $form->round_amount($ref->{max_previous_interest}, 2);
193     $interest_total     += $form->round_amount($ref->{interest}, 2);
194   }
195
196   $sth->finish();
197
198   my $amount = $fee_remaining + $interest_remaining;
199
200   if (!$amount) {
201     $main::lxdebug->leave_sub();
202     return;
203   }
204
205   my ($ar_id) = selectrow_query($form, $dbh, qq|SELECT nextval('glid')|);
206   my $curr = $form->get_default_currency($myconfig);
207
208   $query =
209     qq|INSERT INTO ar (id,          invnumber, transdate, gldate, customer_id,
210                        taxincluded, amount,    netamount, paid,   duedate,
211                        invoice,     curr,      notes,
212                        employee_id)
213        VALUES (
214          ?,                     -- id
215          ?,                     -- invnumber
216          current_date,          -- transdate
217          current_date,          -- gldate
218          -- customer_id:
219          (SELECT ar.customer_id
220           FROM dunning dn
221           LEFT JOIN ar ON (dn.trans_id = ar.id)
222           WHERE dn.dunning_id = ?
223           LIMIT 1),
224          'f',                   -- taxincluded
225          ?,                     -- amount
226          ?,                     -- netamount
227          0,                     -- paid
228          -- duedate:
229          (SELECT duedate FROM dunning WHERE dunning_id = ? LIMIT 1),
230          'f',                   -- invoice
231          ?,                     -- curr
232          ?,                     -- notes
233          -- employee_id:
234          (SELECT id FROM employee WHERE login = ?)
235        )|;
236   @values = ($ar_id,            # id
237              $form->update_defaults($myconfig, 'invnumber', $dbh), # invnumber
238              $dunning_id,       # customer_id
239              $amount,
240              $amount,
241              $dunning_id,       # duedate
242              $curr,             # default currency
243              sprintf($main::locale->text('Automatically created invoice for fee and interest for dunning %s'), $dunning_id), # notes
244              $form->{login});   # employee_id
245   do_query($form, $dbh, $query, @values);
246
247   $query =
248     qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, taxkey)
249        VALUES (?, ?, ?, current_date, current_date, 0)|;
250   $sth = prepare_query($form, $dbh, $query);
251
252   @values = ($ar_id, conv_i($form->{AR_amount_fee}), $fee_remaining);
253   do_statement($form, $sth, $query, @values);
254
255   if ($interest_remaining) {
256     @values = ($ar_id, conv_i($form->{AR_amount_interest}), $interest_remaining);
257     do_statement($form, $sth, $query, @values);
258   }
259
260   @values = ($ar_id, conv_i($form->{AR}), -1 * $amount);
261   do_statement($form, $sth, $query, @values);
262
263   $sth->finish();
264
265   $query = qq|UPDATE dunning SET fee_interest_ar_id = ? WHERE dunning_id = ?|;
266   do_query($form, $dbh, $query, $ar_id, $dunning_id);
267
268   $main::lxdebug->leave_sub();
269 }
270
271 sub save_dunning {
272   $main::lxdebug->enter_sub();
273
274   my ($self, $myconfig, $form, $rows) = @_;
275   # connect to database
276   my $dbh = $form->dbconnect_noauto($myconfig);
277
278   my ($query, @values);
279
280   my ($dunning_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
281
282   my $q_update_ar = qq|UPDATE ar SET dunning_config_id = ? WHERE id = ?|;
283   my $h_update_ar = prepare_query($form, $dbh, $q_update_ar);
284
285   my $q_insert_dunning =
286     qq|INSERT INTO dunning (dunning_id, dunning_config_id, dunning_level, trans_id,
287                             fee,        interest,          transdate,     duedate)
288        VALUES (?, ?,
289                (SELECT dunning_level FROM dunning_config WHERE id = ?),
290                ?,
291                (SELECT SUM(fee)
292                 FROM dunning_config
293                 WHERE dunning_level <= (SELECT dunning_level FROM dunning_config WHERE id = ?)),
294                (SELECT (amount - paid) * (current_date - duedate) FROM ar WHERE id = ?)
295                  * (SELECT interest_rate FROM dunning_config WHERE id = ?)
296                  / 360,
297                current_date,
298                current_date + (SELECT payment_terms FROM dunning_config WHERE id = ?))|;
299   my $h_insert_dunning = prepare_query($form, $dbh, $q_insert_dunning);
300
301   my @invoice_ids;
302   my ($next_dunning_config_id, $customer_id);
303   my $send_email = 0;
304
305   foreach my $row (@{ $rows }) {
306     push @invoice_ids, $row->{invoice_id};
307     $next_dunning_config_id = $row->{next_dunning_config_id};
308     $customer_id            = $row->{customer_id};
309
310     @values = ($row->{next_dunning_config_id}, $row->{invoice_id});
311     do_statement($form, $h_update_ar, $q_update_ar, @values);
312
313     $send_email |= $row->{email};
314
315     my $next_config_id = conv_i($row->{next_dunning_config_id});
316     my $invoice_id     = conv_i($row->{invoice_id});
317
318     @values = ($dunning_id,     $next_config_id, $next_config_id,
319                $invoice_id,     $next_config_id, $invoice_id,
320                $next_config_id, $next_config_id);
321     do_statement($form, $h_insert_dunning, $q_insert_dunning, @values);
322   }
323
324   $h_update_ar->finish();
325   $h_insert_dunning->finish();
326
327   $form->{DUNNING_PDFS_EMAIL} = [];
328
329   $self->create_invoice_for_fees($myconfig, $form, $dbh, $dunning_id);
330
331   $self->print_invoice_for_fees($myconfig, $form, $dunning_id, $dbh);
332   $self->print_dunning($myconfig, $form, $dunning_id, $dbh);
333
334   $form->{dunning_id} = $dunning_id;
335
336   if ($send_email) {
337     $self->send_email($myconfig, $form, $dunning_id, $dbh);
338   }
339
340   $dbh->commit();
341   $dbh->disconnect();
342
343   $main::lxdebug->leave_sub();
344 }
345
346 sub send_email {
347   $main::lxdebug->enter_sub();
348
349   my ($self, $myconfig, $form, $dunning_id, $dbh) = @_;
350
351   my $query =
352     qq|SELECT
353          dcfg.email_body,     dcfg.email_subject, dcfg.email_attachment,
354          c.email AS recipient
355
356        FROM dunning d
357        LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
358        LEFT JOIN ar                  ON (d.trans_id          = ar.id)
359        LEFT JOIN customer c          ON (ar.customer_id      = c.id)
360        WHERE (d.dunning_id = ?)
361        LIMIT 1|;
362   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
363
364   if (!$ref || !$ref->{recipient} || !$myconfig->{email}) {
365     $main::lxdebug->leave_sub();
366     return;
367   }
368
369   my $template     = SL::Template::create(type => 'PlainText', form => $form, myconfig => $myconfig);
370   my $mail         = Mailer->new();
371   $mail->{from}    = $myconfig->{email};
372   $mail->{to}      = $ref->{recipient};
373   $mail->{subject} = $template->parse_block($ref->{email_subject});
374   $mail->{message} = $template->parse_block($ref->{email_body});
375
376   if ($myconfig->{signature}) {
377     $mail->{message} .= "\n-- \n$myconfig->{signature}";
378   }
379
380   $mail->{message} =~ s/\r\n/\n/g;
381
382   if ($ref->{email_attachment} && @{ $form->{DUNNING_PDFS_EMAIL} }) {
383     $mail->{attachments} = $form->{DUNNING_PDFS_EMAIL};
384   }
385
386   $mail->send();
387
388   $main::lxdebug->leave_sub();
389 }
390
391 sub set_template_options {
392   $main::lxdebug->enter_sub();
393
394   my ($self, $myconfig, $form) = @_;
395
396   $form->{templates}    = "$myconfig->{templates}";
397   $form->{language}     = $form->get_template_language($myconfig);
398   $form->{printer_code} = $form->get_printer_code($myconfig);
399
400   if ($form->{language} ne "") {
401     $form->{language} = "_" . $form->{language};
402   }
403
404   if ($form->{printer_code} ne "") {
405     $form->{printer_code} = "_" . $form->{printer_code};
406   }
407
408   my $extension = 'html';
409   if ($form->{format} eq 'postscript') {
410     $form->{postscript}   = 1;
411     $extension            = 'tex';
412
413   } elsif ($form->{"format"} =~ /pdf/) {
414     $form->{pdf}          = 1;
415     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
416
417   } elsif ($form->{"format"} =~ /opendocument/) {
418     $form->{opendocument} = 1;
419     $extension            = 'odt';
420   } elsif ($form->{"format"} =~ /excel/) {
421     $form->{excel} = 1;
422     $extension            = 'xls';
423   }
424
425
426   # search for the template
427   my @template_files;
428   push @template_files, "$form->{formname}_email$form->{language}$form->{printer_code}.$extension" if $form->{media} eq 'email';
429   push @template_files, "$form->{formname}$form->{language}$form->{printer_code}.$extension";
430   push @template_files, "$form->{formname}.$extension";
431   push @template_files, "default.$extension";
432
433   $form->{IN} = undef;
434   for my $filename (@template_files) {
435     if (-f "$form->{templates}/$filename") {
436       $form->{IN} = $filename;
437       last;
438     }
439   }
440
441   if (!defined $form->{IN}) {
442     $::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));
443   }
444
445   # prepare meta information for template introspection
446   $form->{template_meta} = {
447     formname  => $form->{formname},
448     language  => SL::DB::Manager::Language->find_by_or_create(id => $form->{language_id}),
449     format    => $form->{format},
450     media     => $form->{media},
451     extension => $extension,
452     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $form->{printer_id}),
453     today     => DateTime->today,
454   };
455
456   $main::lxdebug->leave_sub();
457 }
458
459 sub get_invoices {
460
461   $main::lxdebug->enter_sub();
462
463   my ($self, $myconfig, $form) = @_;
464
465   # connect to database
466   my $dbh = $form->dbconnect($myconfig);
467
468   my $where;
469   my @values;
470
471   $form->{customer_id} = $1 if ($form->{customer} =~ /--(\d+)$/);
472
473   if ($form->{customer_id}) {
474     $where .= qq| AND (a.customer_id = ?)|;
475     push(@values, $form->{customer_id});
476
477   } elsif ($form->{customer}) {
478     $where .= qq| AND (ct.name ILIKE ?)|;
479     push(@values, '%' . $form->{customer} . '%');
480   }
481
482   my %columns = (
483     "ordnumber" => "a.ordnumber",
484     "invnumber" => "a.invnumber",
485     "notes"     => "a.notes",
486     );
487   foreach my $key (keys(%columns)) {
488     next unless ($form->{$key});
489     $where .= qq| AND $columns{$key} ILIKE ?|;
490     push(@values, '%' . $form->{$key} . '%');
491   }
492
493   if ($form->{dunning_level}) {
494     $where .= qq| AND nextcfg.id = ?|;
495     push(@values, conv_i($form->{dunning_level}));
496   }
497
498   $form->{minamount} = $form->parse_amount($myconfig,$form->{minamount});
499   if ($form->{minamount}) {
500     $where .= qq| AND ((a.amount - a.paid) > ?) |;
501     push(@values, $form->{minamount});
502   }
503
504   my $query =
505     qq|SELECT id
506        FROM dunning_config
507        WHERE dunning_level = (SELECT MAX(dunning_level) FROM dunning_config)|;
508   my ($id_for_max_dunning_level) = selectrow_query($form, $dbh, $query);
509
510   $query =
511     qq|SELECT
512          a.id, a.ordnumber, a.transdate, a.invnumber, a.amount, a.language_id,
513          ct.name AS customername, a.customer_id, a.duedate,
514          a.amount - a.paid AS open_amount,
515
516          cfg.dunning_description, cfg.dunning_level,
517
518          d.transdate AS dunning_date, d.duedate AS dunning_duedate,
519          d.fee, d.interest,
520
521          a.duedate + cfg.terms - current_date AS nextlevel,
522          current_date - COALESCE(d.duedate, a.duedate) AS pastdue,
523          current_date + cfg.payment_terms AS next_duedate,
524
525          nextcfg.dunning_description AS next_dunning_description,
526          nextcfg.id AS next_dunning_config_id,
527          nextcfg.terms, nextcfg.active, nextcfg.email
528
529        FROM ar a
530
531        LEFT JOIN customer ct ON (a.customer_id = ct.id)
532        LEFT JOIN dunning_config cfg ON (a.dunning_config_id = cfg.id)
533        LEFT JOIN dunning_config nextcfg ON
534          (nextcfg.id =
535            COALESCE(
536              (SELECT id
537               FROM dunning_config
538               WHERE dunning_level >
539                 COALESCE((SELECT dunning_level
540                           FROM dunning_config
541                           WHERE id = a.dunning_config_id
542                           ORDER BY dunning_level DESC
543                           LIMIT 1),
544                          0)
545               ORDER BY dunning_level ASC
546               LIMIT 1)
547              , ?))
548        LEFT JOIN dunning d ON (d.id = (
549          SELECT MAX(d2.id)
550          FROM dunning d2
551          WHERE (d2.trans_id      = a.id)
552            AND (d2.dunning_level = cfg.dunning_level)
553        ))
554
555        WHERE (a.paid < a.amount)
556          AND (a.duedate < current_date)
557
558        $where
559
560        ORDER BY a.id, transdate, duedate, name|;
561   my $sth = prepare_execute_query($form, $dbh, $query, $id_for_max_dunning_level, @values);
562
563   $form->{DUNNINGS} = [];
564
565   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
566     next if ($ref->{pastdue} < $ref->{terms});
567
568     $ref->{interest} = $form->round_amount($ref->{interest}, 2);
569     push(@{ $form->{DUNNINGS} }, $ref);
570   }
571
572   $sth->finish;
573
574   $query = qq|SELECT id, dunning_description FROM dunning_config ORDER BY dunning_level|;
575   $form->{DUNNING_CONFIG} = selectall_hashref_query($form, $dbh, $query);
576
577   $dbh->disconnect;
578   $main::lxdebug->leave_sub();
579 }
580
581 sub get_dunning {
582
583   $main::lxdebug->enter_sub();
584
585   my ($self, $myconfig, $form) = @_;
586
587   # connect to database
588   my $dbh = $form->dbconnect($myconfig);
589
590   my $where = qq| WHERE (da.trans_id = a.id)|;
591
592   my @values;
593
594   if ($form->{customer_id}) {
595     $where .= qq| AND (a.customer_id = ?)|;
596     push(@values, $form->{customer_id});
597
598   } elsif ($form->{customer}) {
599     $where .= qq| AND (ct.name ILIKE ?)|;
600     push(@values, '%' . $form->{customer} . '%');
601   }
602
603   my %columns = (
604     "ordnumber" => "a.ordnumber",
605     "invnumber" => "a.invnumber",
606     "notes" => "a.notes",
607     );
608   foreach my $key (keys(%columns)) {
609     next unless ($form->{$key});
610     $where .= qq| AND $columns{$key} ILIKE ?|;
611     push(@values, '%' . $form->{$key} . '%');
612   }
613
614   if ($form->{dunning_level}) {
615     $where .= qq| AND a.dunning_config_id = ?|;
616     push(@values, conv_i($form->{dunning_level}));
617   }
618
619   if ($form->{department_id}) {
620     $where .= qq| AND a.department_id = ?|;
621     push @values, conv_i($form->{department_id});
622   }
623
624   $form->{minamount} = $form->parse_amount($myconfig, $form->{minamount});
625   if ($form->{minamount}) {
626     $where .= qq| AND ((a.amount - a.paid) > ?) |;
627     push(@values, $form->{minamount});
628   }
629
630   if (!$form->{showold}) {
631     $where .= qq| AND (a.amount > a.paid) AND (da.dunning_config_id = a.dunning_config_id) |;
632   }
633
634   if ($form->{transdatefrom}) {
635     $where .= qq| AND a.transdate >= ?|;
636     push(@values, $form->{transdatefrom});
637   }
638   if ($form->{transdateto}) {
639     $where .= qq| AND a.transdate <= ?|;
640     push(@values, $form->{transdateto});
641   }
642   if ($form->{dunningfrom}) {
643     $where .= qq| AND da.transdate >= ?|;
644     push(@values, $form->{dunningfrom});
645   }
646   if ($form->{dunningto}) {
647     $where .= qq| AND da.transdate >= ?|;
648     push(@values, $form->{dunningto});
649   }
650
651   if ($form->{salesman_id}) {
652     $where .= qq| AND a.salesman_id = ?|;
653     push(@values, conv_i($form->{salesman_id}));
654   }
655
656   my %sort_columns = (
657     'dunning_description' => [ qw(dn.dunning_description customername invnumber) ],
658     'customername'        => [ qw(customername invnumber) ],
659     'invnumber'           => [ qw(a.invnumber) ],
660     'transdate'           => [ qw(a.transdate a.invnumber) ],
661     'duedate'             => [ qw(a.duedate a.invnumber) ],
662     'dunning_date'        => [ qw(dunning_date a.invnumber) ],
663     'dunning_duedate'     => [ qw(dunning_duedate a.invnumber) ],
664     'salesman'            => [ qw(salesman) ],
665     );
666
667   my $sortdir   = !defined $form->{sortdir}    ? 'ASC'         : $form->{sortdir} ? 'ASC' : 'DESC';
668   my $sortkey   = $sort_columns{$form->{sort}} ? $form->{sort} : 'customername';
669   my $sortorder = join ', ', map { "$_ $sortdir" } @{ $sort_columns{$sortkey} };
670
671   my $query =
672     qq|SELECT a.id, a.ordnumber, a.invoice, a.transdate, a.invnumber, a.amount, a.language_id,
673          ct.name AS customername, ct.id AS customer_id, a.duedate, da.fee,
674          da.interest, dn.dunning_description, da.transdate AS dunning_date,
675          da.duedate AS dunning_duedate, da.dunning_id, da.dunning_config_id,
676          e2.name AS salesman
677        FROM ar a
678        JOIN customer ct ON (a.customer_id = ct.id)
679        LEFT JOIN employee e2 ON (a.salesman_id = e2.id), dunning da
680        LEFT JOIN dunning_config dn ON (da.dunning_config_id = dn.id)
681        $where
682        ORDER BY $sortorder|;
683
684   $form->{DUNNINGS} = selectall_hashref_query($form, $dbh, $query, @values);
685
686   foreach my $ref (@{ $form->{DUNNINGS} }) {
687     map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2)} qw(amount fee interest);
688   }
689
690   $dbh->disconnect;
691   $main::lxdebug->leave_sub();
692 }
693
694 sub melt_pdfs {
695
696   $main::lxdebug->enter_sub();
697
698   my ($self, $myconfig, $form, $copies) = @_;
699
700   # Don't allow access outside of $spool.
701   map { $_ =~ s|.*/||; } @{ $form->{DUNNING_PDFS} };
702
703   $copies        *= 1;
704   $copies         = 1 unless $copies;
705   my $spool       = $::lx_office_conf{paths}->{spool};
706   my $inputfiles  = join " ", map { "$spool/$_ " x $copies } @{ $form->{DUNNING_PDFS} };
707   my $dunning_id  = $form->{dunning_id};
708
709   $dunning_id     =~ s|[^\d]||g;
710
711   my $in = IO::File->new($::lx_office_conf{applications}->{ghostscript} . " -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=- $inputfiles |");
712   $form->error($main::locale->text('Could not spawn ghostscript.')) unless $in;
713
714   if ($form->{media} eq 'printer') {
715     $form->get_printer_code($myconfig);
716     my $out;
717     if ($form->{printer_command}) {
718       $out = IO::File->new("| $form->{printer_command}");
719     }
720
721     $::locale->with_raw_io($out, sub { $out->print($_) while <$in> });
722
723     $form->error($main::locale->text('Could not spawn the printer command.')) unless $out;
724
725   } else {
726     my $dunning_filename = $form->get_formname_translation('dunning');
727     print qq|Content-Type: Application/PDF\n| .
728           qq|Content-Disposition: attachment; filename="${dunning_filename}_${dunning_id}.pdf"\n\n|;
729
730     $::locale->with_raw_io(\*STDOUT, sub { print while <$in> });
731   }
732
733   $in->close();
734
735   map { unlink("$spool/$_") } @{ $form->{DUNNING_PDFS} };
736
737   $main::lxdebug->leave_sub();
738 }
739
740 sub print_dunning {
741   $main::lxdebug->enter_sub();
742
743   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
744
745   # connect to database
746   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect_noauto($myconfig);
747
748   $dunning_id =~ s|[^\d]||g;
749
750   my $query =
751     qq|SELECT
752          da.fee, da.interest,
753          da.transdate  AS dunning_date,
754          da.duedate    AS dunning_duedate,
755
756          dcfg.template AS formname,
757          dcfg.email_subject, dcfg.email_body, dcfg.email_attachment,
758
759          ar.transdate,       ar.duedate,      ar.customer_id,
760          ar.invnumber,       ar.ordnumber,    ar.cp_id,
761          ar.amount,          ar.netamount,    ar.paid,
762          ar.curr,
763          ar.amount - ar.paid AS open_amount,
764          ar.amount - ar.paid + da.fee + da.interest AS linetotal
765
766        FROM dunning da
767        LEFT JOIN dunning_config dcfg ON (dcfg.id = da.dunning_config_id)
768        LEFT JOIN ar ON (ar.id = da.trans_id)
769        WHERE (da.dunning_id = ?)|;
770
771   my $sth = prepare_execute_query($form, $dbh, $query, $dunning_id);
772   my $first = 1;
773   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
774     if ($first) {
775       $form->{TEMPLATE_ARRAYS} = {};
776       map({ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} = []; } keys(%{$ref}));
777       $first = 0;
778     }
779     map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2) } qw(amount netamount paid open_amount fee interest linetotal);
780     map { $form->{$_} = $ref->{$_} } keys %$ref;
781     map { push @{ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} }, $ref->{$_} } keys %$ref;
782   }
783   $sth->finish();
784
785   $query =
786     qq|SELECT
787          c.id AS customer_id, c.name,         c.street,       c.zipcode,   c.city,
788          c.country,           c.department_1, c.department_2, c.email,     c.customernumber,
789          c.greeting,          c.contact,      c.phone,        c.fax,       c.homepage,
790          c.email,             c.taxincluded,  c.business_id,  c.taxnumber, c.iban,
791          c,ustid,             e.name as salesman_name,
792          co.*
793        FROM dunning d
794        LEFT JOIN ar          ON (d.trans_id = ar.id)
795        LEFT JOIN customer c  ON (ar.customer_id = c.id)
796        LEFT JOIN contacts co ON (ar.cp_id = co.cp_id)
797        LEFT JOIN employee e  ON (ar.salesman_id = e.id)
798        WHERE (d.dunning_id = ?)
799        LIMIT 1|;
800   my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
801   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
802
803   $query =
804     qq|SELECT
805          cfg.interest_rate, cfg.template AS formname,
806          cfg.email_subject, cfg.email_body, cfg.email_attachment,
807          d.transdate AS dunning_date,
808          (SELECT SUM(fee)
809           FROM dunning
810           WHERE dunning_id = ?)
811          AS fee,
812          (SELECT SUM(interest)
813           FROM dunning
814           WHERE dunning_id = ?)
815          AS total_interest,
816          (SELECT SUM(amount) - SUM(paid)
817           FROM ar
818           WHERE id IN
819             (SELECT trans_id
820              FROM dunning
821              WHERE dunning_id = ?))
822          AS total_open_amount
823        FROM dunning d
824        LEFT JOIN dunning_config cfg ON (d.dunning_config_id = cfg.id)
825        WHERE d.dunning_id = ?
826        LIMIT 1|;
827   $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id, $dunning_id, $dunning_id, $dunning_id);
828   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
829
830   $form->{interest_rate}     = $form->format_amount($myconfig, $ref->{interest_rate} * 100);
831   $form->{fee}               = $form->format_amount($myconfig, $ref->{fee}, 2);
832   $form->{total_interest}    = $form->format_amount($myconfig, $form->round_amount($ref->{total_interest}, 2), 2);
833   $form->{total_open_amount} = $form->format_amount($myconfig, $form->round_amount($ref->{total_open_amount}, 2), 2);
834   $form->{total_amount}      = $form->format_amount($myconfig, $form->round_amount($ref->{fee} + $ref->{total_interest} + $ref->{total_open_amount}, 2), 2);
835
836   $self->set_customer_cvars($myconfig, $form);
837   $self->set_template_options($myconfig, $form);
838
839   my $filename          = "dunning_${dunning_id}_" . Common::unique_id() . ".pdf";
840   my $spool             = $::lx_office_conf{paths}->{spool};
841   $form->{OUT}          = "${spool}/$filename";
842   $form->{keep_tmpfile} = 1;
843
844   delete $form->{tmpfile};
845
846   push @{ $form->{DUNNING_PDFS} }, $filename;
847   push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'filename' => "${spool}/$filename",
848                                            'name'     => "dunning_${dunning_id}.pdf" };
849
850   $form->parse_template($myconfig);
851
852   $dbh->disconnect() unless $provided_dbh;
853
854   $main::lxdebug->leave_sub();
855 }
856
857 sub print_invoice_for_fees {
858   $main::lxdebug->enter_sub();
859
860   my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
861
862   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig);
863
864   my ($query, @values, $sth);
865
866   $query =
867     qq|SELECT
868          d.fee_interest_ar_id,
869          dcfg.template
870        FROM dunning d
871        LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
872        WHERE d.dunning_id = ?|;
873   my ($ar_id, $template) = selectrow_query($form, $dbh, $query, $dunning_id);
874
875   if (!$ar_id) {
876     $main::lxdebug->leave_sub();
877     return;
878   }
879
880   my $saved_form = save_form();
881
882   $query = qq|SELECT SUM(fee), SUM(interest) FROM dunning WHERE id = ?|;
883   my ($fee_total, $interest_total) = selectrow_query($form, $dbh, $query, $dunning_id);
884
885   $query =
886     qq|SELECT
887          ar.invnumber, ar.transdate AS invdate, ar.amount, ar.netamount,
888          ar.duedate,   ar.notes,     ar.notes AS invoicenotes, ar.customer_id,
889
890          c.name,      c.department_1,   c.department_2, c.street, c.zipcode, c.city, c.country,
891          c.contact,   c.customernumber, c.phone,        c.fax,    c.email,
892          c.taxnumber, c.greeting
893
894        FROM ar
895        LEFT JOIN customer c ON (ar.customer_id = c.id)
896        WHERE ar.id = ?|;
897   my $ref = selectfirst_hashref_query($form, $dbh, $query, $ar_id);
898   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
899
900   $query = qq|SELECT * FROM employee WHERE login = ?|;
901   $ref = selectfirst_hashref_query($form, $dbh, $query, $form->{login});
902   map { $form->{"employee_${_}"} = $ref->{$_} } keys %{ $ref };
903
904   $query = qq|SELECT * FROM acc_trans WHERE trans_id = ? ORDER BY acc_trans_id ASC|;
905   $sth   = prepare_execute_query($form, $dbh, $query, $ar_id);
906
907   my ($row, $fee, $interest) = (0, 0, 0);
908
909   while ($ref = $sth->fetchrow_hashref()) {
910     next if ($ref->{amount} < 0);
911
912     $row++;
913
914     if ($row == 1) {
915       $fee = $ref->{amount};
916     } else {
917       $interest = $ref->{amount};
918     }
919   }
920
921   $form->{fee}        = $form->round_amount($fee,             2);
922   $form->{interest}   = $form->round_amount($interest,        2);
923   $form->{invamount}  = $form->round_amount($fee + $interest, 2);
924   $form->{dunning_id} = $dunning_id;
925   $form->{formname}   = "${template}_invoice";
926
927   map { $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) } qw(fee interest invamount);
928
929   $self->set_customer_cvars($myconfig, $form);
930   $self->set_template_options($myconfig, $form);
931
932   my $filename = Common::unique_id() . "dunning_invoice_${dunning_id}.pdf";
933
934   my $spool             = $::lx_office_conf{paths}->{spool};
935   $form->{OUT}          = "$spool/$filename";
936   $form->{keep_tmpfile} = 1;
937   delete $form->{tmpfile};
938
939   map { delete $form->{$_} } grep /^[a-z_]+_\d+$/, keys %{ $form };
940
941   $form->parse_template($myconfig);
942
943   restore_form($saved_form);
944
945   push @{ $form->{DUNNING_PDFS} }, $filename;
946   push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'filename' => "${spool}/$filename",
947                                            'name'     => "dunning_invoice_${dunning_id}.pdf" };
948
949   $dbh->disconnect() unless $provided_dbh;
950
951   $main::lxdebug->leave_sub();
952 }
953
954 sub set_customer_cvars {
955   my ($self, $myconfig, $form) = @_;
956
957   my $custom_variables = CVar->get_custom_variables(dbh      => $form->get_standard_dbh,
958                                                     module   => 'CT',
959                                                     trans_id => $form->{customer_id});
960   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
961
962   $form->{cp_greeting} = GenericTranslations->get(dbh              => $form->get_standard_dbh,
963                                                   translation_type => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
964                                                   language_id      => $form->{language_id},
965                                                   allow_fallback   => 1);
966 }
967
968 1;