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 #======================================================================
43 use SL::GenericTranslations;
51 use SL::Util qw(trim);
59 $main::lxdebug->enter_sub();
61 my ($self, $myconfig, $form) = @_;
64 my $dbh = SL::DB->client->dbh;
68 qq|FROM dunning_config | .
69 qq|ORDER BY dunning_level|;
70 $form->{DUNNING} = selectall_hashref_query($form, $dbh, $query);
72 foreach my $ref (@{ $form->{DUNNING} }) {
73 $ref->{fee} = $form->format_amount($myconfig, $ref->{fee}, 2);
74 $ref->{interest_rate} = $form->format_amount($myconfig, ($ref->{interest_rate} * 100));
78 qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar, dunning_creator
80 ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}, $form->{dunning_creator})
81 = selectrow_query($form, $dbh, $query);
83 $main::lxdebug->leave_sub();
87 my ($self, $myconfig, $form) = @_;
88 $main::lxdebug->enter_sub();
90 my $rc = SL::DB->client->with_transaction(\&_save_config, $self, $myconfig, $form);
92 $::lxdebug->leave_sub;
97 my ($self, $myconfig, $form) = @_;
99 my $dbh = SL::DB->client->dbh;
101 my ($query, @values);
103 for my $i (1 .. $form->{rowcount}) {
104 $form->{"fee_$i"} = $form->parse_amount($myconfig, $form->{"fee_$i"}) * 1;
105 $form->{"interest_rate_$i"} = $form->parse_amount($myconfig, $form->{"interest_rate_$i"}) / 100;
107 if (($form->{"dunning_level_$i"} ne "") &&
108 ($form->{"dunning_description_$i"} ne "")) {
109 @values = (conv_i($form->{"dunning_level_$i"}), $form->{"dunning_description_$i"},
110 $form->{"email_subject_$i"}, $form->{"email_body_$i"},
111 $form->{"template_$i"}, $form->{"fee_$i"}, $form->{"interest_rate_$i"},
112 $form->{"active_$i"} ? 't' : 'f', $form->{"auto_$i"} ? 't' : 'f', $form->{"email_$i"} ? 't' : 'f',
113 $form->{"email_attachment_$i"} ? 't' : 'f', conv_i($form->{"payment_terms_$i"}), conv_i($form->{"terms_$i"}),
114 $form->{"create_invoices_for_fees_$i"} ? 't' : 'f',
115 $form->{"print_original_invoice_$i"} ? 't' : 'f');
116 if ($form->{"id_$i"}) {
118 qq|UPDATE dunning_config SET
119 dunning_level = ?, dunning_description = ?,
120 email_subject = ?, email_body = ?,
121 template = ?, fee = ?, interest_rate = ?,
122 active = ?, auto = ?, email = ?,
123 email_attachment = ?, payment_terms = ?, terms = ?,
124 create_invoices_for_fees = ?,
125 print_original_invoice = ?
127 push(@values, conv_i($form->{"id_$i"}));
130 qq|INSERT INTO dunning_config
131 (dunning_level, dunning_description, email_subject, email_body,
132 template, fee, interest_rate, active, auto, email,
133 email_attachment, payment_terms, terms, create_invoices_for_fees,
134 print_original_invoice)
135 VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
137 do_query($form, $dbh, $query, @values);
140 if (($form->{"dunning_description_$i"} eq "") && ($form->{"id_$i"})) {
141 $query = qq|DELETE FROM dunning_config WHERE id = ?|;
142 do_query($form, $dbh, $query, $form->{"id_$i"});
146 $query = qq|UPDATE defaults SET dunning_ar_amount_fee = ?, dunning_ar_amount_interest = ?, dunning_ar = ?,
147 dunning_creator = ?|;
148 @values = (conv_i($form->{AR_amount_fee}), conv_i($form->{AR_amount_interest}), conv_i($form->{AR}),
149 $form->{dunning_creator});
150 do_query($form, $dbh, $query, @values);
155 sub create_invoice_for_fees {
156 $main::lxdebug->enter_sub();
158 my ($self, $myconfig, $form, $dbh, $dunning_id) = @_;
160 my ($query, @values, $sth, $ref);
162 $query = qq|SELECT dcfg.create_invoices_for_fees
164 LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
165 WHERE d.dunning_id = ?|;
166 my ($create_invoices_for_fees) = selectrow_query($form, $dbh, $query, $dunning_id);
168 if (!$create_invoices_for_fees) {
169 $main::lxdebug->leave_sub();
173 $query = qq|SELECT dunning_ar_amount_fee, dunning_ar_amount_interest, dunning_ar FROM defaults|;
174 ($form->{AR_amount_fee}, $form->{AR_amount_interest}, $form->{AR}) = selectrow_query($form, $dbh, $query);
180 SELECT MAX(d_fee.fee)
182 WHERE (d_fee.trans_id = d.trans_id)
183 AND (d_fee.dunning_id <> ?)
184 AND NOT (d_fee.fee_interest_ar_id ISNULL)
189 SELECT MAX(d_interest.interest)
190 FROM dunning d_interest
191 WHERE (d_interest.trans_id = d.trans_id)
192 AND (d_interest.dunning_id <> ?)
193 AND NOT (d_interest.fee_interest_ar_id ISNULL)
195 AS max_previous_interest
197 WHERE dunning_id = ?|;
198 @values = ($dunning_id, $dunning_id, $dunning_id);
199 $sth = prepare_execute_query($form, $dbh, $query, @values);
201 my ($fee_remaining, $interest_remaining) = (0, 0);
202 my ($fee_total, $interest_total) = (0, 0);
204 while (my $ref = $sth->fetchrow_hashref()) {
205 $fee_remaining += $form->round_amount($ref->{fee}, 2);
206 $fee_remaining -= $form->round_amount($ref->{max_previous_fee}, 2);
207 $fee_total += $form->round_amount($ref->{fee}, 2);
208 $interest_remaining += $form->round_amount($ref->{interest}, 2);
209 $interest_remaining -= $form->round_amount($ref->{max_previous_interest}, 2);
210 $interest_total += $form->round_amount($ref->{interest}, 2);
215 my $amount = $fee_remaining + $interest_remaining;
218 $main::lxdebug->leave_sub();
222 my ($ar_id) = selectrow_query($form, $dbh, qq|SELECT nextval('glid')|);
223 my $curr = $form->get_default_currency($myconfig);
224 my $trans_number = SL::TransNumber->new(type => 'invoice', dbh => $dbh);
227 qq|INSERT INTO ar (id, invnumber, transdate, gldate, customer_id,
228 taxincluded, amount, netamount, paid, duedate,
229 invoice, currency_id, taxzone_id, notes,
234 current_date, -- transdate
235 current_date, -- gldate
237 (SELECT ar.customer_id
239 LEFT JOIN ar ON (dn.trans_id = ar.id)
240 WHERE dn.dunning_id = ?
247 (SELECT duedate FROM dunning WHERE dunning_id = ? LIMIT 1),
249 (SELECT id FROM currencies WHERE name = ?), -- curr
251 (SELECT taxzone_id FROM customer WHERE id =
252 (SELECT ar.customer_id
254 LEFT JOIN ar ON (dn.trans_id = ar.id)
255 WHERE dn.dunning_id = ?
260 (SELECT id FROM employee WHERE login = ?)
262 @values = ($ar_id, # id
263 $trans_number->create_unique, # invnumber
264 $dunning_id, # customer_id
267 $dunning_id, # duedate
268 $curr, # default currency
269 $dunning_id, # taxzone_id
270 sprintf($main::locale->text('Automatically created invoice for fee and interest for dunning %s'), $dunning_id), # notes
271 $::myconfig{login}); # employee_id
272 do_query($form, $dbh, $query, @values);
275 qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, taxkey, tax_id, chart_link)
276 VALUES (?, ?, ?, current_date, current_date, 0,
277 (SELECT id FROM tax WHERE (taxkey = 0) AND (rate = 0)),
278 (SELECT link FROM chart WHERE id = ?))|;
279 $sth = prepare_query($form, $dbh, $query);
281 @values = ($ar_id, conv_i($form->{AR_amount_fee}), $fee_remaining, conv_i($form->{AR_amount_fee}));
282 do_statement($form, $sth, $query, @values);
284 if ($interest_remaining) {
285 @values = ($ar_id, conv_i($form->{AR_amount_interest}), $interest_remaining, conv_i($form->{AR_amount_interest}));
286 do_statement($form, $sth, $query, @values);
289 @values = ($ar_id, conv_i($form->{AR}), -1 * $amount, conv_i($form->{AR}));
290 do_statement($form, $sth, $query, @values);
294 $query = qq|UPDATE dunning SET fee_interest_ar_id = ? WHERE dunning_id = ?|;
295 do_query($form, $dbh, $query, $ar_id, $dunning_id);
297 $main::lxdebug->leave_sub();
302 my ($self, $myconfig, $form, $rows) = @_;
303 $main::lxdebug->enter_sub();
305 my $rc = SL::DB->client->with_transaction(\&_save_dunning, $self, $myconfig, $form, $rows);
308 die SL::DB->client->error
310 $::lxdebug->leave_sub;
317 my ($self, $myconfig, $form, $rows) = @_;
319 my $dbh = SL::DB->client->dbh;
321 my ($query, @values);
323 my ($dunning_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
325 my $q_update_ar = qq|UPDATE ar SET dunning_config_id = ? WHERE id = ?|;
326 my $h_update_ar = prepare_query($form, $dbh, $q_update_ar);
328 my $q_insert_dunning =
329 qq|INSERT INTO dunning (dunning_id, dunning_config_id, dunning_level, trans_id,
330 fee, interest, transdate, duedate)
332 (SELECT dunning_level FROM dunning_config WHERE id = ?),
336 WHERE dunning_level <= (SELECT dunning_level FROM dunning_config WHERE id = ?)),
337 (SELECT (amount - paid) * (current_date - duedate) FROM ar WHERE id = ?)
338 * (SELECT interest_rate FROM dunning_config WHERE id = ?)
341 current_date + (SELECT payment_terms FROM dunning_config WHERE id = ?))|;
342 my $h_insert_dunning = prepare_query($form, $dbh, $q_insert_dunning);
345 my ($next_dunning_config_id, $customer_id);
346 my ($send_email, $print_invoice) = (0, 0);
348 foreach my $row (@{ $rows }) {
349 if ($row->{credit_note}) {
351 %{ $form->{LIST_CREDIT_NOTES}{$row->{customer_id}}{$row->{invoice_id}} } = (
352 open_amount => $form->{"open_amount_$i"},
353 amount => $form->{"amount_$i"},
354 invnumber => $form->{"invnumber_$i"},
355 invdate => $form->{"invdate_$i"},
359 push @invoice_ids, $row->{invoice_id};
360 $next_dunning_config_id = $row->{next_dunning_config_id};
361 $customer_id = $row->{customer_id};
363 @values = ($row->{next_dunning_config_id}, $row->{invoice_id});
364 do_statement($form, $h_update_ar, $q_update_ar, @values);
366 $send_email |= $row->{email};
367 $print_invoice |= $row->{print_invoice};
369 my $next_config_id = conv_i($row->{next_dunning_config_id});
370 my $invoice_id = conv_i($row->{invoice_id});
372 @values = ($dunning_id, $next_config_id, $next_config_id,
373 $invoice_id, $next_config_id, $invoice_id,
374 $next_config_id, $next_config_id);
375 do_statement($form, $h_insert_dunning, $q_insert_dunning, @values);
377 # die this transaction, because for this customer only credit notes are
379 return unless $customer_id;
381 $h_update_ar->finish();
382 $h_insert_dunning->finish();
384 $form->{DUNNING_PDFS_EMAIL} = [];
386 $form->{dunning_id} = $dunning_id;
388 $self->create_invoice_for_fees($myconfig, $form, $dbh, $dunning_id);
390 $self->print_invoice_for_fees($myconfig, $form, $dunning_id, $dbh);
391 $self->print_dunning($myconfig, $form, $dunning_id, $dbh);
393 if ($print_invoice) {
394 $self->print_original_invoices($myconfig, $form, $_, $dbh) for @invoice_ids;
398 $self->send_email($myconfig, $form, $dunning_id, $dbh);
405 $main::lxdebug->enter_sub();
407 my ($self, $myconfig, $form, $dunning_id, $dbh) = @_;
411 dcfg.email_body, dcfg.email_subject, dcfg.email_attachment,
412 COALESCE (NULLIF(c.invoice_mail, ''), c.email) AS recipient, c.name,
413 (SELECT login from employee where id = ar.employee_id) as invoice_employee_login
415 LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
416 LEFT JOIN ar ON (d.trans_id = ar.id)
417 LEFT JOIN customer c ON (ar.customer_id = c.id)
418 WHERE (d.dunning_id = ?)
420 my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
422 # without a recipient, we cannot send a mail
423 if (!$ref || !$ref->{recipient}) {
424 $main::lxdebug->leave_sub();
425 die $main::locale->text("No email recipient for customer #1 defined.", $ref->{name});
428 # without a sender we cannot send a mail
429 # two cases: check mail from 1. current user OR 2. employee who created the invoice
431 if ($::instance_conf->get_dunning_creator eq 'current_employee') {
432 $from = $myconfig->{email};
433 die $main::locale->text('No email for current user #1 defined.', $myconfig->{name}) unless $from;
436 $from = SL::DB::Manager::AuthUser->find_by(login => $ref->{invoice_employee_login})->get_config_value("email");
437 $sign = SL::DB::Manager::AuthUser->find_by(login => $ref->{invoice_employee_login})->get_config_value("signature");
440 } or die $main::locale->text('No email for user with login #1 defined.', $ref->{invoice_employee_login});
443 my $template = SL::Template::create(type => 'PlainText', form => $form, myconfig => $myconfig);
444 my $mail = Mailer->new();
445 $mail->{bcc} = $form->get_bcc_defaults($myconfig, $form->{bcc});
446 $mail->{from} = $from;
447 $mail->{to} = $ref->{recipient};
448 $mail->{subject} = $template->parse_block($ref->{email_subject});
449 $mail->{message} = $template->parse_block($ref->{email_body});
450 my $sign_backup = $::myconfig{signature};
451 $::myconfig{signature} = $sign if $sign;
452 $mail->{message} .= $form->create_email_signature();
453 $::myconfig{signature} = $sign_backup if $sign;
455 $mail->{message} =~ s/\r\n/\n/g;
457 if ($ref->{email_attachment} && @{ $form->{DUNNING_PDFS_EMAIL} }) {
458 $mail->{attachments} = $form->{DUNNING_PDFS_EMAIL};
463 $main::lxdebug->leave_sub();
466 sub set_template_options {
467 $main::lxdebug->enter_sub();
469 my ($self, $myconfig, $form) = @_;
471 my $defaults = SL::DB::Default->get;
472 $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
473 $form->{templates} = $defaults->templates;
474 $form->{language} = $form->get_template_language($myconfig);
475 $form->{printer_code} = $form->get_printer_code($myconfig);
477 if ($form->{language} ne "") {
478 $form->{language} = "_" . $form->{language};
481 if ($form->{printer_code} ne "") {
482 $form->{printer_code} = "_" . $form->{printer_code};
485 my $extension = 'html';
486 if ($form->{format} eq 'postscript') {
487 $form->{postscript} = 1;
490 } elsif ($form->{"format"} =~ /pdf/) {
492 $extension = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
494 } elsif ($form->{"format"} =~ /opendocument/) {
495 $form->{opendocument} = 1;
497 } elsif ($form->{"format"} =~ /excel/) {
503 # search for the template
505 push @template_files, "$form->{formname}_email$form->{language}$form->{printer_code}.$extension" if $form->{media} eq 'email';
506 push @template_files, "$form->{formname}$form->{language}$form->{printer_code}.$extension";
507 push @template_files, "$form->{formname}.$extension";
508 push @template_files, "default.$extension";
511 for my $filename (@template_files) {
512 if (-f ($defaults->templates . "/$filename")) {
513 $form->{IN} = $filename;
518 if (!defined $form->{IN}) {
519 $::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));
522 # prepare meta information for template introspection
523 $form->{template_meta} = {
524 formname => $form->{formname},
525 language => SL::DB::Manager::Language->find_by_or_create(id => $form->{language_id} || undef),
526 format => $form->{format},
527 media => $form->{media},
528 extension => $extension,
529 printer => SL::DB::Manager::Printer->find_by_or_create(id => $form->{printer_id} || undef),
530 today => DateTime->today,
533 $main::lxdebug->leave_sub();
538 $main::lxdebug->enter_sub();
540 my ($self, $myconfig, $form) = @_;
542 # connect to database
543 my $dbh = SL::DB->client->dbh;
548 $form->{customer_id} = $1 if ($form->{customer} =~ /--(\d+)$/);
550 if ($form->{customer_id}) {
551 $where .= qq| AND (a.customer_id = ?)|;
552 push(@values, $form->{customer_id});
554 } elsif ($form->{customer}) {
555 $where .= qq| AND (ct.name ILIKE ?)|;
556 push(@values, like($form->{customer}));
559 if ($form->{department_id}) {
560 $where .= qq| AND (a.department_id = ?)|;
561 push(@values, $form->{department_id});
565 "ordnumber" => "a.ordnumber",
566 "invnumber" => "a.invnumber",
567 "notes" => "a.notes",
568 "country" => "ct.country",
570 foreach my $key (keys(%columns)) {
571 next unless ($form->{$key});
572 $where .= qq| AND $columns{$key} ILIKE ?|;
573 push(@values, like($form->{$key}));
576 if ($form->{dunning_level}) {
577 $where .= qq| AND nextcfg.id = ?|;
578 push(@values, conv_i($form->{dunning_level}));
581 $form->{minamount} = $form->parse_amount($myconfig,$form->{minamount});
582 if ($form->{minamount}) {
583 $where .= qq| AND ((a.amount - a.paid) > ?) |;
584 push(@values, trim($form->{minamount}));
590 WHERE dunning_level = (SELECT MAX(dunning_level) FROM dunning_config)|;
591 my ($id_for_max_dunning_level) = selectrow_query($form, $dbh, $query);
593 if (!$form->{l_include_direct_debit}) {
594 $where .= qq| AND NOT COALESCE(a.direct_debit, FALSE) |;
596 my $paid = ($form->{l_include_credit_notes}) ? "WHERE (a.paid <> a.amount)" : "WHERE (a.paid < a.amount)";
600 a.id, a.invoice, a.ordnumber, a.transdate, a.invnumber, a.amount, a.language_id,
601 ct.name AS customername, a.customer_id, a.duedate,
602 a.amount - a.paid AS open_amount,
604 dep.description as departmentname,
606 cfg.dunning_description, cfg.dunning_level,
608 d.transdate AS dunning_date, d.duedate AS dunning_duedate,
611 a.duedate + cfg.terms - current_date AS nextlevel,
612 current_date - COALESCE(d.duedate, a.duedate) AS pastdue,
613 current_date + cfg.payment_terms AS next_duedate,
615 nextcfg.dunning_description AS next_dunning_description,
616 nextcfg.id AS next_dunning_config_id,
617 nextcfg.terms, nextcfg.active, nextcfg.email, nextcfg.print_original_invoice
621 LEFT JOIN customer ct ON (a.customer_id = ct.id)
622 LEFT JOIN department dep ON (a.department_id = dep.id)
623 LEFT JOIN dunning_config cfg ON (a.dunning_config_id = cfg.id)
624 LEFT JOIN dunning_config nextcfg ON
629 WHERE dunning_level >
630 COALESCE((SELECT dunning_level
632 WHERE id = a.dunning_config_id
633 ORDER BY dunning_level DESC
636 ORDER BY dunning_level ASC
639 LEFT JOIN dunning d ON (d.id = (
642 WHERE (d2.trans_id = a.id)
643 AND (d2.dunning_level = cfg.dunning_level)
646 AND (a.duedate < current_date)
650 ORDER BY a.id, transdate, duedate, name|;
651 my $sth = prepare_execute_query($form, $dbh, $query, $id_for_max_dunning_level, @values);
653 $form->{DUNNINGS} = [];
655 while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
656 next if ($ref->{pastdue} < $ref->{terms});
657 $ref->{credit_note} = 1 if ($ref->{amount} < 0 && $form->{l_include_credit_notes});
658 $ref->{interest} = $form->round_amount($ref->{interest}, 2);
659 push(@{ $form->{DUNNINGS} }, $ref);
664 $query = qq|SELECT id, dunning_description FROM dunning_config ORDER BY dunning_level|;
665 $form->{DUNNING_CONFIG} = selectall_hashref_query($form, $dbh, $query);
667 $main::lxdebug->leave_sub();
672 $main::lxdebug->enter_sub();
674 my ($self, $myconfig, $form) = @_;
676 # connect to database
677 my $dbh = SL::DB->client->dbh;
679 my $where = qq| WHERE (da.trans_id = a.id)|;
683 if ($form->{customer_id}) {
684 $where .= qq| AND (a.customer_id = ?)|;
685 push(@values, $form->{customer_id});
687 } elsif ($form->{customer}) {
688 $where .= qq| AND (ct.name ILIKE ?)|;
689 push(@values, like($form->{customer}));
693 "ordnumber" => "a.ordnumber",
694 "invnumber" => "a.invnumber",
695 "notes" => "a.notes",
697 foreach my $key (keys(%columns)) {
698 next unless ($form->{$key});
699 $where .= qq| AND $columns{$key} ILIKE ?|;
700 push(@values, like($form->{$key}));
703 if ($form->{dunning_level}) {
704 $where .= qq| AND a.dunning_config_id = ?|;
705 push(@values, conv_i($form->{dunning_level}));
708 if ($form->{department_id}) {
709 $where .= qq| AND a.department_id = ?|;
710 push @values, conv_i($form->{department_id});
713 $form->{minamount} = $form->parse_amount($myconfig, $form->{minamount});
714 if ($form->{minamount}) {
715 $where .= qq| AND ((a.amount - a.paid) > ?) |;
716 push(@values, $form->{minamount});
719 if (!$form->{showold}) {
720 $where .= qq| AND (a.amount > a.paid) AND (da.dunning_config_id = a.dunning_config_id) |;
723 if ($form->{transdatefrom}) {
724 $where .= qq| AND a.transdate >= ?|;
725 push(@values, $form->{transdatefrom});
727 if ($form->{transdateto}) {
728 $where .= qq| AND a.transdate <= ?|;
729 push(@values, $form->{transdateto});
731 if ($form->{dunningfrom}) {
732 $where .= qq| AND da.transdate >= ?|;
733 push(@values, $form->{dunningfrom});
735 if ($form->{dunningto}) {
736 $where .= qq| AND da.transdate >= ?|;
737 push(@values, $form->{dunningto});
740 if ($form->{salesman_id}) {
741 $where .= qq| AND a.salesman_id = ?|;
742 push(@values, conv_i($form->{salesman_id}));
746 'dunning_description' => [ qw(dn.dunning_description customername invnumber) ],
747 'customername' => [ qw(customername invnumber) ],
748 'invnumber' => [ qw(a.invnumber) ],
749 'transdate' => [ qw(a.transdate a.invnumber) ],
750 'duedate' => [ qw(a.duedate a.invnumber) ],
751 'dunning_date' => [ qw(dunning_date a.invnumber) ],
752 'dunning_duedate' => [ qw(dunning_duedate a.invnumber) ],
753 'salesman' => [ qw(salesman) ],
756 my $sortdir = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
757 my $sortkey = $sort_columns{$form->{sort}} ? $form->{sort} : 'customername';
758 my $sortorder = join ', ', map { "$_ $sortdir" } @{ $sort_columns{$sortkey} };
761 qq|SELECT a.id, a.ordnumber, a.invoice, a.transdate, a.invnumber, a.amount, a.language_id,
762 ct.name AS customername, ct.id AS customer_id, a.duedate, da.fee,
763 da.interest, dn.dunning_description, da.transdate AS dunning_date,
764 da.duedate AS dunning_duedate, da.dunning_id, da.dunning_config_id,
767 JOIN customer ct ON (a.customer_id = ct.id)
768 LEFT JOIN employee e2 ON (a.salesman_id = e2.id), dunning da
769 LEFT JOIN dunning_config dn ON (da.dunning_config_id = dn.id)
771 ORDER BY $sortorder|;
773 $form->{DUNNINGS} = selectall_hashref_query($form, $dbh, $query, @values);
775 foreach my $ref (@{ $form->{DUNNINGS} }) {
776 map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2)} qw(amount fee interest);
779 $main::lxdebug->leave_sub();
784 $main::lxdebug->enter_sub();
786 my ($self, $myconfig, $form, $copies) = @_;
788 # Don't allow access outside of $spool.
789 map { $_ =~ s|.*/||; } @{ $form->{DUNNING_PDFS} };
792 $copies = 1 unless $copies;
793 my $spool = $::lx_office_conf{paths}->{spool};
794 my $inputfiles = join " ", map { "$spool/$_ " x $copies } @{ $form->{DUNNING_PDFS} };
795 my $dunning_id = $form->{dunning_id};
797 $dunning_id =~ s|[^\d]||g;
799 my $in = IO::File->new($::lx_office_conf{applications}->{ghostscript} . " -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=- $inputfiles |");
800 $form->error($main::locale->text('Could not spawn ghostscript.')) unless $in;
802 if ($form->{media} eq 'printer') {
803 $form->get_printer_code($myconfig);
805 if ($form->{printer_command}) {
806 $out = IO::File->new("| $form->{printer_command}");
809 $::locale->with_raw_io($out, sub { $out->print($_) while <$in> });
811 $form->error($main::locale->text('Could not spawn the printer command.')) unless $out;
814 my $dunning_filename = $form->get_formname_translation('dunning');
815 print qq|Content-Type: Application/PDF\n| .
816 qq|Content-Disposition: attachment; filename="${dunning_filename}_${dunning_id}.pdf"\n\n|;
818 $::locale->with_raw_io(\*STDOUT, sub { print while <$in> });
823 map { unlink("$spool/$_") } @{ $form->{DUNNING_PDFS} };
825 $main::lxdebug->leave_sub();
829 $main::lxdebug->enter_sub();
831 my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
833 # connect to database
834 my $dbh = $provided_dbh || SL::DB->client->dbh;
836 $dunning_id =~ s|[^\d]||g;
838 my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
839 if ($form->{"language_id"}) {
840 ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
841 AM->get_language_details($myconfig, $form, $form->{language_id});
843 $output_dateformat = $myconfig->{dateformat};
844 $output_numberformat = $myconfig->{numberformat};
845 $output_longdates = 1;
851 da.transdate AS dunning_date,
852 da.duedate AS dunning_duedate,
854 dcfg.template AS formname,
855 dcfg.email_subject, dcfg.email_body, dcfg.email_attachment,
857 ar.transdate, ar.duedate, ar.customer_id,
858 ar.invnumber, ar.ordnumber, ar.cp_id,
859 ar.amount, ar.netamount, ar.paid,
860 ar.employee_id, ar.salesman_id,
861 (SELECT cu.name FROM currencies cu WHERE cu.id = ar.currency_id) AS curr,
862 (SELECT description from department WHERE id = ar.department_id) AS department,
863 ar.amount - ar.paid AS open_amount,
864 ar.amount - ar.paid + da.fee + da.interest AS linetotal
867 LEFT JOIN dunning_config dcfg ON (dcfg.id = da.dunning_config_id)
868 LEFT JOIN ar ON (ar.id = da.trans_id)
869 WHERE (da.dunning_id = ?)|;
871 my $sth = prepare_execute_query($form, $dbh, $query, $dunning_id);
873 while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
875 $form->{TEMPLATE_ARRAYS} = {};
876 map({ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} = []; } keys(%{$ref}));
879 map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2) } qw(amount netamount paid open_amount fee interest linetotal);
880 map { $form->{$_} = $ref->{$_} } keys %$ref;
881 map { push @{ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} }, $ref->{$_} } keys %$ref;
885 # if we have some credit notes to add, do a safety check on the first customer id
886 # and add one entry for each credit note
887 if ($form->{LIST_CREDIT_NOTES} && $form->{LIST_CREDIT_NOTES}->{$form->{TEMPLATE_ARRAYS}->{"dn_customer_id"}[0]}) {
888 my $first_customer_id = $form->{TEMPLATE_ARRAYS}->{"dn_customer_id"}[0];
889 while ( my ($cred_id, $value) = each(%{ $form->{LIST_CREDIT_NOTES}->{$first_customer_id} } ) ) {
890 map { push @{ $form->{TEMPLATE_ARRAYS}->{"dn_$_"} }, $value->{$_} } keys %{ $value };
895 c.id AS customer_id, c.name, c.street, c.zipcode, c.city,
896 c.country, c.department_1, c.department_2, c.email, c.customernumber,
897 c.greeting, c.contact, c.phone, c.fax, c.homepage,
898 c.email, c.taxincluded, c.business_id, c.taxnumber, c.iban,
903 LEFT JOIN ar ON (d.trans_id = ar.id)
904 LEFT JOIN customer c ON (ar.customer_id = c.id)
905 LEFT JOIN contacts co ON (ar.cp_id = co.cp_id)
906 LEFT JOIN employee e ON (ar.salesman_id = e.id)
907 WHERE (d.dunning_id = ?)
909 my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id);
910 map { $form->{$_} = $ref->{$_} } keys %{ $ref };
914 cfg.interest_rate, cfg.template AS formname, cfg.dunning_level,
915 cfg.email_subject, cfg.email_body, cfg.email_attachment,
916 d.transdate AS dunning_date,
919 WHERE dunning_id = ?)
921 (SELECT SUM(interest)
923 WHERE dunning_id = ?)
925 (SELECT SUM(amount) - SUM(paid)
930 WHERE dunning_id = ?))
933 LEFT JOIN dunning_config cfg ON (d.dunning_config_id = cfg.id)
934 WHERE d.dunning_id = ?
936 $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id, $dunning_id, $dunning_id, $dunning_id);
937 map { $form->{$_} = $ref->{$_} } keys %{ $ref };
939 $form->{interest_rate} = $form->format_amount($myconfig, $ref->{interest_rate} * 100);
940 $form->{fee} = $form->format_amount($myconfig, $ref->{fee}, 2);
941 $form->{total_interest} = $form->format_amount($myconfig, $form->round_amount($ref->{total_interest}, 2), 2);
942 my $total_open_amount = $ref->{total_open_amount};
943 if ($form->{l_include_credit_notes}) {
944 # a bit stupid, but redo calc because of credit notes
945 $total_open_amount = 0;
946 foreach my $amount (@{ $form->{TEMPLATE_ARRAYS}->{dn_open_amount} }) {
947 $total_open_amount += $form->parse_amount($myconfig, $amount, 2);
950 $form->{total_open_amount} = $form->format_amount($myconfig, $form->round_amount($total_open_amount, 2), 2);
951 $form->{total_amount} = $form->format_amount($myconfig, $form->round_amount($ref->{fee} + $ref->{total_interest} + $total_open_amount, 2), 2);
953 $::form->format_dates($output_dateformat, $output_longdates,
954 qw(dn_dunning_date dn_dunning_duedate dn_transdate dn_duedate
955 dunning_date dunning_duedate transdate duedate)
957 $::form->reformat_numbers($output_numberformat, 2, qw(
958 dn_amount dn_netamount dn_paid dn_open_amount dn_fee dn_interest dn_linetotal
959 amount netamount paid open_amount fee interest linetotal
960 total_interest total_open_interest total_amount total_open_amount
962 $::form->reformat_numbers($output_numberformat, undef, qw(interest_rate));
964 $self->set_customer_cvars($myconfig, $form);
965 $self->set_template_options($myconfig, $form);
967 my $filename = "dunning_${dunning_id}_" . Common::unique_id() . ".pdf";
968 my $spool = $::lx_office_conf{paths}->{spool};
969 $form->{OUT} = "${spool}/$filename";
970 $form->{keep_tmpfile} = 1;
972 delete $form->{tmpfile};
974 push @{ $form->{DUNNING_PDFS} }, $filename;
975 push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'path' => "${spool}/$filename",
976 'name' => $form->get_formname_translation('dunning') . "_${dunning_id}.pdf" };
978 my $employee_id = ($::instance_conf->get_dunning_creator eq 'invoice_employee') ?
979 $form->{employee_id} :
980 SL::DB::Manager::Employee->current->id;
982 $form->get_employee_data('prefix' => 'employee', 'id' => $employee_id);
983 $form->get_employee_data('prefix' => 'salesman', 'id' => $form->{salesman_id});
985 $form->{attachment_type} = "dunning";
986 if ( $form->{dunning_level} ) {
987 $form->{attachment_type} .= $form->{dunning_level} if $form->{dunning_level} < 4;
989 $form->{attachment_filename} = $form->get_formname_translation($form->{attachment_type}) . "_${dunning_id}.pdf";
990 $form->{attachment_id} = $form->{invoice_id};
991 $form->parse_template($myconfig);
993 $main::lxdebug->leave_sub();
996 sub print_invoice_for_fees {
997 $main::lxdebug->enter_sub();
999 my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_;
1001 my $dbh = $provided_dbh || SL::DB->client->dbh;
1003 my ($query, @values, $sth);
1007 d.fee_interest_ar_id,
1008 d.trans_id AS invoice_id,
1012 LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id)
1013 WHERE d.dunning_id = ?|;
1014 my ($ar_id, $invoice_id, $template, $dunning_level) = selectrow_query($form, $dbh, $query, $dunning_id);
1017 $main::lxdebug->leave_sub();
1021 my $saved_form = save_form();
1023 $query = qq|SELECT SUM(fee), SUM(interest) FROM dunning WHERE id = ?|;
1024 my ($fee_total, $interest_total) = selectrow_query($form, $dbh, $query, $dunning_id);
1028 ar.invnumber, ar.transdate AS invdate, ar.amount, ar.netamount,
1029 ar.duedate, ar.notes, ar.notes AS invoicenotes, ar.customer_id,
1031 c.name, c.department_1, c.department_2, c.street, c.zipcode, c.city, c.country,
1032 c.contact, c.customernumber, c.phone, c.fax, c.email,
1033 c.taxnumber, c.greeting
1036 LEFT JOIN customer c ON (ar.customer_id = c.id)
1038 my $ref = selectfirst_hashref_query($form, $dbh, $query, $ar_id);
1039 map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1041 $query = qq|SELECT * FROM employee WHERE login = ?|;
1042 $ref = selectfirst_hashref_query($form, $dbh, $query, $::myconfig{login});
1043 map { $form->{"employee_${_}"} = $ref->{$_} } keys %{ $ref };
1045 $query = qq|SELECT * FROM acc_trans WHERE trans_id = ? ORDER BY acc_trans_id ASC|;
1046 $sth = prepare_execute_query($form, $dbh, $query, $ar_id);
1048 my ($row, $fee, $interest) = (0, 0, 0);
1050 while ($ref = $sth->fetchrow_hashref()) {
1051 next if ($ref->{amount} < 0);
1056 $fee = $ref->{amount};
1058 $interest = $ref->{amount};
1062 $form->{fee} = $form->round_amount($fee, 2);
1063 $form->{interest} = $form->round_amount($interest, 2);
1064 $form->{invamount} = $form->round_amount($fee + $interest, 2);
1065 $form->{dunning_id} = $dunning_id;
1066 $form->{formname} = "${template}_invoice";
1068 map { $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) } qw(fee interest invamount);
1070 $self->set_customer_cvars($myconfig, $form);
1071 $self->set_template_options($myconfig, $form);
1073 my $filename = Common::unique_id() . "dunning_invoice_${dunning_id}.pdf";
1075 my $spool = $::lx_office_conf{paths}->{spool};
1076 $form->{OUT} = "$spool/$filename";
1077 $form->{keep_tmpfile} = 1;
1078 delete $form->{tmpfile};
1080 map { delete $form->{$_} } grep /^[a-z_]+_\d+$/, keys %{ $form };
1082 $form->{attachment_filename} = $form->get_formname_translation('dunning_invoice') . "_${dunning_id}.pdf";
1083 $form->{attachment_type} = "dunning";
1084 $form->{attachment_id} = $form->{invoice_id};
1085 $form->parse_template($myconfig);
1087 restore_form($saved_form);
1089 push @{ $form->{DUNNING_PDFS} }, $filename;
1090 push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'filename' => "${spool}/$filename",
1091 'name' => "dunning_invoice_${dunning_id}.pdf" };
1093 $main::lxdebug->leave_sub();
1096 sub set_customer_cvars {
1097 my ($self, $myconfig, $form) = @_;
1099 my $custom_variables = CVar->get_custom_variables(dbh => $form->get_standard_dbh,
1101 trans_id => $form->{customer_id});
1102 map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
1104 $form->{cp_greeting} = GenericTranslations->get(dbh => $form->get_standard_dbh,
1105 translation_type => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
1106 language_id => $form->{language_id},
1107 allow_fallback => 1);
1108 if ($form->{cp_id}) {
1109 $custom_variables = CVar->get_custom_variables(dbh => $form->get_standard_dbh,
1110 module => 'Contacts',
1111 trans_id => $form->{cp_id});
1112 $form->{"cp_cvar_$_->{name}"} = $_->{value} for @{ $custom_variables };
1117 sub print_original_invoices {
1118 my ($self, $myconfig, $form, $invoice_id) = @_;
1119 # get one invoice as object and print to pdf
1120 my $invoice = SL::DB::Invoice->new(id => $invoice_id)->load;
1122 die "Invalid invoice object" unless ref($invoice) eq 'SL::DB::Invoice';
1124 my $print_form = Form->new('');
1125 $print_form->{type} = 'invoice';
1126 $print_form->{formname} = 'invoice',
1127 $print_form->{format} = 'pdf',
1128 $print_form->{media} = 'file';
1129 # no language override, should always be the object's language
1130 $invoice->flatten_to_form($print_form, format_amounts => 1);
1131 for my $i (1 .. $print_form->{rowcount}) {
1132 $print_form->{"sellprice_$i"} = $print_form->{"fxsellprice_$i"};
1134 $print_form->prepare_for_printing;
1136 my $filename = SL::Helper::CreatePDF->create_pdf(
1137 template => 'invoice.tex',
1138 variables => $print_form,
1139 return => 'file_name',
1140 variable_content_types => {
1141 longdescription => 'html',
1142 partnotes => 'html',
1147 my $spool = $::lx_office_conf{paths}->{spool};
1148 my ($volume, $directory, $file_name) = File::Spec->splitpath($filename);
1149 my $full_file_name = File::Spec->catfile($spool, $file_name);
1151 move($filename, $full_file_name) or die "The move operation failed: $!";
1153 # form get_formname_translation should use language_id_$i
1154 my $saved_reicpient_locale = $form->{recipient_locale};
1155 $form->{recipient_locale} = $invoice->language;
1157 push @{ $form->{DUNNING_PDFS} }, $file_name;
1158 push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'path' => "${spool}/$file_name",
1159 'name' => $form->get_formname_translation('invoice') . "_" . $invoice->invnumber . ".pdf" };
1161 $form->{recipient_locale} = $saved_reicpient_locale;