From 232a9153b591c815dacc4b41c15135166be550f0 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 30 May 2007 10:51:32 +0000 Subject: [PATCH] =?utf8?q?Mahnwesen:=201.=20Neues=20Feature:=20Automatisch?= =?utf8?q?es=20Erzeugen=20von=20Debitorenrechnungen=20=C3=BCber=20die=20Ma?= =?utf8?q?hngeb=C3=BChren=20und=20-zinsen.=20Diese=20werden=20ebenfalls=20?= =?utf8?q?als=20PDFs=20ausgegeben.=202.=20Neues=20Feature:=20Beim=20Berich?= =?utf8?q?t=20=C3=BCber=20aktive=20Mahnungen=20erm=C3=B6glichen,=20dass=20?= =?utf8?q?mehrere=20Mahnungen=20und=20die=20eventuell=20dazu=20erstellen?= =?utf8?q?=20Debitorenrechnungen=20auf=20einmal=20ausgedruckt=20werden=20k?= =?utf8?q?=C3=B6nnen.=203.=20Neues=20Feature:=20Mahnungen=20k=C3=B6nnen=20?= =?utf8?q?wahlweise=20am=20Bildschirm=20oder=20direkt=20auf=20Druckern=20a?= =?utf8?q?usgegeben=20werden.=20Zus=C3=A4tzlich=20k=C3=B6nnen=20andere=20S?= =?utf8?q?prachen=20ausgew=C3=A4hlt=20werden.=204.=20Bugfix:=20Beim=20Bear?= =?utf8?q?beiten=20von=20Emaileinstellungen=20in=20der=20Mahnkonfiguration?= =?utf8?q?=20wurden=20+-Zeichen=20falsch=20escapet=20und=20verschwanden.?= =?utf8?q?=205.=20Code=20zum=20Ersetzen=20von=20$form-Variablen=20in=20Str?= =?utf8?q?ings=20entfernt=20und=20durch=20die=20Verwendung=20von=20PlainTe?= =?utf8?q?xtTemplate=20ersetzt.=20Fixes=20f=C3=BCr=20Bugs=20473=20und=2055?= =?utf8?q?3.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/DN.pm | 613 +++++++++++------- bin/mozilla/dn.pl | 93 ++- bin/mozilla/io.pl | 6 + js/common.js | 9 +- js/dunning.js | 12 +- locale/de/all | 10 + locale/de/dn | 10 +- sql/Pg-upgrade2/dunning_invoices_for_fees.sql | 11 + .../webpages/dunning/edit_config_de.html | 56 +- .../webpages/dunning/edit_config_master.html | 56 +- templates/webpages/dunning/set_email_de.html | 2 +- .../webpages/dunning/set_email_master.html | 2 +- .../webpages/dunning/show_dunning_de.html | 112 ++-- .../webpages/dunning/show_dunning_master.html | 112 ++-- .../webpages/dunning/show_invoices_de.html | 4 +- .../dunning/show_invoices_master.html | 4 +- 16 files changed, 752 insertions(+), 360 deletions(-) create mode 100644 sql/Pg-upgrade2/dunning_invoices_for_fees.sql diff --git a/SL/DN.pm b/SL/DN.pm index f986421f7..aa8c97c28 100644 --- a/SL/DN.pm +++ b/SL/DN.pm @@ -34,11 +34,12 @@ package DN; -use SL::Template; -use SL::IS; use SL::Common; use SL::DBUtils; -use Data::Dumper; +use SL::IS; +use SL::Mailer; +use SL::MoreCommon; +use SL::Template; sub get_config { $main::lxdebug->enter_sub(); @@ -59,6 +60,14 @@ sub get_config { $ref->{interest_rate} = $form->format_amount($myconfig, ($ref->{interest_rate} * 100)); } + $query = + qq|SELECT + dunning_create_invoices_for_fees, dunning_ar_amount_fee, + dunning_ar_amount_interest, dunning_ar + FROM defaults|; + ($form->{create_invoices_for_fees}, $form->{AR_amount_fee}, + $form->{AR_amount_interest}, $form->{AR} ) = selectrow_query($form, $dbh, $query); + $dbh->disconnect(); $main::lxdebug->leave_sub(); @@ -112,8 +121,149 @@ sub save_config { } } - $dbh->commit; - $dbh->disconnect; + $query = qq|UPDATE defaults SET dunning_create_invoices_for_fees = ?|; + @values = ($form->{create_invoices_for_fees} ? 't' : 'f'); + + if ($form->{create_invoices_for_fees}) { + $query .= qq|, dunning_ar_amount_fee = ?, dunning_ar_amount_interest = ?, dunning_ar = ?|; + push @values, conv_i($form->{AR_amount_fee}), conv_i($form->{AR_amount_interest}), conv_i($form->{AR}); + } + + do_query($form, $dbh, $query, @values); + + $dbh->commit(); + $dbh->disconnect(); + + $main::lxdebug->leave_sub(); +} + +sub create_invoice_for_fees { + $main::lxdebug->enter_sub(); + + my ($self, $myconfig, $form, $dbh, $dunning_id) = @_; + + my ($query, @values, $sth, $ref); + + $query = + qq|SELECT + dunning_create_invoices_for_fees, dunning_ar_amount_fee, + dunning_ar_amount_interest, dunning_ar + FROM defaults|; + ($form->{create_invoices_for_fees}, $form->{AR_amount_fee}, + $form->{AR_amount_interest}, $form->{AR} ) = selectrow_query($form, $dbh, $query); + + if (!$form->{create_invoices_for_fees}) { + $main::lxdebug->leave_sub(); + return; + } + + $query = + qq|SELECT + fee, + COALESCE(( + SELECT MAX(d_fee.fee) + FROM dunning d_fee + WHERE (d_fee.trans_id = d.trans_id) + AND (d_fee.dunning_id <> ?) + AND NOT (d_fee.fee_interest_ar_id ISNULL) + ), 0) + AS max_previous_fee, + interest, + COALESCE(( + SELECT MAX(d_interest.interest) + FROM dunning d_interest + WHERE (d_interest.trans_id = d.trans_id) + AND (d_interest.dunning_id <> ?) + AND NOT (d_interest.fee_interest_ar_id ISNULL) + ), 0) + AS max_previous_interest + FROM dunning d + WHERE dunning_id = ?|; + @values = ($dunning_id, $dunning_id, $dunning_id); + $sth = prepare_execute_query($form, $dbh, $query, @values); + + my ($fee_remaining, $interest_remaining) = (0, 0); + my ($fee_total, $interest_total) = (0, 0); + + while (my $ref = $sth->fetchrow_hashref()) { + $fee_remaining += $form->round_amount($ref->{fee}, 2); + $fee_remaining -= $form->round_amount($ref->{max_previous_fee}, 2); + $fee_total += $form->round_amount($ref->{fee}, 2); + $interest_remaining += $form->round_amount($ref->{interest}, 2); + $interest_remaining -= $form->round_amount($ref->{max_previous_interest}, 2); + $interest_total += $form->round_amount($ref->{interest}, 2); + } + + $sth->finish(); + + my $amount = $fee_remaining + $interest_remaining; + + if (!$amount) { + $main::lxdebug->leave_sub(); + return; + } + + my ($ar_id) = selectrow_query($form, $dbh, qq|SELECT nextval('glid')|); + + $query = + qq|INSERT INTO ar (id, invnumber, transdate, gldate, customer_id, + taxincluded, amount, netamount, paid, duedate, + invoice, curr, notes, + employee_id) + VALUES ( + ?, -- id + ?, -- invnumber + current_date, -- transdate + current_date, -- gldate + -- customer_id: + (SELECT ar.customer_id + FROM dunning dn + LEFT JOIN ar ON (dn.trans_id = ar.id) + WHERE dn.dunning_id = ? + LIMIT 1), + 'f', -- taxincluded + ?, -- amount + ?, -- netamount + 0, -- paid + -- duedate: + (SELECT duedate FROM dunning WHERE dunning_id = ?), + 'f', -- invoice + ?, -- curr + ?, -- notes + -- employee_id: + (SELECT id FROM employee WHERE login = ?) + )|; + @values = ($ar_id, # id + $form->update_defaults($myconfig, 'invnumber', $dbh), # invnumber + $dunning_id, # customer_id + $amount, + $amount, + $dunning_id, # duedate + (split m/:/, $myconfig->{currency})[0], # currency + sprintf($main::locale->text('Automatically created invoice for fee and interest for dunning %s'), $dunning_id), # notes + $form->{login}); # employee_id + do_query($form, $dbh, $query, @values); + + $query = + qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, taxkey) + VALUES (?, ?, ?, current_date, current_date, 0)|; + $sth = prepare_query($form, $dbh, $query); + + @values = ($ar_id, conv_i($form->{AR_amount_fee}), $fee_remaining); + do_statement($form, $sth, $query, @values); + + if ($interest_remaining) { + @values = ($ar_id, conv_i($form->{AR_amount_interest}), $interest_remaining); + do_statement($form, $sth, $query, @values); + } + + @values = ($ar_id, conv_i($form->{AR}), -1 * $amount); + do_statement($form, $sth, $query, @values); + + $sth->finish(); + + $query = qq|UPDATE dunning SET fee_interest_ar_id = ? WHERE dunning_id = ?|; + do_query($form, $dbh, $query, $ar_id, $dunning_id); $main::lxdebug->leave_sub(); } @@ -133,8 +283,8 @@ sub save_dunning { my $h_update_ar = prepare_query($form, $dbh, $q_update_ar); my $q_insert_dunning = - qq|INSERT INTO dunning (dunning_id, dunning_config_id, dunning_level, - trans_id, fee, interest, transdate, duedate) + qq|INSERT INTO dunning (dunning_id, dunning_config_id, dunning_level, trans_id, + fee, interest, transdate, duedate) VALUES (?, ?, (SELECT dunning_level FROM dunning_config WHERE id = ?), ?, @@ -174,69 +324,78 @@ sub save_dunning { $h_update_ar->finish(); $h_insert_dunning->finish(); + $form->{DUNNING_PDFS_EMAIL} = []; + + $self->create_invoice_for_fees($myconfig, $form, $dbh, $dunning_id); + + $self->print_invoice_for_fees($myconfig, $form, $dunning_id, $dbh); + $self->print_dunning($myconfig, $form, $dunning_id, $dbh); + + $form->{dunning_id} = $dunning_id; + + if ($send_email) { + $self->send_email($myconfig, $form, $dunning_id, $dbh); + } + +# $dbh->commit(); + $dbh->disconnect(); + + $main::lxdebug->leave_sub(); +} + +sub send_email { + $main::lxdebug->enter_sub(); + + my ($self, $myconfig, $form, $dunning_id, $dbh) = @_; + my $query = qq|SELECT - ar.invnumber, ar.ordnumber, ar.amount, ar.netamount, - ar.transdate, ar.duedate, ar.paid, ar.amount - ar.paid AS open_amount, - da.fee, da.interest, da.transdate AS dunning_date, da.duedate AS dunning_duedate - FROM ar - LEFT JOIN dunning_config cfg ON (cfg.id = ar.dunning_config_id) - LEFT JOIN dunning da ON (ar.id = da.trans_id AND cfg.dunning_level = da.dunning_level) - WHERE ar.id IN (| - . join(", ", map { "?" } @invoice_ids) . qq|)|; + dcfg.email_body, dcfg.email_subject, dcfg.email_attachment, + c.email AS recipient - my $sth = prepare_execute_query($form, $dbh, $query, @invoice_ids); - my $first = 1; - while (my $ref = $sth->fetchrow_hashref(NAME_lc)) { - if ($first) { - map({ $form->{"dn_$_"} = []; } keys(%{$ref})); - $first = 0; - } + FROM dunning d + LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id) + LEFT JOIN ar ON (d.trans_id = ar.id) + LEFT JOIN customer c ON (ar.customer_id = c.id) + WHERE (d.dunning_id = ?) + LIMIT 1|; + my $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id); - $ref->{interest_rate} = $form->format_amount($myconfig, $ref->{interest_rate} * 100); - map { $ref->{$_} = $form->format_amount($myconfig, $ref->{$_}, 2) } qw(amount netamount paid open_amount fee interest); - map { push(@{ $form->{"dn_$_"} }, $ref->{$_})} keys %$ref; - map { $form->{$_} = $ref->{$_} } keys %{ $ref }; + if (!$ref || !$ref->{recipient} || !$myconfig->{email}) { + $main::lxdebug->leave_sub(); + return; } - $sth->finish; - $query = - qq|SELECT id AS customer_id, name, street, zipcode, city, country, department_1, department_2, email - FROM customer - WHERE id = ?|; - $ref = selectfirst_hashref_query($form, $dbh, $query, $customer_id); - map { $form->{$_} = $ref->{$_} } keys %{ $ref }; + my $template = PlainTextTemplate->new(undef, $form, $myconfig); + my $mail = Mailer->new(); + $mail->{from} = $myconfig->{email}; + $mail->{to} = $ref->{recipient}; + $mail->{subject} = $template->parse_block($ref->{email_subject}); + $mail->{message} = $template->parse_block($ref->{email_body}); - $query = - qq|SELECT - cfg.interest_rate, cfg.template AS formname, - cfg.email_subject, cfg.email_body, cfg.email_attachment, - (SELECT SUM(fee) - FROM dunning - WHERE dunning_id = ?) - AS fee, - (SELECT SUM(interest) - FROM dunning - WHERE dunning_id = ?) - AS total_interest, - (SELECT SUM(amount) - SUM(paid) - FROM ar - WHERE id IN (| . join(", ", map { "?" } @invoice_ids) . qq|)) - AS total_open_amount - FROM dunning_config cfg - WHERE id = ?|; - $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id, $dunning_id, @invoice_ids, $next_dunning_config_id); - map { $form->{$_} = $ref->{$_} } keys %{ $ref }; + if ($myconfig->{signature}) { + $mail->{message} .= "\n-- \n$myconfig->{signature}"; + } - $form->{interest_rate} = $form->format_amount($myconfig, $ref->{interest_rate} * 100); - $form->{fee} = $form->format_amount($myconfig, $ref->{fee}, 2); - $form->{total_interest} = $form->format_amount($myconfig, $form->round_amount($ref->{total_interest}, 2), 2); - $form->{total_open_amount} = $form->format_amount($myconfig, $form->round_amount($ref->{total_open_amount}, 2), 2); - $form->{total_amount} = $form->format_amount($myconfig, $form->round_amount($ref->{fee} + $ref->{total_interest} + $ref->{total_open_amount}, 2), 2); + $mail->{message} =~ s/\r\n/\n/g; + + if ($ref->{email_attachment} && @{ $form->{DUNNING_PDFS_EMAIL} }) { + $mail->{attachments} = $form->{DUNNING_PDFS_EMAIL}; + } + + $mail->send(); + + $main::lxdebug->leave_sub(); +} + +sub set_template_options { + $main::lxdebug->enter_sub(); + + my ($self, $myconfig, $form) = @_; $form->{templates} = "$myconfig->{templates}"; - $form->{language} = $form->get_template_language(\%myconfig); - $form->{printer_code} = $form->get_printer_code(\%myconfig); + $form->{language} = $form->get_template_language($myconfig); + $form->{printer_code} = $form->get_printer_code($myconfig); if ($form->{language} ne "") { $form->{language} = "_" . $form->{language}; @@ -246,54 +405,15 @@ sub save_dunning { $form->{printer_code} = "_" . $form->{printer_code}; } - $form->{IN} = "$form->{formname}$form->{language}$form->{printer_code}.html"; - if ($form->{format} eq 'postscript') { - $form->{postscript} = 1; - $form->{IN} =~ s/html$/tex/; - } elsif ($form->{"format"} =~ /pdf/) { - $form->{pdf} = 1; - if ($form->{"format"} =~ /opendocument/) { - $form->{IN} =~ s/html$/odt/; - } else { - $form->{IN} =~ s/html$/tex/; - } - } elsif ($form->{"format"} =~ /opendocument/) { - $form->{"opendocument"} = 1; - $form->{"IN"} =~ s/html$/odt/; - } - - if ($send_email && ($form->{email} ne "")) { - $form->{media} = 'email'; - } - - $form->{keep_tmpfile} = 0; - if ($form->{media} eq 'email') { - $form->{subject} = qq|$form->{label} $form->{"${inv}number"}| - unless $form->{subject}; - if (!$form->{email_attachment}) { - $form->{do_not_attach} = 1; - } else { - $form->{do_not_attach} = 0; - } - $form->{subject} = parse_strings($myconfig, $form, $userspath, $form->{email_subject}); - $form->{message} = parse_strings($myconfig, $form, $userspath, $form->{email_body}); - - $form->{OUT} = "$sendmail"; + $form->{IN} = "$form->{formname}$form->{language}$form->{printer_code}.html"; + $form->{pdf} = 1; + if ($form->{"format"} =~ /opendocument/) { + $form->{IN} =~ s/html$/odt/; } else { - - my $filename = Common::unique_id() . $form->{login} . ".pdf"; - $form->{OUT} = ">$spool/$filename"; - push(@{ $form->{DUNNING_PDFS} }, $filename); - $form->{keep_tmpfile} = 1; + $form->{IN} =~ s/html$/tex/; } - delete($form->{tmpfile}); - $form->parse_template($myconfig, $userspath); - - $dbh->commit; - $dbh->disconnect; - $main::lxdebug->leave_sub(); } @@ -495,101 +615,49 @@ sub get_dunning { $main::lxdebug->leave_sub(); } -sub parse_strings { - - $main::lxdebug->enter_sub(); - - my ($myconfig, $form, $userspath, $string) = @_; - - local (*IN, *OUT); - - my $format = $form->{format}; - $form->{format} = "html"; - - $tmpstring = "parse_string.html"; - $tmpfile = "$myconfig->{templates}/$tmpstring"; - open(OUT, ">", $tmpfile) or $form->error("$tmpfile : $!"); - - print(OUT $string); - close(OUT); - - my $in = $form->{IN}; - $form->{IN} = $tmpstring; - $template = HTMLTemplate->new($tmpstring, $form, $myconfig, $userspath); - - my $fileid = time; - $form->{tmpfile} = "$userspath/${fileid}.$tmpstring"; - - open(OUT, ">", $form->{tmpfile}) or $form->error("$form->{OUT} : $!"); - if (!$template->parse(*OUT)) { - $form->cleanup(); - $form->error("$form->{IN} : " . $template->get_error()); - } - - close(OUT); - my $result = ""; - open(IN, "<", $form->{tmpfile}) or $form->error($form->cleanup . "$form->{tmpfile} : $!"); - - while () { - $result .= $_; - } - - close(IN); -# unlink($tmpfile); -# unlink($form->{tmpfile}); - $form->{IN} = $in; - $form->{format} = $format; - - $main::lxdebug->leave_sub(); - return $result; -} - sub melt_pdfs { $main::lxdebug->enter_sub(); - my ($self, $myconfig, $form, $userspath) = @_; - - local (*IN, *OUT); + my ($self, $myconfig, $form, $copies) = @_; - # Don't allow access outside of $userspath. + # Don't allow access outside of $spool. map { $_ =~ s|.*/||; } @{ $form->{DUNNING_PDFS} }; - my $inputfiles = join " ", map { "$userspath/$_" } @{ $form->{DUNNING_PDFS} }; - my $outputfile = "$userspath/dunning.pdf"; + $copies *= 1; + $copies = 1 unless $copies; + my $inputfiles = join " ", map { "${main::spool}/$_ " x $copies } @{ $form->{DUNNING_PDFS} }; + my $dunning_id = $form->{dunning_id}; - system("gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=$outputfile $inputfiles"); + $dunning_id =~ s|[^\d]||g; - map { unlink("$userspath/$_") } @{ $form->{DUNNING_PDFS} }; + my $in = IO::File->new("gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=- $inputfiles |"); + $form->error($main::locale->text('Could not spawn ghostscript.')) unless $in; - my $numbytes = (-s $outputfile); - open(IN, $outputfile) || $form->error($self->cleanup() . "$outputfile : $!"); + my $out; - $form->{copies} = 1 unless $form->{media} eq 'printer'; - - chdir($self->{cwd}); - - for my $i (1 .. $form->{copies}) { - # launch application - print qq|Content-Type: Application/PDF -Content-Disposition: attachment; filename="$outputfile" -Content-Length: $numbytes - -|; - - open(OUT, ">-") or $form->error($form->cleanup . "$!: STDOUT"); - - while () { - print OUT $_; + if ($form->{media} eq 'printer') { + $form->get_printer_code($myconfig); + if ($form->{printer_command}) { + $out = IO::File->new("| $form->{printer_command}"); } - close(OUT); + $form->error($main::locale->text('Could not spawn the printer command.')) unless $out; + + } else { + $out = IO::File->new('>-'); + $out->print(qq|Content-Type: Application/PDF\n| . + qq|Content-Disposition: attachment; filename="dunning_${dunning_id}.pdf"\n\n|); + } - seek(IN, 0, 0); + while (my $line = <$in>) { + $out->print($line); } - close(IN); - unlink($outputfile); + $in->close(); + $out->close(); + + map { unlink("${main::spool}/$_") } @{ $form->{DUNNING_PDFS} }; $main::lxdebug->leave_sub(); } @@ -597,17 +665,29 @@ Content-Length: $numbytes sub print_dunning { $main::lxdebug->enter_sub(); - my ($self, $myconfig, $form, $dunning_id, $userspath, $spool, $sendmail) = @_; + my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_; + # connect to database - my $dbh = $form->dbconnect_noauto($myconfig); + my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect_noauto($myconfig); + + $dunning_id =~ s|[^\d]||g; my $query = - qq|SELECT invnumber, ordnumber, customer_id, amount, netamount, - ar.transdate, ar.duedate, paid, amount - paid AS open_amount, - template AS formname, email_subject, email_body, email_attachment, - da.fee, da.interest, da.transdate AS dunning_date, da.duedate AS dunning_duedate + qq|SELECT + da.fee, da.interest, + da.transdate AS dunning_date, + da.duedate AS dunning_duedate, + + dcfg.template AS formname, + dcfg.email_subject, dcfg.email_body, dcfg.email_attachment, + + ar.transdate, ar.duedate, ar.customer_id, + ar.invnumber, ar.ordnumber, + ar.amount, ar.netamount, ar.paid, + ar.amount - ar.paid AS open_amount + FROM dunning da - LEFT JOIN dunning_config ON (dunning_config.id = da.dunning_config_id) + LEFT JOIN dunning_config dcfg ON (dcfg.id = da.dunning_config_id) LEFT JOIN ar ON (ar.id = da.trans_id) WHERE (da.dunning_id = ?)|; @@ -622,16 +702,17 @@ sub print_dunning { map { $form->{$_} = $ref->{$_} } keys %$ref; map { push @{ $form->{"dn_$_"} }, $ref->{$_}} keys %$ref; } - $sth->finish; + $sth->finish(); $query = - qq|SELECT id AS customer_id, name, street, zipcode, city, country, department_1, department_2, email - FROM customer - WHERE id = - (SELECT customer_id - FROM dunning d - LEFT JOIN ar ON (d.trans_id = ar.id) - WHERE d.id = ?)|; + qq|SELECT + c.id AS customer_id, c.name, c.street, c.zipcode, c.city, + c.country, c.department_1, c.department_2, c.email + FROM dunning d + LEFT JOIN ar ON (d.trans_id = ar.id) + LEFT JOIN customer c ON (ar.customer_id = c.id) + WHERE (d.dunning_id = ?) + LIMIT 1|; $ref = selectfirst_hashref_query($form, $dbh, $query, $dunning_id); map { $form->{$_} = $ref->{$_} } keys %{ $ref }; @@ -668,66 +749,116 @@ sub print_dunning { $form->{total_open_amount} = $form->format_amount($myconfig, $form->round_amount($ref->{total_open_amount}, 2), 2); $form->{total_amount} = $form->format_amount($myconfig, $form->round_amount($ref->{fee} + $ref->{total_interest} + $ref->{total_open_amount}, 2), 2); + $self->set_template_options($myconfig, $form); - $form->{templates} = "$myconfig->{templates}"; + my $filename = "dunning_${dunning_id}_" . Common::unique_id() . ".pdf"; + $form->{OUT} = ">${main::spool}/$filename"; + $form->{keep_tmpfile} = 1; - $form->{language} = $form->get_template_language(\%myconfig); - $form->{printer_code} = $form->get_printer_code(\%myconfig); + delete $form->{tmpfile}; - if ($form->{language} ne "") { - $form->{language} = "_" . $form->{language}; - } + push @{ $form->{DUNNING_PDFS} }, $filename; + push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'filename' => $filename, + 'name' => "dunning_${dunning_id}.pdf" }; - if ($form->{printer_code} ne "") { - $form->{printer_code} = "_" . $form->{printer_code}; + $form->parse_template($myconfig, $main::userspath); + + $dbh->disconnect() unless $provided_dbh; + + $main::lxdebug->leave_sub(); +} + +sub print_invoice_for_fees { + $main::lxdebug->enter_sub(); + + my ($self, $myconfig, $form, $dunning_id, $provided_dbh) = @_; + + my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect($myconfig); + + my ($query, @values, $sth); + + $query = + qq|SELECT + d.fee_interest_ar_id, + dcfg.template + FROM dunning d + LEFT JOIN dunning_config dcfg ON (d.dunning_config_id = dcfg.id) + WHERE d.dunning_id = ?|; + my ($ar_id, $template) = selectrow_query($form, $dbh, $query, $dunning_id); + + if (!$ar_id) { + $main::lxdebug->leave_sub(); + return; } - $form->{IN} = "$form->{formname}$form->{language}$form->{printer_code}.html"; - if ($form->{format} eq 'postscript') { - $form->{postscript} = 1; - $form->{IN} =~ s/html$/tex/; - } elsif ($form->{"format"} =~ /pdf/) { - $form->{pdf} = 1; - if ($form->{"format"} =~ /opendocument/) { - $form->{IN} =~ s/html$/odt/; + my $saved_form = save_form(); + + $query = qq|SELECT SUM(fee), SUM(interest) FROM dunning WHERE id = ?|; + my ($fee_total, $interest_total) = selectrow_query($form, $dbh, $query, $dunning_id); + + $query = + qq|SELECT + ar.invnumber, ar.transdate, ar.amount, ar.netamount, + ar.duedate, ar.notes, ar.notes AS invoicenotes, + + c.name, c.department_1, c.department_2, c.street, c.zipcode, c.city, c.country, + c.contact, c.customernumber, c.phone, c.fax, c.email, + c.taxnumber, c.sic_code, c.greeting + + FROM ar + LEFT JOIN customer c ON (ar.customer_id = c.id) + WHERE ar.id = ?|; + $ref = selectfirst_hashref_query($form, $dbh, $query, $ar_id); + map { $form->{$_} = $ref->{$_} } keys %{ $ref }; + + $query = qq|SELECT * FROM employee WHERE login = ?|; + $ref = selectfirst_hashref_query($form, $dbh, $query, $form->{login}); + map { $form->{"employee_${_}"} = $ref->{$_} } keys %{ $ref }; + + $query = qq|SELECT * FROM acc_trans WHERE trans_id = ? ORDER BY oid ASC|; + $sth = prepare_execute_query($form, $dbh, $query, $ar_id); + + my ($row, $fee, $interest) = (0, 0, 0); + + while ($ref = $sth->fetchrow_hashref()) { + next if ($ref->{amount} < 0); + + $row++; + + if ($row == 1) { + $fee = $ref->{amount}; } else { - $form->{IN} =~ s/html$/tex/; + $interest = $ref->{amount}; } - } elsif ($form->{"format"} =~ /opendocument/) { - $form->{"opendocument"} = 1; - $form->{"IN"} =~ s/html$/odt/; } - if ($form->{"send_email"} && ($form->{email} ne "")) { - $form->{media} = 'email'; - } + $form->{fee} = $form->round_amount($fee, 2); + $form->{interest} = $form->round_amount($interest, 2); + $form->{invamount} = $form->round_amount($fee + $interest, 2); + $form->{dunning_id} = $dunning_id; + $form->{formname} = "${template}_invoice"; - $form->{keep_tmpfile} = 0; - if ($form->{media} eq 'email') { - $form->{subject} = qq|$form->{label} $form->{"${inv}number"}| - unless $form->{subject}; - if (!$form->{email_attachment}) { - $form->{do_not_attach} = 1; - } else { - $form->{do_not_attach} = 0; - } - $form->{subject} = parse_strings($myconfig, $form, $userspath, $form->{email_subject}); - $form->{message} = parse_strings($myconfig, $form, $userspath, $form->{email_body}); + map { $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) } qw(fee interest invamount); - $form->{OUT} = "$sendmail"; + $self->set_template_options($myconfig, $form); - } else { + my $filename = Common::unique_id() . "dunning_invoice_${dunning_id}.pdf"; - my $filename = Common::unique_id() . $form->{login} . ".pdf"; + $form->{OUT} = ">$main::spool/$filename"; + $form->{keep_tmpfile} = 1; + delete $form->{tmpfile}; - push(@{ $form->{DUNNING_PDFS} }, $filename); - $form->{keep_tmpfile} = 1; - } + map { delete $form->{$_} } grep /^[a-z_]+_\d+$/, keys %{ $form }; - $form->parse_template($myconfig, $userspath); + $form->parse_template($myconfig, $main::userspath); - $dbh->commit; - $dbh->disconnect; + restore_form($saved_form); + + push @{ $form->{DUNNING_PDFS} }, $filename; + push @{ $form->{DUNNING_PDFS_EMAIL} }, { 'filename' => $filename, + 'name' => "dunning_invoice_${dunning_id}.pdf" }; + + $dbh->disconnect() unless $provided_dbh; $main::lxdebug->leave_sub(); } diff --git a/bin/mozilla/dn.pl b/bin/mozilla/dn.pl index 7f59a4304..94af9502a 100644 --- a/bin/mozilla/dn.pl +++ b/bin/mozilla/dn.pl @@ -31,10 +31,11 @@ # #====================================================================== +use POSIX; + use SL::IS; use SL::PE; use SL::DN; -use Data::Dumper; require "bin/mozilla/common.pl"; require "bin/mozilla/io.pl"; @@ -46,6 +47,26 @@ sub edit_config { $lxdebug->enter_sub(); DN->get_config(\%myconfig, \%$form); + $form->get_lists('charts' => { 'key' => 'ALL_CHARTS', + 'transdate' => 'current_date' }); + + $form->{SELECT_AR_AMOUNT} = []; + $form->{SELECT_AR} = []; + + foreach my $chart (@{ $form->{ALL_CHARTS} }) { + $chart->{LINKS} = { map { $_, 1 } split m/:/, $chart->{link} }; + + if ($chart->{LINKS}->{AR}) { + $chart->{AR_selected} = "selected" if $chart->{id} == $form->{AR}; + push @{ $form->{SELECT_AR} }, $chart; + } + + if ($chart->{LINKS}->{AR_amount}) { + $chart->{AR_amount_fee_selected} = "selected" if $chart->{id} == $form->{AR_amount_fee}; + $chart->{AR_amount_interest_selected} = "selected" if $chart->{id} == $form->{AR_amount_interest}; + push @{ $form->{SELECT_AR_AMOUNT} }, $chart; + } + } $form->{title} = $locale->text('Edit Dunning Process Config'); $form->{callback} ||= build_std_url("action=edit_config"); @@ -95,12 +116,19 @@ sub show_invoices { map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, -2) } qw(amount fee interest); } + $form->get_lists('printers' => 'printers', + 'languages' => 'languages'); + $form->{type} = 'dunning'; $form->{rowcount} = scalar @{ $form->{DUNNINGS} }; $form->{jsscript} = 1; $form->{callback} ||= build_std_url("action=show_invoices", qw(login password customer invnumber ordnumber groupinvoices minamount dunning_level notes)); - $form->{PRINT_OPTIONS} = print_options({ 'inline' => 1 }); + $form->{PRINT_OPTIONS} = print_options({ 'inline' => 1, + 'no_queue' => 1, + 'no_postscript' => 1, + 'no_html' => 1, + 'no_opendocument' => 1, }); $form->header(); print $form->parse_html_template("dunning/show_invoices"); @@ -163,7 +191,7 @@ sub save_dunning { foreach my $level (values %{ $levels }) { next unless scalar @{ $level }; - DN->save_dunning(\%myconfig, \%$form, $level, $userspath, $spool, $sendmail); + DN->save_dunning(\%myconfig, $form, $level, $userspath, $spool, $sendmail); } } @@ -176,12 +204,12 @@ sub save_dunning { "customer_id" => $form->{"customer_id_$i"}, "next_dunning_config_id" => $form->{"next_dunning_config_id_$i"}, "email" => $form->{"email_$i"}, } ]; - DN->save_dunning(\%myconfig, \%$form, $level, $userspath, $spool, $sendmail); + DN->save_dunning(\%myconfig, $form, $level, $userspath, $spool, $sendmail); } } if($form->{DUNNING_PDFS}) { - DN->melt_pdfs(\%myconfig, \%$form,$spool); + DN->melt_pdfs(\%myconfig, $form); } # saving the history @@ -192,7 +220,7 @@ sub save_dunning { } # /saving the history - $form->redirect($locale->text('Dunning Process started for selected invoices!')); + $form->redirect($locale->text('Dunning Process started for selected invoices!')) if ($form->{media} eq 'printer'); $lxdebug->leave_sub(); } @@ -270,7 +298,17 @@ sub show_dunning { ransdatefrom transdateto dunningfrom dunningto notes showold)); } - $form->{title} = $locale->text('Dunning overview'); + $form->get_lists('printers' => 'printers', + 'languages' => 'languages'); + + $form->{type} = 'dunning'; + $form->{PRINT_OPTIONS} = print_options({ 'inline' => 1, + 'no_queue' => 1, + 'no_postscript' => 1, + 'no_html' => 1, + 'no_opendocument' => 1, }); + $form->{title} = $locale->text('Dunning overview'); + $form->header(); print $form->parse_html_template("dunning/show_dunning"); @@ -282,16 +320,47 @@ sub show_dunning { sub print_dunning { $lxdebug->enter_sub(); - DN->print_dunning(\%myconfig, \%$form, $form->{dunning_id}, $userspath, $spool, $sendmail); + $form->{rowcount} = 1; + $form->{selected_1} = 1; + $form->{dunning_id_1} = $form->{dunning_id}; + + print_multiple(); + + $lxdebug->leave_sub(); +} + +sub print_multiple { + $lxdebug->enter_sub(); + + $form->{title} = $locale->text('Print dunnings'); + + my @dunning_ids = map { $form->{"dunning_id_$_"} } grep { $form->{"selected_$_"} } (1..$form->{rowcount}); + + if (!scalar @dunning_ids) { + $form->error($locale->text('No dunnings have been selected for printing.')); + } + + $form->{DUNNING_PDFS} = []; + + foreach my $dunning_id (@dunning_ids) { + DN->print_invoice_for_fees(\%myconfig, $form, $dunning_id); + DN->print_dunning(\%myconfig, $form, $dunning_id); + } + + if (scalar @{ $form->{DUNNING_PDFS} }) { + $form->{dunning_id} = strftime("%Y%m%d", localtime time); + DN->melt_pdfs(\%myconfig, $form, $form->{copies}); + + if ($form->{media} eq 'printer') { + $form->header(); + $form->info($locale->text('The dunnings have been printed.')); + } - if($form->{DUNNING_PDFS}) { - DN->melt_pdfs(\%myconfig, \%$form,$spool); } else { - $form->redirect($locale->text('Could not create dunning copy!')); + $form->redirect($locale->text('Could not print dunning.')); } $lxdebug->leave_sub(); - } # end of main diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index dd58d0bf4..d5209cf08 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -1425,6 +1425,12 @@ sub print_options { sub print { $lxdebug->enter_sub(); + if ($form->{print_nextsub}) { + call_sub($form->{print_nextsub}); + $lxdebug->leave_sub(); + return; + } + # if this goes to the printer pass through if ($form->{media} eq 'printer' || $form->{media} eq 'queue') { $form->error($locale->text('Select postscript or PDF!')) diff --git a/js/common.js b/js/common.js index d4d5ab7b9..19821b42b 100644 --- a/js/common.js +++ b/js/common.js @@ -34,6 +34,11 @@ function centerParms(width,height,extra) { return string; } +function escape_more(s) { + s = escape(s); + return s.replace(/\+/g, '%2b'); +} + function set_longdescription_window(input_name) { var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes"; var name = document.getElementsByName(input_name)[0].value; @@ -41,8 +46,8 @@ function set_longdescription_window(input_name) { "action=set_longdescription&" + "login=" + encodeURIComponent(document.getElementsByName("login")[0].value)+ "&"+ "password=" + encodeURIComponent(document.getElementsByName("password")[0].value) + "&" + - "longdescription=" + escape(document.getElementsByName(input_name)[0].value) + "&" + - "input_name=" + escape(input_name) + "&" + "longdescription=" + escape_more(document.getElementsByName(input_name)[0].value) + "&" + + "input_name=" + escape_more(input_name) + "&" window.open(url, "_new_generic", parm); } diff --git a/js/dunning.js b/js/dunning.js index 2766fc6c1..060dbbd2f 100644 --- a/js/dunning.js +++ b/js/dunning.js @@ -4,11 +4,11 @@ function set_email_window(input_subject, input_body, input_attachment) { "action=set_email&" + "login=" + encodeURIComponent(document.getElementsByName("login")[0].value)+ "&"+ "password=" + encodeURIComponent(document.getElementsByName("password")[0].value) + "&" + - "email_subject=" + escape(document.getElementsByName(input_subject)[0].value) + "&" + - "email_body=" + escape(document.getElementsByName(input_body)[0].value) + "&" + - "email_attachment=" + escape(document.getElementsByName(input_attachment)[0].value) + "&" + - "input_subject=" + escape(input_subject) + "&" + - "input_body=" + escape(input_body) + "&" + - "input_attachment=" + escape(input_attachment); + "email_subject=" + escape_more(document.getElementsByName(input_subject)[0].value) + "&" + + "email_body=" + escape_more(document.getElementsByName(input_body)[0].value) + "&" + + "email_attachment=" + escape_more(document.getElementsByName(input_attachment)[0].value) + "&" + + "input_subject=" + escape_more(input_subject) + "&" + + "input_body=" + escape_more(input_body) + "&" + + "input_attachment=" + escape_more(input_attachment); window.open(url, "_new_generic", parm); } diff --git a/locale/de/all b/locale/de/all index 5bffb5a86..08b953ff8 100644 --- a/locale/de/all +++ b/locale/de/all @@ -76,6 +76,8 @@ $self->{texts} = { 'Account Type' => 'Kontoart', 'Account Type missing!' => 'Kontoart fehlt!', 'Account deleted!' => 'Konto gelöscht!', + 'Account for fees' => 'Konto für Gebühren', + 'Account for interest' => 'Konto für Zinsen', 'Account saved!' => 'Konto gespeichert!', 'Accounting Group deleted!' => 'Buchungsgruppe gelöscht!', 'Accounting Group saved!' => 'Buchungsgruppe gespeichert!', @@ -165,6 +167,8 @@ aktualisieren wollen?', 'Aug' => 'Aug', 'August' => 'August', 'Auto Send?' => 'Auto. Versand?', + 'Automatically create customer invoices for fees and interests' => 'Automatisches Erstellen von Debitorenrechnungen über Mahngebühren und Zinsen', + 'Automatically created invoice for fee and interest for dunning %s' => 'Automatisch erzeugte Rechnung für Gebühren und Zinsen zu Mahnung %s', 'BOM' => 'Stückliste', 'BWA' => 'BWA', 'Back' => 'Zurück', @@ -281,7 +285,10 @@ aktualisieren wollen?', 'Could not copy %s to %s. Reason: %s' => 'Die Datei "%s" konnte nicht nach "%s" kopiert werden. Grund: %s', 'Could not create dunning copy!' => 'Eine Kopie der Zahlungserinnerung konnte nicht erstellt werden.', 'Could not open the file users/members.' => 'Die Datei "users/members" konnte nicht geöffnet werden.', + 'Could not print dunning.' => 'Die Mahnungen konnten nicht gedruckt werden.', 'Could not rename %s to %s. Reason: %s' => 'Die Datei "%s" konnte nicht in "%s" umbenannt werden. Grund: %s', + 'Could not spawn ghostscript.' => 'Die Anwendung "ghostscript" konnte nicht gestartet werden.', + 'Could not spawn the printer command.' => 'Die Druckanwendung konnte nicht gestartet werden.', 'Could not update prices!' => 'Preise konnten nicht aktualisiert werden!', 'Country' => 'Land', 'Create Buchungsgruppen' => 'Buchungsgruppe erfassen', @@ -716,6 +723,7 @@ gestartet', 'No customer has been selected yet.' => 'Es wurde noch kein Kunde ausgewählt.', 'No databases have been found on this server.' => 'Auf diesem Server wurden keine Datenbanken gefunden.', 'No datasets have been selected.' => 'Es wurden keine Datenbanken ausgewählt.', + 'No dunnings have been selected for printing.' => 'Es wurden keine Mahnungen zum Drucken ausgewählt.', 'No employee was found matching the search parameters.' => 'Es wurde kein Angestellter gefunden, auf den die Suchparameter zutreffen.', 'No entries were found which had no unit assigned to them.' => 'Es wurden keine Einträge gefunden, denen keine Einheit zugeordnet war.', 'No licenses were found that match the search criteria.' => 'Es wurden keine Lizenzen gefunden, auf die die Suchkriterien zutreffen.', @@ -844,6 +852,7 @@ gestartet', 'Pricegroups' => 'Preisgruppen', 'Print' => 'Drucken', 'Print and Post' => 'Drucken und Buchen', + 'Print dunnings' => 'Mahnungen drucken', 'Print options' => 'Druckoptionen', 'Printer' => 'Drucker', 'Printer Command' => 'Druckbefehl', @@ -1064,6 +1073,7 @@ gestartet', 'The dataset name is missing.' => 'Der Datenbankname fehlt.', 'The directory %s does not exist.' => 'Das Verzeichnis %s existiert nicht.', 'The dunning process started' => 'Der Mahnprozess ist gestartet.', + 'The dunnings have been printed.' => 'Die Mahnung(en) wurden gedruckt.', 'The email address is missing.' => 'Die Emailadresse fehlt.', 'The factor is missing in row %d.' => 'Der Faktor fehlt in Zeile %d.', 'The factor is missing.' => 'Der Faktor fehlt.', diff --git a/locale/de/dn b/locale/de/dn index b2be01512..8487a2292 100644 --- a/locale/de/dn +++ b/locale/de/dn @@ -13,6 +13,7 @@ $self->{texts} = { 'Attempt to call an undefined sub named \'%s\'' => 'Es wurde versucht, eine nicht definierte Unterfunktion namens \'%s\' aufzurufen.', 'Aug' => 'Aug', 'August' => 'August', + 'Automatically created invoice for fee and interest for dunning %s' => 'Automatisch erzeugte Rechnung für Gebühren und Zinsen zu Mahnung %s', 'Billing Address' => 'Rechnungsadresse', 'Bin' => 'Lagerplatz', 'Bin List' => 'Lagerliste', @@ -22,7 +23,9 @@ $self->{texts} = { 'Confirmation' => 'Auftragsbestätigung', 'Contact' => 'Kontakt', 'Continue' => 'Weiter', - 'Could not create dunning copy!' => 'Eine Kopie der Zahlungserinnerung konnte nicht erstellt werden.', + 'Could not print dunning.' => 'Die Mahnungen konnten nicht gedruckt werden.', + 'Could not spawn ghostscript.' => 'Die Anwendung "ghostscript" konnte nicht gestartet werden.', + 'Could not spawn the printer command.' => 'Die Druckanwendung konnte nicht gestartet werden.', 'Country' => 'Land', 'Credit Note' => 'Gutschrift', 'Customer Number' => 'Kundennummer', @@ -83,6 +86,7 @@ gestartet', 'No Customer was found matching the search parameters.' => 'Zu dem Suchbegriff wurde kein Endkunde gefunden', 'No Vendor was found matching the search parameters.' => 'Zu dem Suchbegriff wurde kein Händler gefunden', 'No customer has been selected yet.' => 'Es wurde noch kein Kunde ausgewählt.', + 'No dunnings have been selected for printing.' => 'Es wurden keine Mahnungen zum Drucken ausgewählt.', 'No employee was found matching the search parameters.' => 'Es wurde kein Angestellter gefunden, auf den die Suchparameter zutreffen.', 'No part was found matching the search parameters.' => 'Es wurde kein Artikel gefunden, auf den die Suchparameter zutreffen.', 'No project was found matching the search parameters.' => 'Es wurde kein Projekt gefunden, auf das die Suchparameter zutreffen.', @@ -117,6 +121,7 @@ gestartet', 'Postscript' => 'Postscript', 'Price' => 'Preis', 'Pricegroup' => 'Preisgruppe', + 'Print dunnings' => 'Mahnungen drucken', 'Printer' => 'Drucker', 'Proforma Invoice' => 'Proformarechnung', 'Project' => 'Projekt', @@ -163,6 +168,7 @@ gestartet', 'Subtotal' => 'Zwischensumme', 'Terms missing in row ' => '+Tage fehlen in Zeile ', 'The \'tag\' field must only consist of alphanumeric characters or the carachters - _ ( )' => 'Das Feld \'tag\' darf nur aus alphanumerischen Zeichen und den Zeichen - _ ( ) bestehen.', + 'The dunnings have been printed.' => 'Die Mahnung(en) wurden gedruckt.', 'Trying to call a sub without a name' => 'Es wurde versucht, eine Unterfunktion ohne Namen aufzurufen.', 'Unit' => 'Einheit', 'Unknown dependency \'%s\'.' => 'Unbekannte Abhängigkeit \'%s\'.', @@ -226,6 +232,7 @@ $self->{subs} = { 'print' => 'print', 'print_dunning' => 'print_dunning', 'print_form' => 'print_form', + 'print_multiple' => 'print_multiple', 'print_options' => 'print_options', 'project_selected' => 'project_selected', 'project_selection_internal' => 'project_selection_internal', @@ -259,6 +266,7 @@ $self->{subs} = { 'vendor_invoice' => 'vendor_invoice', 'vendor_selection' => 'vendor_selection', 'weiter' => 'continue', + 'drucken' => 'print', 'speichern' => 'save', }; diff --git a/sql/Pg-upgrade2/dunning_invoices_for_fees.sql b/sql/Pg-upgrade2/dunning_invoices_for_fees.sql new file mode 100644 index 000000000..08453c213 --- /dev/null +++ b/sql/Pg-upgrade2/dunning_invoices_for_fees.sql @@ -0,0 +1,11 @@ +-- @tag: dunning_invoices_for_fees +-- @description: Konfiguration für das automatische Erzeugen von Rechnungen über Mahngebühren sowie eine Verknüpfung zwischen Mahnungen und den dazu erzeugten Rechnungen. +-- @depends: release_2_4_2 +ALTER TABLE defaults ADD COLUMN dunning_create_invoices_for_fees boolean; +ALTER TABLE defaults ADD COLUMN dunning_AR_amount_fee integer; +ALTER TABLE defaults ADD COLUMN dunning_AR_amount_interest integer; +ALTER TABLE defaults ADD COLUMN dunning_AR integer; +UPDATE defaults SET dunning_create_invoices_for_fees = 'f'; + +ALTER TABLE dunning ADD COLUMN fee_interest_ar_id integer; +ALTER TABLE dunning ADD FOREIGN KEY (fee_interest_ar_id) REFERENCES ar (id); diff --git a/templates/webpages/dunning/edit_config_de.html b/templates/webpages/dunning/edit_config_de.html index 44c143818..47b51dda3 100644 --- a/templates/webpages/dunning/edit_config_de.html +++ b/templates/webpages/dunning/edit_config_de.html @@ -2,9 +2,19 @@ + +
-
+ @@ -78,9 +88,51 @@
+ + +
+ +

+ checked + value="1" onclick="enable_invoice_controls(this.checked);"> + +

+ + + + + + + + + + + + + + + + +
Konto für Gebühren + +
Konto für Zinsen + +
Buchen auf + +
+
- diff --git a/templates/webpages/dunning/edit_config_master.html b/templates/webpages/dunning/edit_config_master.html index 7bf723aa2..234f85956 100644 --- a/templates/webpages/dunning/edit_config_master.html +++ b/templates/webpages/dunning/edit_config_master.html @@ -2,9 +2,19 @@ + +
- + @@ -78,9 +88,51 @@
+ + +
+ +

+ checked + value="1" onclick="enable_invoice_controls(this.checked);"> + +

+ + + + + + + + + + + + + + + + +
Account for fees + +
Account for interest + +
Record in + +
+
- diff --git a/templates/webpages/dunning/set_email_de.html b/templates/webpages/dunning/set_email_de.html index fd2ee805d..d69c257c2 100644 --- a/templates/webpages/dunning/set_email_de.html +++ b/templates/webpages/dunning/set_email_de.html @@ -31,7 +31,7 @@ PDF anhängen - "> + checked> diff --git a/templates/webpages/dunning/set_email_master.html b/templates/webpages/dunning/set_email_master.html index 6c5a6cba3..70246e1b1 100644 --- a/templates/webpages/dunning/set_email_master.html +++ b/templates/webpages/dunning/set_email_master.html @@ -31,7 +31,7 @@ Attach PDF: - "> + checked> diff --git a/templates/webpages/dunning/show_dunning_de.html b/templates/webpages/dunning/show_dunning_de.html index 32766f562..8281f0753 100644 --- a/templates/webpages/dunning/show_dunning_de.html +++ b/templates/webpages/dunning/show_dunning_de.html @@ -5,51 +5,75 @@
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + +

+

MahnlevelKundennameRechnungsnummerRechnungsdatumFälligkeitsdatumBetragMahndatumZahlbar bisKumulierte GebührenZinsen
- - - - - -   - -  
+ + + + + + + + + + + + - - -
 MahnlevelKundennameRechnungsnummerRechnungsdatumFälligkeitsdatumBetragMahndatumZahlbar bisKumulierte GebührenZinsen

-

+ + + + + + + + + + + + + + + + + +   + + + +   + + + + + + + + + + + + + + +
+ +

+ + +

+ +

+ + +

+ +
diff --git a/templates/webpages/dunning/show_dunning_master.html b/templates/webpages/dunning/show_dunning_master.html index 22f128a66..308d31e90 100644 --- a/templates/webpages/dunning/show_dunning_master.html +++ b/templates/webpages/dunning/show_dunning_master.html @@ -5,51 +5,75 @@
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + +

+

Dunning LevelCustomernameInvnumberInvdateInvoice DuedateAmountDunning DateDunning DuedateTotal FeesInterest
- - - - - -   - -  
+ + + + + + + + + + + + - - -
 Dunning LevelCustomernameInvnumberInvdateInvoice DuedateAmountDunning DateDunning DuedateTotal FeesInterest

-

+ + + + + + + + + + + + + + + + + +   + + + +   + + + + + + + + + + + + + + +
+ +

+ + +

+ +

+ + +

+ + diff --git a/templates/webpages/dunning/show_invoices_de.html b/templates/webpages/dunning/show_invoices_de.html index 20c2621cc..e8eb76e73 100644 --- a/templates/webpages/dunning/show_invoices_de.html +++ b/templates/webpages/dunning/show_invoices_de.html @@ -76,8 +76,8 @@ - + + diff --git a/templates/webpages/dunning/show_invoices_master.html b/templates/webpages/dunning/show_invoices_master.html index c2d4a615c..eeefeb351 100644 --- a/templates/webpages/dunning/show_invoices_master.html +++ b/templates/webpages/dunning/show_invoices_master.html @@ -76,8 +76,8 @@ - + + -- 2.20.1