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) 1999-2003
 
  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 #======================================================================
 
  33 #======================================================================
 
  40   $main::lxdebug->enter_sub();
 
  42   my ($self, $myconfig, $form) = @_;
 
  45   my $dbh = $form->dbconnect($myconfig);
 
  48   my $ordnumber = 'ordnumber';
 
  50   my ($null, $department_id) = split /--/, $form->{department};
 
  52   my $department = " AND o.department_id = $department_id" if $department_id;
 
  54   my $rate = ($form->{vc} eq 'customer') ? 'buy' : 'sell';
 
  56   if ($form->{type} =~ /_quotation$/) {
 
  58     $ordnumber = 'quonumber';
 
  61   my $number = $form->like(lc $form->{$ordnumber});
 
  62   my $name   = $form->like(lc $form->{ $form->{vc} });
 
  64   my $query = qq|SELECT o.id, o.ordnumber, o.transdate, o.reqdate,
 
  65                  o.amount, ct.name, o.netamount, o.$form->{vc}_id,
 
  66                  ex.$rate AS exchangerate,
 
  67                  o.closed, o.quonumber, o.shippingpoint, o.shipvia,
 
  70                  JOIN $form->{vc} ct ON (o.$form->{vc}_id = ct.id)
 
  71                  LEFT JOIN employee e ON (o.employee_id = e.id)
 
  72                  LEFT JOIN exchangerate ex ON (ex.curr = o.curr
 
  73                                                AND ex.transdate = o.transdate)
 
  74                  WHERE o.quotation = '$quotation'
 
  77   # build query if type eq (ship|receive)_order
 
  78   if ($form->{type} =~ /(ship|receive)_order/) {
 
  79     my ($warehouse, $warehouse_id) = split /--/, $form->{warehouse};
 
  81     $query = qq|SELECT DISTINCT ON (o.id) o.id, o.ordnumber, o.transdate,
 
  82                  o.reqdate, o.amount, ct.name, o.netamount, o.$form->{vc}_id,
 
  83                  ex.$rate AS exchangerate,
 
  84                  o.closed, o.quonumber, o.shippingpoint, o.shipvia,
 
  87                  JOIN $form->{vc} ct ON (o.$form->{vc}_id = ct.id)
 
  88                  JOIN orderitems oi ON (oi.trans_id = o.id)
 
  89                  JOIN parts p ON (p.id = oi.parts_id)|;
 
  91     if ($warehouse_id && $form->{type} eq 'ship_order') {
 
  93                  JOIN inventory i ON (oi.parts_id = i.parts_id)
 
  98                  LEFT JOIN employee e ON (o.employee_id = e.id)
 
  99                  LEFT JOIN exchangerate ex ON (ex.curr = o.curr
 
 100                                                AND ex.transdate = o.transdate)
 
 101                  WHERE o.quotation = '0'
 
 102                  AND (p.inventory_accno_id > 0 OR p.assembly = '1')
 
 103                  AND oi.qty <> oi.ship
 
 106     if ($warehouse_id && $form->{type} eq 'ship_order') {
 
 108                  AND i.warehouse_id = $warehouse_id
 
 109                  AND i.qty >= (oi.qty - oi.ship)
 
 115   if ($form->{"$form->{vc}_id"}) {
 
 116     $query .= qq| AND o.$form->{vc}_id = $form->{"$form->{vc}_id"}|;
 
 118     if ($form->{ $form->{vc} }) {
 
 119       $query .= " AND lower(ct.name) LIKE '$name'";
 
 122   if (!$form->{open} && !$form->{closed}) {
 
 123     $query .= " AND o.id = 0";
 
 124   } elsif (!($form->{open} && $form->{closed})) {
 
 125     $query .= ($form->{open}) ? " AND o.closed = '0'" : " AND o.closed = '1'";
 
 128   my $sortorder = join ', ',
 
 129     ("o.id", $form->sort_columns(transdate, $ordnumber, name));
 
 130   $sortorder = $form->{sort} if $form->{sort};
 
 132   $query .= " AND lower($ordnumber) LIKE '$number'" if $form->{$ordnumber};
 
 133   $query .= " AND o.transdate >= '$form->{transdatefrom}'"
 
 134     if $form->{transdatefrom};
 
 135   $query .= " AND o.transdate <= '$form->{transdateto}'"
 
 136     if $form->{transdateto};
 
 137   $query .= " ORDER by $sortorder";
 
 139   my $sth = $dbh->prepare($query);
 
 140   $sth->execute || $form->dberror($query);
 
 143   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 144     $ref->{exchangerate} = 1 unless $ref->{exchangerate};
 
 145     push @{ $form->{OE} }, $ref if $ref->{id} != $id{ $ref->{id} };
 
 146     $id{ $ref->{id} } = $ref->{id};
 
 152   $main::lxdebug->leave_sub();
 
 156   $main::lxdebug->enter_sub();
 
 158   my ($self, $myconfig, $form) = @_;
 
 160   # connect to database, turn off autocommit
 
 161   my $dbh = $form->dbconnect_noauto($myconfig);
 
 163   my ($query, $sth, $null);
 
 164   my $exchangerate = 0;
 
 166   my $service_units = AM->retrieve_units($myconfig,$form,"service");
 
 167   my $part_units = AM->retrieve_units($myconfig,$form,"dimension");
 
 168   $form->{service_units} =$service_units;
 
 169   $form->{part_units} =$part_units;
 
 171   ($null, $form->{employee_id}) = split /--/, $form->{employee};
 
 172   unless ($form->{employee_id}) {
 
 173     $form->get_employee($dbh);
 
 176   $form->{contact_id} = $form->{cp_id};
 
 177   $form->{contact_id} *= 1;
 
 178   $form->{payment_id} *= 1;
 
 179   $form->{language_id} *= 1;
 
 180   $form->{shipto_id} *= 1;
 
 181   $form->{delivery_customer_id} *= 1;
 
 182   $form->{delivery_vendor_id} *= 1;
 
 184   my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
 
 188     &adj_onhand($dbh, $form, $ml) if $form->{type} =~ /_order$/;
 
 190     $query = qq|DELETE FROM orderitems
 
 191                 WHERE trans_id = $form->{id}|;
 
 192     $dbh->do($query) || $form->dberror($query);
 
 194     $query = qq|DELETE FROM shipto
 
 195                 WHERE trans_id = $form->{id} AND module = 'OE'|;
 
 196     $dbh->do($query) || $form->dberror($query);
 
 200     my $uid = rand() . time;
 
 202     $uid .= $form->{login};
 
 204     $uid = substr($uid, 2, 75);
 
 206     $query = qq|INSERT INTO oe (ordnumber, employee_id)
 
 207                 VALUES ('$uid', $form->{employee_id})|;
 
 208     $dbh->do($query) || $form->dberror($query);
 
 210     $query = qq|SELECT o.id FROM oe o
 
 211                 WHERE o.ordnumber = '$uid'|;
 
 212     $sth = $dbh->prepare($query);
 
 213     $sth->execute || $form->dberror($query);
 
 215     ($form->{id}) = $sth->fetchrow_array;
 
 219   map { $form->{$_} =~ s/\'/\'\'/g }
 
 220     qw(ordnumber quonumber shippingpoint shipvia notes intnotes message);
 
 235   for my $i (1 .. $form->{rowcount}) {
 
 239         $form->parse_amount($myconfig, $form->{"${_}_$i"})
 
 242     if ($form->{"qty_$i"}) {
 
 245       $query = qq|SELECT p.unit
 
 247                   WHERE p.id = $form->{"id_$i"}|;
 
 248       $sth = $dbh->prepare($query);
 
 249       $sth->execute || $form->dberror($query);
 
 251       my ($item_unit) = $sth->fetchrow_array();
 
 254       if ($form->{"inventory_accno_$i"}) {
 
 255         if (defined($part_units->{$item_unit}->{factor}) && $part_units->{$item_unit}->{factor} ne '' && $part_units->{$item_unit}->{factor} ne '0') {
 
 256           $basefactor = $part_units->{$form->{"unit_$i"}}->{factor} / $part_units->{$item_unit}->{factor};
 
 260         $baseqty = $form->{"qty_$i"} * $basefactor;
 
 262         if (defined($service_units->{$item_unit}->{factor}) && $service_units->{$item_unit}->{factor} ne '' && $service_units->{$item_unit}->{factor} ne '0') {
 
 263           $basefactor = $service_units->{$form->{"unit_$i"}}->{factor} / $service_units->{$item_unit}->{factor};
 
 267         $baseqty = $form->{"qty_$i"} * $basefactor;
 
 270       map { $form->{"${_}_$i"} =~ s/\'/\'\'/g }
 
 271         qw(partnumber description unit);
 
 273       # set values to 0 if nothing entered
 
 274       $form->{"discount_$i"} =
 
 275         $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
 
 277       $form->{"sellprice_$i"} =
 
 278         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 279       $fxsellprice = $form->{"sellprice_$i"};
 
 281       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 283       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 286         $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"},
 
 288       $form->{"sellprice_$i"} =
 
 289         $form->round_amount($form->{"sellprice_$i"} - $discount,
 
 292       $form->{"inventory_accno_$i"} *= 1;
 
 293       $form->{"expense_accno_$i"}   *= 1;
 
 296         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
 
 298       @taxaccounts = split / /, $form->{"taxaccounts_$i"};
 
 302       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
 
 304       if ($form->{taxincluded}) {
 
 305         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
 306         $taxbase   = $linetotal - $taxamount;
 
 308         # we are not keeping a natural price, do not round
 
 309         $form->{"sellprice_$i"} =
 
 310           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
 
 312         $taxamount = $linetotal * $taxrate;
 
 313         $taxbase   = $linetotal;
 
 316       if ($form->round_amount($taxrate, 7) == 0) {
 
 317         if ($form->{taxincluded}) {
 
 318           foreach $item (@taxaccounts) {
 
 320               $form->round_amount($linetotal * $form->{"${item}_rate"} /
 
 321                                     (1 + abs($form->{"${item}_rate"})),
 
 324             $taxaccounts{$item} += $taxamount;
 
 325             $taxdiff            += $taxamount;
 
 327             $taxbase{$item} += $taxbase;
 
 329           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
 
 331           foreach $item (@taxaccounts) {
 
 332             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
 
 333             $taxbase{$item}     += $taxbase;
 
 337         foreach $item (@taxaccounts) {
 
 338           $taxaccounts{$item} +=
 
 339             $taxamount * $form->{"${item}_rate"} / $taxrate;
 
 340           $taxbase{$item} += $taxbase;
 
 344       $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"};
 
 346       $project_id = 'NULL';
 
 347       if ($form->{"projectnumber_$i"}) {
 
 348         $project_id = $form->{"projectnumber_$i"};
 
 351         ($form->{"reqdate_$i"}) ? qq|'$form->{"reqdate_$i"}'| : "NULL";
 
 353       # get pricegroup_id and save ist
 
 354       ($null, my $pricegroup_id) = split /--/, $form->{"sellprice_pg_$i"};
 
 356       $subtotal = $form->{"subtotal_$i"} * 1;
 
 358       # save detail record in orderitems table
 
 359       $query = qq|INSERT INTO orderitems (|;
 
 360       $query .= "id, " if $form->{"orderitems_id_$i"};
 
 361       $query .= qq|trans_id, parts_id, description, longdescription, qty, base_qty, sellprice, discount,
 
 362                    unit, reqdate, project_id, serialnumber, ship, pricegroup_id,
 
 363                    ordnumber, transdate, cusordnumber, subtotal)
 
 365       $query .= qq|$form->{"orderitems_id_$i"},|
 
 366         if $form->{"orderitems_id_$i"};
 
 367       $query .= qq|$form->{id}, $form->{"id_$i"},
 
 368                    '$form->{"description_$i"}', '$form->{"longdescription_$i"}', $form->{"qty_$i"}, $baseqty,
 
 369                    $fxsellprice, $form->{"discount_$i"},
 
 370                    '$form->{"unit_$i"}', $reqdate, (SELECT id from project where projectnumber = '$project_id'),
 
 371                    '$form->{"serialnumber_$i"}', $form->{"ship_$i"}, '$pricegroup_id',
 
 372                    '$form->{"ordnumber_$i"}', '$form->{"transdate_$i"}', '$form->{"cusordnumber_$i"}', '$subtotal')|;
 
 373       $dbh->do($query) || $form->dberror($query);
 
 375       $form->{"sellprice_$i"} = $fxsellprice;
 
 376       $form->{"discount_$i"} *= 100;
 
 380   # set values which could be empty
 
 381   map { $form->{$_} *= 1 }
 
 382     qw(vendor_id customer_id taxincluded closed quotation);
 
 384   $reqdate = ($form->{reqdate}) ? qq|'$form->{reqdate}'| : "NULL";
 
 388   map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
 
 390   $amount = $form->round_amount($netamount + $tax, 2);
 
 391   $netamount = $form->round_amount($netamount, 2);
 
 393   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 394     $form->{exchangerate} = 1;
 
 397       $form->check_exchangerate($myconfig,
 
 400                                 ($form->{vc} eq 'customer') ? 'buy' : 'sell');
 
 403   $form->{exchangerate} =
 
 406     : $form->parse_amount($myconfig, $form->{exchangerate});
 
 410   # fill in subject if there is none
 
 411   if ($form->{type} =~ /_order$/) {
 
 413     $form->{subject} = qq|$form->{label} $form->{ordnumber}|
 
 414       unless $form->{subject};
 
 417     $form->{subject} = qq|$form->{label} $form->{quonumber}|
 
 418       unless $form->{subject};
 
 421   # if there is a message stuff it into the intnotes
 
 422   my $cc  = "Cc: $form->{cc}\\r\n"   if $form->{cc};
 
 423   my $bcc = "Bcc: $form->{bcc}\\r\n" if $form->{bcc};
 
 424   my $now = scalar localtime;
 
 425   $form->{intnotes} .= qq|\r
 
 426 \r| if $form->{intnotes};
 
 428   $form->{intnotes} .= qq|[email]\r
 
 431 $cc${bcc}Subject: $form->{subject}\r
 
 433 Message: $form->{message}\r| if $form->{message};
 
 435   ($null, $form->{department_id}) = split(/--/, $form->{department});
 
 436   $form->{department_id} *= 1;
 
 437   $form->{payment_id} *= 1;
 
 438   $form->{language_id} *= 1;
 
 439   $form->{taxzone_id} *= 1;
 
 440   $form->{proforma} *= 1;
 
 445   $query = qq|UPDATE oe set
 
 446               ordnumber = '$form->{ordnumber}',
 
 447               quonumber = '$form->{quonumber}',
 
 448               cusordnumber = '$form->{cusordnumber}',
 
 449               transdate = '$form->{transdate}',
 
 450               vendor_id = $form->{vendor_id},
 
 451               customer_id = $form->{customer_id},
 
 453               netamount = $netamount,
 
 455               taxincluded = '$form->{taxincluded}',
 
 456               shippingpoint = '$form->{shippingpoint}',
 
 457               shipvia = '$form->{shipvia}',
 
 458               notes = '$form->{notes}',
 
 459               intnotes = '$form->{intnotes}',
 
 460               curr = '$form->{currency}',
 
 461               closed = '$form->{closed}',
 
 462               proforma = '$form->{proforma}',
 
 463               quotation = '$quotation',
 
 464               department_id = $form->{department_id},
 
 465               language_id = $form->{language_id},
 
 466               taxzone_id = $form->{taxzone_id},
 
 467               shipto_id = $form->{shipto_id},
 
 468               payment_id = $form->{payment_id},
 
 469               delivery_vendor_id = $form->{delivery_vendor_id},
 
 470               delivery_customer_id = $form->{delivery_customer_id},
 
 471               employee_id = $form->{employee_id},
 
 472               cp_id = $form->{contact_id}
 
 473               WHERE id = $form->{id}|;
 
 474   $dbh->do($query) || $form->dberror($query);
 
 476   $form->{ordtotal} = $amount;
 
 478   if ($form->{webdav}) {
 
 479     &webdav_folder($myconfig, $form);
 
 483   $form->{name} = $form->{ $form->{vc} };
 
 484   $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
 
 486   if (!$form->{shipto_id}) {
 
 487     $form->add_shipto($dbh, $form->{id}, "OE");
 
 490   # save printed, emailed, queued
 
 491   $form->save_status($dbh);
 
 493   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
 
 494     if ($form->{vc} eq 'customer') {
 
 495       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
 
 496                                  $form->{exchangerate}, 0);
 
 498     if ($form->{vc} eq 'vendor') {
 
 499       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
 
 500                                  0, $form->{exchangerate});
 
 504   if ($form->{type} =~ /_order$/) {
 
 507     &adj_onhand($dbh, $form, $ml * -1);
 
 508     &adj_inventory($dbh, $myconfig, $form);
 
 511   my $rc = $dbh->commit;
 
 514   $main::lxdebug->leave_sub();
 
 519 # this function closes multiple orders given in $form->{ordnumber_#}.
 
 520 # use this for multiple orders that don't have to be saved back
 
 521 # single orders should use OE::save instead.
 
 523   $main::lxdebug->enter_sub();
 
 525   my ($self, $myconfig, $form) = @_;
 
 527   for my $i (1 .. $form->{rowcount}) {
 
 531         $form->parse_amount($myconfig, $form->{"${_}_$i"})
 
 534       $form->{"orderitems_id_$i"} = "";
 
 537     if ($form->{"qty_$i"}) {
 
 539       # set values to 0 if nothing entered
 
 540       $form->{"discount_$i"} =
 
 541         $form->parse_amount($myconfig, $form->{"discount_$i"});
 
 543       $form->{"sellprice_$i"} =
 
 544         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 549   map { push @ids, $form->{"ordnumber_$_"} if $form->{"ordnumber_$_"} }
 
 550     (1 .. $form->{rowcount});
 
 552   my $dbh = $form->dbconnect($myconfig);
 
 553   $query = qq|UPDATE oe SET
 
 555               WHERE ordnumber IN (|
 
 556     . join(', ', map { $dbh->quote($_) } @ids) . qq|)|;
 
 557   $dbh->do($query) || $form->dberror($query);
 
 560   $main::lxdebug->leave_sub();
 
 564   $main::lxdebug->enter_sub();
 
 566   my ($self, $myconfig, $form, $spool) = @_;
 
 568   # connect to database
 
 569   my $dbh = $form->dbconnect_noauto($myconfig);
 
 572   my $query = qq|SELECT s.spoolfile FROM status s
 
 573                  WHERE s.trans_id = $form->{id}|;
 
 574   $sth = $dbh->prepare($query);
 
 575   $sth->execute || $self->dberror($query);
 
 580   while (($spoolfile) = $sth->fetchrow_array) {
 
 581     push @spoolfiles, $spoolfile;
 
 585   $query = qq|SELECT o.parts_id, o.ship FROM orderitems o
 
 586               WHERE o.trans_id = $form->{id}|;
 
 587   $sth = $dbh->prepare($query);
 
 588   $sth->execute || $self->dberror($query);
 
 590   while (my ($id, $ship) = $sth->fetchrow_array) {
 
 591     $form->update_balance($dbh, "parts", "onhand", qq|id = $id|, $ship * -1);
 
 596   $query = qq|DELETE FROM inventory
 
 597               WHERE oe_id = $form->{id}|;
 
 598   $dbh->do($query) || $form->dberror($query);
 
 600   # delete status entries
 
 601   $query = qq|DELETE FROM status
 
 602               WHERE trans_id = $form->{id}|;
 
 603   $dbh->do($query) || $form->dberror($query);
 
 606   $query = qq|DELETE FROM oe
 
 607               WHERE id = $form->{id}|;
 
 608   $dbh->do($query) || $form->dberror($query);
 
 610   # delete individual entries
 
 611   $query = qq|DELETE FROM orderitems
 
 612               WHERE trans_id = $form->{id}|;
 
 613   $dbh->do($query) || $form->dberror($query);
 
 615   $query = qq|DELETE FROM shipto
 
 616               WHERE trans_id = $form->{id} AND module = 'OE'|;
 
 617   $dbh->do($query) || $form->dberror($query);
 
 619   my $rc = $dbh->commit;
 
 623     foreach $spoolfile (@spoolfiles) {
 
 624       unlink "$spool/$spoolfile" if $spoolfile;
 
 628   $main::lxdebug->leave_sub();
 
 634   $main::lxdebug->enter_sub();
 
 636   my ($self, $myconfig, $form) = @_;
 
 638   # connect to database
 
 639   my $dbh = $form->dbconnect_noauto($myconfig);
 
 643   # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
 
 645     push @ids, $form->{"trans_id_$_"}
 
 646       if ($form->{"id_$_"} and $form->{"trans_id_$_"})
 
 647   } (1 .. $form->{"rowcount"});
 
 649   # if called in multi id mode, and still only got one id, switch back to single id
 
 650   if ($form->{"rowcount"} and $#ids == 0) {
 
 651     $form->{"id"} = $ids[0];
 
 657     # get default accounts and last order number
 
 658     $query = qq|SELECT (SELECT c.accno FROM chart c
 
 659                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
 
 660                        (SELECT c.accno FROM chart c
 
 661                         WHERE d.income_accno_id = c.id) AS income_accno,
 
 662                        (SELECT c.accno FROM chart c
 
 663                         WHERE d.expense_accno_id = c.id) AS expense_accno,
 
 664                        (SELECT c.accno FROM chart c
 
 665                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
 666                        (SELECT c.accno FROM chart c
 
 667                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
 
 671     $query = qq|SELECT (SELECT c.accno FROM chart c
 
 672                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
 
 673                        (SELECT c.accno FROM chart c
 
 674                         WHERE d.income_accno_id = c.id) AS income_accno,
 
 675                        (SELECT c.accno FROM chart c
 
 676                         WHERE d.expense_accno_id = c.id) AS expense_accno,
 
 677                        (SELECT c.accno FROM chart c
 
 678                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
 679                        (SELECT c.accno FROM chart c
 
 680                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
 
 681                 d.curr AS currencies,
 
 682                 current_date AS transdate, current_date AS reqdate
 
 685   my $sth = $dbh->prepare($query);
 
 686   $sth->execute || $form->dberror($query);
 
 688   my $ref = $sth->fetchrow_hashref(NAME_lc);
 
 689   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 692   ($form->{currency}) = split /:/, $form->{currencies};
 
 694   # set reqdate if this is an invoice->order conversion. If someone knows a better check to ensure
 
 695   # we come from invoices, feel free.
 
 696   $form->{reqdate} = $form->{deliverydate}
 
 697     if (    $form->{deliverydate}
 
 698         and $form->{callback} =~ /action=ar_transactions/);
 
 700   if ($form->{id} or @ids) {
 
 702     # retrieve order for single id
 
 703     # NOTE: this query is intended to fetch all information only ONCE.
 
 704     # so if any of these infos is important (or even different) for any item,
 
 705     # it will be killed out and then has to be fetched from the item scope query further down
 
 706     $query = qq|SELECT o.cp_id, o.ordnumber, o.transdate, o.reqdate,
 
 707                 o.taxincluded, o.shippingpoint, o.shipvia, o.notes, o.intnotes,
 
 708                 o.curr AS currency, e.name AS employee, o.employee_id,
 
 709                 o.$form->{vc}_id, cv.name AS $form->{vc}, o.amount AS invtotal,
 
 710                 o.closed, o.reqdate, o.quonumber, o.department_id, o.cusordnumber,
 
 711                 d.description AS department, o.payment_id, o.language_id, o.taxzone_id, o.delivery_customer_id, o.delivery_vendor_id, o.proforma, o.shipto_id
 
 713                 JOIN $form->{vc} cv ON (o.$form->{vc}_id = cv.id)
 
 714                 LEFT JOIN employee e ON (o.employee_id = e.id)
 
 715                 LEFT JOIN department d ON (o.department_id = d.id)
 
 718          ? qq|WHERE o.id = $form->{id}|
 
 719          : qq|WHERE o.id IN (| . join(', ', @ids) . qq|)|);
 
 721     #$main::lxdebug->message(0, $query);
 
 723     $sth = $dbh->prepare($query);
 
 724     $sth->execute || $form->dberror($query);
 
 726     $ref = $sth->fetchrow_hashref(NAME_lc);
 
 727     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 731     # set all entries for multiple ids blank that yield different information
 
 732     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 733       map { $form->{$_} = '' if ($ref->{$_} ne $form->{$_}) } keys %$ref;
 
 736     # if not given, fill transdate with current_date
 
 737     $form->{transdate} = $form->current_date($myconfig)
 
 738       unless $form->{transdate};
 
 742     if ($form->{delivery_customer_id}) {
 
 743       $query = qq|SELECT name FROM customer WHERE id=$form->{delivery_customer_id}|;
 
 744       $sth = $dbh->prepare($query);
 
 745       $sth->execute || $form->dberror($query);
 
 746       ($form->{delivery_customer_string}) = $sth->fetchrow_array();
 
 750     if ($form->{delivery_vendor_id}) {
 
 751       $query = qq|SELECT name FROM customer WHERE id=$form->{delivery_vendor_id}|;
 
 752       $sth = $dbh->prepare($query);
 
 753       $sth->execute || $form->dberror($query);
 
 754       ($form->{delivery_vendor_string}) = $sth->fetchrow_array();
 
 758     # shipto and pinted/mailed/queued status makes only sense for single id retrieve
 
 760       $query = qq|SELECT s.* FROM shipto s
 
 761                   WHERE s.trans_id = $form->{id} AND s.module = 'OE'|;
 
 762       $sth = $dbh->prepare($query);
 
 763       $sth->execute || $form->dberror($query);
 
 765       $ref = $sth->fetchrow_hashref(NAME_lc);
 
 767       map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 770       # get printed, emailed and queued
 
 771       $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname
 
 773                   WHERE s.trans_id = $form->{id}|;
 
 774       $sth = $dbh->prepare($query);
 
 775       $sth->execute || $form->dberror($query);
 
 777       while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 778         $form->{printed} .= "$ref->{formname} " if $ref->{printed};
 
 779         $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
 
 780         $form->{queued} .= "$ref->{formname} $ref->{spoolfile} "
 
 781           if $ref->{spoolfile};
 
 784       map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
 
 787     my %oid = ('Pg'     => 'oid',
 
 788                'Oracle' => 'rowid');
 
 791       $form->{transdate} ? $dbh->quote($form->{transdate}) : "current_date";
 
 793     if(!$form->{taxzone_id}) {
 
 794       $form->{taxzone_id} = 0;
 
 796     # retrieve individual items
 
 797     # this query looks up all information about the items
 
 798     # stuff different from the whole will not be overwritten, but saved with a suffix.
 
 799     $query = qq|SELECT o.id AS orderitems_id,
 
 800                 c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid,
 
 801                 c2.accno AS income_accno, c2.new_chart_id AS income_new_chart, date($transdate)  - c2.valid_from as income_valid,
 
 802                 c3.accno AS expense_accno, c3.new_chart_id AS expense_new_chart, date($transdate) - c3.valid_from as expense_valid,
 
 803                 oe.ordnumber AS ordnumber_oe, oe.transdate AS transdate_oe, oe.cusordnumber AS cusordnumber_oe, 
 
 804                 p.partnumber, p.assembly, o.description, o.qty,
 
 805                 o.sellprice, o.parts_id AS id, o.unit, o.discount, p.bin, p.notes AS partnotes, p.inventory_accno_id AS part_inventory_accno_id,
 
 806                 o.reqdate, o.project_id, o.serialnumber, o.ship,
 
 807                 o.ordnumber, o.transdate, o.cusordnumber, o.subtotal, o.longdescription,
 
 808                 pr.projectnumber, p.formel,
 
 809                 pg.partsgroup, o.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=o.pricegroup_id) as pricegroup
 
 811                 JOIN parts p ON (o.parts_id = p.id)
 
 812                 JOIN oe ON (o.trans_id = oe.id)
 
 813                 LEFT JOIN chart c1 ON ((select inventory_accno_id from buchungsgruppen where id=p.buchungsgruppen_id) = c1.id)
 
 814                 LEFT JOIN chart c2 ON ((select income_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c2.id)
 
 815                 LEFT JOIN chart c3 ON ((select expense_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c3.id)
 
 816                 LEFT JOIN project pr ON (o.project_id = pr.id)
 
 817                 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 820          ? qq|WHERE o.trans_id = $form->{id}|
 
 821          : qq|WHERE o.trans_id IN (| . join(", ", @ids) . qq|)|)
 
 823                 ORDER BY o.$oid{$myconfig->{dbdriver}}|;
 
 825     $sth = $dbh->prepare($query);
 
 826     $sth->execute || $form->dberror($query);
 
 828     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 829       if (!$ref->{"part_inventory_accno_id"}) {
 
 830         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
 
 832       delete($ref->{"part_inventory_accno_id"});
 
 834       # in collective order, copy global ordnumber, transdate, cusordnumber into item scope
 
 835       #   unless already present there
 
 836       # remove _oe entries afterwards
 
 837       map { $ref->{$_} = $ref->{"${_}_oe"} if ($ref->{$_} eq '') }
 
 838         qw|ordnumber transdate cusordnumber|
 
 840       map { delete $ref->{$_} } qw|ordnumber_oe transdate_oe cusordnumber_oe|;
 
 844     while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >=0)) {
 
 845       my $query = qq| SELECT accno AS inventory_accno, new_chart_id AS inventory_new_chart, date($transdate) - valid_from AS inventory_valid FROM chart WHERE id = $ref->{inventory_new_chart}|;
 
 846       my $stw = $dbh->prepare($query);
 
 847       $stw->execute || $form->dberror($query);
 
 848       ($ref->{inventory_accno}, $ref->{inventory_new_chart}, $ref->{inventory_valid}) = $stw->fetchrow_array;
 
 852     while ($ref->{income_new_chart} && ($ref->{income_valid} >=0)) {
 
 853       my $query = qq| SELECT accno AS income_accno, new_chart_id AS income_new_chart, date($transdate) - valid_from AS income_valid FROM chart WHERE id = $ref->{income_new_chart}|;
 
 854       my $stw = $dbh->prepare($query);
 
 855       $stw->execute || $form->dberror($query);
 
 856       ($ref->{income_accno}, $ref->{income_new_chart}, $ref->{income_valid}) = $stw->fetchrow_array;
 
 860     while ($ref->{expense_new_chart} && ($ref->{expense_valid} >=0)) {
 
 861       my $query = qq| SELECT accno AS expense_accno, new_chart_id AS expense_new_chart, date($transdate) - valid_from AS expense_valid FROM chart WHERE id = $ref->{expense_new_chart}|;
 
 862       my $stw = $dbh->prepare($query);
 
 863       $stw->execute || $form->dberror($query);
 
 864       ($ref->{expense_accno}, $ref->{expense_new_chart}, $ref->{expense_valid}) = $stw->fetchrow_array;
 
 868       # delete orderitems_id in collective orders, so that they get cloned no matter what
 
 869       delete $ref->{orderitems_id} if (@ids);
 
 871       # get tax rates and description
 
 873         ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
 874       $query = qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
 
 875               FROM tax t LEFT JOIN chart c on (c.id=t.chart_id)
 
 876               WHERE t.id in (SELECT tk.tax_id from taxkeys tk where tk.chart_id = (SELECT id from chart WHERE accno='$accno_id') AND startdate<=$transdate ORDER BY startdate desc LIMIT 1)
 
 878       $stw = $dbh->prepare($query);
 
 879       $stw->execute || $form->dberror($query);
 
 880       $ref->{taxaccounts} = "";
 
 882       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
 
 884         #    if ($customertax{$ref->{accno}}) {
 
 885         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
 889         $ref->{taxaccounts} .= "$ptr->{accno} ";
 
 890         if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
 
 891           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
 892           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
 893           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
 894           $form->{taxaccounts} .= "$ptr->{accno} ";
 
 899       chop $ref->{taxaccounts};
 
 900       push @{ $form->{form_details} }, $ref;
 
 908     $form->lastname_used($dbh, $myconfig, $form->{vc})
 
 909       unless $form->{"$form->{vc}_id"};
 
 913   $form->{exchangerate} =
 
 914     $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate},
 
 915                             ($form->{vc} eq 'customer') ? "buy" : "sell");
 
 917   if ($form->{webdav}) {
 
 918     &webdav_folder($myconfig, $form);
 
 922   $query = qq|SELECT id, description
 
 924   $sth = $dbh->prepare($query);
 
 925   $sth->execute || $form->dberror($query);
 
 928   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 929     push @{ $form->{TAXZONE} }, $ref;
 
 934   my $rc = $dbh->commit;
 
 937   $main::lxdebug->leave_sub();
 
 943   $main::lxdebug->enter_sub();
 
 945   my ($self, $myconfig, $form) = @_;
 
 947   # connect to database
 
 948   my $dbh = $form->dbconnect($myconfig);
 
 953   my $nodiscount_subtotal = 0;
 
 954   my $discount_subtotal = 0;
 
 960   my $subtotal_header = 0;
 
 963   my %oid = ('Pg'     => 'oid',
 
 964              'Oracle' => 'rowid');
 
 966   # sort items by partsgroup
 
 967   for $i (1 .. $form->{rowcount}) {
 
 969     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
 970       $partsgroup = $form->{"partsgroup_$i"};
 
 972     push @partsgroup, [$i, $partsgroup];
 
 975   # if there is a warehouse limit picking
 
 976   if ($form->{warehouse_id} && $form->{formname} =~ /(pick|packing)_list/) {
 
 978     # run query to check for inventory
 
 979     $query = qq|SELECT sum(i.qty) AS qty
 
 982                 AND i.warehouse_id = ?|;
 
 983     $sth = $dbh->prepare($query) || $form->dberror($query);
 
 985     for $i (1 .. $form->{rowcount}) {
 
 986       $sth->execute($form->{"id_$i"}, $form->{warehouse_id}) || $form->dberror;
 
 988       ($qty) = $sth->fetchrow_array;
 
 991       $form->{"qty_$i"} = 0 if $qty == 0;
 
 993       if ($form->parse_amount($myconfig, $form->{"ship_$i"}) > $qty) {
 
 994         $form->{"ship_$i"} = $form->format_amount($myconfig, $qty);
 
1000   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
 
1003     if ($item->[1] ne $sameitem) {
 
1004       push(@{ $form->{description} }, qq|$item->[1]|);
 
1005       $sameitem = $item->[1];
 
1007       map { push(@{ $form->{$_} }, "") }
 
1008         qw(runningnumber number qty ship unit bin partnotes serialnumber reqdate sellprice listprice netprice discount linetotal);
 
1011     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
1013     if ($form->{"qty_$i"} != 0) {
 
1015       # add number, description and qty to $form->{number}, ....
 
1017       if ($form->{"subtotal_$i"} && !$subtotal_header) {
 
1018         $subtotal_header = $i;
 
1019         $position = int($position);
 
1022       } elsif ($subtotal_header) {
 
1024         $position = int($position);
 
1025         $position = $position.".".$subposition;
 
1027         $position = int($position);
 
1031       push(@{ $form->{runningnumber} }, $i);
 
1032       push(@{ $form->{number} },        qq|$form->{"partnumber_$i"}|);
 
1033       push(@{ $form->{description} },   qq|$form->{"description_$i"}|);
 
1034       push(@{ $form->{longdescription} },   qq|$form->{"longdescription_$i"}|);
 
1035       push(@{ $form->{qty} },
 
1036            $form->format_amount($myconfig, $form->{"qty_$i"}));
 
1037       push(@{ $form->{ship} },
 
1038            $form->format_amount($myconfig, $form->{"ship_$i"}));
 
1039       push(@{ $form->{unit} },         qq|$form->{"unit_$i"}|);
 
1040       push(@{ $form->{bin} },          qq|$form->{"bin_$i"}|);
 
1041       push(@{ $form->{"partnotes"} },  qq|$form->{"partnotes_$i"}|);
 
1042       push(@{ $form->{serialnumber} }, qq|$form->{"serialnumber_$i"}|);
 
1043       push(@{ $form->{reqdate} },      qq|$form->{"reqdate_$i"}|);
 
1045       push(@{ $form->{sellprice} }, $form->{"sellprice_$i"});
 
1047       push(@{ $form->{listprice} }, $form->{"listprice_$i"});
 
1049       my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
1050       my ($dec) = ($sellprice =~ /\.(\d+)/);
 
1052       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
1055         $form->round_amount(
 
1056                             $sellprice * $form->parse_amount($myconfig,
 
1057                                                  $form->{"discount_$i"}) / 100,
 
1061         $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces);
 
1063       # keep a netprice as well, (sellprice - discount)
 
1064       #$form->{"netprice_$i"} = $sellprice - $discount;
 
1065       $form->{"netprice_$i"} = $sellprice - $i_discount;
 
1066       my $nodiscount_linetotal =
 
1067         $form->round_amount($form->{"qty_$i"} * $sellprice, 2);
 
1069         $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
 
1071       push(@{ $form->{netprice} },
 
1072            ($form->{"netprice_$i"} != 0)
 
1073            ? $form->format_amount(
 
1074                                  $myconfig, $form->{"netprice_$i"},
 
1081         ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
 
1083       $linetotal = ($linetotal != 0) ? $linetotal : " ";
 
1085       push(@{ $form->{discount} },   $discount);
 
1086       push(@{ $form->{p_discount} }, $form->{"discount_$i"});
 
1088       $form->{ordtotal} += $linetotal;
 
1089      $discount_subtotal += $linetotal;
 
1090       $form->{nodiscount_total} += $nodiscount_linetotal;
 
1091       $nodiscount_subtotal += $nodiscount_linetotal;
 
1092       $form->{discount_total} += $form->parse_amount($myconfig, $discount);
 
1094       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
 
1095         $discount_subtotal = $form->format_amount($myconfig, $discount_subtotal, 2);
 
1096         push(@{ $form->{discount_sub} },  $discount_subtotal);
 
1097         $nodiscount_subtotal = $form->format_amount($myconfig, $nodiscount_subtotal, 2);
 
1098         push(@{ $form->{nodiscount_sub} }, $nodiscount_subtotal);
 
1099         $discount_subtotal = 0;
 
1100         $nodiscount_subtotal = 0;
 
1101         $subtotal_header = 0;
 
1103         push(@{ $form->{discount_sub} }, "");
 
1104         push(@{ $form->{nodiscount_sub} }, "");
 
1107       if ($linetotal == $netto_linetotal) {
 
1108         $nodiscount += $linetotal;
 
1110       push(@{ $form->{linetotal} },
 
1111            $form->format_amount($myconfig, $linetotal, 2));
 
1112       push(@{ $form->{nodiscount_linetotal} },
 
1113            $form->format_amount($myconfig, $nodiscount_linetotal, 2));
 
1115       my ($taxamount, $taxbase);
 
1118       map { $taxrate += $form->{"${_}_rate"} } split / /,
 
1119         $form->{"taxaccounts_$i"};
 
1121       if ($form->{taxincluded}) {
 
1124         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
1125         $taxbase = $linetotal / (1 + $taxrate);
 
1127         $taxamount = $linetotal * $taxrate;
 
1128         $taxbase   = $linetotal;
 
1131       if ($taxamount != 0) {
 
1132         foreach my $item (split / /, $form->{"taxaccounts_$i"}) {
 
1133           $taxaccounts{$item} +=
 
1134             $taxamount * $form->{"${item}_rate"} / $taxrate;
 
1135           $taxbase{$item} += $taxbase;
 
1139       $tax_rate = $taxrate * 100;
 
1140       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
 
1142       if ($form->{"assembly_$i"}) {
 
1145         # get parts and push them onto the stack
 
1147         if ($form->{groupitems}) {
 
1149             qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
 
1151           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
 
1154         $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty,
 
1157                     JOIN parts p ON (a.parts_id = p.id)
 
1158                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1160                     AND a.id = '$form->{"id_$i"}'
 
1162         $sth = $dbh->prepare($query);
 
1163         $sth->execute || $form->dberror($query);
 
1165         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1166           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
 
1167             map { push(@{ $form->{$_} }, "") }
 
1168               qw(runningnumber ship bin serialnumber number unit bin qty reqdate sellprice listprice netprice discount linetotal nodiscount_linetotal);
 
1169             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
 
1170             push(@{ $form->{description} }, $sameitem);
 
1173           push(@{ $form->{description} },
 
1174                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
 
1176                  . qq|, $ref->{partnumber}, $ref->{description}|);
 
1178           map { push(@{ $form->{$_} }, "") }
 
1179             qw(number unit qty runningnumber ship bin serialnumber reqdate sellprice listprice netprice discount linetotal nodiscount_linetotal);
 
1189   foreach $item (sort keys %taxaccounts) {
 
1190       push(@{ $form->{taxbase} },
 
1191            $form->format_amount($myconfig, $taxbase{$item}, 2));
 
1193       $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
 
1195       push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
 
1196       push(@{ $form->{taxdescription} }, $form->{"${item}_description"});
 
1197       push(@{ $form->{taxrate} },
 
1198            $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
 
1199       push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
 
1201   $form->{subtotal} = $form->format_amount($myconfig, $form->{total}, 2);
 
1202   $yesdiscount = $form->{nodiscount_total} - $nodiscount;
 
1203   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
 
1204   $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2);
 
1205   $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2);
 
1206   $form->{yesdiscount} = $form->format_amount($myconfig, $yesdiscount, 2);
 
1208   $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
 
1210     ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
 
1213   $form->{quototal} = $form->{ordtotal} =
 
1214     $form->format_amount($myconfig, $form->{ordtotal}, 2);
 
1216   if ($form->{type} =~ /_quotation/) {
 
1217     $form->set_payment_options($myconfig, $form->{quodate});
 
1219     $form->set_payment_options($myconfig, $form->{orddate});
 
1222   # myconfig variables
 
1223   map { $form->{$_} = $myconfig->{$_} }
 
1224     (qw(company address tel fax signature businessnumber));
 
1225   $form->{username} = $myconfig->{name};
 
1229   $main::lxdebug->leave_sub();
 
1232 sub project_description {
 
1233   $main::lxdebug->enter_sub();
 
1235   my ($self, $dbh, $id) = @_;
 
1237   my $query = qq|SELECT p.description
 
1240   my $sth = $dbh->prepare($query);
 
1241   $sth->execute || $form->dberror($query);
 
1243   ($_) = $sth->fetchrow_array;
 
1247   $main::lxdebug->leave_sub();
 
1252 sub get_warehouses {
 
1253   $main::lxdebug->enter_sub();
 
1255   my ($self, $myconfig, $form) = @_;
 
1257   my $dbh = $form->dbconnect($myconfig);
 
1260   my $query = qq|SELECT id, description
 
1263   my $sth = $dbh->prepare($query);
 
1264   $sth->execute || $form->dberror($query);
 
1266   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1267     push @{ $form->{all_warehouses} }, $ref;
 
1273   $main::lxdebug->leave_sub();
 
1276 sub save_inventory {
 
1277   $main::lxdebug->enter_sub();
 
1279   my ($self, $myconfig, $form) = @_;
 
1281   my ($null, $warehouse_id) = split /--/, $form->{warehouse};
 
1285   ($null, $employee_id) = split /--/, $form->{employee};
 
1287   my $ml = ($form->{type} eq 'ship_order') ? -1 : 1;
 
1289   my $dbh = $form->dbconnect_noauto($myconfig);
 
1295   $query = qq|SELECT o.serialnumber, o.ship
 
1297               WHERE o.trans_id = ?
 
1300   $sth = $dbh->prepare($query) || $form->dberror($query);
 
1302   $query = qq|SELECT sum(i.qty)
 
1304               WHERE i.parts_id = ?
 
1305               AND i.warehouse_id = ?|;
 
1306   $wth = $dbh->prepare($query) || $form->dberror($query);
 
1308   for my $i (1 .. $form->{rowcount} - 1) {
 
1311       (abs($form->{"ship_$i"}) > abs($form->{"qty_$i"}))
 
1313       : $form->{"ship_$i"};
 
1315     if ($warehouse_id && $form->{type} eq 'ship_order') {
 
1317       $wth->execute($form->{"id_$i"}, $warehouse_id) || $form->dberror;
 
1319       ($qty) = $wth->fetchrow_array;
 
1330       $query = qq|INSERT INTO inventory (parts_id, warehouse_id,
 
1331                   qty, oe_id, orderitems_id, shippingdate, employee_id)
 
1332                   VALUES ($form->{"id_$i"}, $warehouse_id,
 
1333                   $ship, $form->{"id"},
 
1334                   $form->{"orderitems_id_$i"}, '$form->{shippingdate}',
 
1336       $dbh->do($query) || $form->dberror($query);
 
1338       # add serialnumber, ship to orderitems
 
1339       $sth->execute($form->{id}, $form->{"orderitems_id_$i"})
 
1341       ($serialnumber, $ship) = $sth->fetchrow_array;
 
1344       $serialnumber .= " " if $serialnumber;
 
1345       $serialnumber .= qq|$form->{"serialnumber_$i"}|;
 
1346       $ship += $form->{"ship_$i"};
 
1348       $query = qq|UPDATE orderitems SET
 
1349                   serialnumber = '$serialnumber',
 
1351                   WHERE trans_id = $form->{id}
 
1352                   AND id = $form->{"orderitems_id_$i"}|;
 
1353       $dbh->do($query) || $form->dberror($query);
 
1355       # update order with ship via
 
1356       $query = qq|UPDATE oe SET
 
1357                   shippingpoint = '$form->{shippingpoint}',
 
1358                   shipvia = '$form->{shipvia}'
 
1359                   WHERE id = $form->{id}|;
 
1360       $dbh->do($query) || $form->dberror($query);
 
1362       # update onhand for parts
 
1363       $form->update_balance($dbh, "parts", "onhand",
 
1364                             qq|id = $form->{"id_$i"}|,
 
1365                             $form->{"ship_$i"} * $ml);
 
1370   my $rc = $dbh->commit;
 
1373   $main::lxdebug->leave_sub();
 
1379   $main::lxdebug->enter_sub();
 
1381   my ($dbh, $form, $ml) = @_;
 
1383   my $service_units = $form->{service_units};
 
1384   my $part_units = $form->{part_units};
 
1386   my $query = qq|SELECT oi.parts_id, oi.ship, oi.unit, p.inventory_accno_id, p.assembly
 
1388                  JOIN parts p ON (p.id = oi.parts_id)
 
1389                  WHERE oi.trans_id = $form->{id}|;
 
1390   my $sth = $dbh->prepare($query);
 
1391   $sth->execute || $form->dberror($query);
 
1393   $query = qq|SELECT sum(p.inventory_accno_id)
 
1395               JOIN assembly a ON (a.parts_id = p.id)
 
1397   my $ath = $dbh->prepare($query) || $form->dberror($query);
 
1401   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1402   #print(STDERR "Bin in Schleife $ref->{inventory_accno_id}\n");
 
1404     if ($ref->{inventory_accno_id} || $ref->{assembly}) {
 
1406       # do not update if assembly consists of all services
 
1407       if ($ref->{assembly}) {
 
1408         $ath->execute($ref->{parts_id}) || $form->dberror($query);
 
1410         ($ispa) = $sth->fetchrow_array;
 
1418       $query = qq|SELECT p.unit
 
1420                   WHERE p.id = $ref->{parts_id}|;
 
1421       my $stw = $dbh->prepare($query);
 
1422       $stw->execute || $form->dberror($query);
 
1424       my ($item_unit) = $stw->fetchrow_array();
 
1427       if ($ref->{inventory_accno_id}) {        
 
1428         if (defined($part_units->{$item_unit}->{factor}) && $part_units->{$item_unit}->{factor} ne '' && $part_units->{$item_unit}->{factor} ne '0') {
 
1429           $basefactor = $part_units->{$ref->{unit}}->{factor} / $part_units->{$item_unit}->{factor};
 
1433         $baseqty = $ref->{ship} * $basefactor;
 
1435         if (defined($service_units->{$item_unit}->{factor}) && $service_units->{$item_unit}->{factor} ne '' && $service_units->{$item_unit}->{factor} ne '0') {
 
1436           $basefactor = $service_units->{$ref->{unit}}->{factor} / $part_units->{$item_unit}->{factor};
 
1440         $baseqty = $ref->{ship} * $basefactor;
 
1442       #print(STDERR "$baseqty Basismenge\n");
 
1444       # adjust onhand in parts table
 
1445       $form->update_balance($dbh, "parts", "onhand",
 
1446                             qq|id = $ref->{parts_id}|,
 
1453   $main::lxdebug->leave_sub();
 
1457   $main::lxdebug->enter_sub();
 
1459   my ($dbh, $myconfig, $form) = @_;
 
1461   my %oid = ('Pg'     => 'oid',
 
1462              'Oracle' => 'rowid');
 
1464   # increase/reduce qty in inventory table
 
1465   my $query = qq|SELECT oi.id, oi.parts_id, oi.ship
 
1467                  WHERE oi.trans_id = $form->{id}|;
 
1468   my $sth = $dbh->prepare($query);
 
1469   $sth->execute || $form->dberror($query);
 
1471   $query = qq|SELECT $oid{$myconfig->{dbdriver}} AS oid, qty,
 
1472                      (SELECT SUM(qty) FROM inventory
 
1473                       WHERE oe_id = $form->{id}
 
1474                       AND orderitems_id = ?) AS total
 
1476               WHERE oe_id = $form->{id}
 
1477               AND orderitems_id = ?|;
 
1478   my $ith = $dbh->prepare($query) || $form->dberror($query);
 
1481   my $ml = ($form->{type} =~ /(ship|sales)_order/) ? -1 : 1;
 
1483   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1485     $ith->execute($ref->{id}, $ref->{id}) || $form->dberror($query);
 
1487     while (my $inv = $ith->fetchrow_hashref(NAME_lc)) {
 
1489       if (($qty = (($inv->{total} * $ml) - $ref->{ship})) >= 0) {
 
1490         $qty = $inv->{qty} if ($qty > ($inv->{qty} * $ml));
 
1492         $form->update_balance($dbh, "inventory", "qty",
 
1493                               qq|$oid{$myconfig->{dbdriver}} = $inv->{oid}|,
 
1502   # delete inventory entries if qty = 0
 
1503   $query = qq|DELETE FROM inventory
 
1504               WHERE oe_id = $form->{id}
 
1506   $dbh->do($query) || $form->dberror($query);
 
1508   $main::lxdebug->leave_sub();
 
1512   $main::lxdebug->enter_sub();
 
1514   my ($self, $myconfig, $form) = @_;
 
1516   my ($null, $warehouse_id) = split /--/, $form->{warehouse};
 
1519   my $dbh = $form->dbconnect($myconfig);
 
1521   my $query = qq|SELECT p.id, p.partnumber, p.description, p.onhand,
 
1524                  LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1525                  WHERE p.onhand > 0|;
 
1527   if ($form->{partnumber}) {
 
1528     $var = $form->like(lc $form->{partnumber});
 
1530                  AND lower(p.partnumber) LIKE '$var'";
 
1532   if ($form->{description}) {
 
1533     $var = $form->like(lc $form->{description});
 
1535                  AND lower(p.description) LIKE '$var'";
 
1537   if ($form->{partsgroup}) {
 
1538     $var = $form->like(lc $form->{partsgroup});
 
1540                  AND lower(pg.partsgroup) LIKE '$var'";
 
1543   $sth = $dbh->prepare($query);
 
1544   $sth->execute || $form->dberror($query);
 
1546   $query = qq|SELECT sum(i.qty), w.description, w.id
 
1548               LEFT JOIN warehouse w ON (w.id = i.warehouse_id)
 
1549               WHERE i.parts_id = ?
 
1550               AND NOT i.warehouse_id = $warehouse_id
 
1551               GROUP BY w.description, w.id|;
 
1552   $wth = $dbh->prepare($query) || $form->dberror($query);
 
1554   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1556     $wth->execute($ref->{id}) || $form->dberror;
 
1558     while (($qty, $warehouse, $warehouse_id) = $wth->fetchrow_array) {
 
1559       push @{ $form->{all_inventory} },
 
1560         { 'id'           => $ref->{id},
 
1561           'partnumber'   => $ref->{partnumber},
 
1562           'description'  => $ref->{description},
 
1563           'partsgroup'   => $ref->{partsgroup},
 
1565           'warehouse_id' => $warehouse_id,
 
1566           'warehouse'    => $warehouse }
 
1576   @{ $form->{all_inventory} } =
 
1577     sort { $a->{ $form->{sort} } cmp $b->{ $form->{sort} } }
 
1578     @{ $form->{all_inventory} };
 
1580   $main::lxdebug->leave_sub();
 
1582   return @{ $form->{all_inventory} };
 
1586   $main::lxdebug->enter_sub();
 
1588   my ($self, $myconfig, $form) = @_;
 
1590   my $dbh = $form->dbconnect_noauto($myconfig);
 
1592   my $query = qq|INSERT INTO inventory
 
1593                  (warehouse_id, parts_id, qty, shippingdate, employee_id)
 
1594                  VALUES (?, ?, ?, ?, ?)|;
 
1595   $sth = $dbh->prepare($query) || $form->dberror($query);
 
1597   $form->get_employee($dbh);
 
1602   $shippingdate = "$a[5]-$a[4]-$a[3]";
 
1604   for my $i (1 .. $form->{rowcount}) {
 
1605     $qty = $form->parse_amount($myconfig, $form->{"transfer_$i"});
 
1607     $qty = $form->{"qty_$i"} if ($qty > $form->{"qty_$i"});
 
1612       $sth->execute($form->{warehouse_id}, $form->{"id_$i"}, $qty,
 
1613                     $shippingdate, $form->{employee_id})
 
1619       $sth->execute($form->{"warehouse_id_$i"},
 
1620                     $form->{"id_$i"}, $qty * -1, $shippingdate,
 
1621                     $form->{employee_id})
 
1628   my $rc = $dbh->commit;
 
1631   $main::lxdebug->leave_sub();
 
1637   $main::lxdebug->enter_sub();
 
1639   my ($myconfig, $form) = @_;
 
1642     $path = "webdav/angebote/" . $form->{quonumber}, last SWITCH
 
1643       if ($form->{type} eq "sales_quotation");
 
1644     $path = "webdav/bestellungen/" . $form->{ordnumber}, last SWITCH
 
1645       if ($form->{type} eq "sales_order");
 
1646     $path = "webdav/anfragen/" . $form->{quonumber}, last SWITCH
 
1647       if ($form->{type} eq "request_quotation");
 
1648     $path = "webdav/lieferantenbestellungen/" . $form->{ordnumber}, last SWITCH
 
1649       if ($form->{type} eq "purchase_order");
 
1653     mkdir($path, 0770) or die "can't make directory $!\n";
 
1657       foreach $file (@files) {
 
1658         $file =~ /\/([^\/]*)$/;
 
1660         $ENV{'SCRIPT_NAME'} =~ /\/([^\/]*)\//;
 
1662         $link  = "http://" . $ENV{'SERVER_NAME'} . "/" . $lxerp . "/" . $file;
 
1663         $form->{WEBDAV}{$fname} = $link;
 
1668   $main::lxdebug->leave_sub();