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
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
30 # Dunning process module
32 #======================================================================
39 require "$form->{path}/io.pl";
40 require "$form->{path}/arap.pl";
45 $lxdebug->enter_sub();
47 # edit all dunning config data
50 DN->get_config(\%myconfig, \%$form);
51 $form->{title} = $locale->text('Edit Dunning Process Config');
54 "$form->{script}?action=edit_config&path=$form->{path}&login=$form->{login}&password=$form->{password}"
55 unless $form->{callback};
57 @column_index = qw(dunning_level dunning_description active auto email payment_terms terms fee interest template);
59 $column_header{dunning_level} =
60 qq|<th class=listheading>|
61 . $locale->text('Dunning Level')
63 $column_header{dunning_description} =
64 qq|<th class=listheading>|
65 . $locale->text('Dunning Description')
67 $column_header{active} =
68 qq|<th class=listheading>|
69 . $locale->text('Active?')
71 $column_header{auto} =
72 qq|<th class=listheading>|
73 . $locale->text('Auto Send?')
75 $column_header{email} =
76 qq|<th class=listheading>|
77 . $locale->text('eMail Send?')
79 $column_header{payment_terms} =
80 qq|<th class=listheading>|
81 . $locale->text('Fristsetzung')
83 $column_header{terms} =
84 qq|<th class=listheading>|
85 . $locale->text('Duedate +Days')
88 qq|<th class=listheading>|
89 . $locale->text('Fee')
91 $column_header{interest} =
92 qq|<th class=listheading>|
93 . $locale->text('Interest Rate')
95 $column_header{template} =
96 qq|<th class=listheading>|
97 . $locale->text('Template')
101 <script type="text/javascript" src="js/common.js"></script>
102 <script type="text/javascript" src="js/dunning.js"></script>
103 <form method=post action=$form->{script}>
108 <th class=listtop colspan=9>$form->{title}</th>
112 map { print "$column_header{$_}\n" } @column_index;
118 foreach $ref (@{ $form->{DUNNING} }) {
124 <tr valign=top class=listrow$j>
128 $column_data{dunning_level} =
129 qq|<td><input type=hidden name=dunning_level_$i size=2 value="$i"><input type=hidden name=id_$i value="$ref->{id}">$i</td>|;
130 $column_data{dunning_description} = qq|<td><input name=dunning_description_$i value="$ref->{dunning_description}"></td>|;
131 my $active = ($ref->{active}) ? "checked" : "";
132 $column_data{active} =
133 qq|<td><input type=checkbox name=active_$i value=1 $active></td>|;
134 my $email = ($ref->{email}) ? "checked" : "";
135 $column_data{email} =
136 qq|<td><input type=checkbox name=email_$i value=1 $email><button type="button" onclick="set_email_window('email_subject_$i', 'email_body_$i', 'email_attachment_$i')">| . $locale->text('L') . qq|</button><input type=hidden name=email_body_$i value="$ref->{email_body}"><input type=hidden name=email_subject_$i value="$ref->{email_subject}"><input type=hidden name=email_attachment_$i value="$ref->{email_attachment}"></td>|;
138 my $auto = ($ref->{auto}) ? "checked" : "";
140 qq|<td><input type=checkbox name=auto_$i value=1 $auto></td>|;
141 $column_data{payment_terms} = qq|<td><input name=payment_terms_$i size=3 value="$ref->{payment_terms}"></td>|;
142 $column_data{terms} = qq|<td><input name=terms_$i size=3 value="$ref->{terms}"></td>|;
143 $column_data{fee} = qq|<td><input name=fee_$i size=5 value="$ref->{fee}"></td>|;
144 $column_data{interest} = qq|<td><input name=interest_$i size=4 value="$ref->{interest}">%</td>|;
145 $column_data{template} = qq|<td><input name=template_$i value="$ref->{template}"></td>|;
149 map { print "$column_data{$_}\n" } @column_index;
159 <tr valign=top class=listrow$j>
163 $column_data{dunning_level} =
164 qq|<td><input type=hidden size=2 name=dunning_level_$i value=$i>$i</td>|;
165 $column_data{dunning_description} = qq|<td><input name=dunning_description_$i ></td>|;
167 $column_data{active} =
168 qq|<td><input type=checkbox name=active_$i value=1 $active></td>|;
170 $column_data{email} =
171 qq|<td><input type=checkbox name=email_$i value=1 $email><button type="button" onclick="set_email_window('email_subject_$i', 'email_body_$i', 'email_attachment_$i')">| . $locale->text('L') . qq|</button><input type=hidden name=email_body_$i><input type=hidden name=email_subject_$i><input type=hidden name=email_attachment_$i></td>|;
174 qq|<td><input type=checkbox name=auto_$i value=1 $auto></td>|;
175 $column_data{payment_terms} = qq|<td><input size=3 name=payment_terms_$i></td>|;
176 $column_data{terms} = qq|<td><input size=3 name=terms_$i></td>|;
177 $column_data{fee} = qq|<td><input size=5 name=fee_$i></td>|;
178 $column_data{interest} = qq|<td><input size=4 name=interest_$i>%</td>|;
179 $column_data{template} = qq|<td><input name=template_$i></td>|;
182 $form->{rowcount} = $i;
183 map { print "$column_data{$_}\n" } @column_index;
195 <td><hr size=3 noshade></td>
200 <form method=post action=$form->{script}>
202 <input name=callback type=hidden value="$form->{callback}">
203 <input name=rowcount type=hidden value="$form->{rowcount}">
205 <input type=hidden name=path value=$form->{path}>
206 <input type=hidden name=login value=$form->{login}>
207 <input type=hidden name=password value=$form->{password}>
209 <input class=submit type=submit name=action value="|
210 . $locale->text('Save') . qq|">
218 $lxdebug->leave_sub();
222 $lxdebug->enter_sub();
223 # setup customer selection
224 $form->all_vc(\%myconfig, "customer", "AR");
226 DN->get_config(\%myconfig, \%$form);
228 if (@{ $form->{all_customer} }) {
229 map { $customer .= "<option>$_->{name}--$_->{id}\n" }
230 @{ $form->{all_customer} };
231 $customer = qq|<select name=customer><option>\n$customer</select>|;
233 $customer = qq|<input name=customer size=35>|;
237 if (@{ $form->{DUNNING} }) {
238 $form->{selectdunning_level} = "<option></option\n";
240 $form->{selectdunning_level} .=
241 "<option value=$_->{id}>$_->{dunning_description}</option>\n"
242 } (@{ $form->{DUNNING} });
246 <th align=right nowrap>| . $locale->text('Next Dunning Level') . qq|</th>
247 <td colspan=3><select name=dunning_level>$form->{selectdunning_level}</select></td>
249 | if $form->{selectdunning_level};
252 if (@{ $form->{all_departments} }) {
253 $form->{selectdepartment} = "<option>\n";
255 $form->{selectdepartment} .=
256 "<option>$_->{description}--$_->{id}\n"
257 } (@{ $form->{all_departments} });
261 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
262 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
264 | if $form->{selectdepartment};
265 $form->{title} = $locale->text('Start Dunning Process');
266 $form->{nextsub} = "show_invoices";
268 # use JavaScript Calendar or not
269 $form->{jsscript} = $jscalendar;
271 if ($form->{jsscript}) {
273 # with JavaScript Calendar
275 <td><input name=paymentuntil id=paymentuntil size=11 title="$myconfig{dateformat}">
276 <input type=button name=paymentuntil id="trigger1" value=|
277 . $locale->text('button') . qq|></td>
282 Form->write_trigger(\%myconfig, "1", "paymentuntil", "BR", "trigger1");
285 # without JavaScript Calendar
287 qq|<td><input name=paymentuntil id=paymentuntil size=11 title="$myconfig{dateformat}"></td>|;
289 $form->{fokus} = "search.customer";
292 <body onLoad="fokus()">
294 <form method=post name="search" action=$form->{script}>
297 <tr><th class=listtop>$form->{title}</th></tr>
303 <th align=right>| . $locale->text('Customer') . qq|</th>
304 <td colspan=3>$customer</td>
309 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
310 <td colspan=3><input name=invnumber size=20></td>
313 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
314 <td colspan=3><input name=ordnumber size=20></td>
317 <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
318 <td colspan=3><input name=notes size=40></td>
321 <th align=right nowrap>| . $locale->text('Payment until') . qq|</th>
324 <input type=hidden name=sort value=transdate>
329 <td><hr size=3 noshade></td>
335 <th align=right nowrap>| . $locale->text('Minimum Amount') . qq|</th>
336 <td><input name=minamount size=6></td>
339 <th align=right nowrap>| . $locale->text('Group Invoices') . qq|</th>
340 <td><input type=checkbox value=1 name=groupinvoices checked></td>
347 <input type=hidden name=nextsub value=$form->{nextsub}>
349 <input type=hidden name=path value=$form->{path}>
350 <input type=hidden name=login value=$form->{login}>
351 <input type=hidden name=password value=$form->{password}>
354 <input class=submit type=submit name=action value="|
355 . $locale->text('Continue') . qq|">
366 $lxdebug->leave_sub();
371 $lxdebug->enter_sub();
373 DN->get_invoices(\%myconfig, \%$form);
374 $form->{title} = $locale->text('Start Dunning Process');
376 if (@{ $form->{DUNNING_CONFIG} }) {
377 foreach $item (@{ $form->{DUNNING_CONFIG} }) {
378 $form->{selectdunning} .=
379 "<option value=$item->{id}>$item->{dunning_description}</option>";
384 $form->{nextsub} = "save_dunning";
387 "$form->{script}?action=show_invoices&path=$form->{path}&login=$form->{login}&password=$form->{password}&customer=$form->{customer}&invnumber=$form->{invnumber}&ordnumber=$form->{ordnumber}&paymentuntil=$form->{paymentuntil}&groupinvoices=$form->{groupinvoices}&minamount=$form->{minamount}&dunning_level=$form->{dunning_level}¬es=$form->{notes}"
388 unless $form->{callback};
390 @column_index = qw(dunning_description active email customername invnumber invdate inv_duedate invamount next_duedate fee interest );
392 $column_header{dunning_description} =
393 qq|<th class=listheading>|
394 . $locale->text('Current / Next Level')
396 $column_header{active} =
397 qq|<th class=listheading>|
398 . $locale->text('Active?')
400 $column_header{email} =
401 qq|<th class=listheading>|
402 . $locale->text('eMail?')
404 $column_header{customername} =
405 qq|<th class=listheading>|
406 . $locale->text('Customername')
408 $column_header{invnumber} =
409 qq|<th class=listheading>|
410 . $locale->text('Invno.')
412 $column_header{inv_duedate} =
413 qq|<th class=listheading>|
414 . $locale->text('Inv. Duedate')
416 $column_header{next_duedate} =
417 qq|<th class=listheading>|
418 . $locale->text('Dunning Duedate')
420 $column_header{invdate} =
421 qq|<th class=listheading>|
422 . $locale->text('Invdate')
424 $column_header{invamount} =
425 qq|<th class=listheading>|
426 . $locale->text('Amount')
428 $column_header{fee} =
429 qq|<th class=listheading>|
430 . $locale->text('Total Fees')
432 $column_header{interest} =
433 qq|<th class=listheading>|
434 . $locale->text('Total Interest')
442 <script type="text/javascript" src="js/common.js"></script>
443 <script type="text/javascript" src="js/dunning.js"></script>
444 <form name=Form method=post action=$form->{script}>
449 <th class=listtop colspan=9>$form->{title}</th>
453 map { print "$column_header{$_}\n" } @column_index;
459 foreach $ref (@{ $form->{DUNNINGS} }) {
465 <tr valign=top class=listrow$j>
468 $form->{selectdunning} =~ s/ selected//g;
469 if ($ref->{next_dunning_id} ne "") {
470 $form->{selectdunning} =~ s/value=$ref->{next_dunning_id}/value=$ref->{next_dunning_id} selected/;
474 $dunning = qq|<select name=next_dunning_id_$i>$form->{selectdunning}</select>|;
477 $column_data{dunning_description} = qq|<td><input type=hidden name=inv_id_$i size=2 value="$ref->{id}"><input type=hidden name=customer_id_$i size=2 value="$ref->{customer_id}">$ref->{dunning_level}: $dunning</td>|;
478 my $active = ($ref->{active}) ? "checked" : "";
479 $column_data{active} =
480 qq|<td><input type=checkbox name=active_$i value=1 $active></td>|;
481 my $email = ($ref->{email}) ? "checked" : "";
482 $column_data{email} =
483 qq|<td><input type=checkbox name=email_$i value=1 $email></td>|;
484 $column_data{next_duedate} = qq|<td><input type=hidden name=next_duedate_$i size=6 value="$ref->{next_duedate}">$ref->{next_duedate}</td>|;
486 $column_data{inv_duedate} = qq|<td><input type=hidden name=inv_duedate_$i size=6 value="$ref->{duedate}">$ref->{duedate}</td>|;
487 $column_data{invdate} = qq|<td><input type=hidden name=invdate_$i size=6 value="$ref->{transdate}">$ref->{transdate}</td>|;
488 $column_data{invnumber} = qq|<td><input type=hidden name=invnumber_$i size=6 value="$ref->{invnumber}">$ref->{invnumber}</td>|;
489 $column_data{customername} = qq|<td><input type=hidden name=customername_$i size=6 value="$ref->{customername}">$ref->{customername}</td>|;
490 $column_data{invamount} = qq|<td><input type=hidden name=invamount_$i size=6 value="$ref->{amount}">$ref->{amount}</td>|;
491 $column_data{fee} = qq|<td><input type=hidden name=fee_$i size=5 value="$ref->{fee}">$ref->{fee}</td>|;
492 $column_data{interest} = qq|<td><input type=hidden name=interest_$i size=4 value="$ref->{interest}">$ref->{interest}</td>|;
496 map { print "$column_data{$_}\n" } @column_index;
503 $form->{rowcount} = $i;
510 <td><hr size=3 noshade></td>
516 <form method=post action=$form->{script}>
518 <input name=callback type=hidden value="$form->{callback}">
519 <input name=rowcount type=hidden value="$form->{rowcount}">
520 <input name=nextsub type=hidden value="$form->{nextsub}">
521 <input name=groupinvoices type=hidden value="$form->{groupinvoices}">
524 <input type=hidden name=path value=$form->{path}>
525 <input type=hidden name=login value=$form->{login}>
526 <input type=hidden name=password value=$form->{password}>
527 <input type="hidden" name="action">
528 <input type="submit" name="dummy" value="|
529 . $locale->text('Continue') . qq|" onclick="this.disabled=true; this.value='| . $locale->text("The dunning process started") . qq|'; document.Form.action.value='| . $locale->text('Continue') . qq|'; document.Form.submit()">
538 $lxdebug->leave_sub();
543 $lxdebug->enter_sub();
545 for my $i (1 .. $form->{rowcount}) {
546 if ($form->{"dunning_description_$i"} ne "") {
547 $form->isblank("dunning_level_$i", $locale->text('Dunning Level missing in row '). $i);
548 $form->isblank("dunning_description_$i", $locale->text('Dunning Description missing in row '). $i);
549 $form->isblank("terms_$i", $locale->text('Terms missing in row '). $i);
550 $form->isblank("payment_terms_$i", $locale->text('Payment Terms missing in row '). $i);
554 DN->save_config(\%myconfig, \%$form);
556 if(!exists $form->{addition} && $form->{id} ne "") {
557 $form->{addition} = "SAVED FOR DUNNING";
558 $form->save_history($form->dbconnect(\%myconfig));
560 # /saving the history
561 $form->redirect($locale->text('Dunning Process Config saved!'));
563 $lxdebug->leave_sub();
567 $lxdebug->enter_sub();
571 undef($form->{DUNNING_PDFS});
572 if ($form->{groupinvoices}) {
575 $form->{inv_ids} = "";
578 for my $i (1 .. $form->{rowcount}) {
579 $form->{"active_$i"} *= 1;
580 $lastcustomer = $form->{"customer_id_$i"} unless ($lastcustomer);
581 if ($form->{"active_$i"} && ($form->{"customer_id_$i"} == $lastcustomer)) {
582 if ($form->{inv_ids}) {
583 $form->{inv_ids} .= qq|,$form->{"inv_id_$i"}|;
585 $form->{inv_ids} = qq|($form->{"inv_id_$i"}|;
587 $form->{"active_$i"} = 0;
588 $form->{"customer_id_$i"} = 0;
590 } elsif ($form->{"active_$i"}) {
593 $form->{"customer_id_$i"} = 0;
596 if ($form->{inv_ids} ne "") {
597 $form->{inv_ids} .= ")";
598 DN->save_dunning(\%myconfig, \%$form, \@rows, $userspath,$spool, $sendmail);
602 for my $i (1 .. $form->{rowcount}) {
603 if ($form->{"active_$i"}) {
605 $form->{inv_ids} = qq|($form->{"inv_id_$i"})|;
607 DN->save_dunning(\%myconfig, \%$form, \@rows, $userspath,$spool, $sendmail);
611 if($form->{DUNNING_PDFS}) {
612 DN->melt_pdfs(\%myconfig, \%$form,$spool);
615 if(!exists $form->{addition} && $form->{id} ne "") {
616 $form->{addition} = "DUNNING STARTED";
617 $form->save_history($form->dbconnect(\%myconfig));
619 # /saving the history
620 $form->redirect($locale->text('Dunning Process started for selected invoices!'));
622 $lxdebug->leave_sub();
626 $lxdebug->enter_sub();
629 my $callback = "$form->{script}?action=set_email&";
630 map({ $callback .= "$_=" . $form->escape($form->{$_}) . "&" }
631 (qw(login path password name input_subject input_body input_attachment email_subject email_body email_attachment), grep({ /^[fl]_/ } keys %$form)));
633 if ($form->{email_attachment}) {
634 $form->{email_attachment} = "checked";
636 $form->{"title"} = $locale->text("Set eMail text");
638 print($form->parse_html_template("dunning/set_email"));
640 $lxdebug->leave_sub();
644 $lxdebug->enter_sub();
645 # setup customer selection
646 $form->all_vc(\%myconfig, "customer", "AR");
648 DN->get_config(\%myconfig, \%$form);
650 if (@{ $form->{all_customer} }) {
651 map { $customer .= "<option>$_->{name}--$_->{id}\n" }
652 @{ $form->{all_customer} };
653 $customer = qq|<select name=customer><option>\n$customer</select>|;
655 $customer = qq|<input name=customer size=35>|;
659 if (@{ $form->{DUNNING} }) {
660 $form->{selectdunning_level} = "<option></option\n";
662 $form->{selectdunning_level} .=
663 "<option value=$_->{id}>$_->{dunning_description}</option>\n"
664 } (@{ $form->{DUNNING} });
668 <th align=right nowrap>| . $locale->text('Next Dunning Level') . qq|</th>
669 <td colspan=3><select name=dunning_level>$form->{selectdunning_level}</select></td>
671 | if $form->{selectdunning_level};
674 if (@{ $form->{all_departments} }) {
675 $form->{selectdepartment} = "<option>\n";
677 $form->{selectdepartment} .=
678 "<option>$_->{description}--$_->{id}\n"
679 } (@{ $form->{all_departments} });
683 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
684 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
686 | if $form->{selectdepartment};
687 $form->{title} = $locale->text('Search Dunning');
688 $form->{nextsub} = "show_dunning";
690 # use JavaScript Calendar or not
691 $form->{jsscript} = $jscalendar;
693 if ($form->{jsscript}) {
695 # with JavaScript Calendar
697 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}">
698 <input type=button name=transdatefrom id="trigger1" value=|
699 . $locale->text('button') . qq|></td>
702 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}">
703 <input type=button name=transdateto id="trigger2" value=|
704 . $locale->text('button') . qq|></td>
707 <td><input name=dunningfrom id=dunningfrom size=11 title="$myconfig{dateformat}">
708 <input type=button name=dunningfrom id="trigger3" value=|
709 . $locale->text('button') . qq|></td>
712 <td><input name=dunningto id=dunningto size=11 title="$myconfig{dateformat}">
713 <input type=button name=dunningto id="trigger4" value=|
714 . $locale->text('button') . qq|></td>
719 Form->write_trigger(\%myconfig, "4", "transdatefrom", "BR", "trigger1", "transdateto", "BR", "trigger2", "dunningfrom", "BR", "trigger3", "dunningto", "BR", "trigger4");
722 # without JavaScript Calendar
724 qq|<td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
726 qq|<td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}"></td>|;
728 qq|<td><input name=dunningfrom id=dunningfrom size=11 title="$myconfig{dateformat}"></td>|;
730 qq|<td><input name=dunningfrom id=dunningto size=11 title="$myconfig{dateformat}"></td>|;
733 $form->{fokus} = "search.customer";
736 <body onLoad="fokus()">
738 <form method=post name="search" action=$form->{script}>
741 <tr><th class=listtop>$form->{title}</th></tr>
747 <th align=right>| . $locale->text('Customer') . qq|</th>
748 <td colspan=3>$customer</td>
753 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
754 <td colspan=3><input name=invnumber size=20></td>
757 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
758 <td colspan=3><input name=ordnumber size=20></td>
761 <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
762 <td colspan=3><input name=notes size=40></td>
765 <th align=right nowrap>| . $locale->text('Invdate from') . qq|</th>
767 <th align=right nowrap>| . $locale->text('To') . qq|</th>
771 <th align=right nowrap>| . $locale->text('Dunning Date from') . qq|</th>
773 <th align=right nowrap>| . $locale->text('To') . qq|</th>
777 <input type=hidden name=sort value=transdate>
782 <td><hr size=3 noshade></td>
788 <th align=right nowrap>| . $locale->text('Show old dunnings') . qq|</th>
789 <td><input type=checkbox value=1 name=showold></td>
796 <input type=hidden name=nextsub value=$form->{nextsub}>
798 <input type=hidden name=path value=$form->{path}>
799 <input type=hidden name=login value=$form->{login}>
800 <input type=hidden name=password value=$form->{password}>
803 <input class=submit type=submit name=action value="|
804 . $locale->text('Continue') . qq|">
815 $lxdebug->leave_sub();
820 $lxdebug->enter_sub();
822 DN->get_dunning(\%myconfig, \%$form);
823 $form->{title} = $locale->text('Dunning overview');
830 "$form->{script}?action=show_dunning&path=$form->{path}&login=$form->{login}&password=$form->{password}&customer=$form->{customer}&invnumber=$form->{invnumber}&ordnumber=$form->{ordnumber}&transdatefrom=$form->{transdatefrom}&transdateto=$form->{transdateto}&dunningfrom=$form->{dunningfrom}&dunningto=$form->{dunningto}¬es=$form->{notes}&showold=$form->{showold}&dunning_level=$form->{dunning_level}"
831 unless $form->{callback};
833 @column_index = qw(dunning_description customername invnumber invdate inv_duedate invamount dunning_date next_duedate fee interest );
835 $column_header{dunning_description} =
836 qq|<th class=listheading>|
837 . $locale->text('Dunning Level')
839 $column_header{customername} =
840 qq|<th class=listheading>|
841 . $locale->text('Customername')
843 $column_header{invnumber} =
844 qq|<th class=listheading>|
845 . $locale->text('Invnumber')
847 $column_header{inv_duedate} =
848 qq|<th class=listheading>|
849 . $locale->text('Invoice Duedate')
851 $column_header{dunning_date} =
852 qq|<th class=listheading>|
853 . $locale->text('Dunning Date')
855 $column_header{next_duedate} =
856 qq|<th class=listheading>|
857 . $locale->text('Dunning Duedate')
859 $column_header{invdate} =
860 qq|<th class=listheading>|
861 . $locale->text('Invdate')
863 $column_header{invamount} =
864 qq|<th class=listheading>|
865 . $locale->text('Amount')
867 $column_header{fee} =
868 qq|<th class=listheading>|
869 . $locale->text('Total Fees')
871 $column_header{interest} =
872 qq|<th class=listheading>|
873 . $locale->text('Total Interest')
881 <script type="text/javascript" src="js/common.js"></script>
882 <script type="text/javascript" src="js/dunning.js"></script>
883 <form method=post action=$form->{script}>
888 <th class=listtop colspan=9>$form->{title}</th>
892 map { print "$column_header{$_}\n" } @column_index;
898 foreach $ref (@{ $form->{DUNNINGS} }) {
904 <tr valign=top class=listrow$j>
909 $dunning = qq|<select name=next_dunning_id_$i>$form->{selectdunning}</select>|;
911 if ($ref->{invoice}) {
916 $column_data{dunning_description} = qq|<td><a href=dn.pl?action=print_dunning&dunning_id=$ref->{dunning_id}&format=pdf&media=screen&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$form->{callback}>$ref->{dunning_description}</a></td>|;
917 my $active = "checked";
918 $column_data{dunning_date} = qq|<td>$ref->{dunning_date}</td>|;
919 $column_data{next_duedate} = qq|<td>$ref->{dunning_duedate}</td>|;
921 $column_data{inv_duedate} = qq|<td>$ref->{duedate}</td>|;
922 $column_data{invdate} = qq|<td>$ref->{transdate}</td>|;
923 $column_data{invnumber} = qq|<td><a href=$script?action=edit&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$form->{callback}>$ref->{invnumber}</a></td>|;
924 $column_data{customername} = qq|<td>$ref->{customername}</td>|;
925 $column_data{invamount} = qq|<td>$ref->{amount}</td>|;
926 $column_data{fee} = qq|<td>$ref->{fee}</td>|;
927 $column_data{interest} = qq|<td>$ref->{interest}</td>|;
931 map { print "$column_data{$_}\n" } @column_index;
938 $form->{rowcount} = $i;
945 <td><hr size=3 noshade></td>
950 <form method=post action=$form->{script}>
952 <input name=callback type=hidden value="$form->{callback}">
953 <input name=rowcount type=hidden value="$form->{rowcount}">
954 <input name=nextsub type=hidden value="$form->{nextsub}">
957 <input type=hidden name=path value=$form->{path}>
958 <input type=hidden name=login value=$form->{login}>
959 <input type=hidden name=password value=$form->{password}>
968 $lxdebug->leave_sub();
973 $lxdebug->enter_sub();
975 DN->print_dunning(\%myconfig, \%$form, $form->{dunning_id}, $userspath,$spool, $sendmail);
977 if($form->{DUNNING_PDFS}) {
978 DN->melt_pdfs(\%myconfig, \%$form,$spool);
980 $form->redirect($locale->text('Could not create dunning copy!'));
983 $lxdebug->leave_sub();