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 # Inventory received module
 
  32 #======================================================================
 
  38 require "bin/mozilla/io.pl";
 
  39 require "bin/mozilla/arap.pl";
 
  40 require "bin/mozilla/common.pl";
 
  41 require "bin/mozilla/drafts.pl";
 
  48   $lxdebug->enter_sub();
 
  50   return $lxdebug->leave_sub() if (load_draft_maybe());
 
  52   $form->{title} = $locale->text('Add Vendor Invoice');
 
  58   $lxdebug->leave_sub();
 
  62   $lxdebug->enter_sub();
 
  65   $form->{javascript} = qq|<script type=text/javascript src=js/show_history.js></script>|;
 
  66   #/show hhistory button
 
  68   $form->{title} = $locale->text('Edit Vendor Invoice');
 
  74   $lxdebug->leave_sub();
 
  78   $lxdebug->enter_sub();
 
  81   $form->{webdav} = $webdav;
 
  84   $form->{jscalendar} = $jscalendar;
 
  86   $form->create_links("AP", \%myconfig, "vendor");
 
  88   #quote all_vendor Bug 133
 
  89   foreach $ref (@{ $form->{all_vendor} }) {
 
  90     $ref->{name} = $form->quote($ref->{name});
 
  93   if ($form->{all_vendor}) {
 
  94     unless ($form->{vendor_id}) {
 
  95       $form->{vendor_id} = $form->{all_vendor}->[0]->{id};
 
  98   if ($form->{payment_id}) {
 
  99     $payment_id = $form->{payment_id};
 
 101   if ($form->{language_id}) {
 
 102     $language_id = $form->{language_id};
 
 104   if ($form->{taxzone_id}) {
 
 105     $taxzone_id = $form->{taxzone_id};
 
 108   $cp_id = $form->{cp_id};
 
 109   IR->get_vendor(\%myconfig, \%$form);
 
 110   IR->retrieve_invoice(\%myconfig, \%$form);
 
 111   $form->{cp_id} = $cp_id;
 
 114     $form->{payment_id} = $payment_id;
 
 117     $form->{language_id} = $language_id;
 
 120     $form->{taxzone_id} = $taxzone_id;
 
 123   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 125   $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
 
 128   if (@{ $form->{all_vendor} }) {
 
 129     $form->{vendor} = "$form->{vendor}--$form->{vendor_id}";
 
 130     map { $form->{selectvendor} .= "<option>$_->{name}--$_->{id}\n" }
 
 131       (@{ $form->{all_vendor} });
 
 135   if ($form->{all_departments}) {
 
 136     $form->{selectdepartment} = "<option>\n";
 
 137     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 140       $form->{selectdepartment} .=
 
 141         "<option>$_->{description}--$_->{id}\n"
 
 142     } (@{ $form->{all_departments} });
 
 146   $form->{forex} = $form->{exchangerate};
 
 147   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
 149   foreach $key (keys %{ $form->{AP_links} }) {
 
 151     foreach $ref (@{ $form->{AP_links}{$key} }) {
 
 152       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
 
 155     if ($key eq "AP_paid") {
 
 156       for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
 
 157         $form->{"AP_paid_$i"} =
 
 158           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
 
 161         $form->{"paid_$i"}     = $form->{acc_trans}{$key}->[$i - 1]->{amount};
 
 162         $form->{"datepaid_$i"} =
 
 163           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
 
 164         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
 
 165           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
 
 166         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
 
 167         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
 
 169         $form->{paidaccounts} = $i;
 
 173         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
 
 178   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
 
 180   $form->{AP} = $form->{AP_1} unless $form->{id};
 
 183     ($form->datetonum($form->{invdate}, \%myconfig) <=
 
 184      $form->datetonum($form->{closedto}, \%myconfig));
 
 186   $lxdebug->leave_sub();
 
 189 sub prepare_invoice {
 
 190   $lxdebug->enter_sub();
 
 194     map { $form->{$_} =~ s/\"/"/g } qw(invnumber ordnumber quonumber);
 
 197     foreach $ref (@{ $form->{invoice_details} }) {
 
 199       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
 
 201       ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 203       $decimalplaces = ($dec > 2) ? $dec : 2;
 
 205       $form->{"sellprice_$i"} =
 
 206         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 209       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 210       $dec_qty = length $dec_qty;
 
 213         $form->format_amount(\%myconfig, ($form->{"qty_$i"} * -1), $dec_qty);
 
 215       $form->{rowcount} = $i;
 
 219   $lxdebug->leave_sub();
 
 223   $lxdebug->enter_sub();
 
 225   # set option selected
 
 226   foreach $item (qw(AP vendor currency department)) {
 
 227     $form->{"select$item"} =~ s/ selected//;
 
 228     $form->{"select$item"} =~
 
 229       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 233     ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
 
 235   #quote selectvendor Bug 133
 
 236   $form->{"selectvendor"} = $form->quote($form->{"selectvendor"});
 
 238   #substitute \n and \r to \s (bug 543)
 
 239   $form->{"selectvendor"} =~ s/[\n\r]/ /g;
 
 241   $form->{exchangerate} =
 
 242     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 244   $form->{creditlimit} =
 
 245     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 246   $form->{creditremaining} =
 
 247     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 250   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 251     if ($form->{forex}) {
 
 253                 <th align=right nowrap>|
 
 254         . $locale->text('Exchangerate') . qq|</th>
 
 255                 <td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>
 
 259                 <th align=right nowrap>|
 
 260         . $locale->text('Exchangerate') . qq|</th>
 
 261                 <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
 
 266 <input type=hidden name=forex value=$form->{forex}>
 
 269   my @old_project_ids = ($form->{"globalproject_id"});
 
 270   map({ push(@old_project_ids, $form->{"project_id_$_"})
 
 271           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
 
 273   $form->get_lists("contacts" => "ALL_CONTACTS",
 
 274                    "projects" => { "key" => "ALL_PROJECTS",
 
 276                                    "old_id" => \@old_project_ids },
 
 277                    "taxzones" => "ALL_TAXZONES",
 
 278                    "employees" => "ALL_SALESMEN",
 
 279                    "currencies" => "ALL_CURRENCIES",
 
 280                    "vendors" => "ALL_VENDORS");
 
 283   my @values = (undef);
 
 284   foreach my $item (@{ $form->{"ALL_CONTACTS"} }) {
 
 285     push(@values, $item->{"cp_id"});
 
 286     $labels{$item->{"cp_id"}} = $item->{"cp_name"} .
 
 287       ($item->{"cp_abteilung"} ? " ($item->{cp_abteilung})" : "");
 
 290     NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values,
 
 291                          '-labels' => \%labels, '-default' => $form->{"cp_id"}));
 
 295   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 296     push(@values, $item->{"id"});
 
 297     $labels{$item->{"id"}} = $item->{"projectnumber"};
 
 299   my $globalprojectnumber =
 
 300     NTI($cgi->popup_menu('-name' => 'globalproject_id', '-values' => \@values,
 
 301                          '-labels' => \%labels,
 
 302                          '-default' => $form->{"globalproject_id"}));
 
 307   foreach my $item (@{ $form->{"ALL_CURRENCIES"} }) {
 
 308     push(@values, $item);
 
 309     $labels{$item} = $item;
 
 312   $form->{currency}        = $form->{defaultcurrency} unless $form->{currency};
 
 315       <th align="right">| . $locale->text('Currency') . qq|</th>
 
 317         NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
 
 318                              '-values' => \@values, '-labels' => \%labels)) . qq|
 
 325   foreach my $item (@{ $form->{"ALL_SALESMEN"} }) {
 
 326     push(@values, $item->{"id"});
 
 327     $labels{$item->{"id"}} = $item->{"name"};
 
 331       <th align="right">| . $locale->text('Employee') . qq|</th>
 
 333         NTI($cgi->popup_menu('-name' => 'employee_id', '-default' => $form->{"employee_id"},
 
 334                              '-values' => \@values, '-labels' => \%labels)) . qq|
 
 341   foreach my $item (@{ $form->{"ALL_VENDORS"} }) {
 
 342     push(@values, $item->{name}.qq|--|.$item->{"id"});
 
 343     $labels{$item->{"id"}} = $item->{"name"}.qq|--|.$item->{"id"};
 
 346       <th align="right">| . $locale->text('Vendor') . qq|</th>
 
 348         NTI($cgi->popup_menu('-name' => 'vendor', '-default' => $form->{"vendor"},
 
 349                              '-onChange' => 'document.getElementById(\'update_button\').click();',
 
 350                              '-values' => \@values, '-labels' => \%labels)) . qq|
 
 355   foreach my $item (@{ $form->{"ALL_TAXZONES"} }) {
 
 356     push(@values, $item->{"id"});
 
 357     $labels{$item->{"id"}} = $item->{"description"};
 
 360   if (!$form->{"id"}) {
 
 363       <th align="right">| . $locale->text('Steuersatz') . qq|</th>
 
 365         NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"},
 
 366                              '-values' => \@values, '-labels' => \%labels)) . qq|
 
 373       <th align="right">| . $locale->text('Steuersatz') . qq|</th>
 
 375         <input type="hidden" name="taxzone_id" value="| . H($form->{"taxzone_id"}) . qq|">
 
 376         | . H($labels{$form->{"taxzone_id"}}) . qq|
 
 383               <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 384               <td colspan="3"><select name="department">$form->{selectdepartment}</select>
 
 385               <input type="hidden" name="selectdepartment" value="$form->{selectdepartment}">
 
 388 | if $form->{selectdepartment};
 
 390   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 392   # use JavaScript Calendar or not
 
 393   $form->{jsscript} = $form->{jscalendar};
 
 395   if ($form->{jsscript}) {
 
 397     # with JavaScript Calendar
 
 399        <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value="$form->{invdate}" onBlur=\"check_right_date_format(this)\"></td>
 
 400        <td><input type=button name=invdate id="trigger1" value=|
 
 401       . $locale->text('button') . qq|></td>
 
 404        <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}"  onBlur=\"check_right_date_format(this)\"></td>
 
 405        <td width="4"><input type=button name=duedate id="trigger2" value=|
 
 406       . $locale->text('button') . qq|></td></td>
 
 411       Form->write_trigger(\%myconfig, "2", "invdate", "BL", "trigger1",
 
 412                           "duedate", "BL", "trigger2");
 
 415     # without JavaScript Calendar
 
 417       qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value="$form->{invdate}"  onBlur=\"check_right_date_format(this)\"></td>|;
 
 419       qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>|;
 
 422   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
 
 423   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
 426     $form->write_trigger(\%myconfig, 2,
 
 427                          "orddate", "BL", "trigger_orddate",
 
 428                          "quodate", "BL", "trigger_quodate");
 
 431   $onload = qq|focus()|;
 
 432   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
 
 433   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
 
 435 <body onLoad="$onload">
 
 437 <form method=post action=$form->{script}>
 
 439 <input type=hidden name=id value=$form->{id}>
 
 440 <input type=hidden name=title value="$form->{title}">
 
 441 <input type=hidden name=vc value="vendor">
 
 442 <input type=hidden name=type value=$form->{type}>
 
 443 <input type=hidden name=level value=$form->{level}>
 
 445 <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 446 <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 448 <input type=hidden name=closedto value=$form->{closedto}>
 
 449 <input type=hidden name=locked value=$form->{locked}>
 
 451 <input type=hidden name=shipped value=$form->{shipped}>
 
 452 <input type=hidden name=storno value=$form->{storno}>
 
 453 <input type=hidden name=storno_id value=$form->{storno_id}>
 
 455 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
 
 459     <th class=listtop>$form->{title}</th>
 
 470                 <th align=richt nowrap>|
 
 471     . $locale->text('Contact Person') . qq|</th>
 
 472                 <td colspan=3>$contact</td>
 
 474                 <input type="hidden" name="vendor_id" value="$form->{vendor_id}">
 
 475                 <input type="hidden" name="oldvendor" value="$form->{oldvendor}">
 
 476     <input type="hidden" name="selectvendor" value= "1">
 
 483                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 484                       <td>$form->{creditlimit}</td>
 
 486                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
 
 487                       <td class="plus$n">$form->{creditremaining}</td>
 
 492                 <th align="right">| . $locale->text('Record in') . qq|</th>
 
 493                 <td colspan="3"><select name="AP">$form->{selectAP}</select></td>
 
 494                 <input type="hidden" name="selectAP" value="$form->{selectAP}">
 
 508                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 509                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 512                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
 
 516                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
 
 520                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 521                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
 
 522 <input type=hidden name=quonumber value="$form->{quonumber}">
 
 525           <th align="right" nowrap>| . $locale->text('Order Date') . qq|</th>
 
 526           <td><input name="orddate" id="orddate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{orddate}) . qq|" onBlur=\"check_right_date_format(this)\"></td>
 
 527           <td><input type="button" name="b_orddate" id="trigger_orddate" value="?"></td>
 
 530           <th align="right" nowrap>| . $locale->text('Quotation Date') . qq|</th>
 
 531           <td><input name="quodate" id="quodate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{quodate}) . qq|" onBlur=\"check_right_date_format(this)\"></td>
 
 532           <td><input type="button" name="b_quodate" id="trigger_quodate" value="?"></td>
 
 535           <th align="right" nowrap>| . $locale->text('Project Number') . qq|</th>
 
 536           <td>$globalprojectnumber</td>
 
 547 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
 
 548 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
 
 549 <input type=hidden name=webdav value=$webdav>
 
 551 <input type=hidden name=taxpart value="$form->{taxpart}">
 
 552 <input type=hidden name=taxservice value="$form->{taxservice}">
 
 554 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 557   foreach $item (split / /, $form->{taxaccounts}) {
 
 559 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
 
 560 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
 
 564   $lxdebug->leave_sub();
 
 568   $lxdebug->enter_sub();
 
 570   $form->{invtotal} = $form->{invsubtotal};
 
 572   if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
 
 575   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
 
 578   $rows = ($rows > $introws) ? $rows : $introws;
 
 580     qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
 
 582     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
 
 584   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
 
 587   if ($form->{taxaccounts}) {
 
 589                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
 
 590       . $locale->text('Tax Included') . qq|</b>
 
 594   if (!$form->{taxincluded}) {
 
 596     foreach $item (split / /, $form->{taxaccounts}) {
 
 597       if ($form->{"${item}_base"}) {
 
 598         $form->{invtotal} += $form->{"${item}_total"} =
 
 600                              $form->{"${item}_base"} * $form->{"${item}_rate"},
 
 602         $form->{"${item}_total"} =
 
 603           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 607                   <th align=right>$form->{"${item}_description"} |
 
 608                     . $form->{"${item}_rate"} * 100 .qq|%</th>
 
 609                   <td align=right>$form->{"${item}_total"}</td>
 
 615     $form->{invsubtotal} =
 
 616       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
 
 620                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
 
 621                 <td align=right>$form->{invsubtotal}</td>
 
 627   if ($form->{taxincluded}) {
 
 628     foreach $item (split / /, $form->{taxaccounts}) {
 
 629       if ($form->{"${item}_base"}) {
 
 630         $form->{"${item}_total"} =
 
 632                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
 
 633                               (1 + $form->{"${item}_rate"})
 
 636         $form->{"${item}_base"} =
 
 637           $form->round_amount($form->{"${item}_base"}, 2);
 
 638         $form->{"${item}_netto"} =
 
 640                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
 
 642         $form->{"${item}_netto"} =
 
 643           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
 
 644         $form->{"${item}_total"} =
 
 645           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 649                 <th align=right>Enthaltene $form->{"${item}_description"} |
 
 650                                     . $form->{"${item}_rate"} * 100 .qq|%</th>
 
 651                 <td align=right>$form->{"${item}_total"}</td>
 
 654                 <th align=right>Nettobetrag</th>
 
 655                 <td align=right>$form->{"${item}_netto"}</td>
 
 663   $form->{oldinvtotal} = $form->{invtotal};
 
 665     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
 
 669     <td colspan=$colspan>
 
 670       <table cellspacing="0">
 
 675                 <th align=left>| . $locale->text('Notes') . qq|</th>
 
 676                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
 
 684           <td colspan=2 align=right width=100%>
 
 691                 <th align=right>| . $locale->text('Total') . qq|</th>
 
 692                 <td align=right>$form->{invtotal}</td>
 
 704     <td><hr size=3 noshade></td>
 
 707     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
 
 710       <td align=left width=30%><b>Dateiname</b></td>
 
 711       <td align=left width=70%><b>Webdavlink</b></td>
 
 713     foreach $file (keys %{ $form->{WEBDAV} }) {
 
 716         <td align=left>$file</td>
 
 717         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
 
 729 <input type=hidden name=jscalendar value=$form->{jscalendar}>
 
 733     <td colspan=$colspan>
 
 736           <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
 
 740   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 741     @column_index = qw(datepaid source memo paid AP_paid);
 
 743     @column_index = qw(datepaid source memo paid exchangerate AP_paid);
 
 746   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
 
 747   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
 
 748   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
 
 749   $column_data{AP_paid}      = "<th>" . $locale->text('Account') . "</th>";
 
 750   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
 
 751   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
 
 756   map { print "$column_data{$_}\n" } @column_index;
 
 762   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 763   for $i (1 .. $form->{paidaccounts}) {
 
 769     $form->{"selectAP_paid_$i"} = $form->{selectAP_paid};
 
 770     $form->{"selectAP_paid_$i"} =~
 
 771       s/option>\Q$form->{"AP_paid_$i"}\E/option selected>$form->{"AP_paid_$i"}/;
 
 774     if ($form->{"paid_$i"}) {
 
 776         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
 778     $form->{"exchangerate_$i"} =
 
 779       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
 781     $exchangerate = qq| |;
 
 782     if ($form->{currency} ne $form->{defaultcurrency}) {
 
 783       if ($form->{"forex_$i"}) {
 
 785           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
 
 788           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
 
 792 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
 
 795     $column_data{"paid_$i"} =
 
 796       qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
 
 797     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
 
 798     $column_data{"AP_paid_$i"}      =
 
 799       qq|<td align=center><select name="AP_paid_$i">$form->{"selectAP_paid_$i"}</select></td>|;
 
 800     $column_data{"datepaid_$i"} =
 
 801       qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 title="$myconfig{dateformat}" value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
 
 802          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
 
 803     $column_data{"source_$i"} =
 
 804       qq|<td align=center><input name="source_$i" size=11 value=$form->{"source_$i"}></td>|;
 
 805     $column_data{"memo_$i"} =
 
 806       qq|<td align=center><input name="memo_$i" size=11 value=$form->{"memo_$i"}></td>|;
 
 808     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
 
 813     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
 
 817             <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
 818             <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
 
 819             <input type=hidden name=selectAP_paid value="$form->{selectAP_paid}">
 
 824     <td><hr size=3 noshade></td>
 
 830   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
 831   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
 833   print qq|<input class=submit type=submit name=action id=update_button value="|
 
 834     . $locale->text('Update') . qq|">
 
 838     my $show_storno = !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ap");
 
 840     print qq|<input class=submit type=submit name=action value="|
 
 841       . $locale->text('Post Payment') . qq|">
 
 843     print qq|<input class=submit type=submit name=action value="|
 
 844       . $locale->text('Storno') . qq|">
 
 846     if ($form->{radier}) {
 
 848     <input class=submit type=submit name=action value="|
 
 849       . $locale->text('Delete') . qq|">
 
 852     print qq|<input class=submit type=submit name=action value="|
 
 853       . $locale->text('Use As Template') . qq|">
 
 858   if (!$form->{id} && ($invdate > $closedto)) {
 
 859     print qq| <input class=submit type=submit name=action value="|
 
 860       . $locale->text('Post') . qq|"> | .
 
 861       NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'),
 
 862                        '-class' => 'submit'));
 
 865   print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers);
 
 866   $form->hide_form(qw(rowcount callback draft_id draft_description login password));
 
 868   # button for saving history
 
 869   if($form->{id} ne "") {
 
 871           <input type="button" class="submit" onclick="set_history_window(|
 
 873           . qq|);" name="history" id="history" value="|
 
 874           . $locale->text('history')
 
 877   # /button for saving history
 
 885   $lxdebug->leave_sub();
 
 889   $lxdebug->enter_sub();
 
 891   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 892     qw(exchangerate creditlimit creditremaining);
 
 896   $form->{exchangerate} = $exchangerate
 
 900                         $form->check_exchangerate(
 
 901                         \%myconfig, $form->{currency}, $form->{invdate}, 'sell'
 
 904   for $i (1 .. $form->{paidaccounts}) {
 
 905     if ($form->{"paid_$i"}) {
 
 908           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 909       } qw(paid exchangerate);
 
 911       $form->{"exchangerate_$i"} = $exchangerate
 
 913             $form->{"forex_$i"} = (
 
 915                   $form->check_exchangerate(
 
 916                   \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell'
 
 921   $i            = $form->{rowcount};
 
 922   $exchangerate = ($form->{exchangerate} * 1) ? $form->{exchangerate} * 1 : 1;
 
 924   if (   ($form->{"partnumber_$i"} eq "")
 
 925       && ($form->{"description_$i"} eq "")
 
 926       && ($form->{"partsgroup_$i"} eq "")) {
 
 927     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 932     IR->retrieve_item(\%myconfig, \%$form);
 
 934     my $rows = scalar @{ $form->{item_list} };
 
 937       $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
 
 946         # override sellprice if there is one entered
 
 947         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 949         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
 
 950           qw(partnumber description unit);
 
 952         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
 
 953           keys %{ $form->{item_list}[0] };
 
 955         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
 
 957         ($dec) = ($s =~ /\.(\d+)/);
 
 959         $decimalplaces = ($dec > 2) ? $dec : 2;
 
 962           $form->{"sellprice_$i"} = $sellprice;
 
 965           # if there is an exchange rate adjust sellprice
 
 966           $form->{"sellprice_$i"} /= $exchangerate;
 
 970           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
 
 971           (1 - $form->{"discount_$i"} / 100);
 
 972         $form->{creditremaining} -= $amount;
 
 973         $form->{"sellprice_$i"} =
 
 974           $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 977           $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
 984       # ok, so this is a new part
 
 985       # ask if it is a part or service item
 
 987       if (   $form->{"partsgroup_$i"}
 
 988           && ($form->{"partsnumber_$i"} eq "")
 
 989           && ($form->{"description_$i"} eq "")) {
 
 991         $form->{"discount_$i"} = "";
 
 995         $form->{"id_$i"}   = 0;
 
 996         $form->{"unit_$i"} = $locale->text('ea');
 
1003   $lxdebug->leave_sub();
 
1007   $lxdebug->enter_sub();
 
1009   if ($form->{storno}) {
 
1010     $form->error($locale->text('Cannot storno storno invoice!'));
 
1013   if (IS->has_storno(\%myconfig, $form, "ap")) {
 
1014     $form->error($locale->text("Invoice has already been storno'd!"));
 
1017   my $employee_id = $form->{employee_id};
 
1022   # Payments must not be recorded for the new storno invoice.
 
1023   $form->{paidaccounts} = 0;
 
1024   map { my $key = $_; delete $form->{$key} if grep { $key =~ /^$_/ } qw(datepaid_ source_ memo_ paid_ exchangerate_ AR_paid_) } keys %{ $form };
 
1026   # saving the history
 
1027   if(!exists $form->{addition} && $form->{id} ne "") {
 
1028     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};  
 
1029     $form->{addition} = "CANCELED";
 
1030     $form->save_history($form->dbconnect(\%myconfig));
 
1032   # /saving the history
 
1034   $form->{storno_id} = $form->{id};
 
1035   $form->{storno} = 1;
 
1037   $form->{invnumber} = "Storno zu " . $form->{invnumber};
 
1038   $form->{rowcount}++;
 
1039   $form->{employee_id} = $employee_id;
 
1041   $lxdebug->leave_sub();
 
1045 sub use_as_template {
 
1046   $lxdebug->enter_sub();
 
1048   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
 
1049   $form->{paidaccounts} = 1;
 
1050   $form->{rowcount}--;
 
1051   $form->{invdate} = $form->current_date(\%myconfig);
 
1054   $lxdebug->leave_sub();
 
1058   $lxdebug->enter_sub();
 
1059   for $i (1 .. $form->{paidaccounts}) {
 
1060     if ($form->{"paid_$i"}) {
 
1061       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1063       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1065       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1066         if ($datepaid <= $closedto);
 
1068       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1069         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1070           if ($invdate == $datepaid);
 
1071         $form->isblank("exchangerate_$i",
 
1072                        $locale->text('Exchangerate for payment missing!'));
 
1077   ($form->{AP})      = split /--/, $form->{AP};
 
1078   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
1079   if (IR->post_payment(\%myconfig, \%$form)){
 
1081         if(!exists $form->{addition} && $form->{id} ne "") {
 
1082                 # saving the history
 
1083       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};  
 
1084                 $form->{addition} = "PAYMENT POSTED";
 
1085       $form->{what_done} = $form->{currency} . qq| | . $form->{paid} . qq| | . $locale->text("POSTED");
 
1086                 $form->save_history($form->dbconnect(\%myconfig));
 
1087                 # /saving the history 
 
1088                 $form->redirect($locale->text(' Payment posted!'));
 
1091     $form->error($locale->text('Cannot post payment!'));
 
1094   $lxdebug->leave_sub();
 
1098   $lxdebug->enter_sub();
 
1100   $form->isblank("invdate", $locale->text('Invoice Date missing!'));
 
1101   $form->isblank("vendor",  $locale->text('Vendor missing!'));
 
1103   $form->{invnumber} =~ s/^\s*//g;
 
1104   $form->{invnumber} =~ s/\s*$//g;
 
1106   # if the vendor changed get new values
 
1107   if (&check_name(vendor)) {
 
1114   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
1115   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
1117   $form->error($locale->text('Cannot post invoice for a closed period!'))
 
1118     if ($invdate <= $closedto);
 
1120   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1121     if ($form->{currency} ne $form->{defaultcurrency});
 
1123   for $i (1 .. $form->{paidaccounts}) {
 
1124     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1125       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1127       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1129       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1130         if ($datepaid <= $closedto);
 
1132       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1133         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1134           if ($invdate == $datepaid);
 
1135         $form->isblank("exchangerate_$i",
 
1136                        $locale->text('Exchangerate for payment missing!'));
 
1141   ($form->{AP})      = split /--/, $form->{AP};
 
1142   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
1144   $form->{id} = 0 if $form->{postasnew};
 
1148   if (IR->post_invoice(\%myconfig, \%$form)){
 
1149         # saving the history
 
1150         if(!exists $form->{addition} && $form->{id} ne "") {
 
1151       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};  
 
1152       $form->{addition} = "POSTED";
 
1153                 #$form->{what_done} = $locale->text("Rechnungsnummer") . qq| | . $form->{invnumber};
 
1154                 $form->save_history($form->dbconnect(\%myconfig));
 
1156         # /saving the history
 
1157     remove_draft() if $form->{remove_draft};
 
1158         $form->redirect(  $locale->text('Invoice')
 
1159                   . " $form->{invnumber} "
 
1160                   . $locale->text('posted!'));
 
1162   $form->error($locale->text('Cannot post invoice!'));
 
1164   $lxdebug->leave_sub();
 
1168   $lxdebug->enter_sub();
 
1174 <form method=post action=$form->{script}>
 
1177   # delete action variable
 
1178   map { delete $form->{$_} } qw(action header);
 
1180   foreach $key (keys %$form) {
 
1181     $form->{$key} =~ s/\"/"/g;
 
1182     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1186 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
1189     . $locale->text('Are you sure you want to delete Invoice Number')
 
1190     . qq| $form->{invnumber}</h4>
 
1192 <input name=action class=submit type=submit value="|
 
1193     . $locale->text('Yes') . qq|">
 
1197   $lxdebug->leave_sub();
 
1201   $lxdebug->enter_sub();
 
1202   if (IR->delete_invoice(\%myconfig, \%$form)) {
 
1203     # saving the history
 
1204     if(!exists $form->{addition}) {
 
1205       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};  
 
1206           $form->{addition} = "DELETED";
 
1207           $form->save_history($form->dbconnect(\%myconfig));
 
1209     # /saving the history 
 
1210     $form->redirect($locale->text('Invoice deleted!'));
 
1212   $form->error($locale->text('Cannot delete invoice!'));
 
1214   $lxdebug->leave_sub();