85f28b0b3816c7094be596fc2b727592adf0d9c4
[kivitendo-erp.git] / bin / mozilla / dn.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2006
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
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.
20 #
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 #======================================================================
29 #
30 # Dunning process module
31 #
32 #======================================================================
33
34 use SL::IS;
35 use SL::PE;
36 use SL::DN;
37 use Data::Dumper;
38
39 require "$form->{path}/io.pl";
40 require "$form->{path}/arap.pl";
41
42 1;
43
44 sub edit_config {
45   $lxdebug->enter_sub();
46
47   # edit all dunning config data
48
49   $form->header;
50   DN->get_config(\%myconfig, \%$form);
51   $form->{title} = $locale->text('Edit Dunning Process Config');
52   
53   $form->{callback} =
54     "$form->{script}?action=edit_config&path=$form->{path}&login=$form->{login}&password=$form->{password}"
55     unless $form->{callback};
56
57   @column_index = qw(dunning_level dunning_description active auto email payment_terms terms fee interest template);
58
59   $column_header{dunning_level} =
60       qq|<th class=listheading>|
61     . $locale->text('Dunning Level')
62     . qq|</th>|;
63   $column_header{dunning_description} =
64       qq|<th class=listheading>|
65     . $locale->text('Dunning Description')
66     . qq|</th>|;
67   $column_header{active} =
68       qq|<th class=listheading>|
69     . $locale->text('Active?')
70     . qq|</th>|;
71   $column_header{auto} =
72       qq|<th class=listheading>|
73     . $locale->text('Auto Send?')
74     . qq|</th>|;
75   $column_header{email} =
76       qq|<th class=listheading>|
77     . $locale->text('eMail Send?')
78     . qq|</th>|;
79   $column_header{payment_terms} =
80       qq|<th class=listheading>|
81     . $locale->text('Fristsetzung')
82     . qq|</th>|;
83   $column_header{terms} =
84       qq|<th class=listheading>|
85     . $locale->text('Duedate +Days')
86     . qq|</th>|;
87   $column_header{fee} =
88       qq|<th class=listheading>|
89     . $locale->text('Fee')
90     . qq|</th>|;
91   $column_header{interest} =
92       qq|<th class=listheading>|
93     . $locale->text('Interest Rate')
94     . qq|</th>|;
95   $column_header{template} =
96       qq|<th class=listheading>|
97     . $locale->text('Template')
98     . qq|</th>|;
99   print qq|
100 <body>
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}>
104
105
106 <table width=100%>
107   <tr>
108     <th class=listtop colspan=10>$form->{title}</th>
109   </tr>
110   <tr height="5"></tr>
111   <tr>|;
112   map { print "$column_header{$_}\n" } @column_index;
113
114   print qq|
115         </tr>
116 |;
117   my $i = 0;
118   foreach $ref (@{ $form->{DUNNING} }) {
119
120     $i++;
121     my $j = $i % 2;
122
123     print qq|
124         <tr valign=top class=listrow$j>
125 |;
126
127
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>|;
137
138     my $auto = ($ref->{auto}) ? "checked" : "";
139     $column_data{auto} =
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>|;
146
147
148
149     map { print "$column_data{$_}\n" } @column_index;
150
151     print qq|
152         </tr>
153 |;
154   }
155   $i++;
156   my $j = $i % 2;
157
158   print qq|
159         <tr valign=top class=listrow$j>
160 |;
161
162
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>|;
166   $column_data{active} =
167     qq|<td><input type=checkbox name=active_$i value=1></td>|;
168   my $email = "";
169   $column_data{email} =
170     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>|;
171   my $auto = "";
172   $column_data{auto} =
173     qq|<td><input type=checkbox name=auto_$i value=1 $auto></td>|;
174   $column_data{payment_terms}           = qq|<td><input  size=3 name=payment_terms_$i></td>|;
175   $column_data{terms}           = qq|<td><input  size=3 name=terms_$i></td>|;
176   $column_data{fee}           = qq|<td><input  size=5 name=fee_$i></td>|;
177   $column_data{interest}           = qq|<td><input  size=4 name=interest_$i>%</td>|;
178   $column_data{template}           = qq|<td><input name=template_$i></td>|;
179
180
181   $form->{rowcount} = $i;
182   map { print "$column_data{$_}\n" } @column_index;
183
184   print qq|
185       </tr>
186 |;
187
188
189   print qq|
190       </table>
191     </td>
192   </tr>
193   <tr>
194   <td><hr size=3 noshade></td>
195   </tr>
196 </table>
197
198 <br>
199 <form method=post action=$form->{script}>
200
201 <input name=callback type=hidden value="$form->{callback}">
202 <input name=rowcount type=hidden value="$form->{rowcount}">
203
204 <input type=hidden name=path value=$form->{path}>
205 <input type=hidden name=login value=$form->{login}>
206 <input type=hidden name=password value=$form->{password}>
207
208 <input class=submit type=submit name=action value="|
209     . $locale->text('Save') . qq|">
210
211   </form>
212
213   </body>
214   </html>
215 |;
216
217   $lxdebug->leave_sub();
218 }
219
220 sub add {
221   $lxdebug->enter_sub();
222   # setup customer selection
223   $form->all_vc(\%myconfig, "customer", "AR");
224
225   DN->get_config(\%myconfig, \%$form);
226
227   if (@{ $form->{all_customer} }) {
228     map { $customer .= "<option>$_->{name}--$_->{id}\n" }
229       @{ $form->{all_customer} };
230     $customer = qq|<select name=customer><option>\n$customer</select>|;
231   } else {
232     $customer = qq|<input name=customer size=35>|;
233   }
234
235   # dunning levels
236   if (@{ $form->{DUNNING} }) {
237     $form->{selectdunning_level} = "<option></option\n";
238     map {
239       $form->{selectdunning_level} .=
240         "<option value=$_->{id}>$_->{dunning_description}</option>\n"
241     } (@{ $form->{DUNNING} });
242   }
243   $dunning_level = qq| 
244     <tr> 
245     <th align=right nowrap>| . $locale->text('Next Dunning Level') . qq|</th>
246     <td colspan=3><select name=dunning_level>$form->{selectdunning_level}</select></td>
247     </tr>
248     | if $form->{selectdunning_level};
249
250   # departments
251   if (@{ $form->{all_departments} }) {
252     $form->{selectdepartment} = "<option>\n";
253     map {
254       $form->{selectdepartment} .=
255         "<option>$_->{description}--$_->{id}\n"
256     } (@{ $form->{all_departments} });
257   }
258   $department = qq| 
259     <tr> 
260     <th align=right nowrap>| . $locale->text('Department') . qq|</th>
261     <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
262     </tr>
263     | if $form->{selectdepartment};
264   $form->{title}   = $locale->text('Start Dunning Process');
265   $form->{nextsub} = "show_invoices";
266
267   # use JavaScript Calendar or not
268   $form->{jsscript} = $jscalendar;
269   $jsscript = "";
270   if ($form->{jsscript}) {
271
272     # with JavaScript Calendar
273     $button1 = qq|
274       <td><input name=paymentuntil id=paymentuntil size=11 title="$myconfig{dateformat}">
275       <input type=button name=paymentuntil id="trigger1" value=|
276       . $locale->text('button') . qq|></td>
277       |;
278
279     #write Trigger
280     $jsscript =
281       Form->write_trigger(\%myconfig, "1", "paymentuntil", "BR", "trigger1");
282   } else {
283
284     # without JavaScript Calendar
285     $button1 =
286       qq|<td><input name=paymentuntil id=paymentuntil size=11 title="$myconfig{dateformat}"></td>|;
287   }
288   $form->{fokus} = "search.customer";
289   $form->header;
290   print qq|
291 <body onLoad="fokus()">
292
293 <form method=post name="search" action=$form->{script}>
294
295 <table width=100%>
296   <tr><th class=listtop>$form->{title}</th></tr>
297   <tr height="5"></tr>
298   <tr>
299     <td>
300       <table>
301         <tr>
302           <th align=right>| . $locale->text('Customer') . qq|</th>
303           <td colspan=3>$customer</td>
304         </tr>
305         $dunning_level
306         $department
307         <tr>
308           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
309           <td colspan=3><input name=invnumber size=20></td>
310         </tr>
311         <tr>
312           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
313           <td colspan=3><input name=ordnumber size=20></td>
314         </tr>
315         <tr>
316           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
317           <td colspan=3><input name=notes size=40></td>
318         </tr>
319         <tr>
320           <th align=right nowrap>| . $locale->text('Payment until') . qq|</th>
321           $button1
322         </tr>
323       </table>
324     </td>
325   </tr>
326   <tr>
327     <td><hr size=3 noshade></td>
328   </tr>
329   <tr>
330     <td>
331       <table>
332         <tr>
333           <th align=right nowrap>| . $locale->text('Minimum Amount') . qq|</th>
334           <td><input name=minamount size=6></td>
335         </tr>
336         <tr>
337           <th align=right nowrap>| . $locale->text('Group Invoices') . qq|</th>
338           <td><input type=checkbox value=1 name=groupinvoices checked></td>
339         </tr>
340       </table>
341     </td>
342   </tr>
343 </table>
344
345 <input type=hidden name=nextsub value=$form->{nextsub}>
346
347 <input type=hidden name=path value=$form->{path}>
348 <input type=hidden name=login value=$form->{login}>
349 <input type=hidden name=password value=$form->{password}>
350
351 <br>
352 <input class=submit type=submit name=action value="|
353     . $locale->text('Continue') . qq|">
354
355 </form>
356
357 </body>
358
359 $jsscript
360
361 </html>
362 |;
363
364   $lxdebug->leave_sub();
365
366 }
367
368 sub show_invoices {
369   $lxdebug->enter_sub();
370
371   DN->get_invoices(\%myconfig, \%$form);
372   $form->{title} = $locale->text('Start Dunning Process');
373
374   if (@{ $form->{DUNNING_CONFIG} }) {
375     foreach $item (@{ $form->{DUNNING_CONFIG} }) {
376         $form->{selectdunning} .=
377           "<option value=$item->{id}>$item->{dunning_description}</option>";
378     }
379   }
380
381
382   $form->{nextsub} = "save_dunning";
383   
384   $form->{callback} =
385     "$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}&notes=$form->{notes}"
386     unless $form->{callback};
387
388   @column_index = qw(dunning_description active email customername invnumber invdate inv_duedate invamount next_duedate fee interest );
389
390   $column_header{dunning_description} =
391       qq|<th class=listheading>|
392     . $locale->text('Current / Next Level')
393     . qq|</th>|;
394   $column_header{active} =
395       qq|<th class=listheading>|
396     . $locale->text('Active?')
397     . qq|</th>|;
398   $column_header{email} =
399       qq|<th class=listheading>|
400     . $locale->text('eMail?')
401     . qq|</th>|;
402   $column_header{customername} =
403       qq|<th class=listheading>|
404     . $locale->text('Customername')
405     . qq|</th>|;
406   $column_header{invnumber} =
407       qq|<th class=listheading>|
408     . $locale->text('Invno.')
409     . qq|</th>|;
410   $column_header{inv_duedate} =
411       qq|<th class=listheading>|
412     . $locale->text('Inv. Duedate')
413     . qq|</th>|;
414   $column_header{next_duedate} =
415       qq|<th class=listheading>|
416     . $locale->text('Dunning Duedate')
417     . qq|</th>|;
418   $column_header{invdate} =
419       qq|<th class=listheading>|
420     . $locale->text('Invdate')
421     . qq|</th>|;
422   $column_header{invamount} =
423       qq|<th class=listheading>|
424     . $locale->text('Amount')
425     . qq|</th>|;
426   $column_header{fee} =
427       qq|<th class=listheading>|
428     . $locale->text('Total Fees')
429     . qq|</th>|;
430   $column_header{interest} =
431       qq|<th class=listheading>|
432     . $locale->text('Total Interest')
433     . qq|</th>|;
434
435   $form->header;
436
437
438   print qq|
439 <body>
440 <script type="text/javascript" src="js/common.js"></script>
441 <script type="text/javascript" src="js/dunning.js"></script>
442 <form name=Form method=post action=$form->{script}>
443
444
445 <table width=100%>
446   <tr>
447     <th class=listtop colspan=11>$form->{title}</th>
448   </tr>
449   <tr height="5"></tr>
450   <tr>|;
451   map { print "$column_header{$_}\n" } @column_index;
452
453   print qq|
454         </tr>
455 |;
456   my $i = 0;
457   foreach $ref (@{ $form->{DUNNINGS} }) {
458
459     $i++;
460     my $j = $i % 2;
461
462     print qq|
463         <tr valign=top class=listrow$j>
464 |;
465
466   $form->{selectdunning} =~ s/ selected//g;
467   if ($ref->{next_dunning_config_id} ne "") {
468      $form->{selectdunning} =~ s/value=$ref->{next_dunning_config_id}/value=$ref->{next_dunning_config_id} selected/;
469   }
470   
471
472   $dunning = qq|<select name=next_dunning_config_id_$i>$form->{selectdunning}</select>|;
473
474
475     $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}:&nbsp;$dunning</td>|;
476     my $active = ($ref->{active}) ? "checked" : "";
477     $column_data{active} =
478       qq|<td><input type=checkbox name=active_$i value=1 $active></td>|;
479     my $email = ($ref->{email}) ? "checked" : "";
480   $column_data{email} =
481     qq|<td><input type=checkbox name=email_$i value=1 $email></td>|;
482     $column_data{next_duedate}           = qq|<td><input type=hidden name=next_duedate_$i size=6 value="$ref->{next_duedate}">$ref->{next_duedate}</td>|;
483
484     $column_data{inv_duedate}           = qq|<td><input type=hidden name=inv_duedate_$i size=6 value="$ref->{duedate}">$ref->{duedate}</td>|;
485     $column_data{invdate}           = qq|<td><input type=hidden name=invdate_$i size=6 value="$ref->{transdate}">$ref->{transdate}</td>|;
486     $column_data{invnumber}           = qq|<td><input type=hidden name=invnumber_$i size=6 value="$ref->{invnumber}">$ref->{invnumber}</td>|;
487     $column_data{customername}           = qq|<td><input type=hidden name=customername_$i size=6 value="$ref->{customername}">$ref->{customername}</td>|;
488     $column_data{invamount}           = qq|<td><input type=hidden name=invamount_$i size=6 value="$ref->{amount}">$ref->{amount}</td>|;
489     $column_data{fee}           = qq|<td><input type=hidden name=fee_$i size=5 value="$ref->{fee}">$ref->{fee}</td>|;
490     $column_data{interest}           = qq|<td><input type=hidden name=interest_$i size=4 value="$ref->{interest}">$ref->{interest}</td>|;
491
492
493
494     map { print "$column_data{$_}\n" } @column_index;
495
496     print qq|
497         </tr>
498 |;
499   }
500
501   $form->{rowcount} = $i;
502
503   print qq|
504       </table>
505     </td>
506   </tr>
507   <tr>
508   <td><hr size=3 noshade></td>
509   </tr>
510 </table>|;
511   print_options();
512   print qq|
513 <br>
514 <form method=post action=$form->{script}>
515
516 <input name=callback type=hidden value="$form->{callback}">
517 <input name=rowcount type=hidden value="$form->{rowcount}">
518 <input name=nextsub type=hidden value="$form->{nextsub}">
519 <input name=groupinvoices type=hidden value="$form->{groupinvoices}">
520
521
522 <input type=hidden name=path value=$form->{path}>
523 <input type=hidden name=login value=$form->{login}>
524 <input type=hidden name=password value=$form->{password}>
525 <input type="hidden" name="action">
526 <input type="submit" name="dummy" value="|
527     . $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()">
528
529   </form>
530
531   </body>
532   </html>
533 |;
534
535
536   $lxdebug->leave_sub();
537
538 }
539
540 sub save {
541   $lxdebug->enter_sub();
542
543   for my $i (1 .. $form->{rowcount}) {
544     if ($form->{"dunning_description_$i"} ne "") {
545       $form->isblank("dunning_level_$i", $locale->text('Dunning Level missing in row '). $i);
546       $form->isblank("dunning_description_$i", $locale->text('Dunning Description missing in row '). $i);
547       $form->isblank("terms_$i", $locale->text('Terms missing in row '). $i);
548       $form->isblank("payment_terms_$i", $locale->text('Payment Terms missing in row '). $i);
549     }
550   }
551
552   DN->save_config(\%myconfig, \%$form);
553   # saving the history
554   if(!exists $form->{addition} && $form->{id} ne "") {
555         $form->{addition} = "SAVED FOR DUNNING";
556         $form->save_history($form->dbconnect(\%myconfig));
557   }
558   # /saving the history 
559   $form->redirect($locale->text('Dunning Process Config saved!'));
560
561   $lxdebug->leave_sub();
562 }
563
564 sub save_dunning {
565   $lxdebug->enter_sub();
566
567   my $active=1;
568   my @rows = ();
569   undef($form->{DUNNING_PDFS});
570   if ($form->{groupinvoices}) {
571     while ($active) {
572       $lastcustomer = 0;
573       $form->{inv_ids} = [];
574       $active = 0;
575       @rows = ();
576       for my $i (1 .. $form->{rowcount}) {
577         $form->{"active_$i"} *= 1;
578         $lastcustomer = $form->{"customer_id_$i"} unless ($lastcustomer);
579         if ($form->{"active_$i"} && ($form->{"customer_id_$i"} == $lastcustomer)) {
580           push(@{ $form->{inv_ids} }, $form->{"inv_id_$i"});
581           $form->{"active_$i"} = 0;
582           $form->{"customer_id_$i"} = 0;
583           push(@rows, $i);
584         } elsif ($form->{"active_$i"}) {
585           $active = 1;
586         } else {
587           $form->{"customer_id_$i"} = 0;
588         }
589       }
590       if (scalar(@{ $form->{inv_ids} }) != 0) {
591         DN->save_dunning(\%myconfig, \%$form, \@rows, $userspath, $spool, $sendmail);
592       }
593     }
594   } else {
595     for my $i (1 .. $form->{rowcount}) {
596       if ($form->{"active_$i"}) {
597         @rows = ();
598         $form->{inv_ids} = [ $form->{"inv_id_$i"} ];
599         push(@rows, $i);
600         DN->save_dunning(\%myconfig, \%$form, \@rows, $userspath, $spool, $sendmail);
601       }
602     }
603   }
604   if($form->{DUNNING_PDFS}) {
605     DN->melt_pdfs(\%myconfig, \%$form,$spool);
606   }
607   # saving the history
608   if(!exists $form->{addition} && $form->{id} ne "") {
609         $form->{addition} = "DUNNING STARTED";
610         $form->save_history($form->dbconnect(\%myconfig));
611   }
612   # /saving the history 
613   $form->redirect($locale->text('Dunning Process started for selected invoices!'));
614
615   $lxdebug->leave_sub();
616 }
617   
618 sub set_email {
619   $lxdebug->enter_sub();
620
621
622   my $callback = "$form->{script}?action=set_email&";
623   map({ $callback .= "$_=" . $form->escape($form->{$_}) . "&" }
624       (qw(login path password name input_subject input_body input_attachment email_subject email_body email_attachment), grep({ /^[fl]_/ } keys %$form)));
625
626   if ($form->{email_attachment}) {
627     $form->{email_attachment} = "checked";
628   }
629   $form->{"title"} = $locale->text("Set eMail text");
630   $form->header();
631   print($form->parse_html_template("dunning/set_email"));
632
633   $lxdebug->leave_sub();
634 }
635
636 sub search {
637   $lxdebug->enter_sub();
638   # setup customer selection
639   $form->all_vc(\%myconfig, "customer", "AR");
640
641   DN->get_config(\%myconfig, \%$form);
642
643   if (@{ $form->{all_customer} }) {
644     map { $customer .= "<option>$_->{name}--$_->{id}\n" }
645       @{ $form->{all_customer} };
646     $customer = qq|<select name=customer><option>\n$customer</select>|;
647   } else {
648     $customer = qq|<input name=customer size=35>|;
649   }
650
651   # dunning levels
652   if (@{ $form->{DUNNING} }) {
653     $form->{selectdunning_level} = "<option></option\n";
654     map {
655       $form->{selectdunning_level} .=
656         "<option value=$_->{id}>$_->{dunning_description}</option>\n"
657     } (@{ $form->{DUNNING} });
658   }
659   $dunning_level = qq| 
660     <tr> 
661     <th align=right nowrap>| . $locale->text('Next Dunning Level') . qq|</th>
662     <td colspan=3><select name=dunning_level>$form->{selectdunning_level}</select></td>
663     </tr>
664     | if $form->{selectdunning_level};
665
666   # departments
667   if (@{ $form->{all_departments} }) {
668     $form->{selectdepartment} = "<option>\n";
669     map {
670       $form->{selectdepartment} .=
671         "<option>$_->{description}--$_->{id}\n"
672     } (@{ $form->{all_departments} });
673   }
674   $department = qq| 
675     <tr> 
676     <th align=right nowrap>| . $locale->text('Department') . qq|</th>
677     <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
678     </tr>
679     | if $form->{selectdepartment};
680   $form->{title}   = $locale->text('Search Dunning');
681   $form->{nextsub} = "show_dunning";
682
683   # use JavaScript Calendar or not
684   $form->{jsscript} = $jscalendar;
685   $jsscript = "";
686   if ($form->{jsscript}) {
687
688     # with JavaScript Calendar
689     $button1 = qq|
690       <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}">
691       <input type=button name=transdatefrom id="trigger1" value=|
692       . $locale->text('button') . qq|></td>
693       |;
694     $button2 = qq|
695       <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}">
696       <input type=button name=transdateto id="trigger2" value=|
697       . $locale->text('button') . qq|></td>
698       |;
699     $button3 = qq|
700       <td><input name=dunningfrom id=dunningfrom size=11 title="$myconfig{dateformat}">
701       <input type=button name=dunningfrom id="trigger3" value=|
702       . $locale->text('button') . qq|></td>
703       |;
704     $button4 = qq|
705       <td><input name=dunningto id=dunningto size=11 title="$myconfig{dateformat}">
706       <input type=button name=dunningto id="trigger4" value=|
707       . $locale->text('button') . qq|></td>
708       |;
709
710     #write Trigger
711     $jsscript =
712       Form->write_trigger(\%myconfig, "4", "transdatefrom", "BR", "trigger1", "transdateto", "BR", "trigger2", "dunningfrom", "BR", "trigger3", "dunningto", "BR", "trigger4");
713   } else {
714
715     # without JavaScript Calendar
716     $button1 =
717       qq|<td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
718     $button2 =
719       qq|<td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}"></td>|;
720     $button1 =
721       qq|<td><input name=dunningfrom id=dunningfrom size=11 title="$myconfig{dateformat}"></td>|;
722     $button1 =
723       qq|<td><input name=dunningfrom id=dunningto size=11 title="$myconfig{dateformat}"></td>|;
724   }
725
726   $form->{fokus} = "search.customer";
727   $form->header;
728   print qq|
729 <body onLoad="fokus()">
730
731 <form method=post name="search" action=$form->{script}>
732
733 <table width=100%>
734   <tr><th class=listtop>$form->{title}</th></tr>
735   <tr height="5"></tr>
736   <tr>
737     <td>
738       <table>
739         <tr>
740           <th align=right>| . $locale->text('Customer') . qq|</th>
741           <td colspan=3>$customer</td>
742         </tr>
743         $dunning_level
744         $department
745         <tr>
746           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
747           <td colspan=3><input name=invnumber size=20></td>
748         </tr>
749         <tr>
750           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
751           <td colspan=3><input name=ordnumber size=20></td>
752         </tr>
753         <tr>
754           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
755           <td colspan=3><input name=notes size=40></td>
756         </tr>
757         <tr>
758           <th align=right nowrap>| . $locale->text('Invdate from') . qq|</th>
759           $button1
760           <th align=right nowrap>| . $locale->text('To') . qq|</th>
761           $button2
762         </tr>
763         <tr>
764           <th align=right nowrap>| . $locale->text('Dunning Date from') . qq|</th>
765           $button3
766           <th align=right nowrap>| . $locale->text('To') . qq|</th>
767           $button4
768         </tr>
769
770       </table>
771     </td>
772   </tr>
773   <tr>
774     <td><hr size=3 noshade></td>
775   </tr>
776   <tr>
777     <td>
778       <table>
779         <tr>
780           <th align=right nowrap>| . $locale->text('Show old dunnings') . qq|</th>
781           <td><input type=checkbox value=1 name=showold></td>
782         </tr>
783       </table>
784     </td>
785   </tr>
786 </table>
787
788 <input type=hidden name=nextsub value=$form->{nextsub}>
789
790 <input type=hidden name=path value=$form->{path}>
791 <input type=hidden name=login value=$form->{login}>
792 <input type=hidden name=password value=$form->{password}>
793
794 <br>
795 <input class=submit type=submit name=action value="|
796     . $locale->text('Continue') . qq|">
797
798 </form>
799
800 </body>
801
802 $jsscript
803
804 </html>
805 |;
806
807   $lxdebug->leave_sub();
808
809 }
810
811 sub show_dunning {
812   $lxdebug->enter_sub();
813
814   DN->get_dunning(\%myconfig, \%$form);
815   $form->{title} = $locale->text('Dunning overview');
816
817
818
819
820   
821   $form->{callback} =
822     "$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}&notes=$form->{notes}&showold=$form->{showold}&dunning_level=$form->{dunning_level}"
823     unless $form->{callback};
824
825   @column_index = qw(dunning_description customername invnumber invdate inv_duedate invamount dunning_date next_duedate fee interest );
826
827   $column_header{dunning_description} =
828       qq|<th class=listheading>|
829     . $locale->text('Dunning Level')
830     . qq|</th>|;
831   $column_header{customername} =
832       qq|<th class=listheading>|
833     . $locale->text('Customername')
834     . qq|</th>|;
835   $column_header{invnumber} =
836       qq|<th class=listheading>|
837     . $locale->text('Invnumber')
838     . qq|</th>|;
839   $column_header{inv_duedate} =
840       qq|<th class=listheading>|
841     . $locale->text('Invoice Duedate')
842     . qq|</th>|;
843   $column_header{dunning_date} =
844       qq|<th class=listheading>|
845     . $locale->text('Dunning Date')
846     . qq|</th>|;
847   $column_header{next_duedate} =
848       qq|<th class=listheading>|
849     . $locale->text('Dunning Duedate')
850     . qq|</th>|;
851   $column_header{invdate} =
852       qq|<th class=listheading>|
853     . $locale->text('Invdate')
854     . qq|</th>|;
855   $column_header{invamount} =
856       qq|<th class=listheading>|
857     . $locale->text('Amount')
858     . qq|</th>|;
859   $column_header{fee} =
860       qq|<th class=listheading>|
861     . $locale->text('Total Fees')
862     . qq|</th>|;
863   $column_header{interest} =
864       qq|<th class=listheading>|
865     . $locale->text('Total Interest')
866     . qq|</th>|;
867
868   $form->header;
869
870
871   print qq|
872 <body>
873 <script type="text/javascript" src="js/common.js"></script>
874 <script type="text/javascript" src="js/dunning.js"></script>
875 <form method=post action=$form->{script}>
876
877
878 <table width=100%>
879   <tr>
880     <th class=listtop colspan=10>$form->{title}</th>
881   </tr>
882   <tr height="5"></tr>
883   <tr>|;
884   map { print "$column_header{$_}\n" } @column_index;
885
886   print qq|
887         </tr>
888 |;
889
890   my %columns = (
891     "dunning_duedate" => "next_duedate",
892     "duedate" => "inv_duedate",
893     "transdate" => "invdate",
894     "amount" => "invamount",
895     );
896
897   my $i = 0;
898   my $j = 0;
899   my ($previous_dunning_id, $first_row_for_dunning);
900   foreach $ref (@{ $form->{DUNNINGS} }) {
901     $i++;
902
903     if ($previous_dunning_id != $ref->{dunning_id}) {
904       $j++;
905       $j = $j % 2;
906       $first_row_for_dunning = 1;
907     } else {
908       $first_row_for_dunning = 0;
909     }
910     $previous_dunning_id = $ref->{dunning_id};
911
912     print qq|
913         <tr valign=top class=listrow$j>
914 |;
915
916   
917
918     foreach (qw(dunning_date dunning_duedate duedate transdate customername
919                 amount fee interest)) {
920       my $col = $columns{$_} ? $columns{$_} : $_;
921       $column_data{$col} = "<td>" . H($ref->{$_}) . "</td>";
922     }
923
924     if ($first_row_for_dunning) {
925       $column_data{dunning_description} =
926         qq|<td><a href="dn.pl?action=print_dunning&format=pdf&media=screen&| .
927         qq|dunning_id=| . E($ref->{dunning_id}) .
928         join(map({ "&${_}=" . E($form->{$_}) } qw(login path password callback))) .
929         qq|">| . H($ref->{dunning_description}) . qq|</a></td>|;
930     } else {
931       $column_data{dunning_description} = qq|<td>&nbsp;</td>|;
932       $column_data{customername} = qq|<td>&nbsp;</td>|;
933     }
934
935     $column_data{invnumber} =
936       qq|<td><a href="| . ($ref->{invoice} ? "is.pl" : "ar.pl" ) .
937       qq|?action=edit&id=| . H($ref->{id}) .
938       join(map({ "&${_}=" . E($form->{$_}) } qw(login path password callback))) .
939       qq|">| . H($ref->{invnumber}) . qq|</a></td>|;
940
941     map { print "$column_data{$_}\n" } @column_index;
942
943     print qq|
944         </tr>
945 |;
946   }
947
948   $form->{rowcount} = $i;
949
950   print qq|
951       </table>
952     </td>
953   </tr>
954   <tr>
955   <td><hr size=3 noshade></td>
956   </tr>
957 </table>
958
959 <br>
960 <form method=post action=$form->{script}>
961
962 <input name=callback type=hidden value="$form->{callback}">
963 <input name=rowcount type=hidden value="$form->{rowcount}">
964 <input name=nextsub type=hidden value="$form->{nextsub}">
965
966
967 <input type=hidden name=path value=$form->{path}>
968 <input type=hidden name=login value=$form->{login}>
969 <input type=hidden name=password value=$form->{password}>
970
971   </form>
972
973   </body>
974   </html>
975 |;
976
977
978   $lxdebug->leave_sub();
979
980 }
981
982 sub print_dunning {
983   $lxdebug->enter_sub();
984
985   DN->print_dunning(\%myconfig, \%$form, $form->{dunning_id}, $userspath, $spool, $sendmail);
986
987   if($form->{DUNNING_PDFS}) {
988     DN->melt_pdfs(\%myconfig, \%$form,$spool);
989   } else {
990     $form->redirect($locale->text('Could not create dunning copy!'));
991   }
992
993   $lxdebug->leave_sub();
994
995 }
996
997 # end of main
998