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|">|;
 
 212   if ($form->{menubar}) {
 
 213     require "$form->{path}/menu.pl";
 
 225   $lxdebug->leave_sub();
 
 229   $lxdebug->enter_sub();
 
 230   # setup customer selection
 
 231   $form->all_vc(\%myconfig, "customer", "AR");
 
 233   DN->get_config(\%myconfig, \%$form);
 
 235   if (@{ $form->{all_customer} }) {
 
 236     map { $customer .= "<option>$_->{name}--$_->{id}\n" }
 
 237       @{ $form->{all_customer} };
 
 238     $customer = qq|<select name=customer><option>\n$customer</select>|;
 
 240     $customer = qq|<input name=customer size=35>|;
 
 244   if (@{ $form->{DUNNING} }) {
 
 245     $form->{selectdunning_level} = "<option></option\n";
 
 247       $form->{selectdunning_level} .=
 
 248         "<option value=$_->{id}>$_->{dunning_description}</option>\n"
 
 249     } (@{ $form->{DUNNING} });
 
 253     <th align=right nowrap>| . $locale->text('Next Dunning Level') . qq|</th>
 
 254     <td colspan=3><select name=dunning_level>$form->{selectdunning_level}</select></td>
 
 256     | if $form->{selectdunning_level};
 
 259   if (@{ $form->{all_departments} }) {
 
 260     $form->{selectdepartment} = "<option>\n";
 
 262       $form->{selectdepartment} .=
 
 263         "<option>$_->{description}--$_->{id}\n"
 
 264     } (@{ $form->{all_departments} });
 
 268     <th align=right nowrap>| . $locale->text('Department') . qq|</th>
 
 269     <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
 
 271     | if $form->{selectdepartment};
 
 272   $form->{title}   = $locale->text('Start Dunning Process');
 
 273   $form->{nextsub} = "show_invoices";
 
 275   # use JavaScript Calendar or not
 
 276   $form->{jsscript} = $jscalendar;
 
 278   if ($form->{jsscript}) {
 
 280     # with JavaScript Calendar
 
 282       <td><input name=paymentuntil id=paymentuntil size=11 title="$myconfig{dateformat}">
 
 283       <input type=button name=paymentuntil id="trigger1" value=|
 
 284       . $locale->text('button') . qq|></td>
 
 289       Form->write_trigger(\%myconfig, "1", "paymentuntil", "BR", "trigger1");
 
 292     # without JavaScript Calendar
 
 294       qq|<td><input name=paymentuntil id=paymentuntil size=11 title="$myconfig{dateformat}"></td>|;
 
 296   $form->{fokus} = "search.customer";
 
 299 <body onLoad="fokus()">
 
 301 <form method=post name="search" action=$form->{script}>
 
 304   <tr><th class=listtop>$form->{title}</th></tr>
 
 310           <th align=right>| . $locale->text('Customer') . qq|</th>
 
 311           <td colspan=3>$customer</td>
 
 316           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 317           <td colspan=3><input name=invnumber size=20></td>
 
 320           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 321           <td colspan=3><input name=ordnumber size=20></td>
 
 324           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
 
 325           <td colspan=3><input name=notes size=40></td>
 
 328           <th align=right nowrap>| . $locale->text('Payment until') . qq|</th>
 
 331         <input type=hidden name=sort value=transdate>
 
 336     <td><hr size=3 noshade></td>
 
 342           <th align=right nowrap>| . $locale->text('Minimum Amount') . qq|</th>
 
 343           <td><input name=minamount size=6></td>
 
 346           <th align=right nowrap>| . $locale->text('Group Invoices') . qq|</th>
 
 347           <td><input type=checkbox value=1 name=groupinvoices checked></td>
 
 354 <input type=hidden name=nextsub value=$form->{nextsub}>
 
 356 <input type=hidden name=path value=$form->{path}>
 
 357 <input type=hidden name=login value=$form->{login}>
 
 358 <input type=hidden name=password value=$form->{password}>
 
 361 <input class=submit type=submit name=action value="|
 
 362     . $locale->text('Continue') . qq|">
 
 373   $lxdebug->leave_sub();
 
 378   $lxdebug->enter_sub();
 
 380   DN->get_invoices(\%myconfig, \%$form);
 
 381   $form->{title} = $locale->text('Start Dunning Process');
 
 383   if (@{ $form->{DUNNING_CONFIG} }) {
 
 384     foreach $item (@{ $form->{DUNNING_CONFIG} }) {
 
 385         $form->{selectdunning} .=
 
 386           "<option value=$item->{id}>$item->{dunning_description}</option>";
 
 391   $form->{nextsub} = "save_dunning";
 
 394     "$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}"
 
 395     unless $form->{callback};
 
 397   @column_index = qw(dunning_description active email customername invnumber invdate inv_duedate invamount next_duedate fee interest );
 
 399   $column_header{dunning_description} =
 
 400       qq|<th class=listheading>|
 
 401     . $locale->text('Current / Next Level')
 
 403   $column_header{active} =
 
 404       qq|<th class=listheading>|
 
 405     . $locale->text('Active?')
 
 407   $column_header{email} =
 
 408       qq|<th class=listheading>|
 
 409     . $locale->text('eMail?')
 
 411   $column_header{customername} =
 
 412       qq|<th class=listheading>|
 
 413     . $locale->text('Customername')
 
 415   $column_header{invnumber} =
 
 416       qq|<th class=listheading>|
 
 417     . $locale->text('Invno.')
 
 419   $column_header{inv_duedate} =
 
 420       qq|<th class=listheading>|
 
 421     . $locale->text('Inv. Duedate')
 
 423   $column_header{next_duedate} =
 
 424       qq|<th class=listheading>|
 
 425     . $locale->text('Dunning Duedate')
 
 427   $column_header{invdate} =
 
 428       qq|<th class=listheading>|
 
 429     . $locale->text('Invdate')
 
 431   $column_header{invamount} =
 
 432       qq|<th class=listheading>|
 
 433     . $locale->text('Amount')
 
 435   $column_header{fee} =
 
 436       qq|<th class=listheading>|
 
 437     . $locale->text('Total Fees')
 
 439   $column_header{interest} =
 
 440       qq|<th class=listheading>|
 
 441     . $locale->text('Total Interest')
 
 449 <script type="text/javascript" src="js/common.js"></script>
 
 450 <script type="text/javascript" src="js/dunning.js"></script>
 
 451 <form method=post action=$form->{script}>
 
 456     <th class=listtop colspan=9>$form->{title}</th>
 
 460   map { print "$column_header{$_}\n" } @column_index;
 
 466   foreach $ref (@{ $form->{DUNNINGS} }) {
 
 472         <tr valign=top class=listrow$j>
 
 475   $form->{selectdunning} =~ s/ selected//g;
 
 476   if ($ref->{next_dunning_id} ne "") {
 
 477      $form->{selectdunning} =~ s/value=$ref->{next_dunning_id}/value=$ref->{next_dunning_id} selected/;
 
 481   $dunning = qq|<select name=next_dunning_id_$i>$form->{selectdunning}</select>|;
 
 484     $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>|;
 
 485     my $active = "checked";
 
 486     $column_data{active} =
 
 487       qq|<td><input type=checkbox name=active_$i value=1 $active></td>|;
 
 488     my $email = "checked";
 
 489   $column_data{email} =
 
 490     qq|<td><input type=checkbox name=email_$i value=1 $email></td>|;
 
 491     $column_data{next_duedate}           = qq|<td><input type=hidden name=next_duedate_$i size=6 value="$ref->{next_duedate}">$ref->{next_duedate}</td>|;
 
 493     $column_data{inv_duedate}           = qq|<td><input type=hidden name=inv_duedate_$i size=6 value="$ref->{duedate}">$ref->{duedate}</td>|;
 
 494     $column_data{invdate}           = qq|<td><input type=hidden name=invdate_$i size=6 value="$ref->{transdate}">$ref->{transdate}</td>|;
 
 495     $column_data{invnumber}           = qq|<td><input type=hidden name=invnumber_$i size=6 value="$ref->{invnumber}">$ref->{invnumber}</td>|;
 
 496     $column_data{customername}           = qq|<td><input type=hidden name=customername_$i size=6 value="$ref->{customername}">$ref->{customername}</td>|;
 
 497     $column_data{invamount}           = qq|<td><input type=hidden name=invamount_$i size=6 value="$ref->{amount}">$ref->{amount}</td>|;
 
 498     $column_data{fee}           = qq|<td><input type=hidden name=fee_$i size=5 value="$ref->{fee}">$ref->{fee}</td>|;
 
 499     $column_data{interest}           = qq|<td><input type=hidden name=interest_$i size=4 value="$ref->{interest}">$ref->{interest}</td>|;
 
 503     map { print "$column_data{$_}\n" } @column_index;
 
 510   $form->{rowcount} = $i;
 
 517   <td><hr size=3 noshade></td>
 
 523 <form method=post action=$form->{script}>
 
 525 <input name=callback type=hidden value="$form->{callback}">
 
 526 <input name=rowcount type=hidden value="$form->{rowcount}">
 
 527 <input name=nextsub type=hidden value="$form->{nextsub}">
 
 528 <input name=groupinvoices type=hidden value="$form->{groupinvoices}">
 
 531 <input type=hidden name=path value=$form->{path}>
 
 532 <input type=hidden name=login value=$form->{login}>
 
 533 <input type=hidden name=password value=$form->{password}>
 
 535 <input class=submit type=submit name=action value="|
 
 536     . $locale->text('Continue') . qq|">|;
 
 538   if ($form->{menubar}) {
 
 539     require "$form->{path}/menu.pl";
 
 552   $lxdebug->leave_sub();
 
 557   $lxdebug->enter_sub();
 
 559   for my $i (1 .. $form->{rowcount}) {
 
 560     if ($form->{"dunning_description_$i"} ne "") {
 
 561       $form->isblank("dunning_level_$i", $locale->text('Dunning Level missing in row '). $i);
 
 562       $form->isblank("dunning_description_$i", $locale->text('Dunning Description missing in row '). $i);
 
 563       $form->isblank("terms_$i", $locale->text('Terms missing in row '). $i);
 
 564       $form->isblank("payment_terms_$i", $locale->text('Payment Terms missing in row '). $i);
 
 568   DN->save_config(\%myconfig, \%$form);
 
 569   $form->redirect($locale->text('Dunning Process Config saved!'));
 
 571   $lxdebug->leave_sub();
 
 575   $lxdebug->enter_sub();
 
 579   undef($form->{DUNNING_PDFS});
 
 580   if ($form->{groupinvoices}) {
 
 583       $form->{inv_ids} = "";
 
 586       for my $i (1 .. $form->{rowcount}) {
 
 587         $form->{"active_$i"} *= 1;
 
 588         $lastcustomer = $form->{"customer_id_$i"} unless ($lastcustomer);
 
 589         #print(STDERR qq|LASTCUSTOMER $lastcustomer AKTUELL $form->{"customer_id_$i"} ACTIVE? $form->{"active_$i"} active $active\n Zeile $i|);
 
 590         if ($form->{"active_$i"} && ($form->{"customer_id_$i"} == $lastcustomer)) {
 
 591           if ($form->{inv_ids}) {
 
 592             $form->{inv_ids} .= qq|,$form->{"inv_id_$i"}|;
 
 594             $form->{inv_ids} = qq|($form->{"inv_id_$i"}|;
 
 596           $form->{"active_$i"} = 0;
 
 597           $form->{"customer_id_$i"} = 0;
 
 599         } elsif ($form->{"active_$i"}) {
 
 602           $form->{"customer_id_$i"} = 0;
 
 605       if ($form->{inv_ids} ne "") {
 
 606         $form->{inv_ids} .= ")";
 
 607         #print(STDERR "Rufe save_dunning_auf für Zeile $form->{inv_ids} von Kunde $lastcustomer\n");
 
 608        DN->save_dunning(\%myconfig, \%$form, \@rows, $userspath,$spool, $sendmail);
 
 612     for my $i (1 .. $form->{rowcount}) {
 
 613       if ($form->{"active_$i"}) {
 
 615         $form->{inv_ids} = qq|($form->{"inv_id_$i"})|;
 
 617         #print(STDERR "Rufe save_dunning_auf für Zeile $i\n");
 
 618         DN->save_dunning(\%myconfig, \%$form, \@rows, $userspath,$spool, $sendmail);
 
 622   #print(STDERR Dumper($form->{DUNNING_PDFS}));
 
 623   if($form->{DUNNING_PDFS}) {
 
 624     DN->melt_pdfs(\%myconfig, \%$form,$spool);
 
 627   $form->redirect($locale->text('Dunning Process started for selected invoices!'));
 
 629   $lxdebug->leave_sub();
 
 633   $lxdebug->enter_sub();
 
 636   my $callback = "$form->{script}?action=set_email&";
 
 637   map({ $callback .= "$_=" . $form->escape($form->{$_}) . "&" }
 
 638       (qw(login path password name input_subject input_body input_attachment email_subject email_body email_attachment), grep({ /^[fl]_/ } keys %$form)));
 
 640   if ($form->{email_attachment}) {
 
 641     $form->{email_attachment} = "checked";
 
 643   $form->{"title"} = $locale->text("Set eMail text");
 
 645   print($form->parse_html_template("dunning/set_email"));
 
 647   $lxdebug->leave_sub();
 
 651   $lxdebug->enter_sub();
 
 652   # setup customer selection
 
 653   $form->all_vc(\%myconfig, "customer", "AR");
 
 655   DN->get_config(\%myconfig, \%$form);
 
 657   if (@{ $form->{all_customer} }) {
 
 658     map { $customer .= "<option>$_->{name}--$_->{id}\n" }
 
 659       @{ $form->{all_customer} };
 
 660     $customer = qq|<select name=customer><option>\n$customer</select>|;
 
 662     $customer = qq|<input name=customer size=35>|;
 
 666   if (@{ $form->{DUNNING} }) {
 
 667     $form->{selectdunning_level} = "<option></option\n";
 
 669       $form->{selectdunning_level} .=
 
 670         "<option value=$_->{id}>$_->{dunning_description}</option>\n"
 
 671     } (@{ $form->{DUNNING} });
 
 675     <th align=right nowrap>| . $locale->text('Next Dunning Level') . qq|</th>
 
 676     <td colspan=3><select name=dunning_level>$form->{selectdunning_level}</select></td>
 
 678     | if $form->{selectdunning_level};
 
 681   if (@{ $form->{all_departments} }) {
 
 682     $form->{selectdepartment} = "<option>\n";
 
 684       $form->{selectdepartment} .=
 
 685         "<option>$_->{description}--$_->{id}\n"
 
 686     } (@{ $form->{all_departments} });
 
 690     <th align=right nowrap>| . $locale->text('Department') . qq|</th>
 
 691     <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
 
 693     | if $form->{selectdepartment};
 
 694   $form->{title}   = $locale->text('Search Dunning');
 
 695   $form->{nextsub} = "show_dunning";
 
 697   # use JavaScript Calendar or not
 
 698   $form->{jsscript} = $jscalendar;
 
 700   if ($form->{jsscript}) {
 
 702     # with JavaScript Calendar
 
 704       <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}">
 
 705       <input type=button name=transdatefrom id="trigger1" value=|
 
 706       . $locale->text('button') . qq|></td>
 
 709       <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}">
 
 710       <input type=button name=transdateto id="trigger2" value=|
 
 711       . $locale->text('button') . qq|></td>
 
 714       <td><input name=dunningfrom id=dunningfrom size=11 title="$myconfig{dateformat}">
 
 715       <input type=button name=dunningfrom id="trigger3" value=|
 
 716       . $locale->text('button') . qq|></td>
 
 719       <td><input name=dunningto id=dunningto size=11 title="$myconfig{dateformat}">
 
 720       <input type=button name=dunningto id="trigger4" value=|
 
 721       . $locale->text('button') . qq|></td>
 
 726       Form->write_trigger(\%myconfig, "4", "transdatefrom", "BR", "trigger1", "transdateto", "BR", "trigger2", "dunningfrom", "BR", "trigger3", "dunningto", "BR", "trigger4");
 
 729     # without JavaScript Calendar
 
 731       qq|<td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
 
 733       qq|<td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}"></td>|;
 
 735       qq|<td><input name=dunningfrom id=dunningfrom size=11 title="$myconfig{dateformat}"></td>|;
 
 737       qq|<td><input name=dunningfrom id=dunningto size=11 title="$myconfig{dateformat}"></td>|;
 
 740   $form->{fokus} = "search.customer";
 
 743 <body onLoad="fokus()">
 
 745 <form method=post name="search" action=$form->{script}>
 
 748   <tr><th class=listtop>$form->{title}</th></tr>
 
 754           <th align=right>| . $locale->text('Customer') . qq|</th>
 
 755           <td colspan=3>$customer</td>
 
 760           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 761           <td colspan=3><input name=invnumber size=20></td>
 
 764           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 765           <td colspan=3><input name=ordnumber size=20></td>
 
 768           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
 
 769           <td colspan=3><input name=notes size=40></td>
 
 772           <th align=right nowrap>| . $locale->text('Invdate from') . qq|</th>
 
 774           <th align=right nowrap>| . $locale->text('To') . qq|</th>
 
 778           <th align=right nowrap>| . $locale->text('Dunning Date from') . qq|</th>
 
 780           <th align=right nowrap>| . $locale->text('To') . qq|</th>
 
 784         <input type=hidden name=sort value=transdate>
 
 789     <td><hr size=3 noshade></td>
 
 795           <th align=right nowrap>| . $locale->text('Show old dunnings') . qq|</th>
 
 796           <td><input type=checkbox value=1 name=showold></td>
 
 803 <input type=hidden name=nextsub value=$form->{nextsub}>
 
 805 <input type=hidden name=path value=$form->{path}>
 
 806 <input type=hidden name=login value=$form->{login}>
 
 807 <input type=hidden name=password value=$form->{password}>
 
 810 <input class=submit type=submit name=action value="|
 
 811     . $locale->text('Continue') . qq|">
 
 822   $lxdebug->leave_sub();
 
 827   $lxdebug->enter_sub();
 
 829   DN->get_dunning(\%myconfig, \%$form);
 
 830   $form->{title} = $locale->text('Dunning overview');
 
 837     "$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}"
 
 838     unless $form->{callback};
 
 840   @column_index = qw(dunning_description customername invnumber invdate inv_duedate invamount dunning_date next_duedate fee interest );
 
 842   $column_header{dunning_description} =
 
 843       qq|<th class=listheading>|
 
 844     . $locale->text('Dunning Level')
 
 846   $column_header{customername} =
 
 847       qq|<th class=listheading>|
 
 848     . $locale->text('Customername')
 
 850   $column_header{invnumber} =
 
 851       qq|<th class=listheading>|
 
 852     . $locale->text('Invnumber')
 
 854   $column_header{inv_duedate} =
 
 855       qq|<th class=listheading>|
 
 856     . $locale->text('Invoice Duedate')
 
 858   $column_header{dunning_date} =
 
 859       qq|<th class=listheading>|
 
 860     . $locale->text('Dunning Date')
 
 862   $column_header{next_duedate} =
 
 863       qq|<th class=listheading>|
 
 864     . $locale->text('Dunning Duedate')
 
 866   $column_header{invdate} =
 
 867       qq|<th class=listheading>|
 
 868     . $locale->text('Invdate')
 
 870   $column_header{invamount} =
 
 871       qq|<th class=listheading>|
 
 872     . $locale->text('Amount')
 
 874   $column_header{fee} =
 
 875       qq|<th class=listheading>|
 
 876     . $locale->text('Total Fees')
 
 878   $column_header{interest} =
 
 879       qq|<th class=listheading>|
 
 880     . $locale->text('Total Interest')
 
 888 <script type="text/javascript" src="js/common.js"></script>
 
 889 <script type="text/javascript" src="js/dunning.js"></script>
 
 890 <form method=post action=$form->{script}>
 
 895     <th class=listtop colspan=9>$form->{title}</th>
 
 899   map { print "$column_header{$_}\n" } @column_index;
 
 905   foreach $ref (@{ $form->{DUNNINGS} }) {
 
 911         <tr valign=top class=listrow$j>
 
 916   $dunning = qq|<select name=next_dunning_id_$i>$form->{selectdunning}</select>|;
 
 919     $column_data{dunning_description}           = qq|<td>$ref->{dunning_description}</td>|;
 
 920     my $active = "checked";
 
 921     $column_data{dunning_date}           = qq|<td>$ref->{dunning_date}</td>|;
 
 922     $column_data{next_duedate}           = qq|<td>$ref->{dunning_duedate}</td>|;
 
 924     $column_data{inv_duedate}           = qq|<td>$ref->{duedate}</td>|;
 
 925     $column_data{invdate}           = qq|<td>$ref->{transdate}</td>|;
 
 926     $column_data{invnumber}           = qq|<td><a href=ar.pl?action=edit&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$form->{callback}>$ref->{invnumber}</a></td>|;
 
 927     $column_data{customername}           = qq|<td>$ref->{customername}</td>|;
 
 928     $column_data{invamount}           = qq|<td>$ref->{amount}</td>|;
 
 929     $column_data{fee}           = qq|<td>$ref->{fee}</td>|;
 
 930     $column_data{interest}           = qq|<td>$ref->{interest}</td>|;
 
 934     map { print "$column_data{$_}\n" } @column_index;
 
 941   $form->{rowcount} = $i;
 
 948   <td><hr size=3 noshade></td>
 
 953 <form method=post action=$form->{script}>
 
 955 <input name=callback type=hidden value="$form->{callback}">
 
 956 <input name=rowcount type=hidden value="$form->{rowcount}">
 
 957 <input name=nextsub type=hidden value="$form->{nextsub}">
 
 960 <input type=hidden name=path value=$form->{path}>
 
 961 <input type=hidden name=login value=$form->{login}>
 
 962 <input type=hidden name=password value=$form->{password}>
 
 965   if ($form->{menubar}) {
 
 966     require "$form->{path}/menu.pl";
 
 979   $lxdebug->leave_sub();