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}">
 
 356   my @old_project_ids = ($form->{"globalproject_id"});
 
 357   map({ push(@old_project_ids, $form->{"project_id_$_"})
 
 358           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
 
 360   $form->get_lists("contacts" => "ALL_CONTACTS",
 
 361                    "shipto" => "ALL_SHIPTO",
 
 362                    "projects" => { "key" => "ALL_PROJECTS",
 
 364                                    "old_id" => \@old_project_ids });
 
 366   my (%labels, @values);
 
 367   foreach my $item (@{ $form->{"ALL_CONTACTS"} }) {
 
 368     push(@values, $item->{"cp_id"});
 
 369     $labels{$item->{"cp_id"}} = $item->{"cp_name"} .
 
 370       ($item->{"cp_abteilung"} ? " ($item->{cp_abteilung})" : "");
 
 373     NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values,
 
 374                          '-labels' => \%labels, '-default' => $form->{"cp_id"}));
 
 378   foreach my $item (@{ $form->{"ALL_SHIPTO"} }) {
 
 379     push(@values, $item->{"shipto_id"});
 
 380     $labels{$item->{"shipto_id"}} =
 
 381       $item->{"shiptoname"} . " " . $item->{"shiptodepartment_1"};
 
 385                 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
 
 387     NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values,
 
 388                          '-labels' => \%labels, '-default' => $form->{"shipto_id"}))
 
 393   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 394     push(@values, $item->{"id"});
 
 395     $labels{$item->{"id"}} = $item->{"projectnumber"};
 
 397   my $globalprojectnumber =
 
 398     NTI($cgi->popup_menu('-name' => 'globalproject_id', '-values' => \@values,
 
 399                          '-labels' => \%labels,
 
 400                          '-default' => $form->{"globalproject_id"}));
 
 402   # set option selected
 
 403   foreach $item (qw(AR customer currency department employee)) {
 
 404     $form->{"select$item"} =~ s/ selected//;
 
 405     $form->{"select$item"} =~
 
 406       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 409   #quote customer Bug 133
 
 410   $form->{selectcustomer} = $form->quote($form->{selectcustomer});
 
 412   if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
 
 418   $form->{exchangerate} =
 
 419     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 421   $form->{creditlimit} =
 
 422     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 423   $form->{creditremaining} =
 
 424     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 427   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 428     if ($form->{forex}) {
 
 431         . $locale->text('Exchangerate')
 
 432         . qq|</th><td>$form->{exchangerate}<input type=hidden name=exchangerate value=$form->{exchangerate}></td>|;
 
 436         . $locale->text('Exchangerate')
 
 437         . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
 
 441 <input type=hidden name=forex value=$form->{forex}>
 
 445     ($form->{selectcustomer})
 
 446     ? qq|<select name=customer>$form->{selectcustomer}</select>\n<input type=hidden name="selectcustomer" value="$form->{selectcustomer}">|
 
 447     : qq|<input name=customer value="$form->{customer}" size=35>|;
 
 451                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 452                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
 
 453                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
 456 | if $form->{selectdepartment};
 
 458   $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 460   if ($form->{business}) {
 
 463                 <th align=right>| . $locale->text('Business') . qq|</th>
 
 464                 <td>$form->{business}</td>
 
 465                 <th align=right>| . $locale->text('Trade Discount') . qq|</th>
 
 467       . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
 
 473   if ($form->{max_dunning_level}) {
 
 479                 <th align=right>| . $locale->text('Max. Dunning Level') . qq|:</th>
 
 480                 <td><b>$form->{max_dunning_level}</b></td>
 
 481                 <th align=right>| . $locale->text('Dunning Amount') . qq|:</th>
 
 483       . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
 
 492   $form->{fokus} = "invoice.customer";
 
 494   # use JavaScript Calendar or not
 
 495   $form->{jsscript} = $jscalendar;
 
 497   if ($form->{type} eq "credit_note") {
 
 498     if ($form->{jsscript}) {
 
 500       # with JavaScript Calendar
 
 502         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
 
 503         <td><input type=button name=invdate id="trigger1" value=|
 
 504         . $locale->text('button') . qq|></td>
 
 509         Form->write_trigger(\%myconfig,     "1",
 
 514       # without JavaScript Calendar
 
 516         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
 
 518         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
 
 521     if ($form->{jsscript}) {
 
 523       # with JavaScript Calendar
 
 525         <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
 
 526         <td><input type=button name=invdate id="trigger1" value=|
 
 527         . $locale->text('button') . qq|></td>
 
 530         <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
 
 531         <td width="4"><input type=button name=duedate id="trigger2" value=|
 
 532         . $locale->text('button') . qq|></td></td>
 
 535         <td width="13"><input name=deliverydate id=deliverydate size=11 title="$myconfig{dateformat}" value=$form->{deliverydate}></td>
 
 536         <td width="4"><input type=button name=deliverydate id="trigger3" value=|
 
 537         . $locale->text('button') . qq|></td></td>
 
 542         Form->write_trigger(\%myconfig,     "3",
 
 544                             "trigger1",     "duedate",
 
 546                             "deliverydate", "BL",
 
 550       # without JavaScript Calendar
 
 552         qq|<td><input name=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>|;
 
 554         qq|<td width="13"><input name=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>|;
 
 557   if ($form->{resubmit} && ($form->{format} eq "html")) {
 
 559       qq|window.open('about:blank','Beleg'); document.invoice.target = 'Beleg';document.invoice.submit()|;
 
 560   } elsif ($form->{resubmit}) {
 
 561     $onload = qq|document.invoice.submit()|;
 
 566   $credittext = $locale->text('Credit Limit exceeded!!!');
 
 567   if ($creditwarning) {
 
 568     $onload = qq|alert('$credittext')|;
 
 571   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
 
 574     $form->write_trigger(\%myconfig, 2,
 
 575                          "orddate", "BL", "trigger_orddate",
 
 576                          "quodate", "BL", "trigger_quodate");
 
 581 <body onLoad="$onload">
 
 582 <script type="text/javascript" src="js/common.js"></script>
 
 583 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
 
 584 <script type="text/javascript" src="js/vendor_selection.js"></script>
 
 585 <script type="text/javascript" src="js/calculate_qty.js"></script>
 
 587 <form method=post name="invoice" action=$form->{script}>
 
 590 <input type=hidden name=id value=$form->{id}>
 
 591 <input type=hidden name=action value=$form->{action}>
 
 593 <input type=hidden name=type value=$form->{type}>
 
 594 <input type=hidden name=media value=$form->{media}>
 
 595 <input type=hidden name=format value=$form->{format}>
 
 597 <input type=hidden name=queued value="$form->{queued}">
 
 598 <input type=hidden name=printed value="$form->{printed}">
 
 599 <input type=hidden name=emailed value="$form->{emailed}">
 
 601 <input type=hidden name=title value="$form->{title}">
 
 602 <input type=hidden name=vc value=$form->{vc}>
 
 604 <input type=hidden name=discount value=$form->{discount}>
 
 605 <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 606 <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 608 <input type=hidden name=tradediscount value=$form->{tradediscount}>
 
 609 <input type=hidden name=business value=$form->{business}>
 
 611 <input type=hidden name=closedto value=$form->{closedto}>
 
 612 <input type=hidden name=locked value=$form->{locked}>
 
 614 <input type=hidden name=shipped value=$form->{shipped}>
 
 615 <input type=hidden name=lizenzen value=$lizenzen>
 
 616 <input type=hidden name=storno value=$form->{storno}>
 
 617 <input type=hidden name=storno_id value=$form->{storno_id}>
 
 623     <th class=listtop>$form->{title}</th>
 
 633                 <th align=right nowrap>| . $locale->text('Customer') . qq|</th>
 
 634                 <td colspan=3>$customer</td>
 
 635     <input type=hidden name=customer_klass value=$form->{customer_klass}>
 
 636                 <input type=hidden name=customer_id value=$form->{customer_id}>
 
 637                 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
 
 638                 <th align=richt nowrap>|
 
 639     . $locale->text('Contact Person') . qq|</th>
 
 640                 <td colspan=3>$contact</td>
 
 647                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 648                       <td>$form->{creditlimit}</td>
 
 650                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
 
 651                       <td class="plus$n">$form->{creditremaining}</td>
 
 660                 <th align=right nowrap>| . $locale->text('Record in') . qq|</th>
 
 661                 <td colspan=3><select name=AR style="width:280px;">$form->{selectAR}</select></td>
 
 662                 <input type=hidden name=selectAR value="$form->{selectAR}">
 
 667                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
 
 668                 <td><select name=currency>$form->{selectcurrency}</select></td>
 
 669                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 
 670                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 
 671                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
 
 672                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
 
 676                 <th align=right nowrap>| . $locale->text('Shipping Point') . qq|</th>
 
 677                 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
 
 680                 <th align=right nowrap>| . $locale->text('Ship via') . qq|</th>
 
 681                 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
 
 688 #                         <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
 
 690 #                       <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
 
 691 #                       <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
 
 695 #                         <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
 
 697 #                       <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
 
 698 #                       <input size=45 id=delivery_vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
 
 708                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
 
 709                 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
 
 710                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
 713 if ($form->{type} eq "credit_note") {
 
 715                 <th align=right nowrap>| . $locale->text('Credit Note Number') . qq|</th>
 
 716                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 719                 <th align=right>| . $locale->text('Credit Note Date') . qq|</th>
 
 724                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 725                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 728                 <th align=right>| . $locale->text('Invoice Date') . qq|</th>
 
 732                 <th align=right>| . $locale->text('Due Date') . qq|</th>
 
 736                 <th align=right>| . $locale->text('Delivery Date') . qq|</th>
 
 741                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 742                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
 
 745           <th align="right" nowrap>| . $locale->text('Order Date') . qq|</th>
 
 746           <td><input name="orddate" id="orddate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{orddate}) . qq|"></td>
 
 747           <td><input type="button" name="b_orddate" id="trigger_orddate" value="?"></td>
 
 750                 <th align=right nowrap>| . $locale->text('Quotation Number') . qq|</th>
 
 751                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
 
 754           <th align="right" nowrap>| . $locale->text('Quotation Date') . qq|</th>
 
 755           <td><input name="quodate" id="quodate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{quodate}) . qq|"></td>
 
 756           <td><input type="button" name="b_quodate" id="trigger_quodate" value="?"></td>
 
 759                 <th align=right nowrap>| . $locale->text('Customer Order Number') . qq|</th>
 
 760                 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
 
 763           <th align="right" nowrap>| . $locale->text('Project Number') . qq|</th>
 
 764           <td>$globalprojectnumber</td>
 
 779 <!-- shipto are in hidden variables -->
 
 781 <input type=hidden name=shiptoname value="$form->{shiptoname}">
 
 782 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
 
 783 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
 
 784 <input type=hidden name=shiptocity value="$form->{shiptocity}">
 
 785 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
 
 786 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
 
 787 <input type=hidden name=shiptophone value="$form->{shiptophone}">
 
 788 <input type=hidden name=shiptofax value="$form->{shiptofax}">
 
 789 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
 
 791 <!-- email variables -->
 
 792 <input type=hidden name=message value="$form->{message}">
 
 793 <input type=hidden name=email value="$form->{email}">
 
 794 <input type=hidden name=subject value="$form->{subject}">
 
 795 <input type=hidden name=cc value="$form->{cc}">
 
 796 <input type=hidden name=bcc value="$form->{bcc}">
 
 797 <input type=hidden name=webdav value=$webdav>
 
 798 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 801   foreach $item (split / /, $form->{taxaccounts}) {
 
 803 <input type=hidden name="${item}_rate" value="$form->{"${item}_rate"}">
 
 804 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
 
 805 <input type=hidden name="${item}_taxnumber" value="$form->{"${item}_taxnumber"}">
 
 808   $lxdebug->leave_sub();
 
 812   $lxdebug->enter_sub();
 
 814   $form->{invtotal} = $form->{invsubtotal};
 
 816   if (($rows = $form->numtextrows($form->{notes}, 26, 8)) < 2) {
 
 819   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
 
 822   $rows = ($rows > $introws) ? $rows : $introws;
 
 824     qq|<textarea name=notes rows=$rows cols=26 wrap=soft>$form->{notes}</textarea>|;
 
 826     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
 
 828   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
 
 831   if ($form->{taxaccounts}) {
 
 833                 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
 
 834       . $locale->text('Tax Included') . qq|</b><br><br>|;
 
 837   if (!$form->{taxincluded}) {
 
 839     foreach $item (split / /, $form->{taxaccounts}) {
 
 840       if ($form->{"${item}_base"}) {
 
 841         $form->{"${item}_total"} =
 
 843                              $form->{"${item}_base"} * $form->{"${item}_rate"},
 
 845         $form->{invtotal} += $form->{"${item}_total"};
 
 846         $form->{"${item}_total"} =
 
 847           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 851                 <th align=right>$form->{"${item}_description"}</th>
 
 852                 <td align=right>$form->{"${item}_total"}</td>
 
 858     $form->{invsubtotal} =
 
 859       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
 
 863                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
 
 864                 <td align=right>$form->{invsubtotal}</td>
 
 870   if ($form->{taxincluded}) {
 
 871     foreach $item (split / /, $form->{taxaccounts}) {
 
 872       if ($form->{"${item}_base"}) {
 
 873         $form->{"${item}_total"} =
 
 875                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
 
 876                               (1 + $form->{"${item}_rate"})
 
 879         $form->{"${item}_netto"} =
 
 881                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
 
 883         $form->{"${item}_total"} =
 
 884           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 885         $form->{"${item}_netto"} =
 
 886           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
 
 890                 <th align=right>Enthaltene $form->{"${item}_description"}</th>
 
 891                 <td align=right>$form->{"${item}_total"}</td>
 
 894                 <th align=right>Nettobetrag</th>
 
 895                 <td align=right>$form->{"${item}_netto"}</td>
 
 903   $form->{oldinvtotal} = $form->{invtotal};
 
 905     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
 
 915                 <th align=left>| . $locale->text('Notes') . qq|</th>
 
 916                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
 
 917                 <th align=right>| . $locale->text('Payment Terms') . qq|</th>
 
 922                 <td><select name=payment_id onChange="if (this.value) set_duedate(['payment_id__' + this.value],['duedate'])">$payment
 
 927           <td align=right width=100%>
 
 933                 <th align=right>| . $locale->text('Total') . qq|</th>
 
 934                 <td align=right>$form->{invtotal}</td>
 
 946     <td><hr size=3 noshade></td>
 
 949     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
 
 952       <td align=left width=30%><b>Dateiname</b></td>
 
 953       <td align=left width=70%><b>Webdavlink</b></td>
 
 955     foreach $file (keys %{ $form->{WEBDAV} }) {
 
 958         <td align=left>$file</td>
 
 959         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
 
 970 if ($form->{type} eq "credit_note") {
 
 975         <tr class=listheading>
 
 976           <th colspan=6 class=listheading>|
 
 977     . $locale->text('Payments') . qq|</th>
 
 985         <tr class=listheading>
 
 986           <th colspan=6 class=listheading>|
 
 987     . $locale->text('Incoming Payments') . qq|</th>
 
 992   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 993     @column_index = qw(datepaid source memo paid AR_paid);
 
 995     @column_index = qw(datepaid source memo paid exchangerate AR_paid);
 
 998   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
 
 999   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
 
1000   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
 
1001   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
 
1002   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
 
1003   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
 
1008   map { print "$column_data{$_}\n" } @column_index;
 
1015   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
1016   for $i (1 .. $form->{paidaccounts}) {
 
1021     $form->{"selectAR_paid_$i"} = $form->{selectAR_paid};
 
1022     $form->{"selectAR_paid_$i"} =~
 
1023       s/option>\Q$form->{"AR_paid_$i"}\E/option selected>$form->{"AR_paid_$i"}/;
 
1026     $totalpaid += $form->{"paid_$i"};
 
1027     if ($form->{"paid_$i"}) {
 
1028       $form->{"paid_$i"} =
 
1029         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
1031     $form->{"exchangerate_$i"} =
 
1032       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
1034     $exchangerate = qq| |;
 
1035     if ($form->{currency} ne $form->{defaultcurrency}) {
 
1036       if ($form->{"forex_$i"}) {
 
1038           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
 
1041           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
 
1045     $exchangerate .= qq|
 
1046 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
 
1049     $column_data{"paid_$i"} =
 
1050       qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"}></td>|;
 
1051     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
 
1052     $column_data{"AR_paid_$i"}      =
 
1053       qq|<td align=center><select name="AR_paid_$i">$form->{"selectAR_paid_$i"}</select></td>|;
 
1054     $column_data{"datepaid_$i"} =
 
1055       qq|<td align=center><input id="datepaid_$i" name="datepaid_$i"  size=11 title="$myconfig{dateformat}" value=$form->{"datepaid_$i"}>
 
1056          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
 
1057     $column_data{"source_$i"} =
 
1058       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
 
1059     $column_data{"memo_$i"} =
 
1060       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
 
1062     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
 
1065     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
 
1069 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
 
1070 <input type=hidden name=selectAR_paid value="$form->{selectAR_paid}">
 
1071 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
1072 <input type=hidden name=oldtotalpaid value=$totalpaid>
 
1077     <td><hr size=3 noshade></td>
 
1091   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
1092   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
1096     <input class=submit type=submit accesskey="u" name=action id=update_button value="|
 
1097       . $locale->text('Update') . qq|">
 
1098     <input class=submit type=submit name=action value="|
 
1099       . $locale->text('Ship to') . qq|">
 
1100     <input class=submit type=submit name=action value="|
 
1101       . $locale->text('Print') . qq|">
 
1102     <input class=submit type=submit name=action value="|
 
1103       . $locale->text('E-mail') . qq|">|;
 
1104     print qq|<input class=submit type=submit name=action value="|
 
1105       . $locale->text('Storno') . qq|">| unless ($form->{storno});
 
1106     print qq|<input class=submit type=submit name=action value="|
 
1107       . $locale->text('Post Payment') . qq|">
 
1109     print qq|<input class=submit type=submit name=action value="|
 
1110       . $locale->text('Use As Template') . qq|">
 
1112   if ($form->{id} && !($form->{type} eq "credit_note")) {
 
1114     <input class=submit type=submit name=action value="|
 
1115       . $locale->text('Credit Note') . qq|">
 
1118     if ($form->{radier}) {
 
1120     <input class=submit type=submit name=action value="|
 
1121       . $locale->text('Delete') . qq|">
 
1126     if ($invdate > $closedto) {
 
1128       <input class=submit type=submit name=action value="|
 
1129         . $locale->text('Order') . qq|">
 
1134     if ($invdate > $closedto) {
 
1135       print qq|<input class=submit type=submit name=action id=update_button value="|
 
1136         . $locale->text('Update') . qq|">
 
1137       <input class=submit type=submit name=action value="|
 
1138         . $locale->text('Ship to') . qq|">
 
1139       <input class=submit type=submit name=action value="|
 
1140         . $locale->text('Preview') . qq|">
 
1141       <input class=submit type=submit name=action value="|
 
1142         . $locale->text('E-mail') . qq|">
 
1143       <input class=submit type=submit name=action value="|
 
1144         . $locale->text('Print and Post') . qq|">
 
1145       <input class=submit type=submit name=action value="|
 
1146         . $locale->text('Post') . qq|">|;
 
1150   print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
 
1153 <input type=hidden name=rowcount value=$form->{rowcount}>
 
1155 <input name=callback type=hidden value="$form->{callback}">
 
1157 <input type=hidden name=path value=$form->{path}>
 
1158 <input type=hidden name=login value=$form->{login}>
 
1159 <input type=hidden name=password value=$form->{password}>
 
1168   $lxdebug->leave_sub();
 
1172   $lxdebug->enter_sub();
 
1174   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1175     qw(exchangerate creditlimit creditremaining);
 
1176   if ($form->{second_run}) {
 
1177     $form->{print_and_post} = 0;
 
1180   $form->{update} = 1;
 
1182   &check_name(customer);
 
1184   $form->{exchangerate} = $exchangerate
 
1188                          $form->check_exchangerate(
 
1189                          \%myconfig, $form->{currency}, $form->{invdate}, 'buy'
 
1192   for $i (1 .. $form->{paidaccounts}) {
 
1193     if ($form->{"paid_$i"}) {
 
1195         $form->{"${_}_$i"} =
 
1196           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1197       } qw(paid exchangerate);
 
1199       $form->{"exchangerate_$i"} = $exchangerate
 
1201             $form->{"forex_$i"} = (
 
1203                    $form->check_exchangerate(
 
1204                    \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy'
 
1209   $i            = $form->{rowcount};
 
1210   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
1212   # if last row empty, check the form otherwise retrieve new item
 
1213   if (   ($form->{"partnumber_$i"} eq "")
 
1214       && ($form->{"description_$i"} eq "")
 
1215       && ($form->{"partsgroup_$i"}  eq "")) {
 
1217     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1222     IS->retrieve_item(\%myconfig, \%$form);
 
1224     $rows = scalar @{ $form->{item_list} };
 
1226     $form->{"discount_$i"} =
 
1227       $form->format_amount(\%myconfig, $form->{discount} * 100);
 
1230       $form->{"qty_$i"} = ($form->{"qty_$i"} * 1) ? $form->{"qty_$i"} : 1;
 
1239         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
1241         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
 
1242           qw(partnumber description unit);
 
1243         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
 
1244           keys %{ $form->{item_list}[0] };
 
1245         if ($form->{"part_payment_id_$i"} ne "") {
 
1246           $form->{payment_id} = $form->{"part_payment_id_$i"};
 
1249         if ($form->{"not_discountable_$i"}) {
 
1250           $form->{"discount_$i"} = 0;
 
1253         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
 
1254         ($dec) = ($s =~ /\.(\d+)/);
 
1256         $decimalplaces = ($dec > 2) ? $dec : 2;
 
1259           $form->{"sellprice_$i"} = $sellprice;
 
1262           # if there is an exchange rate adjust sellprice
 
1263           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
 
1264           $form->{"sellprice_$i"} /= $exchangerate;
 
1267         $form->{"listprice_$i"} /= $exchangerate;
 
1270           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
 
1271           (1 - $form->{"discount_$i"} / 100);
 
1272         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
 
1273         map { $form->{"${_}_base"} += $amount }
 
1274           (split / /, $form->{"taxaccounts_$i"});
 
1275         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1276           split / /, $form->{"taxaccounts_$i"}
 
1277           if !$form->{taxincluded};
 
1279         $form->{creditremaining} -= $amount;
 
1282           $form->{"${_}_$i"} =
 
1283             $form->format_amount(\%myconfig, $form->{"${_}_$i"},
 
1285         } qw(sellprice listprice);
 
1288           $form->format_amount(\%myconfig, $form->{"qty_$i"});
 
1291           if ($form->{"inventory_accno_$i"} ne "") {
 
1292             $form->{"lizenzen_$i"} = qq|<option></option>|;
 
1293             foreach $item (@{ $form->{LIZENZEN}{ $form->{"id_$i"} } }) {
 
1294               $form->{"lizenzen_$i"} .=
 
1295                 qq|<option value="$item->{"id"}">$item->{"licensenumber"}</option>|;
 
1297             $form->{"lizenzen_$i"} .=
 
1298               qq|<option value=-1>Neue Lizenz</option>|;
 
1302         # get pricegroups for parts
 
1303         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1305         # build up html code for prices_$i
 
1306         &set_pricegroup($i);
 
1313       # ok, so this is a new part
 
1314       # ask if it is a part or service item
 
1316       if (   $form->{"partsgroup_$i"}
 
1317           && ($form->{"partsnumber_$i"} eq "")
 
1318           && ($form->{"description_$i"} eq "")) {
 
1319         $form->{rowcount}--;
 
1320         $form->{"discount_$i"} = "";
 
1324         $form->{"id_$i"}   = 0;
 
1325         $form->{"unit_$i"} = $locale->text('ea');
 
1332   $lxdebug->leave_sub();
 
1335   $lxdebug->enter_sub();
 
1336   for $i (1 .. $form->{paidaccounts}) {
 
1337     if ($form->{"paid_$i"}) {
 
1338       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1340       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1342       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1343         if ($datepaid <= $closedto);
 
1345       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1346         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1347           if ($invdate == $datepaid);
 
1348         $form->isblank("exchangerate_$i",
 
1349                        $locale->text('Exchangerate for payment missing!'));
 
1354   ($form->{AR})      = split /--/, $form->{AR};
 
1355   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1357   $form->redirect($locale->text(' Payment posted!'))
 
1358       if (IS->post_payment(\%myconfig, \%$form));
 
1359     $form->error($locale->text('Cannot post payment!'));
 
1362   $lxdebug->leave_sub();
 
1366   $lxdebug->enter_sub();
 
1367   $form->isblank("invdate",  $locale->text('Invoice Date missing!'));
 
1368   $form->isblank("customer", $locale->text('Customer missing!'));
 
1370   # if oldcustomer ne customer redo form
 
1371   if (&check_name(customer)) {
 
1375   if ($form->{second_run}) {
 
1376     $form->{print_and_post} = 0;
 
1381   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
 
1382   $invdate  = $form->datetonum($form->{invdate},  \%myconfig);
 
1384   $form->error($locale->text('Cannot post invoice for a closed period!'))
 
1385     if ($invdate <= $closedto);
 
1387   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1388     if ($form->{currency} ne $form->{defaultcurrency});
 
1390   for $i (1 .. $form->{paidaccounts}) {
 
1391     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1392       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1394       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1396       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1397         if ($datepaid <= $closedto);
 
1399       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1400         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1401           if ($invdate == $datepaid);
 
1402         $form->isblank("exchangerate_$i",
 
1403                        $locale->text('Exchangerate for payment missing!'));
 
1408   ($form->{AR})      = split /--/, $form->{AR};
 
1409   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1411   $form->{label} = $locale->text('Invoice');
 
1413   $form->{id} = 0 if $form->{postasnew};
 
1415   # get new invnumber in sequence if no invnumber is given or if posasnew was requested
 
1416   if (!$form->{invnumber} || $form->{postasnew}) {
 
1417     if ($form->{type} eq "credit_note") {
 
1418       $form->{invnumber} = $form->update_defaults(\%myconfig, "cnnumber");
 
1420       $form->{invnumber} = $form->update_defaults(\%myconfig, "invnumber");
 
1425     if (!(IS->post_invoice(\%myconfig, \%$form))) {
 
1426       $form->error($locale->text('Cannot post invoice!'));
 
1430             $form->{label} . " $form->{invnumber} " . $locale->text('posted!'))
 
1431       if (IS->post_invoice(\%myconfig, \%$form));
 
1432     $form->error($locale->text('Cannot post invoice!'));
 
1435   $lxdebug->leave_sub();
 
1438 sub print_and_post {
 
1439   $lxdebug->enter_sub();
 
1441   $old_form               = new Form;
 
1443   $form->{print_and_post} = 1;
 
1447   $lxdebug->leave_sub();
 
1451 sub use_as_template {
 
1452   $lxdebug->enter_sub();
 
1454   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);
 
1455   $form->{paidaccounts} = 1;
 
1456   $form->{rowcount}--;
 
1457   $form->{invdate} = $form->current_date(\%myconfig);
 
1460   $lxdebug->leave_sub();
 
1464   $lxdebug->enter_sub();
 
1466   if ($form->{storno}) {
 
1467     $form->error($locale->text('Cannot storno storno invoice!'));
 
1470   $form->{storno_id} = $form->{id};
 
1471   $form->{storno} = 1;
 
1473   $form->{invnumber} = "Storno zu " . $form->{invnumber};
 
1476   $lxdebug->leave_sub();
 
1481   $lxdebug->enter_sub();
 
1483   $form->{preview} = 1;
 
1484   $old_form = new Form;
 
1485   for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
1486   $old_form->{rowcount}++;
 
1488   &print_form($old_form);
 
1489   $lxdebug->leave_sub();
 
1494   $lxdebug->enter_sub();
 
1495   if ($form->{second_run}) {
 
1496     $form->{print_and_post} = 0;
 
1503 <form method=post action=$form->{script}>
 
1506   # delete action variable
 
1507   map { delete $form->{$_} } qw(action header);
 
1509   foreach $key (keys %$form) {
 
1510     $form->{$key} =~ s/\"/"/g;
 
1511     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1515 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
1518     . $locale->text('Are you sure you want to delete Invoice Number')
 
1519     . qq| $form->{invnumber}
 
1523 <input name=action class=submit type=submit value="|
 
1524     . $locale->text('Yes') . qq|">
 
1528   $lxdebug->leave_sub();
 
1532   $lxdebug->enter_sub();
 
1534   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
 
1536     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
1539   $form->{rowcount}--;
 
1540   $form->{shipto} = 1;
 
1543   $form->{title}  = $locale->text('Add Credit Note');
 
1544   $form->{script} = 'is.pl';
 
1549   # bo creates the id, reset it
 
1550   map { delete $form->{$_} }
 
1551     qw(id invnumber subject message cc bcc printed emailed queued);
 
1552   $form->{ $form->{vc} } =~ s/--.*//g;
 
1553   $form->{type} = "credit_note";
 
1556   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1558   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1559     qw(creditlimit creditremaining);
 
1561   $currency = $form->{currency};
 
1564   $form->{currency}     = $currency;
 
1565   $form->{exchangerate} = "";
 
1566   $form->{forex}        = "";
 
1567   $form->{exchangerate} = $exchangerate
 
1571                       $form->check_exchangerate(
 
1572                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
 
1575   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
 
1582   $lxdebug->leave_sub();
 
1586   $lxdebug->enter_sub();
 
1588   $form->redirect($locale->text('Invoice deleted!'))
 
1589     if (IS->delete_invoice(\%myconfig, \%$form, $spool));
 
1590   $form->error($locale->text('Cannot delete invoice!'));
 
1592   $lxdebug->leave_sub();