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
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #======================================================================
 
  31 # Inventory invoicing module
 
  33 #======================================================================
 
  44   $main::lxdebug->enter_sub();
 
  46   my ($self, $myconfig, $form, $locale) = @_;
 
  48   $form->{duedate} ||= $form->{invdate};
 
  51   my $dbh = $form->dbconnect($myconfig);
 
  54   my $query = qq|SELECT date | . conv_dateq($form->{duedate}) . qq| - date | . conv_dateq($form->{invdate}) . qq| AS terms|;
 
  55   ($form->{terms}) = selectrow_query($form, $dbh, $query);
 
  57   my (@project_ids, %projectnumbers);
 
  59   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
 
  61   # sort items by partsgroup
 
  62   for $i (1 .. $form->{rowcount}) {
 
  64     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
  65       $partsgroup = $form->{"partsgroup_$i"};
 
  67     push @partsgroup, [$i, $partsgroup];
 
  68     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
 
  72     $query = "SELECT id, projectnumber FROM project WHERE id IN (" .
 
  73       join(", ", map({ "?" } @project_ids)) . ")";
 
  74     $sth = $dbh->prepare($query);
 
  75     $sth->execute(@project_ids) ||
 
  76       $form->dberror($query . " (" . join(", ", @project_ids) . ")");
 
  77     while (my $ref = $sth->fetchrow_hashref()) {
 
  78       $projectnumbers{$ref->{id}} = $ref->{projectnumber};
 
  83   $form->{"globalprojectnumber"} =
 
  84     $projectnumbers{$form->{"globalproject_id"}};
 
  91   my %oid = ('Pg'     => 'oid',
 
  94   # sort items by partsgroup
 
  95   for $i (1 .. $form->{rowcount}) {
 
  97     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
  98       $partsgroup = $form->{"partsgroup_$i"};
 
 100     push @partsgroup, [$i, $partsgroup];
 
 113   my $nodiscount_subtotal = 0;
 
 114   my $discount_subtotal = 0;
 
 116   my $subtotal_header = 0;
 
 120     qw(runningnumber number description longdescription qty ship unit bin
 
 121        deliverydate_oe ordnumber_oe transdate_oe licensenumber validuntil
 
 122        partnotes serialnumber reqdate sellprice listprice netprice
 
 123        discount p_discount discount_sub nodiscount_sub
 
 124        linetotal  nodiscount_linetotal tax_rate projectnumber);
 
 127     qw(taxbase tax taxdescription taxrate taxnumber);
 
 129   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
 
 132     if ($item->[1] ne $sameitem) {
 
 133       push(@{ $form->{description} }, qq|$item->[1]|);
 
 134       $sameitem = $item->[1];
 
 136       map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
 
 139     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 141     if ($form->{"id_$i"} != 0) {
 
 143       # add number, description and qty to $form->{number},
 
 144       if ($form->{"subtotal_$i"} && !$subtotal_header) {
 
 145         $subtotal_header = $i;
 
 146         $position = int($position);
 
 149       } elsif ($subtotal_header) {
 
 151         $position = int($position);
 
 152         $position = $position.".".$subposition;
 
 154         $position = int($position);
 
 157       push(@{ $form->{runningnumber} }, $position);
 
 158       push(@{ $form->{number} },        qq|$form->{"partnumber_$i"}|);
 
 159       push(@{ $form->{serialnumber} },  qq|$form->{"serialnumber_$i"}|);
 
 160       push(@{ $form->{bin} },           qq|$form->{"bin_$i"}|);
 
 161       push(@{ $form->{"partnotes"} },   qq|$form->{"partnotes_$i"}|);
 
 162       push(@{ $form->{description} },   qq|$form->{"description_$i"}|);
 
 163       push(@{ $form->{longdescription} },   qq|$form->{"longdescription_$i"}|);
 
 164       push(@{ $form->{qty} },
 
 165            $form->format_amount($myconfig, $form->{"qty_$i"}));
 
 166       push(@{ $form->{unit} },            qq|$form->{"unit_$i"}|);
 
 167       push(@{ $form->{deliverydate_oe} }, qq|$form->{"deliverydate_$i"}|);
 
 169       push(@{ $form->{sellprice} },    $form->{"sellprice_$i"});
 
 170       push(@{ $form->{ordnumber_oe} }, qq|$form->{"ordnumber_$i"}|);
 
 171       push(@{ $form->{transdate_oe} }, qq|$form->{"transdate_$i"}|);
 
 172       push(@{ $form->{invnumber} }, qq|$form->{"invnumber"}|);
 
 173       push(@{ $form->{invdate} }, qq|$form->{"invdate"}|);
 
 175       if ($form->{lizenzen}) {
 
 176         if ($form->{"licensenumber_$i"}) {
 
 177           $query = qq|SELECT licensenumber, validuntil FROM license WHERE id = ?|;
 
 178           ($licensenumber, $validuntil) = selectrow_query($form, $dbh, $query, conv_i($form->{"licensenumber_$i"}));
 
 179           push(@{ $form->{licensenumber} }, $licensenumber);
 
 180           push(@{ $form->{validuntil} }, $locale->date($myconfig, $validuntil, 0));
 
 183           push(@{ $form->{licensenumber} }, "");
 
 184           push(@{ $form->{validuntil} },    "");
 
 189       push(@{ $form->{listprice} }, $form->{"listprice_$i"});
 
 191       my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 192       my ($dec) = ($sellprice =~ /\.(\d+)/);
 
 194       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 198                             $sellprice * $form->parse_amount($myconfig,
 
 199                                                  $form->{"discount_$i"}) / 100,
 
 203         $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces);
 
 205       # keep a netprice as well, (sellprice - discount)
 
 206       $form->{"netprice_$i"} = $sellprice - $i_discount;
 
 208       push(@{ $form->{netprice} },
 
 209            ($form->{"netprice_$i"} != 0)
 
 210            ? $form->format_amount(
 
 211                                  $myconfig, $form->{"netprice_$i"},
 
 217         $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
 
 219       my $nodiscount_linetotal =
 
 220         $form->round_amount($form->{"qty_$i"} * $sellprice, 2);
 
 224         ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
 
 226       $linetotal = ($linetotal != 0) ? $linetotal : " ";
 
 228       push(@{ $form->{discount} },   $discount);
 
 229       push(@{ $form->{p_discount} }, $form->{"discount_$i"});
 
 230       if (($form->{"discount_$i"} ne "") && ($form->{"discount_$i"} != 0)) {
 
 231         $form->{discount_p} = $form->{"discount_$i"};
 
 233       $form->{total} += $linetotal;
 
 234       $discount_subtotal += $linetotal;
 
 235       $form->{nodiscount_total} += $nodiscount_linetotal;
 
 236       $nodiscount_subtotal += $nodiscount_linetotal;
 
 237       $form->{discount_total} += $form->parse_amount($myconfig, $discount);
 
 239       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
 
 240         $discount_subtotal = $form->format_amount($myconfig, $discount_subtotal, 2);
 
 241         push(@{ $form->{discount_sub} },  $discount_subtotal);
 
 242         $nodiscount_subtotal = $form->format_amount($myconfig, $nodiscount_subtotal, 2);
 
 243         push(@{ $form->{nodiscount_sub} }, $nodiscount_subtotal);
 
 244         $discount_subtotal = 0;
 
 245         $nodiscount_subtotal = 0;
 
 246         $subtotal_header = 0;
 
 248         push(@{ $form->{discount_sub} }, "");
 
 249         push(@{ $form->{nodiscount_sub} }, "");
 
 252       if ($linetotal == $netto_linetotal) {
 
 253         $nodiscount += $linetotal;
 
 256       push(@{ $form->{linetotal} },
 
 257            $form->format_amount($myconfig, $linetotal, 2));
 
 258       push(@{ $form->{nodiscount_linetotal} },
 
 259            $form->format_amount($myconfig, $nodiscount_linetotal, 2));
 
 261       push(@{ $form->{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}});
 
 263       @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
 
 267       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
 
 269       if ($form->{taxincluded}) {
 
 272         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
 273         $taxbase = $linetotal - $taxamount;
 
 275         $taxamount = $linetotal * $taxrate;
 
 276         $taxbase   = $linetotal;
 
 279       if ($form->round_amount($taxrate, 7) == 0) {
 
 280         if ($form->{taxincluded}) {
 
 281           foreach $item (@taxaccounts) {
 
 283               $form->round_amount($linetotal * $form->{"${item}_rate"} /
 
 284                                     (1 + abs($form->{"${item}_rate"})),
 
 287             $taxaccounts{$item} += $taxamount;
 
 288             $taxdiff            += $taxamount;
 
 290             $taxbase{$item} += $taxbase;
 
 292           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
 
 294           foreach $item (@taxaccounts) {
 
 295             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
 
 296             $taxbase{$item}     += $taxbase;
 
 300         foreach $item (@taxaccounts) {
 
 301           $taxaccounts{$item} +=
 
 302             $taxamount * $form->{"${item}_rate"} / $taxrate;
 
 303           $taxbase{$item} += $taxbase;
 
 306       $tax_rate = $taxrate * 100;
 
 307       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
 
 308       if ($form->{"assembly_$i"}) {
 
 311         # get parts and push them onto the stack
 
 313         if ($form->{groupitems}) {
 
 315             qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
 
 317           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
 
 321           qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
 
 323              JOIN parts p ON (a.parts_id = p.id)
 
 324              LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 325              WHERE (a.bom = '1') AND (a.id = ?) $sortorder|;
 
 326         $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 328         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 329           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
 
 330             map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
 
 331             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
 
 332             push(@{ $form->{description} }, $sameitem);
 
 335           map { $form->{"a_$_"} = $ref->{$_} } qw(partnumber description);
 
 337           push(@{ $form->{description} },
 
 338                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
 
 340                  . qq| -- $form->{"a_partnumber"}, $form->{"a_description"}|);
 
 341           map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
 
 349   foreach my $item (sort keys %taxaccounts) {
 
 350     push(@{ $form->{taxbase} },
 
 351           $form->format_amount($myconfig, $taxbase{$item}, 2));
 
 353     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
 
 355     push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
 
 356     push(@{ $form->{taxdescription} }, $form->{"${item}_description"}  . q{ } . 100 * $form->{"${item}_rate"} . q{%});
 
 357     push(@{ $form->{taxrate} },
 
 358           $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
 
 359     push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
 
 362   for my $i (1 .. $form->{paidaccounts}) {
 
 363     if ($form->{"paid_$i"}) {
 
 364       push(@{ $form->{payment} }, $form->{"paid_$i"});
 
 365       my ($accno, $description) = split(/--/, $form->{"AR_paid_$i"});
 
 366       push(@{ $form->{paymentaccount} }, $description);
 
 367       push(@{ $form->{paymentdate} },    $form->{"datepaid_$i"});
 
 368       push(@{ $form->{paymentsource} },  $form->{"source_$i"});
 
 370       $form->{paid} += $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 373   if($form->{taxincluded}) {
 
 374     $form->{subtotal} = $form->format_amount($myconfig, $form->{total} - $tax, 2);
 
 377     $form->{subtotal} = $form->format_amount($myconfig, $form->{total}, 2);
 
 379   $yesdiscount = $form->{nodiscount_total} - $nodiscount;
 
 380   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
 
 381   $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2);
 
 382   $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2);
 
 383   $form->{yesdiscount} = $form->format_amount($myconfig, $yesdiscount, 2);
 
 386     ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax;
 
 388     $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2);
 
 390   $form->{invtotal} = $form->format_amount($myconfig, $form->{invtotal}, 2);
 
 391   $form->{paid} = $form->format_amount($myconfig, $form->{paid}, 2);
 
 392   $form->set_payment_options($myconfig, $form->{invdate});
 
 394   $form->{username} = $myconfig->{name};
 
 398   $main::lxdebug->leave_sub();
 
 401 sub project_description {
 
 402   $main::lxdebug->enter_sub();
 
 404   my ($self, $dbh, $id) = @_;
 
 406   my $query = qq|SELECT description FROM project WHERE id = ?|;
 
 407   my ($description) = selectrow_query($form, $dbh, $query, conv_i($id));
 
 409   $main::lxdebug->leave_sub();
 
 414 sub customer_details {
 
 415   $main::lxdebug->enter_sub();
 
 417   my ($self, $myconfig, $form, @wanted_vars) = @_;
 
 419   # connect to database
 
 420   my $dbh = $form->dbconnect($myconfig);
 
 422   # get contact id, set it if nessessary
 
 425   my @values =  (conv_i($form->{customer_id}));
 
 428   if ($form->{cp_id}) {
 
 429     $where = qq| AND (cp.cp_id = ?) |;
 
 430     push(@values, conv_i($form->{cp_id}));
 
 433   # get rest for the customer
 
 435     qq|SELECT ct.*, cp.*, ct.notes as customernotes,
 
 436          ct.phone AS customerphone, ct.fax AS customerfax, ct.email AS customeremail
 
 438        LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
 
 439        WHERE (ct.id = ?) $where
 
 442   my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
 444   # remove id and taxincluded before copy back
 
 445   delete @$ref{qw(id taxincluded)};
 
 447   @wanted_vars = grep({ $_ } @wanted_vars);
 
 448   if (scalar(@wanted_vars) > 0) {
 
 450     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
 
 451     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
 
 454   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 456   if ($form->{delivery_customer_id}) {
 
 458       qq|SELECT *, notes as customernotes
 
 462     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_customer_id}));
 
 464     map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
 
 467   if ($form->{delivery_vendor_id}) {
 
 469       qq|SELECT *, notes as customernotes
 
 473     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_vendor_id}));
 
 475     map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
 
 479   $main::lxdebug->leave_sub();
 
 483   $main::lxdebug->enter_sub();
 
 485   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
 
 487   # connect to database, turn off autocommit
 
 488   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect_noauto($myconfig);
 
 490   my ($query, $sth, $null, $project_id, @values);
 
 491   my $exchangerate = 0;
 
 493   if (!$form->{employee_id}) {
 
 494     $form->get_employee($dbh);
 
 497   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
 
 499   ($null, $form->{department_id}) = split(/--/, $form->{department});
 
 501   my $all_units = AM->retrieve_units($myconfig, $form);
 
 503   if (!$payments_only) {
 
 505       &reverse_invoice($dbh, $form);
 
 508       $query = qq|SELECT nextval('glid')|;
 
 509       ($form->{"id"}) = selectrow_query($form, $dbh, $query);
 
 511       $query = qq|INSERT INTO ar (id, invnumber) VALUES (?, ?)|;
 
 512       do_query($form, $dbh, $query, $form->{"id"}, $form->{"id"});
 
 514       if (!$form->{invnumber}) {
 
 516           $form->update_defaults($myconfig, $form->{type} eq "credit_note" ?
 
 517                                  "cnnumber" : "invnumber", $dbh);
 
 522   my ($netamount, $invoicediff) = (0, 0);
 
 523   my ($amount, $linetotal, $lastincomeaccno);
 
 525   my ($currencies)    = selectfirst_array_query($form, $dbh, qq|SELECT curr FROM defaults|);
 
 526   my $defaultcurrency = (split m/:/, $currencies)[0];
 
 528   if ($form->{currency} eq $defaultcurrency) {
 
 529     $form->{exchangerate} = 1;
 
 532       $form->check_exchangerate($myconfig, $form->{currency},
 
 533                                 $form->{transdate}, 'buy');
 
 536   $form->{exchangerate} =
 
 539     : $form->parse_amount($myconfig, $form->{exchangerate});
 
 541   $form->{expense_inventory} = "";
 
 545   foreach my $i (1 .. $form->{rowcount}) {
 
 546     if ($form->{type} eq "credit_note") {
 
 547       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
 
 548       $form->{shipped} = 1;
 
 550       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 555     $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
 
 556     $form->{"marge_absolut_$i"} = $form->parse_amount($myconfig, $form->{"marge_absolut_$i"}) * 1;
 
 557     $form->{"lastcost_$i"} = $form->{"lastcost_$i"} * 1;
 
 559     if ($form->{storno}) {
 
 560       $form->{"qty_$i"} *= -1;
 
 563     if ($form->{"id_$i"}) {
 
 566       if (defined($baseunits{$form->{"id_$i"}})) {
 
 567         $item_unit = $baseunits{$form->{"id_$i"}};
 
 570         $query = qq|SELECT unit FROM parts WHERE id = ?|;
 
 571         ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 572         $baseunits{$form->{"id_$i"}} = $item_unit;
 
 575       if (defined($all_units->{$item_unit}->{factor})
 
 576           && ($all_units->{$item_unit}->{factor} ne '')
 
 577           && ($all_units->{$item_unit}->{factor} != 0)) {
 
 578         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
 
 582       $baseqty = $form->{"qty_$i"} * $basefactor;
 
 584       # undo discount formatting
 
 585       $form->{"discount_$i"} =
 
 586         $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
 
 588       my ($allocated, $taxrate) = (0, 0);
 
 591       # keep entered selling price
 
 593         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 595       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
 
 597       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 601         $form->round_amount($fxsellprice * $form->{"discount_$i"},
 
 603       $form->{"sellprice_$i"} = $fxsellprice - $discount;
 
 606       map({ $taxrate += $form->{"${_}_rate"} } split(/ /,
 
 607         $form->{"taxaccounts_$i"}));
 
 609       # round linetotal to 2 decimal places
 
 611         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
 
 613       if ($form->{taxincluded}) {
 
 614         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
 
 615         $form->{"sellprice_$i"} =
 
 616           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
 
 618         $taxamount = $linetotal * $taxrate;
 
 621       $netamount += $linetotal;
 
 623       if ($taxamount != 0) {
 
 625           $form->{amount}{ $form->{id} }{$_} +=
 
 626             $taxamount * $form->{"${_}_rate"} / $taxrate
 
 627         } split(/ /, $form->{"taxaccounts_$i"});
 
 630       # add amount to income, $form->{amount}{trans_id}{accno}
 
 632         $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate};
 
 635         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2) *
 
 636         $form->{exchangerate};
 
 637       $linetotal = $form->round_amount($linetotal, 2);
 
 639       # this is the difference from the inventory
 
 640       $invoicediff += ($amount - $linetotal);
 
 642       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
 
 645       $lastincomeaccno = $form->{"income_accno_$i"};
 
 647       # adjust and round sellprice
 
 648       $form->{"sellprice_$i"} =
 
 649         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
 
 652       next if $payments_only;
 
 654       if ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"}) {
 
 656         # adjust parts onhand quantity
 
 658         if ($form->{"assembly_$i"}) {
 
 660           # do not update if assembly consists of all services
 
 662             qq|SELECT sum(p.inventory_accno_id)
 
 664                JOIN assembly a ON (a.parts_id = p.id)
 
 666           $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 668           if ($sth->fetchrow_array) {
 
 669             $form->update_balance($dbh, "parts", "onhand", qq|id = ?|,
 
 670                                   $baseqty * -1, $form->{"id_$i"})
 
 671               unless $form->{shipped};
 
 675           # record assembly item as allocated
 
 676           &process_assembly($dbh, $form, $form->{"id_$i"}, $baseqty);
 
 678           $form->update_balance($dbh, "parts", "onhand", qq|id = ?|,
 
 679                                 $baseqty * -1, $form->{"id_$i"})
 
 680             unless $form->{shipped};
 
 682           $allocated = &cogs($dbh, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
 
 686       # get pricegroup_id and save it
 
 687       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
 
 689       my $subtotal = $form->{"subtotal_$i"} * 1;
 
 691       # save detail record in invoice table
 
 693         qq|INSERT INTO invoice (trans_id, parts_id, description, longdescription, qty,
 
 694                                 sellprice, fxsellprice, discount, allocated, assemblyitem,
 
 695                                 unit, deliverydate, project_id, serialnumber, pricegroup_id,
 
 696                                 ordnumber, transdate, cusordnumber, base_qty, subtotal,
 
 697                                 marge_percent, marge_total, lastcost)
 
 698            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
 700       @values = (conv_i($form->{id}), conv_i($form->{"id_$i"}),
 
 701                  $form->{"description_$i"}, $form->{"longdescription_$i"}, $form->{"qty_$i"},
 
 702                  $form->{"sellprice_$i"}, $fxsellprice,
 
 703                  $form->{"discount_$i"}, $allocated, 'f',
 
 704                  $form->{"unit_$i"}, conv_date($form->{"deliverydate_$i"}), conv_i($form->{"project_id_$i"}),
 
 705                  $form->{"serialnumber_$i"}, conv_i($pricegroup_id),
 
 706                  $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
 
 707                  $form->{"cusordnumber_$i"}, $baseqty, $subtotal,
 
 708                  $form->{"marge_percent_$i"}, $form->{"marge_absolut_$i"},
 
 709                  $form->{"lastcost_$i"});
 
 710       do_query($form, $dbh, $query, @values);
 
 712       if ($form->{lizenzen} && $form->{"licensenumber_$i"}) {
 
 714           qq|INSERT INTO licenseinvoice (trans_id, license_id)
 
 715              VALUES ((SELECT id FROM invoice WHERE trans_id = ? ORDER BY oid DESC LIMIT 1), ?)|;
 
 716         @values = (conv_i($form->{"id"}), conv_i($form->{"licensenumber_$i"}));
 
 717         do_query($form, $dbh, $query, @values);
 
 722   $form->{datepaid} = $form->{invdate};
 
 724   # total payments, don't move we need it here
 
 725   for my $i (1 .. $form->{paidaccounts}) {
 
 726     if ($form->{type} eq "credit_note") {
 
 727       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
 
 729       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 731     $form->{paid} += $form->{"paid_$i"};
 
 732     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
 
 735   my ($tax, $diff) = (0, 0);
 
 737   $netamount = $form->round_amount($netamount, 2);
 
 739   # figure out rounding errors for total amount vs netamount + taxes
 
 740   if ($form->{taxincluded}) {
 
 742     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
 743     $diff += $amount - $netamount * $form->{exchangerate};
 
 744     $netamount = $amount;
 
 746     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
 747       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
 
 748       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
 749       $tax += $form->{amount}{ $form->{id} }{$item};
 
 750       $netamount -= $form->{amount}{ $form->{id} }{$item};
 
 753     $invoicediff += $diff;
 
 754     ######## this only applies to tax included
 
 755     if ($lastincomeaccno) {
 
 756       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
 
 760     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
 761     $diff      = $amount - $netamount * $form->{exchangerate};
 
 762     $netamount = $amount;
 
 763     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
 764       $form->{amount}{ $form->{id} }{$item} =
 
 765         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
 
 768                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
 
 771         $amount - $form->{amount}{ $form->{id} }{$item} *
 
 772         $form->{exchangerate};
 
 773       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
 774       $tax += $form->{amount}{ $form->{id} }{$item};
 
 778   $form->{amount}{ $form->{id} }{ $form->{AR} } = $netamount + $tax;
 
 780     $form->round_amount($form->{paid} * $form->{exchangerate} + $diff, 2);
 
 783   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
 
 785   # update exchangerate
 
 786   if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
 787     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
 
 788                                $form->{exchangerate}, 0);
 
 791   $project_id = conv_i($form->{"globalproject_id"});
 
 793   foreach my $trans_id (keys %{ $form->{amount} }) {
 
 794     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
 795       next unless ($form->{expense_inventory} =~ /$accno/);
 
 797       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
 799       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
 801           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
 
 802              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
 803                      (SELECT taxkey_id  FROM chart WHERE accno = ?), ?)|;
 
 804         @values = (conv_i($trans_id), $accno, $form->{amount}{$trans_id}{$accno}, conv_date($form->{invdate}), $accno, conv_i($project_id));
 
 805         do_query($form, $dbh, $query, @values);
 
 806         $form->{amount}{$trans_id}{$accno} = 0;
 
 810     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
 811       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
 813       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
 815           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
 
 816              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
 817                      (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
 
 818         @values = (conv_i($trans_id), $accno, $form->{amount}{$trans_id}{$accno}, conv_date($form->{invdate}), $accno, conv_i($project_id));
 
 819         do_query($form, $dbh, $query, @values);
 
 824   # deduct payment differences from diff
 
 825   for my $i (1 .. $form->{paidaccounts}) {
 
 826     if ($form->{"paid_$i"} != 0) {
 
 828         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
 
 829       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
 
 833   # record payments and offsetting AR
 
 834   if (!$form->{storno}) {
 
 835     for my $i (1 .. $form->{paidaccounts}) {
 
 837       next if ($form->{"paid_$i"} == 0);
 
 839       my ($accno) = split(/--/, $form->{"AR_paid_$i"});
 
 840       $form->{"datepaid_$i"} = $form->{invdate}
 
 841       unless ($form->{"datepaid_$i"});
 
 842       $form->{datepaid} = $form->{"datepaid_$i"};
 
 846       if ($form->{currency} eq $defaultcurrency) {
 
 847         $form->{"exchangerate_$i"} = 1;
 
 850           $form->check_exchangerate($myconfig, $form->{currency},
 
 851                                     $form->{"datepaid_$i"}, 'buy');
 
 853         $form->{"exchangerate_$i"} =
 
 854           $exchangerate ? $exchangerate
 
 855             : $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
 
 859       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
 
 861       if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
 
 863         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
 
 864            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
 865                    (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
 
 866         @values = (conv_i($form->{"id"}), $form->{AR}, $amount, $form->{"datepaid_$i"}, $form->{AR}, $project_id);
 
 867         do_query($form, $dbh, $query, @values);
 
 871       $form->{"paid_$i"} *= -1;
 
 874       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, source, memo, taxkey, project_id)
 
 875          VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?,
 
 876                  (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
 
 877       @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
 
 878                  $form->{"source_$i"}, $form->{"memo_$i"}, $accno, $project_id);
 
 879       do_query($form, $dbh, $query, @values);
 
 881       # exchangerate difference
 
 882       $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
 
 883       $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
 
 887       $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
 
 888       $form->{"exchangerate_$i"};
 
 890         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } +=
 
 893         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } +=
 
 899       # update exchange rate
 
 900       if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
 901         $form->update_exchangerate($dbh, $form->{currency},
 
 902                                    $form->{"datepaid_$i"},
 
 903                                    $form->{"exchangerate_$i"}, 0);
 
 907   } else {                      # if (!$form->{storno})
 
 908     $form->{marge_total} *= -1;
 
 911   if ($payments_only) {
 
 912     $query = qq|UPDATE ar SET paid = ?, datepaid = ? WHERE id = ?|;
 
 913     do_query($form, $dbh, $query,  $form->{paid}, $form->{paid} ? conv_date($form->{datepaid}) : undef, conv_i($form->{id}));
 
 915     if (!$provided_dbh) {
 
 920     $main::lxdebug->leave_sub();
 
 924   # record exchange rate differences and gains/losses
 
 925   foreach my $accno (keys %{ $form->{fx} }) {
 
 926     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
 
 928           ($form->{fx}{$accno}{$transdate} =
 
 929            $form->round_amount($form->{fx}{$accno}{$transdate}, 2)
 
 934           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, taxkey, project_id)
 
 935              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
 
 936              (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
 
 937         @values = (conv_i($form->{"id"}), $accno, $form->{fx}{$accno}{$transdate}, conv_date($transdate), $accno, $project_id);
 
 938         do_query($form, $dbh, $query, @values);
 
 943   $amount = $netamount + $tax;
 
 946   $query = qq|UPDATE ar set
 
 975                 delivery_customer_id = ?,
 
 976                 delivery_vendor_id = ?,
 
 981                 globalproject_id = ?,
 
 983                 transaction_description = ?,
 
 987   @values = ($form->{"invnumber"}, $form->{"ordnumber"}, $form->{"quonumber"}, $form->{"cusordnumber"},
 
 988              conv_date($form->{"invdate"}), conv_date($form->{"orddate"}), conv_date($form->{"quodate"}),
 
 989              conv_i($form->{"customer_id"}), $amount, $netamount, $form->{"paid"},
 
 990              conv_date($form->{"datepaid"}), conv_date($form->{"duedate"}), conv_date($form->{"deliverydate"}),
 
 991              $form->{"shippingpoint"}, $form->{"shipvia"}, conv_i($form->{"terms"}),
 
 992              $form->{"notes"}, $form->{"intnotes"}, $form->{"taxincluded"} ? 't' : 'f',
 
 993              $form->{"currency"}, conv_i($form->{"department_id"}), conv_i($form->{"payment_id"}),
 
 994              $form->{"type"}, conv_i($form->{"language_id"}), conv_i($form->{"taxzone_id"}),
 
 995              conv_i($form->{"shipto_id"}),
 
 996              conv_i($form->{"delivery_customer_id"}), conv_i($form->{"delivery_vendor_id"}),
 
 997              conv_i($form->{"employee_id"}), conv_i($form->{"salesman_id"}),
 
 998              $form->{"storno"} ? 't' : 'f', conv_i($form->{storno_id}), conv_i($form->{"globalproject_id"}),
 
 999              conv_i($form->{"cp_id"}), $form->{transaction_description},
 
1000              $form->{marge_total} * 1, $form->{marge_percent} * 1,
 
1001              conv_i($form->{"id"}));
 
1002   do_query($form, $dbh, $query, @values);
 
1004   if($form->{"formname"} eq "credit_note") {
 
1005     for my $i (1 .. $form->{paidaccounts}) {
 
1006       $query = qq|UPDATE parts SET onhand = onhand - ? WHERE id = ?|;
 
1007       @values = (conv_i($form->{"qty_$i"}), conv_i($form->{"id_$i"}));
 
1008       do_query($form, $dbh, $query, @values);
 
1012   if ($form->{storno}) {
 
1015            paid = paid + amount,
 
1017            intnotes = ? || intnotes
 
1019     do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{"storno_id"}));
 
1020     do_query($form, $dbh, qq|UPDATE ar SET paid = amount WHERE id = ?|, conv_i($form->{"id"}));
 
1024   $form->{name} = $form->{customer};
 
1025   $form->{name} =~ s/--$form->{customer_id}//;
 
1027   if (!$form->{shipto_id}) {
 
1028     $form->add_shipto($dbh, $form->{id}, "AR");
 
1031   # save printed, emailed and queued
 
1032   $form->save_status($dbh);
 
1034   Common::webdav_folder($form) if ($main::webdav);
 
1037   if (!$provided_dbh) {
 
1042   $main::lxdebug->leave_sub();
 
1047 sub _delete_payments {
 
1048   $main::lxdebug->enter_sub();
 
1050   my ($self, $form, $dbh) = @_;
 
1054   # Delete old payment entries from acc_trans.
 
1058        WHERE (trans_id = ?) AND fx_transaction
 
1064        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1065        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
 
1066   push @delete_oids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
 
1071        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1072        WHERE (trans_id = ?)
 
1073          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1076   push @delete_oids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1079     $query = qq|DELETE FROM acc_trans WHERE oid IN (| . join(", ", @delete_oids) . qq|)|;
 
1080     do_query($form, $dbh, $query);
 
1083   $main::lxdebug->leave_sub();
 
1087   $main::lxdebug->enter_sub();
 
1089   my ($self, $myconfig, $form, $locale) = @_;
 
1091   # connect to database, turn off autocommit
 
1092   my $dbh = $form->dbconnect_noauto($myconfig);
 
1094   my (%payments, $old_form, $row, $item, $query, %keep_vars);
 
1096   $old_form = save_form();
 
1098   # Delete all entries in acc_trans from prior payments.
 
1099   $self->_delete_payments($form, $dbh);
 
1101   # Save the new payments the user made before cleaning up $form.
 
1102   map { $payments{$_} = $form->{$_} } grep m/^datepaid_\d+$|^memo_\d+$|^source_\d+$|^exchangerate_\d+$|^paid_\d+$|^AR_paid_\d+$|^paidaccounts$/, keys %{ $form };
 
1104   # Clean up $form so that old content won't tamper the results.
 
1105   %keep_vars = map { $_, 1 } qw(login password id);
 
1106   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
 
1108   # Retrieve the invoice from the database.
 
1109   $self->retrieve_invoice($myconfig, $form);
 
1111   # Set up the content of $form in the way that IS::post_invoice() expects.
 
1112   $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
 
1114   for $row (1 .. scalar @{ $form->{invoice_details} }) {
 
1115     $item = $form->{invoice_details}->[$row - 1];
 
1117     map { $item->{$_} = $form->format_amount($myconfig, $item->{$_}) } qw(qty sellprice discount);
 
1119     map { $form->{"${_}_${row}"} = $item->{$_} } keys %{ $item };
 
1122   $form->{rowcount} = scalar @{ $form->{invoice_details} };
 
1124   delete @{$form}{qw(invoice_details paidaccounts storno paid)};
 
1126   # Restore the payment options from the user input.
 
1127   map { $form->{$_} = $payments{$_} } keys %payments;
 
1129   # Get the AR accno (which is normally done by Form::create_links()).
 
1133        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1134        WHERE (trans_id = ?)
 
1135          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1139   ($form->{AR}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1141   # Post the new payments.
 
1142   $self->post_invoice($myconfig, $form, $dbh, 1);
 
1144   restore_form($old_form);
 
1146   my $rc = $dbh->commit();
 
1149   $main::lxdebug->leave_sub();
 
1154 sub process_assembly {
 
1155   $main::lxdebug->enter_sub();
 
1157   my ($dbh, $form, $id, $totalqty) = @_;
 
1160     qq|SELECT a.parts_id, a.qty, p.assembly, p.partnumber, p.description, p.unit,
 
1161          p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
 
1163        JOIN parts p ON (a.parts_id = p.id)
 
1165   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1167   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1171     $ref->{inventory_accno_id} *= 1;
 
1172     $ref->{expense_accno_id}   *= 1;
 
1174     # multiply by number of assemblies
 
1175     $ref->{qty} *= $totalqty;
 
1177     if ($ref->{assembly}) {
 
1178       &process_assembly($dbh, $form, $ref->{parts_id}, $ref->{qty});
 
1181       if ($ref->{inventory_accno_id}) {
 
1182         $allocated = &cogs($dbh, $form, $ref->{parts_id}, $ref->{qty});
 
1186     # save detail record for individual assembly item in invoice table
 
1188       qq|INSERT INTO invoice (trans_id, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
 
1189          VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1190     @values = (conv_i($form->{id}), $ref->{description}, conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
 
1191     do_query($form, $dbh, $query, @values);
 
1197   $main::lxdebug->leave_sub();
 
1201   $main::lxdebug->enter_sub();
 
1203   my ($dbh, $form, $id, $totalqty, $basefactor, $row) = @_;
 
1204   $form->{taxzone_id} *=1;
 
1205   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
 
1206   my $taxzone_id = $form->{"taxzone_id"} * 1;
 
1208     qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice,
 
1209          c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
 
1210          c2.accno AS    income_accno, c2.new_chart_id AS    income_new_chart, date($transdate) - c2.valid_from AS    income_valid,
 
1211          c3.accno AS   expense_accno, c3.new_chart_id AS   expense_new_chart, date($transdate) - c3.valid_from AS   expense_valid
 
1212        FROM invoice i, parts p
 
1213        LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
 
1214        LEFT JOIN chart c2 ON ((SELECT income_accno_id_${taxzone_id} FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c2.id)
 
1215        LEFT JOIN chart c3 ON ((select expense_accno_id_${taxzone_id} FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c3.id)
 
1216        WHERE (i.parts_id = p.id)
 
1217          AND (i.parts_id = ?)
 
1218          AND ((i.base_qty + i.allocated) < 0)
 
1220   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1225   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1226     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
 
1230     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
 
1232     # total expenses and inventory
 
1233     # sellprice is the cost of the item
 
1234     $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / $basefactor, 2);
 
1237       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
 
1239       $form->{amount}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
 
1240       $form->{expense_inventory} .= " " . $ref->{expense_accno};
 
1241       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
 
1243       $form->{amount}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
 
1244       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
 
1250     last if (($totalqty -= $qty) <= 0);
 
1255   $main::lxdebug->leave_sub();
 
1260 sub reverse_invoice {
 
1261   $main::lxdebug->enter_sub();
 
1263   my ($dbh, $form) = @_;
 
1265   # reverse inventory items
 
1267     qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly, p.inventory_accno_id
 
1269        JOIN parts p ON (i.parts_id = p.id)
 
1270        WHERE i.trans_id = ?|;
 
1271   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
 
1273   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1275     if ($ref->{inventory_accno_id} || $ref->{assembly}) {
 
1277       # if the invoice item is not an assemblyitem adjust parts onhand
 
1278       if (!$ref->{assemblyitem}) {
 
1280         # adjust onhand in parts table
 
1281         $form->update_balance($dbh, "parts", "onhand", qq|id = $ref->{parts_id}|, $ref->{qty});
 
1284       # loop if it is an assembly
 
1285       next if ($ref->{assembly});
 
1287       # de-allocated purchases
 
1289         qq|SELECT i.id, i.trans_id, i.allocated
 
1291            WHERE (i.parts_id = ?) AND (i.allocated > 0)
 
1292            ORDER BY i.trans_id DESC|;
 
1293       my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
 
1295       while (my $inhref = $sth2->fetchrow_hashref(NAME_lc)) {
 
1297         if (($ref->{qty} - $inhref->{allocated}) > 0) {
 
1298           $qty = $inhref->{allocated};
 
1302         $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
 
1304         last if (($ref->{qty} -= $qty) <= 0);
 
1313   @values = (conv_i($form->{id}));
 
1314   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
 
1315   do_query($form, $dbh, qq|DELETE FROM invoice WHERE trans_id = ?|, @values);
 
1317   if ($form->{lizenzen}) {
 
1319       qq|DELETE FROM licenseinvoice
 
1320          WHERE trans_id in (SELECT id FROM invoice WHERE trans_id = ?)|;
 
1321     do_query($form, $dbh, $query, @values);
 
1324   do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
 
1326   $main::lxdebug->leave_sub();
 
1329 sub delete_invoice {
 
1330   $main::lxdebug->enter_sub();
 
1332   my ($self, $myconfig, $form, $spool) = @_;
 
1334   # connect to database
 
1335   my $dbh = $form->dbconnect_noauto($myconfig);
 
1337   &reverse_invoice($dbh, $form);
 
1339   my @values = (conv_i($form->{id}));
 
1342   do_query($form, $dbh, qq|DELETE FROM ar WHERE id = ?|, @values);
 
1344   # delete spool files
 
1345   my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
 
1347   # delete status entries
 
1348   do_query($form, $dbh, qq|DELETE FROM status WHERE trans_id = ?|, @values);
 
1350   my $rc = $dbh->commit;
 
1354     map { unlink "$spool/$_" if -f "$spool/$_"; } @{ $spoolfiles };
 
1357   $main::lxdebug->leave_sub();
 
1362 sub retrieve_invoice {
 
1363   $main::lxdebug->enter_sub();
 
1365   my ($self, $myconfig, $form) = @_;
 
1367   # connect to database
 
1368   my $dbh = $form->dbconnect_noauto($myconfig);
 
1370   my ($sth, $ref, $query);
 
1372   my $query_transdate = ", current_date AS invdate" if !$form->{id};
 
1376          (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
 
1377          (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
 
1378          (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
 
1379          (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
 
1380          (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno,
 
1381          d.curr AS currencies
 
1385   $ref = selectfirst_hashref_query($form, $dbh, $query);
 
1386   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1389     my $id = conv_i($form->{id});
 
1394            a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
 
1395            a.orddate, a.quodate, a.globalproject_id,
 
1396            a.transdate AS invdate, a.deliverydate, a.paid, a.storno, a.gldate,
 
1397            a.shippingpoint, a.shipvia, a.terms, a.notes, a.intnotes, a.taxzone_id,
 
1398            a.duedate, a.taxincluded, a.curr AS currency, a.shipto_id, a.cp_id,
 
1399            a.employee_id, a.salesman_id, a.payment_id,
 
1400            a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
 
1401            a.transaction_description,
 
1402            a.marge_total, a.marge_percent,
 
1405          LEFT JOIN employee e ON (e.id = a.employee_id)
 
1407     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
1408     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1411     $form->{exchangerate} =
 
1412       $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
 
1415     $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|;
 
1416     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
1418     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1420     foreach my $vc (qw(customer vendor)) {
 
1421       next if !$form->{"delivery_${vc}_id"};
 
1422       ($form->{"delivery_${vc}_string"})
 
1423         = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
 
1426     # get printed, emailed
 
1428       qq|SELECT printed, emailed, spoolfile, formname
 
1430          WHERE trans_id = ?|;
 
1431     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
1433     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1434       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
 
1435       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
 
1436       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} "
 
1437         if $ref->{spoolfile};
 
1440     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
 
1443       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
 
1444       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
 
1447     my $taxzone_id = $form->{taxzone_id} *= 1;
 
1448     $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
 
1450     # retrieve individual items
 
1453            c1.accno AS inventory_accno,
 
1454            c1.new_chart_id AS inventory_new_chart,
 
1455            date($transdate) - c1.valid_from AS inventory_valid,
 
1457            c2.accno AS income_accno,
 
1458            c2.new_chart_id AS income_new_chart,
 
1459            date($transdate) - c2.valid_from as income_valid,
 
1461            c3.accno AS expense_accno,
 
1462            c3.new_chart_id AS expense_new_chart,
 
1463            date($transdate) - c3.valid_from AS expense_valid,
 
1465            i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice,
 
1466            i.discount, i.parts_id AS id, i.unit, i.deliverydate,
 
1467            i.project_id, i.serialnumber, i.id AS invoice_pos, i.pricegroup_id,
 
1468            i.ordnumber, i.transdate, i.cusordnumber, i.subtotal, i.lastcost,
 
1470            p.partnumber, p.assembly, p.bin, p.notes AS partnotes,
 
1471            p.inventory_accno_id AS part_inventory_accno_id, p.formel,
 
1478          LEFT JOIN parts p ON (i.parts_id = p.id)
 
1479          LEFT JOIN project pr ON (i.project_id = pr.id)
 
1480          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1481          LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
 
1483          LEFT JOIN chart c1 ON
 
1484            ((SELECT inventory_accno_id
 
1485              FROM buchungsgruppen
 
1486              WHERE id = p.buchungsgruppen_id) = c1.id)
 
1487          LEFT JOIN chart c2 ON
 
1488            ((SELECT income_accno_id_${taxzone_id}
 
1489              FROM buchungsgruppen
 
1490              WHERE id=p.buchungsgruppen_id) = c2.id)
 
1491          LEFT JOIN chart c3 ON
 
1492            ((SELECT expense_accno_id_${taxzone_id}
 
1493              FROM buchungsgruppen
 
1494              WHERE id = p.buchungsgruppen_id) = c3.id)
 
1496          WHERE (i.trans_id = ?)
 
1497            AND NOT (i.assemblyitem = '1')
 
1500     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
1502     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1503       if (!$ref->{"part_inventory_accno_id"}) {
 
1504         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
 
1506       delete($ref->{"part_inventory_accno_id"});
 
1508       foreach my $type (qw(inventory income expense)) {
 
1509         while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
1511             qq|SELECT accno, new_chart_id, date($transdate) - valid_from
 
1514           ($ref->{"${type}_accno"},
 
1515            $ref->{"${type}_new_chart"},
 
1516            $ref->{"${type}_valid"})
 
1517             = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
1521       # get tax rates and description
 
1523         ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
1525         qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
 
1527            LEFT JOIN chart c ON (c.id = t.chart_id)
 
1531               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
 
1532                 AND startdate <= date($transdate)
 
1533               ORDER BY startdate DESC
 
1536       my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
 
1537       $ref->{taxaccounts} = "";
 
1539       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
 
1541         #    if ($customertax{$ref->{accno}}) {
 
1542         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
1546         $ref->{taxaccounts} .= "$ptr->{accno} ";
 
1548         if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
 
1549           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
1550           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
1551           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
1552           $form->{taxaccounts} .= "$ptr->{accno} ";
 
1557       if ($form->{lizenzen}) {
 
1559           qq|SELECT l.licensenumber, l.id AS licenseid
 
1560              FROM license l, licenseinvoice li
 
1561              WHERE l.id = li.license_id AND li.trans_id = ?|;
 
1562         my ($licensenumber, $licenseid)
 
1563           = selectrow_query($form, $dbh, $query, conv_i($ref->{invoice_pos}));
 
1564         $ref->{lizenzen} = "<option value=\"$licenseid\">$licensenumber</option>";
 
1567       $ref->{qty} *= -1 if $form->{type} eq "credit_note";
 
1569       chop $ref->{taxaccounts};
 
1570       push @{ $form->{invoice_details} }, $ref;
 
1575     Common::webdav_folder($form) if ($main::webdav);
 
1578   my $rc = $dbh->commit;
 
1581   $main::lxdebug->leave_sub();
 
1587   $main::lxdebug->enter_sub();
 
1589   my ($self, $myconfig, $form) = @_;
 
1591   # connect to database
 
1592   my $dbh = $form->dbconnect($myconfig);
 
1594   my $dateformat = $myconfig->{dateformat};
 
1595   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
1597   my (@values, $duedate, $ref, $query);
 
1599   if ($form->{invdate}) {
 
1600     $duedate = "to_date(?, '$dateformat')";
 
1601     push @values, $form->{invdate};
 
1603     $duedate = "current_date";
 
1606   my $cid = conv_i($form->{customer_id});
 
1611          c.name AS customer, c.discount, c.creditlimit, c.terms,
 
1612          c.email, c.cc, c.bcc, c.language_id, c.payment_id AS customer_payment_id,
 
1613          c.street, c.zipcode, c.city, c.country,
 
1614          c.notes AS intnotes, c.klass as customer_klass, c.taxzone_id, c.salesman_id,
 
1615          $duedate + COALESCE(pt.terms_netto, 0) AS duedate,
 
1616          b.discount AS tradediscount, b.description AS business
 
1618        LEFT JOIN business b ON (b.id = c.business_id)
 
1619        LEFT JOIN payment_terms pt ON (c.payment_id = pt.id)
 
1622   $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
1623   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1626     qq|SELECT sum(amount - paid) AS dunning_amount
 
1628        WHERE (paid < amount)
 
1629          AND (customer_id = ?)
 
1630          AND (dunning_config_id IS NOT NULL)|;
 
1631   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
1632   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1635     qq|SELECT dnn.dunning_description AS max_dunning_level
 
1636        FROM dunning_config dnn
 
1637        WHERE id IN (SELECT dunning_config_id
 
1639                     WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
 
1640        ORDER BY dunning_level DESC LIMIT 1|;
 
1641   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
1642   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1644   #check whether payment_terms are better than old payment_terms
 
1645   if (($form->{payment_id} ne "") && ($form->{customer_payment_id} ne "")) {
 
1648           (SELECT ranking FROM payment_terms WHERE id = ?),
 
1649           (SELECT ranking FROM payment_terms WHERE id = ?)|;
 
1650     my ($old_ranking, $new_ranking)
 
1651       = selectrow_query($form, $dbh, $query, conv_i($form->{payment_id}), conv_i($form->{customer_payment_id}));
 
1652     if ($new_ranking > $old_ranking) {
 
1653       $form->{payment_id} = $form->{customer_payment_id};
 
1657   if ($form->{payment_id} eq "") {
 
1658     $form->{payment_id} = $form->{customer_payment_id};
 
1661   $form->{creditremaining} = $form->{creditlimit};
 
1662   $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
 
1663   my ($value) = selectrow_query($form, $dbh, $query, $cid);
 
1664   $form->{creditremaining} -= $value;
 
1668          (SELECT e.buy FROM exchangerate e
 
1669           WHERE e.curr = o.curr
 
1670             AND e.transdate = o.transdate)
 
1672        WHERE o.customer_id = ?
 
1673          AND o.quotation = '0'
 
1674          AND o.closed = '0'|;
 
1675   $sth = prepare_execute_query($form, $dbh, $query, $cid);
 
1677   while (my ($amount, $exch) = $sth->fetchrow_array) {
 
1678     $exch = 1 unless $exch;
 
1679     $form->{creditremaining} -= $amount * $exch;
 
1683   # get shipto if we did not converted an order or invoice
 
1684   if (!$form->{shipto}) {
 
1685     map { delete $form->{$_} }
 
1686       qw(shiptoname shiptodepartment_1 shiptodepartment_2
 
1687          shiptostreet shiptozipcode shiptocity shiptocountry
 
1688          shiptocontact shiptophone shiptofax shiptoemail);
 
1690     $query = qq|SELECT * FROM shipto WHERE trans_id = ? AND module = 'CT'|;
 
1691     $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
1693     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1696   # setup last accounts used for this customer
 
1697   if (!$form->{id} && $form->{type} !~ /_(order|quotation)/) {
 
1699       qq|SELECT c.id, c.accno, c.description, c.link, c.category
 
1701          JOIN acc_trans ac ON (ac.chart_id = c.id)
 
1702          JOIN ar a ON (a.id = ac.trans_id)
 
1703          WHERE a.customer_id = ?
 
1704            AND NOT (c.link LIKE '%_tax%' OR c.link LIKE '%_paid%')
 
1705            AND a.id IN (SELECT max(a2.id) FROM ar a2 WHERE a2.customer_id = ?)|;
 
1706     $sth = prepare_execute_query($form, $dbh, $query, $cid, $cid);
 
1709     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1710       if ($ref->{category} eq 'I') {
 
1712         $form->{"AR_amount_$i"} = "$ref->{accno}--$ref->{description}";
 
1714         if ($form->{initial_transdate}) {
 
1716             qq|SELECT tk.tax_id, t.rate
 
1718                LEFT JOIN tax t ON tk.tax_id = t.id
 
1719                WHERE (tk.chart_id = ?) AND (startdate <= date(?))
 
1720                ORDER BY tk.startdate DESC
 
1722           my ($tax_id, $rate) =
 
1723             selectrow_query($form, $dbh, $tax_query, $ref->{id},
 
1724                             $form->{initial_transdate});
 
1725           $form->{"taxchart_$i"} = "${tax_id}--${rate}";
 
1728       if ($ref->{category} eq 'A') {
 
1729         $form->{ARselected} = $form->{AR_1} = $ref->{accno};
 
1733     $form->{rowcount} = $i if ($i && !$form->{type});
 
1738   $main::lxdebug->leave_sub();
 
1742   $main::lxdebug->enter_sub();
 
1744   my ($self, $myconfig, $form) = @_;
 
1746   # connect to database
 
1747   my $dbh = $form->dbconnect($myconfig);
 
1749   my $i = $form->{rowcount};
 
1751   my $where = qq|NOT p.obsolete = '1'|;
 
1754   foreach my $column (qw(p.partnumber p.description pgpartsgroup)) {
 
1755     my ($table, $field) = split m/\./, $column;
 
1756     next if !$form->{"${field}_${i}"};
 
1757     $where .= qq| AND lower(${column}) ILIKE ?|;
 
1758     push @values, '%' . $form->{"${field}_${i}"} . '%';
 
1761   if ($form->{"description_$i"}) {
 
1762     $where .= qq| ORDER BY p.description|;
 
1764     $where .= qq| ORDER BY p.partnumber|;
 
1768   if ($form->{type} eq "invoice") {
 
1770       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
 
1771       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
 
1775       $form->{transdate}    ? $dbh->quote($form->{transdate}) :
 
1779   my $taxzone_id = $form->{taxzone_id} * 1;
 
1780   $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
 
1784          p.id, p.partnumber, p.description, p.sellprice,
 
1785          p.listprice, p.inventory_accno_id, p.lastcost,
 
1787          c1.accno AS inventory_accno,
 
1788          c1.new_chart_id AS inventory_new_chart,
 
1789          date($transdate) - c1.valid_from AS inventory_valid,
 
1791          c2.accno AS income_accno,
 
1792          c2.new_chart_id AS income_new_chart,
 
1793          date($transdate)  - c2.valid_from AS income_valid,
 
1795          c3.accno AS expense_accno,
 
1796          c3.new_chart_id AS expense_new_chart,
 
1797          date($transdate) - c3.valid_from AS expense_valid,
 
1799          p.unit, p.assembly, p.bin, p.onhand,
 
1800          p.notes AS partnotes, p.notes AS longdescription,
 
1801          p.not_discountable, p.formel, p.payment_id AS part_payment_id,
 
1806        LEFT JOIN chart c1 ON
 
1807          ((SELECT inventory_accno_id
 
1808            FROM buchungsgruppen
 
1809            WHERE id = p.buchungsgruppen_id) = c1.id)
 
1810        LEFT JOIN chart c2 ON
 
1811          ((SELECT income_accno_id_${taxzone_id}
 
1812            FROM buchungsgruppen
 
1813            WHERE id = p.buchungsgruppen_id) = c2.id)
 
1814        LEFT JOIN chart c3 ON
 
1815          ((SELECT expense_accno_id_${taxzone_id}
 
1816            FROM buchungsgruppen
 
1817            WHERE id = p.buchungsgruppen_id) = c3.id)
 
1818        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
 
1820   my $sth = prepare_execute_query($form, $dbh, $query, @values);
 
1822   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1824     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
 
1825     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
 
1826     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
 
1827     if (!$ref->{inventory_accno_id}) {
 
1828       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
 
1830     delete($ref->{inventory_accno_id});
 
1832     foreach my $type (qw(inventory income expense)) {
 
1833       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
1835           qq|SELECT accno, new_chart_id, date($transdate) - valid_from
 
1838         ($ref->{"${type}_accno"},
 
1839          $ref->{"${type}_new_chart"},
 
1840          $ref->{"${type}_valid"})
 
1841           = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
1845     #check whether payment_terms are better than old payment_terms
 
1846     if (($form->{payment_id} ne "") && ($form->{part_payment_id} ne "")) {
 
1849             (SELECT ranking FROM payment_terms WHERE id = ?),
 
1850             (SELECT ranking FROM payment_terms WHERE id = ?)|;
 
1851       my ($old_ranking, $new_ranking)
 
1852         = selectrow_query($form, $dbh, $query, conv_i($form->{payment_id}), conv_i($form->{part_payment_id}));
 
1853       if ($new_ranking > $old_ranking) {
 
1854         $form->{payment_id} = $form->{customer_payment_id};
 
1858     if ($form->{payment_id} eq "") {
 
1859       $form->{payment_id} = $form->{part_payment_id};
 
1862     # get tax rates and description
 
1863     $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
1865       qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
 
1867          LEFT JOIN chart c ON (c.id = t.chart_id)
 
1871             WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
 
1873             ORDER BY startdate DESC
 
1876     @values = ($accno_id, $transdate eq "current_date" ? "now" : $transdate);
 
1877     $stw = $dbh->prepare($query);
 
1878     $stw->execute(@values) || $form->dberror($query);
 
1880     $ref->{taxaccounts} = "";
 
1882     while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
 
1884       #    if ($customertax{$ref->{accno}}) {
 
1885       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
1889       $ref->{taxaccounts} .= "$ptr->{accno} ";
 
1891       if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
 
1892         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
1893         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
1894         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
1895         $form->{taxaccounts} .= "$ptr->{accno} ";
 
1901     chop $ref->{taxaccounts};
 
1902     if ($form->{language_id}) {
 
1904         qq|SELECT tr.translation, tr.longdescription
 
1906            WHERE tr.language_id = ? AND tr.parts_id = ?|;
 
1907       @values = (conv_i($form->{language_id}), conv_i($ref->{id}));
 
1908       my ($translation, $longdescription) = selectrow_query($form, $dbh, $query, @values);
 
1909       if ($translation ne "") {
 
1910         $ref->{description} = $translation;
 
1911         $ref->{longdescription} = $longdescription;
 
1915           qq|SELECT tr.translation, tr.longdescription
 
1917              WHERE tr.language_id IN
 
1920                 WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
 
1923         @values = (conv_i($form->{language_id}), conv_i($ref->{id}));
 
1924         my ($translation, $longdescription) = selectrow_query($form, $dbh, $query, @values);
 
1925         if ($translation ne "") {
 
1926           $ref->{description} = $translation;
 
1927           $ref->{longdescription} = $longdescription;
 
1932     push @{ $form->{item_list} }, $ref;
 
1934     if ($form->{lizenzen}) {
 
1935       if ($ref->{inventory_accno} > 0) {
 
1939              WHERE l.parts_id = ? AND NOT l.id IN (SELECT li.license_id FROM licenseinvoice li)|;
 
1940         my $stw = prepare_execute_query($form, $dbh, $query, conv_i($ref->{id}));
 
1941         while (my $ptr = $stw->fetchrow_hashref(NAME_lc)) {
 
1942           push @{ $form->{LIZENZEN}{ $ref->{id} } }, $ptr;
 
1951   $main::lxdebug->leave_sub();
 
1954 ##########################
 
1955 # get pricegroups from database
 
1956 # build up selected pricegroup
 
1957 # if an exchange rate - change price
 
1960 sub get_pricegroups_for_parts {
 
1962   $main::lxdebug->enter_sub();
 
1964   my ($self, $myconfig, $form) = @_;
 
1966   my $dbh = $form->dbconnect($myconfig);
 
1968   $form->{"PRICES"} = {};
 
1972   my $dimension_units = AM->retrieve_units($myconfig, $form, "dimension");
 
1973   my $service_units = AM->retrieve_units($myconfig, $form, "service");
 
1974   my $all_units = AM->retrieve_units($myconfig, $form);
 
1975   while (($form->{"id_$i"}) or ($form->{"new_id_$i"})) {
 
1976     $form->{"PRICES"}{$i} = [];
 
1978     $id = $form->{"id_$i"};
 
1980     if (!($form->{"id_$i"}) and $form->{"new_id_$i"}) {
 
1982       $id = $form->{"new_id_$i"};
 
1985     ($price, $selectedpricegroup_id) = split(/--/,
 
1986       $form->{"sellprice_pg_$i"});
 
1988     $pricegroup_old = $form->{"pricegroup_old_$i"};
 
1989     $form->{"new_pricegroup_$i"} = $selectedpricegroup_id;
 
1990     $form->{"old_pricegroup_$i"} = $pricegroup_old;
 
1992     $price_new = $form->{"price_new_$i"};
 
1993     $price_old = $form->{"price_old_$i"};
 
1995     if (!$form->{"unit_old_$i"}) {
 
1996       # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
 
1997       # Einheit, wie sie in den Stammdaten hinterlegt wurde.
 
1998       # Es sollte also angenommen werden, dass diese ausgewaehlt war.
 
1999       $form->{"unit_old_$i"} = $form->{"unit_$i"};
 
2002     # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
 
2003     # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
 
2004     $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
 
2006     my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
 
2007     if (!$check_units->{$form->{"selected_unit_$i"}} ||
 
2008         ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
 
2009          $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
 
2010       # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
2011       # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
2012       # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
2013       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
 
2018     if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
 
2019       if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
 
2020           $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
 
2021         $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
 
2022           $all_units->{$form->{"unit_old_$i"}}->{"factor"};
 
2026     if (!$form->{"basefactor_$i"}) {
 
2027       $form->{"basefactor_$i"} = 1;
 
2033            (SELECT p.sellprice FROM parts p WHERE p.id = ?) AS default_sellprice,
 
2034            (SELECT pg.pricegroup FROM pricegroup pg WHERE id = pricegroup_id) AS pricegroup,
 
2044             (SELECT sellprice FROM parts WHERE id = ?) AS default_sellprice,
 
2046             (SELECT DISTINCT sellprice FROM parts where id = ?) AS price,
 
2047             'selected' AS selected
 
2050           ORDER BY pricegroup|;
 
2051     @values = (conv_i($id), conv_i($id), conv_i($id), conv_i($id));
 
2052     my $pkq = prepare_execute_query($form, $dbh, $query, @values);
 
2054     while ($pkr = $pkq->fetchrow_hashref(NAME_lc)) {
 
2056       $pkr->{selected} = '';
 
2058       # if there is an exchange rate change price
 
2059       if (($form->{exchangerate} * 1) != 0) {
 
2061         $pkr->{price} /= $form->{exchangerate};
 
2064       $pkr->{price} *= $form->{"basefactor_$i"};
 
2066       $pkr->{price} *= $basefactor;
 
2068       $pkr->{price} = $form->format_amount($myconfig, $pkr->{price}, 5);
 
2070       if ($selectedpricegroup_id eq undef) {
 
2071         if ($pkr->{pricegroup_id} eq $form->{customer_klass}) {
 
2073           $pkr->{selected}  = ' selected';
 
2075           # no customer pricesgroup set
 
2076           if ($pkr->{price} == $pkr->{default_sellprice}) {
 
2078             $pkr->{price} = $form->{"sellprice_$i"};
 
2082             $form->{"sellprice_$i"} = $pkr->{price};
 
2085         } elsif ($pkr->{price} == $pkr->{default_sellprice}) {
 
2086           $pkr->{price}    = $form->{"sellprice_$i"};
 
2087           $pkr->{selected} = ' selected';
 
2091       if ($selectedpricegroup_id or $selectedpricegroup_id == 0) {
 
2092         if ($selectedpricegroup_id ne $pricegroup_old) {
 
2093           if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
 
2094             $pkr->{selected}  = ' selected';
 
2096         } elsif (($price_new != $form->{"sellprice_$i"}) and ($price_new ne 0)) {
 
2097           if ($pkr->{pricegroup_id} == 0) {
 
2098             $pkr->{price}     = $form->{"sellprice_$i"};
 
2099             $pkr->{selected}  = ' selected';
 
2101         } elsif ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
 
2102           $pkr->{selected}  = ' selected';
 
2103           if (    ($pkr->{pricegroup_id} == 0)
 
2104               and ($pkr->{price} == $form->{"sellprice_$i"})) {
 
2105             # $pkr->{price}                         = $form->{"sellprice_$i"};
 
2107             $pkr->{price} = $form->{"sellprice_$i"};
 
2111       push @{ $form->{PRICES}{$i} }, $pkr;
 
2114     $form->{"basefactor_$i"} *= $basefactor;
 
2123   $main::lxdebug->leave_sub();
 
2127   $main::lxdebug->enter_sub();
 
2129   my ($self, $myconfig, $form, $table) = @_;
 
2131   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
 
2133   # make sure there's no funny stuff in $table
 
2134   # ToDO: die when this happens and throw an error
 
2135   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2137   my $dbh = $form->dbconnect($myconfig);
 
2139   my $query = qq|SELECT storno FROM $table WHERE storno_id = ?|;
 
2140   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
 
2144   $main::lxdebug->leave_sub();
 
2150   $main::lxdebug->enter_sub();
 
2152   my ($self, $myconfig, $form, $table, $id) = @_;
 
2154   $main::lxdebug->leave_sub() and return 0 unless ($id);
 
2156   # make sure there's no funny stuff in $table
 
2157   # ToDO: die when this happens and throw an error
 
2158   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2160   my $dbh = $form->dbconnect($myconfig);
 
2162   my $query = qq|SELECT storno FROM $table WHERE id = ?|;
 
2163   my ($result) = selectrow_query($form, $dbh, $query, $id);
 
2167   $main::lxdebug->leave_sub();