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");
 
  74   $lxdebug->leave_sub();
 
  78   $lxdebug->enter_sub();
 
  81   if ($myconfig{acs} =~ "AR--Add Sales Invoice" || $myconfig{acs} =~ "AR--AR")
 
  83     $form->error("Access Denied");
 
  86   if ($form->{print_and_post}) {
 
  87     $form->{action}   = "print";
 
  88     $form->{resubmit} = 1;
 
  89     $language_id = $form->{language_id};
 
  90     $printer_id = $form->{printer_id};
 
  94   if ($form->{print_and_post}) {
 
  95     $form->{language_id} = $language_id;
 
  96     $form->{printer_id} = $printer_id;
 
 101   $lxdebug->leave_sub();
 
 105   $lxdebug->enter_sub();
 
 107   $form->{vc} = 'customer';
 
 110   $form->{webdav}   = $webdav;
 
 111   $form->{lizenzen} = $lizenzen;
 
 113   $form->create_links("AR", \%myconfig, "customer");
 
 115   if ($form->{all_customer}) {
 
 116     unless ($form->{customer_id}) {
 
 117       $form->{customer_id} = $form->{all_customer}->[0]->{id};
 
 121   if ($form->{payment_id}) {
 
 122     $payment_id = $form->{payment_id};
 
 124   if ($form->{language_id}) {
 
 125     $language_id = $form->{language_id};
 
 127   if ($form->{taxzone_id}) {
 
 128     $taxzone_id = $form->{taxzone_id};
 
 133   if ($form->{shipto_id}) {
 
 134     $shipto_id = $form->{shipto_id};
 
 137   $cp_id = $form->{cp_id};
 
 138   IS->get_customer(\%myconfig, \%$form);
 
 140   #quote all_customer Bug 133
 
 141   foreach $ref (@{ $form->{all_customer} }) {
 
 142     $ref->{name} = $form->quote($ref->{name});
 
 147   IS->retrieve_invoice(\%myconfig, \%$form);
 
 148   $form->{cp_id} = $cp_id;
 
 151     $form->{payment_id} = $payment_id;
 
 154     $form->{language_id} = $language_id;
 
 157     $form->{taxzone_id} = $taxzone_id;
 
 160     $form->{shipto_id} = $shipto_id;
 
 164   @curr = split(/:/, $form->{currencies});
 
 166   $form->{defaultcurrency} = $curr[0];
 
 168   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 170   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
 
 172   if (@{ $form->{all_customer} }) {
 
 173     $form->{customer} = "$form->{customer}--$form->{customer_id}";
 
 174     map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
 
 175       (@{ $form->{all_customer} });
 
 179   if ($form->{all_departments}) {
 
 180     $form->{selectdepartment} = "<option>\n";
 
 181     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 184       $form->{selectdepartment} .=
 
 185         "<option>$_->{description}--$_->{id}\n"
 
 186     } (@{ $form->{all_departments} });
 
 189   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 192   if ($form->{all_employees}) {
 
 193     $form->{selectemployee} = "";
 
 194     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
 
 195       (@{ $form->{all_employees} });
 
 199   $form->{forex} = $form->{exchangerate};
 
 200   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
 202   foreach $key (keys %{ $form->{AR_links} }) {
 
 203     foreach $ref (@{ $form->{AR_links}{$key} }) {
 
 204       $form->{"select$key"} .= "<option>$ref->{accno}--$ref->{description}\n";
 
 207     if ($key eq "AR_paid") {
 
 208       for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
 
 209         $form->{"AR_paid_$i"} =
 
 210           "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
 
 213         $form->{"paid_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
 
 214         $form->{"datepaid_$i"} =
 
 215           $form->{acc_trans}{$key}->[$i - 1]->{transdate};
 
 216         $form->{"forex_$i"} = $form->{"exchangerate_$i"} =
 
 217           $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
 
 218         $form->{"source_$i"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
 
 219         $form->{"memo_$i"}   = $form->{acc_trans}{$key}->[$i - 1]->{memo};
 
 221         $form->{paidaccounts} = $i;
 
 225         "$form->{acc_trans}{$key}->[0]->{accno}--$form->{acc_trans}{$key}->[0]->{description}";
 
 230   $form->{paidaccounts} = 1 unless (exists $form->{paidaccounts});
 
 232   $form->{AR} = $form->{AR_1} unless $form->{id};
 
 235     ($form->datetonum($form->{invdate}, \%myconfig) <=
 
 236      $form->datetonum($form->{closedto}, \%myconfig));
 
 238   $lxdebug->leave_sub();
 
 241 sub prepare_invoice {
 
 242   $lxdebug->enter_sub();
 
 244   if ($form->{type} eq "credit_note") {
 
 245     $form->{type}     = "credit_note";
 
 246     $form->{formname} = "credit_note";
 
 248     $form->{type}     = "invoice";
 
 249     $form->{formname} = "invoice";
 
 254     map { $form->{$_} =~ s/\"/"/g }
 
 255       qw(invnumber ordnumber quonumber shippingpoint shipvia notes intnotes);
 
 257     #     # get pricegroups for parts
 
 258     #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 262     foreach $ref (@{ $form->{invoice_details} }) {
 
 265       map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
 
 266       $form->{"discount_$i"} =
 
 267         $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
 
 268       ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 270       $decimalplaces = ($dec > 2) ? $dec : 2;
 
 272       $form->{"sellprice_$i"} =
 
 273         $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 276       (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 277       $dec_qty = length $dec_qty;
 
 280         $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
 282       map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 283         qw(partnumber description unit partnotes);
 
 284       $form->{rowcount} = $i;
 
 288   $lxdebug->leave_sub();
 
 292   $lxdebug->enter_sub();
 
 296     if ($form->{type} eq "credit_note") {
 
 297       $form->{title} = $locale->text('Edit Credit Note');
 
 299       if ($form->{storno}) {
 
 300         $form->{title} = $locale->text('Edit Storno Credit Note');
 
 303       $form->{title} = $locale->text('Edit Sales Invoice');
 
 305       if ($form->{storno}) {
 
 306         $form->{title} = $locale->text('Edit Storno Invoice');
 
 312     ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
 
 314   $payment = qq|<option value=""></option>|;
 
 315   foreach $item (@{ $form->{payment_terms} }) {
 
 316     if ($form->{payment_id} eq $item->{id}) {
 
 317       $payment .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
 
 319       $payment .= qq|<option value="$item->{id}">$item->{description}</option>|;
 
 323   my $set_duedate_url =
 
 324     "$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=set_duedate";
 
 326   my $pjx = new CGI::Ajax( 'set_duedate' => $set_duedate_url );
 
 327   push(@ { $form->{AJAX} }, $pjx);
 
 329   if (@{ $form->{TAXZONE} }) {
 
 330     $form->{selecttaxzone} = "";
 
 331     foreach $item (@{ $form->{TAXZONE} }) {
 
 332       if ($item->{id} == $form->{taxzone_id}) {
 
 333         $form->{selecttaxzone} .=
 
 334           "<option value=$item->{id} selected>" . H($item->{description}) .
 
 337         $form->{selecttaxzone} .=
 
 338           "<option value=$item->{id}>" . H($item->{description}) . "</option>";
 
 343     $form->{selecttaxzone} =~ s/ selected//g;
 
 344     if ($form->{taxzone_id} ne "") {
 
 345       $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}/value=$form->{taxzone_id} selected/;
 
 351                 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
 
 352                 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
 
 353                 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
 
 357   if (@{ $form->{SHIPTO} }) {
 
 358     $form->{selectshipto} = "<option value=0></option>";
 
 359     foreach $item (@{ $form->{SHIPTO} }) {
 
 360       if ($item->{shipto_id} == $form->{shipto_id}) {
 
 361         $form->{selectshipto} .=
 
 362           "<option value=$item->{shipto_id} selected>$item->{shiptoname} $item->{shiptodepartment_1}</option>";
 
 364         $form->{selectshipto} .=
 
 365           "<option value=$item->{shipto_id}>$item->{shiptoname} $item->{shiptodepartment}</option>";
 
 370     $form->{selectshipto} = $form->unquote($form->{selectshipto});
 
 371     $form->{selectshipto} =~ s/ selected//g;
 
 372     if ($form->{shipto_id} ne "") {
 
 373       $form->{selectshipto} =~ s/value=$form->{shipto_id}/value=$form->{shipto_id} selected/;
 
 378                 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
 
 379                 <td><select name=shipto_id style="width:200px;">$form->{selectshipto}</select></td>|;
 
 380   $form->{selectshipto} = $form->quote($form->{selectshipto});
 
 381   $shipto .= qq| <input type=hidden name=selectshipto value="$form->{selectshipto}">|;
 
 385   # set option selected
 
 386   foreach $item (qw(AR customer currency department employee)) {
 
 387     $form->{"select$item"} =~ s/ selected//;
 
 388     $form->{"select$item"} =~
 
 389       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 392   #quote customer Bug 133
 
 393   $form->{selectcustomer} = $form->quote($form->{selectcustomer});
 
 396   if ($form->{all_contacts}) {
 
 398     $form->{selectcontact} = "<option></option>";
 
 399     foreach $item (@{ $form->{all_contacts} }) {
 
 400       my $department = ($item->{cp_abteilung}) ? "--$item->{cp_abteilung}" : "";
 
 401       if ($form->{cp_id} == $item->{cp_id}) {
 
 402         $form->{selectcontact} .=
 
 403           "<option value=$item->{cp_id} selected>$item->{cp_name}$department</option>";
 
 405         $form->{selectcontact} .= "<option value=$item->{cp_id}>$item->{cp_name}$department</option>";
 
 409     $form->{selectcontact} =~ s/ selected//g;
 
 410     if ($form->{cp_id} ne "") {
 
 411       $form->{selectcontact} =~ s/value=$form->{cp_id}/value=$form->{cp_id} selected/;
 
 416   if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
 
 422   #else {$form->{all_contacts} = 0;}
 
 424   $form->{exchangerate} =
 
 425     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 427   $form->{creditlimit} =
 
 428     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 429   $form->{creditremaining} =
 
 430     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 433   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 434     if ($form->{forex}) {
 
 437         . $locale->text('Exchangerate')
 
 438         . qq|</th><td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>|;
 
 442         . $locale->text('Exchangerate')
 
 443         . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
 
 447 <input type=hidden name=forex value=$form->{forex}>
 
 451     ($form->{selectcustomer})
 
 452     ? qq|<select name=customer>$form->{selectcustomer}</select>\n<input type=hidden name="selectcustomer" value="$form->{selectcustomer}">|
 
 453     : qq|<input name=customer value="$form->{customer}" size=35>|;
 
 457     ($form->{selectcontact})
 
 458     ? qq|<select name=cp_id>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
 
 459     : qq|<input name=contact value="$form->{contact}" size=35>|;
 
 463                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 464                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
 
 465                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
 468 | if $form->{selectdepartment};
 
 470   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 472   if ($form->{business}) {
 
 475                 <th align=right>| . $locale->text('Business') . qq|</th>
 
 476                 <td>$form->{business}</td>
 
 477                 <th align=right>| . $locale->text('Trade Discount') . qq|</th>
 
 479       . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
 
 485   if ($form->{max_dunning_level}) {
 
 491                 <th align=right>| . $locale->text('Max. Dunning Level') . qq|:</th>
 
 492                 <td><b>$form->{max_dunning_level}</b></td>
 
 493                 <th align=right>| . $locale->text('Dunning Amount') . qq|:</th>
 
 495       . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
 
 504   $form->{fokus} = "invoice.customer";
 
 506   # use JavaScript Calendar or not
 
 507   $form->{jsscript} = $jscalendar;
 
 509   if ($form->{type} eq "credit_note") {
 
 510     if ($form->{jsscript}) {
 
 512       # with JavaScript Calendar
 
 514         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
 
 515         <td><input type=button name=invdate id="trigger1" value=|
 
 516         . $locale->text('button') . qq|></td>
 
 521         Form->write_trigger(\%myconfig,     "1",
 
 526       # without JavaScript Calendar
 
 528         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
 
 530         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
 
 533     if ($form->{jsscript}) {
 
 535       # with JavaScript Calendar
 
 537         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
 
 538         <td><input type=button name=invdate id="trigger1" value=|
 
 539         . $locale->text('button') . qq|></td>
 
 542         <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
 
 543         <td width="4"><input type=button name=duedate id="trigger2" value=|
 
 544         . $locale->text('button') . qq|></td></td>
 
 547         <td width="13"><input name=deliverydate id=deliverydate size=11 title="$myconfig{dateformat}" value=$form->{deliverydate}></td>
 
 548         <td width="4"><input type=button name=deliverydate id="trigger3" value=|
 
 549         . $locale->text('button') . qq|></td></td>
 
 554         Form->write_trigger(\%myconfig,     "3",
 
 556                             "trigger1",     "duedate",
 
 558                             "deliverydate", "BL",
 
 562       # without JavaScript Calendar
 
 564         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
 
 566         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
 
 569   if ($form->{resubmit} && ($form->{format} eq "html")) {
 
 571       qq|window.open('about:blank','Beleg'); document.invoice.target = 'Beleg';document.invoice.submit()|;
 
 572   } elsif ($form->{resubmit}) {
 
 573     $onload = qq|document.invoice.submit()|;
 
 578   $credittext = $locale->text('Credit Limit exceeded!!!');
 
 579   if ($creditwarning) {
 
 580     $onload = qq|alert('$credittext')|;
 
 583   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
 
 586     $form->write_trigger(\%myconfig, 2,
 
 587                          "orddate", "BL", "trigger_orddate",
 
 588                          "quodate", "BL", "trigger_quodate");
 
 593 <body onLoad="$onload">
 
 594 <script type="text/javascript" src="js/common.js"></script>
 
 595 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
 
 596 <script type="text/javascript" src="js/vendor_selection.js"></script>
 
 597 <script type="text/javascript" src="js/calculate_qty.js"></script>
 
 599 <form method=post name="invoice" action=$form->{script}>
 
 602 <input type=hidden name=id value=$form->{id}>
 
 603 <input type=hidden name=action value=$form->{action}>
 
 605 <input type=hidden name=type value=$form->{type}>
 
 606 <input type=hidden name=media value=$form->{media}>
 
 607 <input type=hidden name=format value=$form->{format}>
 
 609 <input type=hidden name=queued value="$form->{queued}">
 
 610 <input type=hidden name=printed value="$form->{printed}">
 
 611 <input type=hidden name=emailed value="$form->{emailed}">
 
 613 <input type=hidden name=title value="$form->{title}">
 
 614 <input type=hidden name=vc value=$form->{vc}>
 
 616 <input type=hidden name=discount value=$form->{discount}>
 
 617 <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 618 <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 620 <input type=hidden name=tradediscount value=$form->{tradediscount}>
 
 621 <input type=hidden name=business value=$form->{business}>
 
 623 <input type=hidden name=closedto value=$form->{closedto}>
 
 624 <input type=hidden name=locked value=$form->{locked}>
 
 626 <input type=hidden name=shipped value=$form->{shipped}>
 
 627 <input type=hidden name=lizenzen value=$lizenzen>
 
 628 <input type=hidden name=storno value=$form->{storno}>
 
 629 <input type=hidden name=storno_id value=$form->{storno_id}>
 
 635     <th class=listtop>$form->{title}</th>
 
 645                 <th align=right nowrap>| . $locale->text('Customer') . qq|</th>
 
 646                 <td colspan=3>$customer</td>
 
 647     <input type=hidden name=customer_klass value=$form->{customer_klass}>
 
 648                 <input type=hidden name=customer_id value=$form->{customer_id}>
 
 649                 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
 
 650                 <th align=richt nowrap>|
 
 651     . $locale->text('Contact Person') . qq|</th>
 
 652                 <td colspan=3>$contact</td>
 
 659                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 660                       <td>$form->{creditlimit}</td>
 
 662                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
 
 663                       <td class="plus$n">$form->{creditremaining}</td>
 
 672                 <th align=right nowrap>| . $locale->text('Record in') . qq|</th>
 
 673                 <td colspan=3><select name=AR style="width:280px;">$form->{selectAR}</select></td>
 
 674                 <input type=hidden name=selectAR value="$form->{selectAR}">
 
 679                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
 
 680                 <td><select name=currency>$form->{selectcurrency}</select></td>
 
 681                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 
 682                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 
 683                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
 
 684                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
 
 688                 <th align=right nowrap>| . $locale->text('Shipping Point') . qq|</th>
 
 689                 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
 
 692                 <th align=right nowrap>| . $locale->text('Ship via') . qq|</th>
 
 693                 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
 
 700 #                         <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
 
 702 #                       <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
 
 703 #                       <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
 
 707 #                         <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
 
 709 #                       <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
 
 710 #                       <input size=45 id=delivery_vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
 
 720                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
 
 721                 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
 
 722                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
 725 if ($form->{type} eq "credit_note") {
 
 727                 <th align=right nowrap>| . $locale->text('Credit Note Number') . qq|</th>
 
 728                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 731                 <th align=right>| . $locale->text('Credit Note Date') . qq|</th>
 
 736                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 737                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 740                 <th align=right>| . $locale->text('Invoice Date') . qq|</th>
 
 744                 <th align=right>| . $locale->text('Due Date') . qq|</th>
 
 748                 <th align=right>| . $locale->text('Delivery Date') . qq|</th>
 
 753                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 754                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
 
 757           <th align="right" nowrap>| . $locale->text('Order Date') . qq|</th>
 
 758           <td><input name="orddate" id="orddate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{orddate}) . qq|"></td>
 
 759           <td><input type="button" name="b_orddate" id="trigger_orddate" value="?"></td>
 
 762                 <th align=right nowrap>| . $locale->text('Quotation Number') . qq|</th>
 
 763                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
 
 766           <th align="right" nowrap>| . $locale->text('Quotation Date') . qq|</th>
 
 767           <td><input name="quodate" id="quodate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{quodate}) . qq|"></td>
 
 768           <td><input type="button" name="b_quodate" id="trigger_quodate" value="?"></td>
 
 771                 <th align=right nowrap>| . $locale->text('Customer Order Number') . qq|</th>
 
 772                 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
 
 787 <!-- shipto are in hidden variables -->
 
 789 <input type=hidden name=shiptoname value="$form->{shiptoname}">
 
 790 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
 
 791 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
 
 792 <input type=hidden name=shiptocity value="$form->{shiptocity}">
 
 793 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
 
 794 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
 
 795 <input type=hidden name=shiptophone value="$form->{shiptophone}">
 
 796 <input type=hidden name=shiptofax value="$form->{shiptofax}">
 
 797 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
 
 799 <!-- email variables -->
 
 800 <input type=hidden name=message value="$form->{message}">
 
 801 <input type=hidden name=email value="$form->{email}">
 
 802 <input type=hidden name=subject value="$form->{subject}">
 
 803 <input type=hidden name=cc value="$form->{cc}">
 
 804 <input type=hidden name=bcc value="$form->{bcc}">
 
 805 <input type=hidden name=webdav value=$webdav>
 
 806 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 809   foreach $item (split / /, $form->{taxaccounts}) {
 
 811 <input type=hidden name="${item}_rate" value="$form->{"${item}_rate"}">
 
 812 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
 
 813 <input type=hidden name="${item}_taxnumber" value="$form->{"${item}_taxnumber"}">
 
 816   $lxdebug->leave_sub();
 
 820   $lxdebug->enter_sub();
 
 822   $form->{invtotal} = $form->{invsubtotal};
 
 824   if (($rows = $form->numtextrows($form->{notes}, 26, 8)) < 2) {
 
 827   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
 
 830   $rows = ($rows > $introws) ? $rows : $introws;
 
 832     qq|<textarea name=notes rows=$rows cols=26 wrap=soft>$form->{notes}</textarea>|;
 
 834     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
 
 836   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
 
 839   if ($form->{taxaccounts}) {
 
 841                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
 
 842       . $locale->text('Tax Included') . qq|</b><br><br>|;
 
 845   if (!$form->{taxincluded}) {
 
 847     foreach $item (split / /, $form->{taxaccounts}) {
 
 848       if ($form->{"${item}_base"}) {
 
 849         $form->{"${item}_total"} =
 
 851                              $form->{"${item}_base"} * $form->{"${item}_rate"},
 
 853         $form->{invtotal} += $form->{"${item}_total"};
 
 854         $form->{"${item}_total"} =
 
 855           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 859                 <th align=right>$form->{"${item}_description"}</th>
 
 860                 <td align=right>$form->{"${item}_total"}</td>
 
 866     $form->{invsubtotal} =
 
 867       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
 
 871                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
 
 872                 <td align=right>$form->{invsubtotal}</td>
 
 878   if ($form->{taxincluded}) {
 
 879     foreach $item (split / /, $form->{taxaccounts}) {
 
 880       if ($form->{"${item}_base"}) {
 
 881         $form->{"${item}_total"} =
 
 883                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
 
 884                               (1 + $form->{"${item}_rate"})
 
 887         $form->{"${item}_netto"} =
 
 889                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
 
 891         $form->{"${item}_total"} =
 
 892           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 893         $form->{"${item}_netto"} =
 
 894           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
 
 898                 <th align=right>Enthaltene $form->{"${item}_description"}</th>
 
 899                 <td align=right>$form->{"${item}_total"}</td>
 
 902                 <th align=right>Nettobetrag</th>
 
 903                 <td align=right>$form->{"${item}_netto"}</td>
 
 911   $form->{oldinvtotal} = $form->{invtotal};
 
 913     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
 
 923                 <th align=left>| . $locale->text('Notes') . qq|</th>
 
 924                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
 
 925                 <th align=right>| . $locale->text('Payment Terms') . qq|</th>
 
 930                 <td><select name=payment_id onChange="if (this.value) set_duedate(['payment_id__' + this.value],['duedate'])">$payment
 
 935           <td align=right width=100%>
 
 941                 <th align=right>| . $locale->text('Total') . qq|</th>
 
 942                 <td align=right>$form->{invtotal}</td>
 
 954     <td><hr size=3 noshade></td>
 
 957     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
 
 960       <td align=left width=30%><b>Dateiname</b></td>
 
 961       <td align=left width=70%><b>Webdavlink</b></td>
 
 963     foreach $file (keys %{ $form->{WEBDAV} }) {
 
 966         <td align=left>$file</td>
 
 967         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
 
 978 if ($form->{type} eq "credit_note") {
 
 983         <tr class=listheading>
 
 984           <th colspan=6 class=listheading>|
 
 985     . $locale->text('Payments') . qq|</th>
 
 993         <tr class=listheading>
 
 994           <th colspan=6 class=listheading>|
 
 995     . $locale->text('Incoming Payments') . qq|</th>
 
1000   if ($form->{currency} eq $form->{defaultcurrency}) {
 
1001     @column_index = qw(datepaid source memo paid AR_paid);
 
1003     @column_index = qw(datepaid source memo paid exchangerate AR_paid);
 
1006   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
 
1007   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
 
1008   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
 
1009   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
 
1010   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
 
1011   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
 
1016   map { print "$column_data{$_}\n" } @column_index;
 
1023   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
1024   for $i (1 .. $form->{paidaccounts}) {
 
1029     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
 
1030     $form->{"selectAR_paid_$i"} =~
 
1031       s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
 
1034     $totalpaid += $form->{"paid_$i"};
 
1035     if ($form->{"paid_$i"}) {
 
1036       $form->{"paid_$i"} =
 
1037         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
1039     $form->{"exchangerate_$i"} =
 
1040       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
1042     $exchangerate = qq| |;
 
1043     if ($form->{currency} ne $form->{defaultcurrency}) {
 
1044       if ($form->{"forex_$i"}) {
 
1046           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
 
1049           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
 
1053     $exchangerate .= qq|
 
1054 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
 
1057     $column_data{"paid_$i"} =
 
1058       qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
 
1059     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
 
1060     $column_data{"AR_paid_$i"}      =
 
1061       qq|<td align=center><select name="AR_paid_$i">$form->{"selectAR_paid_$i"}</select></td>|;
 
1062     $column_data{"datepaid_$i"} =
 
1063       qq|<td align=center><input id="datepaid_$i" name="datepaid_$i"  size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}>
 
1064          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
 
1065     $column_data{"source_$i"} =
 
1066       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
 
1067     $column_data{"memo_$i"} =
 
1068       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
 
1070     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
 
1073     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
 
1077 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
 
1078 <input type=hidden name=selectAR_paid value="$form->{selectAR_paid}">
 
1079 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
1080 <input type=hidden name=oldtotalpaid value=$totalpaid>
 
1085     <td><hr size=3 noshade></td>
 
1099   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
1100   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
1104     <input class=submit type=submit accesskey="u" name=action id=update_button value="|
 
1105       . $locale->text('Update') . qq|">
 
1106     <input class=submit type=submit name=action value="|
 
1107       . $locale->text('Ship to') . qq|">
 
1108     <input class=submit type=submit name=action value="|
 
1109       . $locale->text('Print') . qq|">
 
1110     <input class=submit type=submit name=action value="|
 
1111       . $locale->text('E-mail') . qq|">|;
 
1112     print qq|<input class=submit type=submit name=action value="|
 
1113       . $locale->text('Storno') . qq|">| unless ($form->{storno});
 
1114     print qq|<input class=submit type=submit name=action value="|
 
1115       . $locale->text('Post Payment') . qq|">
 
1117     print qq|<input class=submit type=submit name=action value="|
 
1118       . $locale->text('Use As Template') . qq|">
 
1120   if ($form->{id} && !($form->{type} eq "credit_note")) {
 
1122     <input class=submit type=submit name=action value="|
 
1123       . $locale->text('Credit Note') . qq|">
 
1126     if ($form->{radier}) {
 
1128     <input class=submit type=submit name=action value="|
 
1129       . $locale->text('Delete') . qq|">
 
1134     if ($invdate > $closedto) {
 
1136       <input class=submit type=submit name=action value="|
 
1137         . $locale->text('Order') . qq|">
 
1142     if ($invdate > $closedto) {
 
1143       print qq|<input class=submit type=submit name=action id=update_button value="|
 
1144         . $locale->text('Update') . qq|">
 
1145       <input class=submit type=submit name=action value="|
 
1146         . $locale->text('Ship to') . qq|">
 
1147       <input class=submit type=submit name=action value="|
 
1148         . $locale->text('Preview') . qq|">
 
1149       <input class=submit type=submit name=action value="|
 
1150         . $locale->text('E-mail') . qq|">
 
1151       <input class=submit type=submit name=action value="|
 
1152         . $locale->text('Print and Post') . qq|">
 
1153       <input class=submit type=submit name=action value="|
 
1154         . $locale->text('Post') . qq|">|;
 
1158   print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
 
1161 <input type=hidden name=rowcount value=$form->{rowcount}>
 
1163 <input name=callback type=hidden value="$form->{callback}">
 
1165 <input type=hidden name=path value=$form->{path}>
 
1166 <input type=hidden name=login value=$form->{login}>
 
1167 <input type=hidden name=password value=$form->{password}>
 
1176   $lxdebug->leave_sub();
 
1180   $lxdebug->enter_sub();
 
1182   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1183     qw(exchangerate creditlimit creditremaining);
 
1184   if ($form->{second_run}) {
 
1185     $form->{print_and_post} = 0;
 
1188   $form->{update} = 1;
 
1190   &check_name(customer);
 
1194   $form->{exchangerate} = $exchangerate
 
1198                          $form->check_exchangerate(
 
1199                          \%myconfig, $form->{currency}, $form->{invdate}, 'buy'
 
1202   for $i (1 .. $form->{paidaccounts}) {
 
1203     if ($form->{"paid_$i"}) {
 
1205         $form->{"${_}_$i"} =
 
1206           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1207       } qw(paid exchangerate);
 
1209       $form->{"exchangerate_$i"} = $exchangerate
 
1211             $form->{"forex_$i"} = (
 
1213                    $form->check_exchangerate(
 
1214                    \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy'
 
1219   $i            = $form->{rowcount};
 
1220   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
1222   # if last row empty, check the form otherwise retrieve new item
 
1223   if (   ($form->{"partnumber_$i"} eq "")
 
1224       && ($form->{"description_$i"} eq "")
 
1225       && ($form->{"partsgroup_$i"}  eq "")) {
 
1227     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1232     IS->retrieve_item(\%myconfig, \%$form);
 
1234     $rows = scalar @{ $form->{item_list} };
 
1236     $form->{"discount_$i"} =
 
1237       $form->format_amount(\%myconfig, $form->{discount} * 100);
 
1240       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
 
1249         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
1251         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
 
1252           qw(partnumber description unit);
 
1253         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
 
1254           keys %{ $form->{item_list}[0] };
 
1255         if ($form->{"part_payment_id_$i"} ne "") {
 
1256           $form->{payment_id} = $form->{"part_payment_id_$i"};
 
1259         if ($form->{"not_discountable_$i"}) {
 
1260           $form->{"discount_$i"} = 0;
 
1263         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
 
1264         ($dec) = ($s =~ /\.(\d+)/);
 
1266         $decimalplaces = ($dec > 2) ? $dec : 2;
 
1269           $form->{"sellprice_$i"} = $sellprice;
 
1272           # if there is an exchange rate adjust sellprice
 
1273           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
 
1274           $form->{"sellprice_$i"} /= $exchangerate;
 
1277         $form->{"listprice_$i"} /= $exchangerate;
 
1280           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
 
1281           (1 - $form->{"discount_$i"} / 100);
 
1282         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
 
1283         map { $form->{"${_}_base"} += $amount }
 
1284           (split / /, $form->{"taxaccounts_$i"});
 
1285         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1286           split / /, $form->{"taxaccounts_$i"}
 
1287           if !$form->{taxincluded};
 
1289         $form->{creditremaining} -= $amount;
 
1292           $form->{"${_}_$i"} =
 
1293             $form->format_amount(\%myconfig, $form->{"${_}_$i"},
 
1295         } qw(sellprice listprice);
 
1298           $form->format_amount(\%myconfig, $form->{"qty_$i"});
 
1301           if ($form->{"inventory_accno_$i"} ne "") {
 
1302             $form->{"lizenzen_$i"} = qq|<option></option>|;
 
1303             foreach $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
 
1304               $form->{"lizenzen_$i"} .=
 
1305                 qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
 
1307             $form->{"lizenzen_$i"} .=
 
1308               qq|<option value=-1>Neue Lizenz</option>|;
 
1312         # get pricegroups for parts
 
1313         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1315         # build up html code for prices_$i
 
1316         &set_pricegroup($i);
 
1323       # ok, so this is a new part
 
1324       # ask if it is a part or service item
 
1326       if (   $form->{"partsgroup_$i"}
 
1327           && ($form->{"partsnumber_$i"} eq "")
 
1328           && ($form->{"description_$i"} eq "")) {
 
1329         $form->{rowcount}--;
 
1330         $form->{"discount_$i"} = "";
 
1334         $form->{"id_$i"}   = 0;
 
1335         $form->{"unit_$i"} = $locale->text('ea');
 
1342   $lxdebug->leave_sub();
 
1345   $lxdebug->enter_sub();
 
1346   for $i (1 .. $form->{paidaccounts}) {
 
1347     if ($form->{"paid_$i"}) {
 
1348       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1350       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1352       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1353         if ($datepaid <= $closedto);
 
1355       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1356         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1357           if ($invdate == $datepaid);
 
1358         $form->isblank("exchangerate_$i",
 
1359                        $locale->text('Exchangerate for payment missing!'));
 
1364   ($form->{AR})      = split /--/, $form->{AR};
 
1365   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1367   $form->redirect($locale->text(' Payment posted!'))
 
1368       if (IS->post_payment(\%myconfig, \%$form));
 
1369     $form->error($locale->text('Cannot post payment!'));
 
1372   $lxdebug->leave_sub();
 
1376   $lxdebug->enter_sub();
 
1377   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
 
1378   $form->isblank("customer", $locale->text('Customer missing!'));
 
1380   # if oldcustomer ne customer redo form
 
1381   if (&check_name(customer)) {
 
1385   if ($form->{second_run}) {
 
1386     $form->{print_and_post} = 0;
 
1391   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
1392   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
1394   $form->error($locale->text('Cannot post invoice for a closed period!'))
 
1395     if ($invdate <= $closedto);
 
1397   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1398     if ($form->{currency} ne $form->{defaultcurrency});
 
1400   for $i (1 .. $form->{paidaccounts}) {
 
1401     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1402       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1404       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1406       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1407         if ($datepaid <= $closedto);
 
1409       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1410         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1411           if ($invdate == $datepaid);
 
1412         $form->isblank("exchangerate_$i",
 
1413                        $locale->text('Exchangerate for payment missing!'));
 
1418   ($form->{AR})      = split /--/, $form->{AR};
 
1419   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1421   $form->{label} = $locale->text('Invoice');
 
1423   $form->{id} = 0 if $form->{postasnew};
 
1425   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
 
1426   if (!$form->{invnumber} || $form->{postasnew}) {
 
1427     if ($form->{type} eq "credit_note") {
 
1428       $form->{invnumber} = $form->update_defaults(\%myconfig, "cnnumber");
 
1430       $form->{invnumber} = $form->update_defaults(\%myconfig, "invnumber");
 
1435     if (!(IS->post_invoice(\%myconfig, \%$form))) {
 
1436       $form->error($locale->text('Cannot post invoice!'));
 
1440             $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
 
1441       if (IS->post_invoice(\%myconfig, \%$form));
 
1442     $form->error($locale->text('Cannot post invoice!'));
 
1445   $lxdebug->leave_sub();
 
1448 sub print_and_post {
 
1449   $lxdebug->enter_sub();
 
1451   $old_form               = new Form;
 
1453   $form->{print_and_post} = 1;
 
1457   $lxdebug->leave_sub();
 
1461 sub use_as_template {
 
1462   $lxdebug->enter_sub();
 
1464   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);
 
1465   $form->{paidaccounts} = 1;
 
1466   $form->{rowcount}--;
 
1467   $form->{invdate} = $form->current_date(\%myconfig);
 
1470   $lxdebug->leave_sub();
 
1474   $lxdebug->enter_sub();
 
1476   if ($form->{storno}) {
 
1477     $form->error($locale->text('Cannot storno storno invoice!'));
 
1480   $form->{storno_id} = $form->{id};
 
1481   $form->{storno} = 1;
 
1483   $form->{invnumber} = "Storno zu " . $form->{invnumber};
 
1486   $lxdebug->leave_sub();
 
1491   $lxdebug->enter_sub();
 
1493   $form->{preview} = 1;
 
1494   $old_form = new Form;
 
1495   for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
1496   $old_form->{rowcount}++;
 
1498   &print_form($old_form);
 
1499   $lxdebug->leave_sub();
 
1504   $lxdebug->enter_sub();
 
1505   if ($form->{second_run}) {
 
1506     $form->{print_and_post} = 0;
 
1513 <form method=post action=$form->{script}>
 
1516   # delete action variable
 
1517   map { delete $form->{$_} } qw(action header);
 
1519   foreach $key (keys %$form) {
 
1520     $form->{$key} =~ s/\"/"/g;
 
1521     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1525 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
1528     . $locale->text('Are you sure you want to delete Invoice Number')
 
1529     . qq| $form->{invnumber}
 
1533 <input name=action class=submit type=submit value="|
 
1534     . $locale->text('Yes') . qq|">
 
1538   $lxdebug->leave_sub();
 
1542   $lxdebug->enter_sub();
 
1544   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
 
1546     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
1549   $form->{rowcount}--;
 
1550   $form->{shipto} = 1;
 
1553   $form->{title}  = $locale->text('Add Credit Note');
 
1554   $form->{script} = 'is.pl';
 
1559   # bo creates the id, reset it
 
1560   map { delete $form->{$_} }
 
1561     qw(id invnumber subject message cc bcc printed emailed queued);
 
1562   $form->{ $form->{vc} } =~ s/--.*//g;
 
1563   $form->{type} = "credit_note";
 
1566   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1568   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1569     qw(creditlimit creditremaining);
 
1571   $currency = $form->{currency};
 
1574   $form->{currency}     = $currency;
 
1575   $form->{exchangerate} = "";
 
1576   $form->{forex}        = "";
 
1577   $form->{exchangerate} = $exchangerate
 
1581                       $form->check_exchangerate(
 
1582                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
 
1585   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
 
1592   $lxdebug->leave_sub();
 
1596   $lxdebug->enter_sub();
 
1598   $form->redirect($locale->text('Invoice deleted!'))
 
1599     if (IS->delete_invoice(\%myconfig, \%$form, $spool));
 
1600   $form->error($locale->text('Cannot delete invoice!'));
 
1602   $lxdebug->leave_sub();