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 invoicing module
 
  32 #======================================================================
 
  38 require "$form->{path}/io.pl";
 
  39 require "$form->{path}/arap.pl";
 
  46   $lxdebug->enter_sub();
 
  48   if ($form->{type} eq "credit_note") {
 
  49     $form->{title} = $locale->text('Add Credit Note');
 
  51     if ($form->{storno}) {
 
  52       $form->{title} = $locale->text('Add Storno Credit Note');
 
  55     $form->{title} = $locale->text('Add Sales Invoice');
 
  61     "$form->{script}?action=add&type=$form->{type}&login=$form->{login}&path=$form->{path}&password=$form->{password}"
 
  62     unless $form->{callback};
 
  64   $form{jsscript} = "date";
 
  66   if ($myconfig{acs} =~ "AR--Add Sales Invoice" || $myconfig{acs} =~ "AR--AR")
 
  68     $form->error("Access Denied");
 
  72   $form->{format} = "pdf";
 
  76   $lxdebug->leave_sub();
 
  80   $lxdebug->enter_sub();
 
  83   if ($myconfig{acs} =~ "AR--Add Sales Invoice" || $myconfig{acs} =~ "AR--AR")
 
  85     $form->error("Access Denied");
 
  88   if ($form->{print_and_post}) {
 
  89     $form->{action}   = "print";
 
  90     $form->{resubmit} = 1;
 
  91     $language_id = $form->{language_id};
 
  92     $printer_id = $form->{printer_id};
 
  96   if ($form->{print_and_post}) {
 
  97     $form->{language_id} = $language_id;
 
  98     $form->{printer_id} = $printer_id;
 
 103   $lxdebug->leave_sub();
 
 107   $lxdebug->enter_sub();
 
 109   $form->{vc} = 'customer';
 
 112   $form->{webdav}   = $webdav;
 
 113   $form->{lizenzen} = $lizenzen;
 
 115   $form->create_links("AR", \%myconfig, "customer");
 
 117   if ($form->{all_customer}) {
 
 118     unless ($form->{customer_id}) {
 
 119       $form->{customer_id} = $form->{all_customer}->[0]->{id};
 
 123   if ($form->{payment_id}) {
 
 124     $payment_id = $form->{payment_id};
 
 126   if ($form->{language_id}) {
 
 127     $language_id = $form->{language_id};
 
 129   if ($form->{taxzone_id}) {
 
 130     $taxzone_id = $form->{taxzone_id};
 
 135   if ($form->{shipto_id}) {
 
 136     $shipto_id = $form->{shipto_id};
 
 139   $cp_id = $form->{cp_id};
 
 140   IS->get_customer(\%myconfig, \%$form);
 
 141   #quote all_customer Bug 133
 
 142   foreach $ref (@{ $form->{all_customer} }) {
 
 143     $ref->{name} = $form->quote($ref->{name});
 
 148   IS->retrieve_invoice(\%myconfig, \%$form);
 
 149   $form->{cp_id} = $cp_id;
 
 152     $form->{payment_id} = $payment_id;
 
 155     $form->{language_id} = $language_id;
 
 158     $form->{taxzone_id} = $taxzone_id;
 
 161     $form->{shipto_id} = $shipto_id;
 
 165   @curr = split(/:/, $form->{currencies});
 
 167   $form->{defaultcurrency} = $curr[0];
 
 169   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 171   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
 
 173   if ($form->{all_customer}) {
 
 174     $form->{customer} = "$form->{customer}--$form->{customer_id}";
 
 175     map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
 
 176       (@{ $form->{all_customer} });
 
 180   if ($form->{all_departments}) {
 
 181     $form->{selectdepartment} = "<option>\n";
 
 182     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 185       $form->{selectdepartment} .=
 
 186         "<option>$_->{description}--$_->{id}\n"
 
 187     } (@{ $form->{all_departments} });
 
 190   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 193   if ($form->{all_employees}) {
 
 194     $form->{selectemployee} = "";
 
 195     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
 
 196       (@{ $form->{all_employees} });
 
 200   $form->{forex} = $form->{exchangerate};
 
 201   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
 203   foreach $key (keys %{ $form->{AR_links} }) {
 
 204     foreach $ref (@{ $form->{AR_links}{$key} }) {
 
 205       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
 
 208     if ($key eq "AR_paid") {
 
 209       for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
 
 210         $form->{"AR_paid_$i"} =
 
 211           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
 
 214         $form->{"paid_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
 
 215         $form->{"datepaid_$i"} =
 
 216           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
 
 217         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
 
 218           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
 
 219         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
 
 220         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
 
 222         $form->{paidaccounts} = $i;
 
 226         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
 
 231   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
 
 233   $form->{AR} = $form->{AR_1} unless $form->{id};
 
 236     ($form->datetonum($form->{invdate}, \%myconfig) <=
 
 237      $form->datetonum($form->{closedto}, \%myconfig));
 
 239   $lxdebug->leave_sub();
 
 242 sub prepare_invoice {
 
 243   $lxdebug->enter_sub();
 
 245   if ($form->{type} eq "credit_note") {
 
 246     $form->{type}     = "credit_note";
 
 247     $form->{formname} = "credit_note";
 
 248     $form->{media}    = "screen";
 
 250     $form->{type}     = "invoice";
 
 251     $form->{formname} = "invoice";
 
 252     $form->{media}    = "screen";
 
 257     map { $form->{$_} =~ s/\"/"/g }
 
 258       qw(invnumber ordnumber quonumber shippingpoint shipvia notes intnotes);
 
 260     #     # get pricegroups for parts
 
 261     #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 263     foreach $ref (@{ $form->{invoice_details} }) {
 
 267       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
 
 268       $form->{"discount_$i"} =
 
 269         $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
 
 270       ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 272       $decimalplaces = ($dec > 2) ? $dec : 2;
 
 274       $form->{"sellprice_$i"} =
 
 275         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 278       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 279       $dec_qty = length $dec_qty;
 
 282         $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
 284       map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 285         qw(partnumber description unit partnotes);
 
 286       $form->{rowcount} = $i;
 
 290   $lxdebug->leave_sub();
 
 294   $lxdebug->enter_sub();
 
 298     if ($form->{type} eq "credit_note") {
 
 299       $form->{title} = $locale->text('Edit Credit Note');
 
 301       if ($form->{storno}) {
 
 302         $form->{title} = $locale->text('Edit Storno Credit Note');
 
 305       $form->{title} = $locale->text('Edit Sales Invoice');
 
 307       if ($form->{storno}) {
 
 308         $form->{title} = $locale->text('Edit Storno Invoice');
 
 313   $payment = qq|<option value=""></option>|;
 
 314   foreach $item (@{ $form->{payment_terms} }) {
 
 315     if ($form->{payment_id} eq $item->{id}) {
 
 316       $payment .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
 
 318       $payment .= qq|<option value="$item->{id}">$item->{description}</option>|;
 
 323   if (@{ $form->{TAXZONE} }) {
 
 324     $form->{selecttaxzone} = "";
 
 325     foreach $item (@{ $form->{TAXZONE} }) {
 
 326       if ($item->{id} == $form->{taxzone_id}) {
 
 327         $form->{selecttaxzone} .=
 
 328           "<option value=$item->{id} selected>$item->{description}</option>";
 
 330         $form->{selecttaxzone} .=
 
 331           "<option value=$item->{id}>$item->{description}</option>";
 
 336     $form->{selecttaxzone} =~ s/ selected//g;
 
 337     if ($form->{taxzone_id} ne "") {
 
 338       $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}/value=$form->{taxzone_id} selected/;
 
 341   if ($form->{rowcount} >0) {
 
 342     $form->{selecttaxzone} =~ /<option value=\d+ selected>.*?<\/option>/;
 
 343     $form->{selecttaxzone} = $&;
 
 349                 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
 
 350                 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
 
 351                 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
 
 355   if (@{ $form->{SHIPTO} }) {
 
 356     $form->{selectshipto} = "<option value=0></option>";
 
 357     foreach $item (@{ $form->{SHIPTO} }) {
 
 358       if ($item->{shipto_id} == $form->{shipto_id}) {
 
 359         $form->{selectshipto} .=
 
 360           "<option value=$item->{shipto_id} selected>$item->{shiptoname} $item->{shiptodepartment_1}</option>";
 
 362         $form->{selectshipto} .=
 
 363           "<option value=$item->{shipto_id}>$item->{shiptoname} $item->{shiptodepartment}</option>";
 
 368     $form->{selectshipto} =~ s/ selected//g;
 
 369     if ($form->{shipto_id} ne "") {
 
 370       $form->{selectshipto} =~ s/value=$form->{shipto_id}/value=$form->{shipto_id} selected/;
 
 375                 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
 
 376                 <td><select name=shipto_id style="width:200px;">$form->{selectshipto}</select></td>
 
 377                 <input type=hidden name=selectshipto value="$form->{selectshipto}">|;
 
 381   # set option selected
 
 382   foreach $item (qw(AR customer currency department employee)) {
 
 383     $form->{"select$item"} =~ s/ selected//;
 
 384     $form->{"select$item"} =~
 
 385       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 388   #quote customer Bug 133
 
 389   $form->{selectcustomer} = $form->quote($form->{selectcustomer});
 
 392   if ($form->{all_contacts}) {
 
 394     $form->{selectcontact} = "<option></option>";
 
 395     foreach $item (@{ $form->{all_contacts} }) {
 
 396       my $department = ($item->{cp_abteilung}) ? "--$item->{cp_abteilung}" : "";
 
 397       if ($form->{cp_id} == $item->{cp_id}) {
 
 398         $form->{selectcontact} .=
 
 399           "<option value=$item->{cp_id} selected>$item->{cp_name}$department</option>";
 
 401         $form->{selectcontact} .= "<option value=$item->{cp_id}>$item->{cp_name}$department</option>";
 
 405     $form->{selectcontact} =~ s/ selected//g;
 
 406     if ($form->{cp_id} ne "") {
 
 407       $form->{selectcontact} =~ s/value=$form->{cp_id}/value=$form->{cp_id} selected/;
 
 412   if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
 
 418   #else {$form->{all_contacts} = 0;}
 
 420   $form->{exchangerate} =
 
 421     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 423   $form->{creditlimit} =
 
 424     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 425   $form->{creditremaining} =
 
 426     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 429   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 430     if ($form->{forex}) {
 
 433         . $locale->text('Exchangerate')
 
 434         . qq|</th><td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>|;
 
 438         . $locale->text('Exchangerate')
 
 439         . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
 
 443 <input type=hidden name=forex value=$form->{forex}>
 
 447     ($form->{selectcustomer})
 
 448     ? qq|<select name=customer>$form->{selectcustomer}</select>\n<input type=hidden name="selectcustomer" value="$form->{selectcustomer}">|
 
 449     : qq|<input name=customer value="$form->{customer}" size=35>|;
 
 453     ($form->{selectcontact})
 
 454     ? qq|<select name=cp_id>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
 
 455     : qq|<input name=contact value="$form->{contact}" size=35>|;
 
 459                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 460                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
 
 461                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
 464 | if $form->{selectdepartment};
 
 466   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 468   if ($form->{business}) {
 
 471                 <th align=right>| . $locale->text('Business') . qq|</th>
 
 472                 <td>$form->{business}</td>
 
 473                 <th align=right>| . $locale->text('Trade Discount') . qq|</th>
 
 475       . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
 
 481   if ($form->{max_dunning_level}) {
 
 487                 <th align=right>| . $locale->text('Max. Dunning Level') . qq|:</th>
 
 488                 <td><b>$form->{max_dunning_level}</b></td>
 
 489                 <th align=right>| . $locale->text('Dunning Amount') . qq|:</th>
 
 491       . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
 
 500   $form->{fokus} = "invoice.customer";
 
 502   # use JavaScript Calendar or not
 
 503   $form->{jsscript} = $jscalendar;
 
 505   if ($form->{type} eq "credit_note") {
 
 506     if ($form->{jsscript}) {
 
 508       # with JavaScript Calendar
 
 510         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
 
 511         <td><input type=button name=invdate id="trigger1" value=|
 
 512         . $locale->text('button') . qq|></td>
 
 517         Form->write_trigger(\%myconfig,     "1",
 
 522       # without JavaScript Calendar
 
 524         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
 
 526         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
 
 529     if ($form->{jsscript}) {
 
 531       # with JavaScript Calendar
 
 533         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
 
 534         <td><input type=button name=invdate id="trigger1" value=|
 
 535         . $locale->text('button') . qq|></td>
 
 538         <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
 
 539         <td width="4"><input type=button name=duedate id="trigger2" value=|
 
 540         . $locale->text('button') . qq|></td></td>
 
 543         <td width="13"><input name=deliverydate id=deliverydate size=11 title="$myconfig{dateformat}" value=$form->{deliverydate}></td>
 
 544         <td width="4"><input type=button name=deliverydate id="trigger3" value=|
 
 545         . $locale->text('button') . qq|></td></td>
 
 550         Form->write_trigger(\%myconfig,     "3",
 
 552                             "trigger1",     "duedate",
 
 554                             "deliverydate", "BL",
 
 558       # without JavaScript Calendar
 
 560         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
 
 562         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
 
 565   if ($form->{resubmit} && ($form->{format} eq "html")) {
 
 567       qq|window.open('about:blank','Beleg'); document.invoice.target = 'Beleg';document.invoice.submit()|;
 
 568   } elsif ($form->{resubmit}) {
 
 569     $onload = qq|document.invoice.submit()|;
 
 574   $credittext = $locale->text('Credit Limit exceeded!!!');
 
 575   if ($creditwarning) {
 
 576     $onload = qq|alert('$credittext')|;
 
 582 <body onLoad="$onload">
 
 583 <script type="text/javascript" src="js/common.js"></script>
 
 584 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
 
 585 <script type="text/javascript" src="js/vendor_selection.js"></script>
 
 586 <script type="text/javascript" src="js/calculate_qty.js"></script>
 
 588 <form method=post name="invoice" action=$form->{script}>
 
 591 <input type=hidden name=id value=$form->{id}>
 
 592 <input type=hidden name=action value=$form->{action}>
 
 594 <input type=hidden name=type value=$form->{type}>
 
 595 <input type=hidden name=media value=$form->{media}>
 
 596 <input type=hidden name=format value=$form->{format}>
 
 598 <input type=hidden name=queued value="$form->{queued}">
 
 599 <input type=hidden name=printed value="$form->{printed}">
 
 600 <input type=hidden name=emailed value="$form->{emailed}">
 
 602 <input type=hidden name=title value="$form->{title}">
 
 603 <input type=hidden name=vc value=$form->{vc}>
 
 605 <input type=hidden name=discount value=$form->{discount}>
 
 606 <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 607 <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 609 <input type=hidden name=tradediscount value=$form->{tradediscount}>
 
 610 <input type=hidden name=business value=$form->{business}>
 
 612 <input type=hidden name=closedto value=$form->{closedto}>
 
 613 <input type=hidden name=locked value=$form->{locked}>
 
 615 <input type=hidden name=shipped value=$form->{shipped}>
 
 616 <input type=hidden name=lizenzen value=$lizenzen>
 
 617 <input type=hidden name=storno value=$form->{storno}>
 
 618 <input type=hidden name=storno_id value=$form->{storno_id}>
 
 624     <th class=listtop>$form->{title}</th>
 
 634                 <th align=right nowrap>| . $locale->text('Customer') . qq|</th>
 
 635                 <td colspan=3>$customer</td>
 
 636     <input type=hidden name=customer_klass value=$form->{customer_klass}>
 
 637                 <input type=hidden name=customer_id value=$form->{customer_id}>
 
 638                 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
 
 639                 <th align=richt nowrap>|
 
 640     . $locale->text('Contact Person') . qq|</th>
 
 641                 <td colspan=3>$contact</td>
 
 648                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 649                       <td>$form->{creditlimit}</td>
 
 651                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
 
 652                       <td class="plus$n">$form->{creditremaining}</td>
 
 661                 <th align=right nowrap>| . $locale->text('Record in') . qq|</th>
 
 662                 <td colspan=3><select name=AR style="width:280px;">$form->{selectAR}</select></td>
 
 663                 <input type=hidden name=selectAR value="$form->{selectAR}">
 
 668                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
 
 669                 <td><select name=currency>$form->{selectcurrency}</select></td>
 
 670                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 
 671                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 
 672                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
 
 673                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
 
 677                 <th align=right nowrap>| . $locale->text('Shipping Point') . qq|</th>
 
 678                 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
 
 681                 <th align=right nowrap>| . $locale->text('Ship via') . qq|</th>
 
 682                 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
 
 689 #                         <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
 
 691 #                       <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
 
 692 #                       <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
 
 696 #                         <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
 
 698 #                       <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
 
 699 #                       <input size=45 id=delivery_vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
 
 709                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
 
 710                 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
 
 711                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
 714 if ($form->{type} eq "credit_note") {
 
 716                 <th align=right nowrap>| . $locale->text('Credit Note Number') . qq|</th>
 
 717                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 720                 <th align=right>| . $locale->text('Credit Note Date') . qq|</th>
 
 725                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 726                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 729                 <th align=right>| . $locale->text('Invoice Date') . qq|</th>
 
 733                 <th align=right>| . $locale->text('Due Date') . qq|</th>
 
 737                 <th align=right>| . $locale->text('Delivery Date') . qq|</th>
 
 742                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 743                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
 
 746                 <th align=right nowrap>| . $locale->text('Quotation Number') . qq|</th>
 
 747                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
 
 750                 <th align=right nowrap>| . $locale->text('Customer Order Number') . qq|</th>
 
 751                 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
 
 766 <!-- shipto are in hidden variables -->
 
 768 <input type=hidden name=shiptoname value="$form->{shiptoname}">
 
 769 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
 
 770 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
 
 771 <input type=hidden name=shiptocity value="$form->{shiptocity}">
 
 772 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
 
 773 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
 
 774 <input type=hidden name=shiptophone value="$form->{shiptophone}">
 
 775 <input type=hidden name=shiptofax value="$form->{shiptofax}">
 
 776 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
 
 778 <!-- email variables -->
 
 779 <input type=hidden name=message value="$form->{message}">
 
 780 <input type=hidden name=email value="$form->{email}">
 
 781 <input type=hidden name=subject value="$form->{subject}">
 
 782 <input type=hidden name=cc value="$form->{cc}">
 
 783 <input type=hidden name=bcc value="$form->{bcc}">
 
 784 <input type=hidden name=webdav value=$webdav>
 
 785 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 788   foreach $item (split / /, $form->{taxaccounts}) {
 
 790 <input type=hidden name="${item}_rate" value="$form->{"${item}_rate"}">
 
 791 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
 
 792 <input type=hidden name="${item}_taxnumber" value="$form->{"${item}_taxnumber"}">
 
 795   $lxdebug->leave_sub();
 
 799   $lxdebug->enter_sub();
 
 801   $form->{invtotal} = $form->{invsubtotal};
 
 803   if (($rows = $form->numtextrows($form->{notes}, 26, 8)) < 2) {
 
 806   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
 
 809   $rows = ($rows > $introws) ? $rows : $introws;
 
 811     qq|<textarea name=notes rows=$rows cols=26 wrap=soft>$form->{notes}</textarea>|;
 
 813     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
 
 815   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
 
 818   if ($form->{taxaccounts}) {
 
 820                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
 
 821       . $locale->text('Tax Included') . qq|</b><br><br>|;
 
 824   if (!$form->{taxincluded}) {
 
 826     foreach $item (split / /, $form->{taxaccounts}) {
 
 827       if ($form->{"${item}_base"}) {
 
 828         $form->{"${item}_total"} =
 
 830                              $form->{"${item}_base"} * $form->{"${item}_rate"},
 
 832         $form->{invtotal} += $form->{"${item}_total"};
 
 833         $form->{"${item}_total"} =
 
 834           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 838                 <th align=right>$form->{"${item}_description"}</th>
 
 839                 <td align=right>$form->{"${item}_total"}</td>
 
 845     $form->{invsubtotal} =
 
 846       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
 
 850                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
 
 851                 <td align=right>$form->{invsubtotal}</td>
 
 857   if ($form->{taxincluded}) {
 
 858     foreach $item (split / /, $form->{taxaccounts}) {
 
 859       if ($form->{"${item}_base"}) {
 
 860         $form->{"${item}_total"} =
 
 862                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
 
 863                               (1 + $form->{"${item}_rate"})
 
 866         $form->{"${item}_netto"} =
 
 868                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
 
 870         $form->{"${item}_total"} =
 
 871           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 872         $form->{"${item}_netto"} =
 
 873           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
 
 877                 <th align=right>Enthaltene $form->{"${item}_description"}</th>
 
 878                 <td align=right>$form->{"${item}_total"}</td>
 
 881                 <th align=right>Nettobetrag</th>
 
 882                 <td align=right>$form->{"${item}_netto"}</td>
 
 890   $form->{oldinvtotal} = $form->{invtotal};
 
 892     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
 
 902                 <th align=left>| . $locale->text('Notes') . qq|</th>
 
 903                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
 
 904                 <th align=right>| . $locale->text('Payment Terms') . qq|</th>
 
 909                 <td><select name=payment_id tabindex=24>$payment
 
 914           <td align=right width=100%>
 
 920                 <th align=right>| . $locale->text('Total') . qq|</th>
 
 921                 <td align=right>$form->{invtotal}</td>
 
 933     <td><hr size=3 noshade></td>
 
 936     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
 
 939       <td align=left width=30%><b>Dateiname</b></td>
 
 940       <td align=left width=70%><b>Webdavlink</b></td>
 
 942     foreach $file (keys %{ $form->{WEBDAV} }) {
 
 945         <td align=left>$file</td>
 
 946         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
 
 957 if ($form->{type} eq "credit_note") {
 
 962         <tr class=listheading>
 
 963           <th colspan=6 class=listheading>|
 
 964     . $locale->text('Payments') . qq|</th>
 
 972         <tr class=listheading>
 
 973           <th colspan=6 class=listheading>|
 
 974     . $locale->text('Incoming Payments') . qq|</th>
 
 979   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 980     @column_index = qw(datepaid source memo paid AR_paid);
 
 982     @column_index = qw(datepaid source memo paid exchangerate AR_paid);
 
 985   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
 
 986   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
 
 987   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
 
 988   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
 
 989   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
 
 990   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
 
 995   map { print "$column_data{$_}\n" } @column_index;
 
1000   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
1001   for $i (1 .. $form->{paidaccounts}) {
 
1006     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
 
1007     $form->{"selectAR_paid_$i"} =~
 
1008       s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
 
1011     $totalpaid += $form->{"paid_$i"};
 
1012     $form->{"paid_$i"} =
 
1013       $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
1014     $form->{"exchangerate_$i"} =
 
1015       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
1017     $exchangerate = qq| |;
 
1018     if ($form->{currency} ne $form->{defaultcurrency}) {
 
1019       if ($form->{"forex_$i"}) {
 
1021           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
 
1024           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
 
1028     $exchangerate .= qq|
 
1029 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
 
1032     $column_data{"paid_$i"} =
 
1033       qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
 
1034     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
 
1035     $column_data{"AR_paid_$i"}      =
 
1036       qq|<td align=center><select name="AR_paid_$i">$form->{"selectAR_paid_$i"}</select></td>|;
 
1037     $column_data{"datepaid_$i"} =
 
1038       qq|<td align=center><input name="datepaid_$i"  size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}></td>|;
 
1039     $column_data{"source_$i"} =
 
1040       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
 
1041     $column_data{"memo_$i"} =
 
1042       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
 
1044     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
 
1050 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
 
1051 <input type=hidden name=selectAR_paid value="$form->{selectAR_paid}">
 
1052 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
1053 <input type=hidden name=oldtotalpaid value=$totalpaid>
 
1058     <td><hr size=3 noshade></td>
 
1072   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
1073   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
1077     <input class=submit type=submit name=action value="|
 
1078       . $locale->text('Update') . qq|">
 
1079     <input class=submit type=submit name=action value="|
 
1080       . $locale->text('Ship to') . qq|">
 
1081     <input class=submit type=submit name=action value="|
 
1082       . $locale->text('Print') . qq|">
 
1083     <input class=submit type=submit name=action value="|
 
1084       . $locale->text('E-mail') . qq|">|;
 
1085     print qq|<input class=submit type=submit name=action value="|
 
1086       . $locale->text('Storno') . qq|">| unless ($form->{storno});
 
1087     print qq|<input class=submit type=submit name=action value="|
 
1088       . $locale->text('Post Payment') . qq|">
 
1090   if ($form->{id} && !($form->{type} eq "credit_note")) {
 
1092     <input class=submit type=submit name=action value="|
 
1093       . $locale->text('Credit Note') . qq|">
 
1098     if ($invdate > $closedto) {
 
1100       <input class=submit type=submit name=action value="|
 
1101         . $locale->text('Order') . qq|">
 
1106     if ($invdate > $closedto) {
 
1107       print qq|<input class=submit type=submit name=action value="|
 
1108         . $locale->text('Update') . qq|">
 
1109       <input class=submit type=submit name=action value="|
 
1110         . $locale->text('Ship to') . qq|">
 
1111       <input class=submit type=submit name=action value="|
 
1112         . $locale->text('Preview') . qq|">
 
1113       <input class=submit type=submit name=action value="|
 
1114         . $locale->text('E-mail') . qq|">
 
1115       <input class=submit type=submit name=action value="|
 
1116         . $locale->text('Print and Post') . qq|">
 
1117       <input class=submit type=submit name=action value="|
 
1118         . $locale->text('Post') . qq|">|;
 
1122   if ($form->{menubar}) {
 
1123     require "$form->{path}/menu.pl";
 
1129 <input type=hidden name=rowcount value=$form->{rowcount}>
 
1131 <input name=callback type=hidden value="$form->{callback}">
 
1133 <input type=hidden name=path value=$form->{path}>
 
1134 <input type=hidden name=login value=$form->{login}>
 
1135 <input type=hidden name=password value=$form->{password}>
 
1144   $lxdebug->leave_sub();
 
1148   $lxdebug->enter_sub();
 
1150   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1151     qw(exchangerate creditlimit creditremaining);
 
1152   if ($form->{second_run}) {
 
1153     $form->{print_and_post} = 0;
 
1156   $form->{update} = 1;
 
1158   &check_name(customer);
 
1162   $form->{exchangerate} = $exchangerate
 
1166                          $form->check_exchangerate(
 
1167                          \%myconfig, $form->{currency}, $form->{invdate}, 'buy'
 
1170   for $i (1 .. $form->{paidaccounts}) {
 
1171     if ($form->{"paid_$i"}) {
 
1173         $form->{"${_}_$i"} =
 
1174           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1175       } qw(paid exchangerate);
 
1177       $form->{"exchangerate_$i"} = $exchangerate
 
1179             $form->{"forex_$i"} = (
 
1181                    $form->check_exchangerate(
 
1182                    \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy'
 
1187   $i            = $form->{rowcount};
 
1188   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
1190   # if last row empty, check the form otherwise retrieve new item
 
1191   if (   ($form->{"partnumber_$i"} eq "")
 
1192       && ($form->{"description_$i"} eq "")
 
1193       && ($form->{"partsgroup_$i"}  eq "")) {
 
1195     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1200     $form->{"selected_unit_$i"} = $form->{"unit_$i"};
 
1202     IS->retrieve_item(\%myconfig, \%$form);
 
1204     $rows = scalar @{ $form->{item_list} };
 
1206     $form->{"discount_$i"} =
 
1207       $form->format_amount(\%myconfig, $form->{discount} * 100);
 
1210       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
 
1219         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
1221         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
 
1222           qw(partnumber description unit);
 
1223         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
 
1224           keys %{ $form->{item_list}[0] };
 
1225         if ($form->{"part_payment_id_$i"} ne "") {
 
1226           $form->{payment_id} = $form->{"part_payment_id_$i"};
 
1229         if ($form->{"not_discountable_$i"}) {
 
1230           $form->{"discount_$i"} = 0;
 
1233         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
 
1234         ($dec) = ($s =~ /\.(\d+)/);
 
1236         $decimalplaces = ($dec > 2) ? $dec : 2;
 
1239           $form->{"sellprice_$i"} = $sellprice;
 
1242           # if there is an exchange rate adjust sellprice
 
1243           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
 
1244           $form->{"sellprice_$i"} /= $exchangerate;
 
1247         $form->{"listprice_$i"} /= $exchangerate;
 
1250           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
 
1251           (1 - $form->{"discount_$i"} / 100);
 
1252         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
 
1253         map { $form->{"${_}_base"} += $amount }
 
1254           (split / /, $form->{"taxaccounts_$i"});
 
1255         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1256           split / /, $form->{"taxaccounts_$i"}
 
1257           if !$form->{taxincluded};
 
1259         $form->{creditremaining} -= $amount;
 
1262           $form->{"${_}_$i"} =
 
1263             $form->format_amount(\%myconfig, $form->{"${_}_$i"},
 
1265         } qw(sellprice listprice);
 
1268           $form->format_amount(\%myconfig, $form->{"qty_$i"});
 
1271           if ($form->{"inventory_accno_$i"} ne "") {
 
1272             $form->{"lizenzen_$i"} = qq|<option></option>|;
 
1273             foreach $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
 
1274               $form->{"lizenzen_$i"} .=
 
1275                 qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
 
1277             $form->{"lizenzen_$i"} .=
 
1278               qq|<option value=-1>Neue Lizenz</option>|;
 
1282         # get pricegroups for parts
 
1283         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1285         # build up html code for prices_$i
 
1286         &set_pricegroup($i);
 
1293       # ok, so this is a new part
 
1294       # ask if it is a part or service item
 
1296       if (   $form->{"partsgroup_$i"}
 
1297           && ($form->{"partsnumber_$i"} eq "")
 
1298           && ($form->{"description_$i"} eq "")) {
 
1299         $form->{rowcount}--;
 
1300         $form->{"discount_$i"} = "";
 
1304         $form->{"id_$i"}   = 0;
 
1305         $form->{"unit_$i"} = $locale->text('ea');
 
1312   $lxdebug->leave_sub();
 
1315   $lxdebug->enter_sub();
 
1316   for $i (1 .. $form->{paidaccounts}) {
 
1317     if ($form->{"paid_$i"}) {
 
1318       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1320       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1322       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1323         if ($datepaid <= $closedto);
 
1325       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1326         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1327           if ($invdate == $datepaid);
 
1328         $form->isblank("exchangerate_$i",
 
1329                        $locale->text('Exchangerate for payment missing!'));
 
1334   ($form->{AR})      = split /--/, $form->{AR};
 
1335   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1336   $form->redirect($locale->text(' Payment posted!'))
 
1337       if (IS->post_payment(\%myconfig, \%$form));
 
1338     $form->error($locale->text('Cannot post payment!'));
 
1341   $lxdebug->leave_sub();
 
1345   $lxdebug->enter_sub();
 
1346   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
 
1347   $form->isblank("customer", $locale->text('Customer missing!'));
 
1349   # if oldcustomer ne customer redo form
 
1350   if (&check_name(customer)) {
 
1354   if ($form->{second_run}) {
 
1355     $form->{print_and_post} = 0;
 
1360   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
1361   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
1363   $form->error($locale->text('Cannot post invoice for a closed period!'))
 
1364     if ($invdate <= $closedto);
 
1366   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1367     if ($form->{currency} ne $form->{defaultcurrency});
 
1369   for $i (1 .. $form->{paidaccounts}) {
 
1370     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1371       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1373       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1375       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1376         if ($datepaid <= $closedto);
 
1378       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1379         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1380           if ($invdate == $datepaid);
 
1381         $form->isblank("exchangerate_$i",
 
1382                        $locale->text('Exchangerate for payment missing!'));
 
1387   ($form->{AR})      = split /--/, $form->{AR};
 
1388   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1390   $form->{label} = $locale->text('Invoice');
 
1392   $form->{id} = 0 if $form->{postasnew};
 
1394   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
 
1395   if (!$form->{invnumber} || $form->{postasnew}) {
 
1396     if ($form->{type} eq "credit_note") {
 
1397       $form->{invnumber} = $form->update_defaults(\%myconfig, "cnnumber");
 
1399       $form->{invnumber} = $form->update_defaults(\%myconfig, "invnumber");
 
1403     if (!(IS->post_invoice(\%myconfig, \%$form))) {
 
1404       $form->error($locale->text('Cannot post invoice!'));
 
1408             $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
 
1409       if (IS->post_invoice(\%myconfig, \%$form));
 
1410     $form->error($locale->text('Cannot post invoice!'));
 
1413   $lxdebug->leave_sub();
 
1416 sub print_and_post {
 
1417   $lxdebug->enter_sub();
 
1419   $old_form               = new Form;
 
1421   $form->{print_and_post} = 1;
 
1425   $lxdebug->leave_sub();
 
1430   $lxdebug->enter_sub();
 
1432   if ($form->{storno}) {
 
1433     $form->error($locale->text('Cannot storno storno invoice!'));
 
1436   $form->{storno_id} = $form->{id};
 
1437   $form->{storno} = 1;
 
1439   $form->{invnumber} = "Storno zu " . $form->{invnumber};
 
1440   $form->{rowcount}--;
 
1443   $lxdebug->leave_sub();
 
1448   $lxdebug->enter_sub();
 
1450   $form->{preview} = 1;
 
1451   $old_form = new Form;
 
1452   for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
1453   $old_form->{rowcount}++;
 
1455   &print_form($old_form);
 
1456   $lxdebug->leave_sub();
 
1461   $lxdebug->enter_sub();
 
1462   if ($form->{second_run}) {
 
1463     $form->{print_and_post} = 0;
 
1470 <form method=post action=$form->{script}>
 
1473   # delete action variable
 
1474   map { delete $form->{$_} } qw(action header);
 
1476   foreach $key (keys %$form) {
 
1477     $form->{$key} =~ s/\"/"/g;
 
1478     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1482 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
1485     . $locale->text('Are you sure you want to delete Invoice Number')
 
1486     . qq| $form->{invnumber}
 
1490 <input name=action class=submit type=submit value="|
 
1491     . $locale->text('Yes') . qq|">
 
1495   $lxdebug->leave_sub();
 
1499   $lxdebug->enter_sub();
 
1501   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
 
1503     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
1506   $form->{rowcount}--;
 
1507   $form->{shipto} = 1;
 
1510   $form->{title}  = $locale->text('Add Credit Note');
 
1511   $form->{script} = 'is.pl';
 
1516   # bo creates the id, reset it
 
1517   map { delete $form->{$_} }
 
1518     qw(id invnumber subject message cc bcc printed emailed queued);
 
1519   $form->{ $form->{vc} } =~ s/--.*//g;
 
1520   $form->{type} = "credit_note";
 
1523   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1525   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1526     qw(creditlimit creditremaining);
 
1528   $currency = $form->{currency};
 
1531   $form->{currency}     = $currency;
 
1532   $form->{exchangerate} = "";
 
1533   $form->{forex}        = "";
 
1534   $form->{exchangerate} = $exchangerate
 
1538                       $form->check_exchangerate(
 
1539                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
 
1542   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
 
1549   $lxdebug->leave_sub();
 
1553   $lxdebug->enter_sub();
 
1555   $form->redirect($locale->text('Invoice deleted!'))
 
1556     if (IS->delete_invoice(\%myconfig, \%$form, $spool));
 
1557   $form->error($locale->text('Cannot delete invoice!'));
 
1559   $lxdebug->leave_sub();