Preisgruppen: Bei Zeilen mit noch nicht zugewiesenem Artikel wird gar keine Drop...
[kivitendo-erp.git] / SL / OE.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1999-2003
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
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.
21 #
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 #======================================================================
30 #
31 # Order entry module
32 # Quotation
33 #======================================================================
34
35 package OE;
36
37 use SL::AM;
38
39 sub transactions {
40   $main::lxdebug->enter_sub();
41
42   my ($self, $myconfig, $form) = @_;
43
44   # connect to database
45   my $dbh = $form->dbconnect($myconfig);
46
47   my $query;
48   my $ordnumber = 'ordnumber';
49   my $quotation = '0';
50   my ($null, $department_id) = split /--/, $form->{department};
51
52   my $department = " AND o.department_id = $department_id" if $department_id;
53
54   my $rate = ($form->{vc} eq 'customer') ? 'buy' : 'sell';
55
56   if ($form->{type} =~ /_quotation$/) {
57     $quotation = '1';
58     $ordnumber = 'quonumber';
59   }
60
61   my $number = $form->like(lc $form->{$ordnumber});
62   my $name   = $form->like(lc $form->{ $form->{vc} });
63
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,
68                  e.name AS employee
69                  FROM oe o
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'
75                  $department|;
76
77   # build query if type eq (ship|receive)_order
78   if ($form->{type} =~ /(ship|receive)_order/) {
79     my ($warehouse, $warehouse_id) = split /--/, $form->{warehouse};
80
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,
85                  e.name AS employee
86                  FROM oe o
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)|;
90
91     if ($warehouse_id && $form->{type} eq 'ship_order') {
92       $query .= qq|
93                  JOIN inventory i ON (oi.parts_id = i.parts_id)
94                  |;
95     }
96
97     $query .= qq|
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
104                  $department|;
105
106     if ($warehouse_id && $form->{type} eq 'ship_order') {
107       $query .= qq|
108                  AND i.warehouse_id = $warehouse_id
109                  AND i.qty >= (oi.qty - oi.ship)
110                  |;
111     }
112
113   }
114
115   if ($form->{"$form->{vc}_id"}) {
116     $query .= qq| AND o.$form->{vc}_id = $form->{"$form->{vc}_id"}|;
117   } else {
118     if ($form->{ $form->{vc} }) {
119       $query .= " AND lower(ct.name) LIKE '$name'";
120     }
121   }
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'";
126   }
127
128   my $sortorder = join ', ',
129     ("o.id", $form->sort_columns(transdate, $ordnumber, name));
130   $sortorder = $form->{sort} if $form->{sort};
131
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";
138
139   my $sth = $dbh->prepare($query);
140   $sth->execute || $form->dberror($query);
141
142   my %id = ();
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};
147   }
148
149   $sth->finish;
150   $dbh->disconnect;
151
152   $main::lxdebug->leave_sub();
153 }
154
155 sub save {
156   $main::lxdebug->enter_sub();
157
158   my ($self, $myconfig, $form) = @_;
159
160   # connect to database, turn off autocommit
161   my $dbh = $form->dbconnect_noauto($myconfig);
162
163   my ($query, $sth, $null);
164   my $exchangerate = 0;
165
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;
170
171   ($null, $form->{employee_id}) = split /--/, $form->{employee};
172   unless ($form->{employee_id}) {
173     $form->get_employee($dbh);
174   }
175
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;
183
184   my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
185
186   if ($form->{id}) {
187
188     &adj_onhand($dbh, $form, $ml) if $form->{type} =~ /_order$/;
189
190     $query = qq|DELETE FROM orderitems
191                 WHERE trans_id = $form->{id}|;
192     $dbh->do($query) || $form->dberror($query);
193
194     $query = qq|DELETE FROM shipto
195                 WHERE trans_id = $form->{id} AND module = 'OE'|;
196     $dbh->do($query) || $form->dberror($query);
197
198   } else {
199
200     my $uid = rand() . time;
201
202     $uid .= $form->{login};
203
204     $uid = substr($uid, 2, 75);
205
206     $query = qq|INSERT INTO oe (ordnumber, employee_id)
207                 VALUES ('$uid', $form->{employee_id})|;
208     $dbh->do($query) || $form->dberror($query);
209
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);
214
215     ($form->{id}) = $sth->fetchrow_array;
216     $sth->finish;
217   }
218
219   map { $form->{$_} =~ s/\'/\'\'/g }
220     qw(ordnumber quonumber shippingpoint shipvia notes intnotes message);
221
222   my $amount;
223   my $linetotal;
224   my $discount;
225   my $project_id;
226   my $reqdate;
227   my $taxrate;
228   my $taxamount;
229   my $fxsellprice;
230   my %taxbase;
231   my @taxaccounts;
232   my %taxaccounts;
233   my $netamount = 0;
234
235   for my $i (1 .. $form->{rowcount}) {
236
237     map {
238       $form->{"${_}_$i"} =
239         $form->parse_amount($myconfig, $form->{"${_}_$i"})
240     } qw(qty ship);
241
242     if ($form->{"qty_$i"}) {
243
244       # get item baseunit
245       $query = qq|SELECT p.unit
246                   FROM parts p
247                   WHERE p.id = $form->{"id_$i"}|;
248       $sth = $dbh->prepare($query);
249       $sth->execute || $form->dberror($query);
250
251       my ($item_unit) = $sth->fetchrow_array();
252       $sth->finish;
253
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};
257         } else {
258           $basefactor = 1;
259         }
260         $baseqty = $form->{"qty_$i"} * $basefactor;
261       } else {
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};
264         } else {
265           $basefactor = 1;
266         }
267         $baseqty = $form->{"qty_$i"} * $basefactor;
268       }
269
270       map { $form->{"${_}_$i"} =~ s/\'/\'\'/g }
271         qw(partnumber description unit);
272
273       # set values to 0 if nothing entered
274       $form->{"discount_$i"} =
275         $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
276
277       $form->{"sellprice_$i"} =
278         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
279       $fxsellprice = $form->{"sellprice_$i"};
280
281       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
282       $dec = length $dec;
283       my $decimalplaces = ($dec > 2) ? $dec : 2;
284
285       $discount =
286         $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"},
287                             $decimalplaces);
288       $form->{"sellprice_$i"} =
289         $form->round_amount($form->{"sellprice_$i"} - $discount,
290                             $decimalplaces);
291
292       $form->{"inventory_accno_$i"} *= 1;
293       $form->{"expense_accno_$i"}   *= 1;
294
295       $linetotal =
296         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
297
298       @taxaccounts = split / /, $form->{"taxaccounts_$i"};
299       $taxrate     = 0;
300       $taxdiff     = 0;
301
302       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
303
304       if ($form->{taxincluded}) {
305         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
306         $taxbase   = $linetotal - $taxamount;
307
308         # we are not keeping a natural price, do not round
309         $form->{"sellprice_$i"} =
310           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
311       } else {
312         $taxamount = $linetotal * $taxrate;
313         $taxbase   = $linetotal;
314       }
315
316       if ($form->round_amount($taxrate, 7) == 0) {
317         if ($form->{taxincluded}) {
318           foreach $item (@taxaccounts) {
319             $taxamount =
320               $form->round_amount($linetotal * $form->{"${item}_rate"} /
321                                     (1 + abs($form->{"${item}_rate"})),
322                                   2);
323
324             $taxaccounts{$item} += $taxamount;
325             $taxdiff            += $taxamount;
326
327             $taxbase{$item} += $taxbase;
328           }
329           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
330         } else {
331           foreach $item (@taxaccounts) {
332             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
333             $taxbase{$item}     += $taxbase;
334           }
335         }
336       } else {
337         foreach $item (@taxaccounts) {
338           $taxaccounts{$item} +=
339             $taxamount * $form->{"${item}_rate"} / $taxrate;
340           $taxbase{$item} += $taxbase;
341         }
342       }
343
344       $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"};
345
346       $project_id = 'NULL';
347       if ($form->{"projectnumber_$i"}) {
348         $project_id = $form->{"projectnumber_$i"};
349       }
350       $reqdate =
351         ($form->{"reqdate_$i"}) ? qq|'$form->{"reqdate_$i"}'| : "NULL";
352
353       # get pricegroup_id and save ist
354       ($null, my $pricegroup_id) = split /--/, $form->{"sellprice_pg_$i"};
355       $pricegroup_id *= 1;
356       $subtotal = $form->{"subtotal_$i"} * 1;
357
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)
364                    VALUES (|;
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);
374
375       $form->{"sellprice_$i"} = $fxsellprice;
376       $form->{"discount_$i"} *= 100;
377     }
378   }
379
380   # set values which could be empty
381   map { $form->{$_} *= 1 }
382     qw(vendor_id customer_id taxincluded closed quotation);
383
384   $reqdate = ($form->{reqdate}) ? qq|'$form->{reqdate}'| : "NULL";
385
386   # add up the tax
387   my $tax = 0;
388   map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
389
390   $amount = $form->round_amount($netamount + $tax, 2);
391   $netamount = $form->round_amount($netamount, 2);
392
393   if ($form->{currency} eq $form->{defaultcurrency}) {
394     $form->{exchangerate} = 1;
395   } else {
396     $exchangerate =
397       $form->check_exchangerate($myconfig,
398                                 $form->{currency},
399                                 $form->{transdate},
400                                 ($form->{vc} eq 'customer') ? 'buy' : 'sell');
401   }
402
403   $form->{exchangerate} =
404     ($exchangerate)
405     ? $exchangerate
406     : $form->parse_amount($myconfig, $form->{exchangerate});
407
408   my $quotation;
409
410   # fill in subject if there is none
411   if ($form->{type} =~ /_order$/) {
412     $quotation = '0';
413     $form->{subject} = qq|$form->{label} $form->{ordnumber}|
414       unless $form->{subject};
415   } else {
416     $quotation = '1';
417     $form->{subject} = qq|$form->{label} $form->{quonumber}|
418       unless $form->{subject};
419   }
420
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};
427
428   $form->{intnotes} .= qq|[email]\r
429 Date: $now
430 To: $form->{email}\r
431 $cc${bcc}Subject: $form->{subject}\r
432 \r
433 Message: $form->{message}\r| if $form->{message};
434
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;
441
442
443
444   # save OE record
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},
452               amount = $amount,
453               netamount = $netamount,
454               reqdate = $reqdate,
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);
475
476   $form->{ordtotal} = $amount;
477
478   if ($form->{webdav}) {
479     &webdav_folder($myconfig, $form);
480   }
481
482   # add shipto
483   $form->{name} = $form->{ $form->{vc} };
484   $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
485
486   if (!$form->{shipto_id}) {
487     $form->add_shipto($dbh, $form->{id}, "OE");
488   }
489
490   # save printed, emailed, queued
491   $form->save_status($dbh);
492
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);
497     }
498     if ($form->{vc} eq 'vendor') {
499       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
500                                  0, $form->{exchangerate});
501     }
502   }
503
504   if ($form->{type} =~ /_order$/) {
505
506     # adjust onhand
507     &adj_onhand($dbh, $form, $ml * -1);
508     &adj_inventory($dbh, $myconfig, $form);
509   }
510
511   my $rc = $dbh->commit;
512   $dbh->disconnect;
513
514   $main::lxdebug->leave_sub();
515
516   return $rc;
517 }
518
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.
522 sub close_orders {
523   $main::lxdebug->enter_sub();
524
525   my ($self, $myconfig, $form) = @_;
526
527   for my $i (1 .. $form->{rowcount}) {
528
529     map {
530       $form->{"${_}_$i"} =
531         $form->parse_amount($myconfig, $form->{"${_}_$i"})
532     } qw(qty ship);
533     if ($delete_oe_id) {
534       $form->{"orderitems_id_$i"} = "";
535     }
536
537     if ($form->{"qty_$i"}) {
538
539       # set values to 0 if nothing entered
540       $form->{"discount_$i"} =
541         $form->parse_amount($myconfig, $form->{"discount_$i"});
542
543       $form->{"sellprice_$i"} =
544         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
545     }
546   }
547
548   # get ids from $form
549   map { push @ids, $form->{"ordnumber_$_"} if $form->{"ordnumber_$_"} }
550     (1 .. $form->{rowcount});
551
552   my $dbh = $form->dbconnect($myconfig);
553   $query = qq|UPDATE oe SET
554               closed = TRUE
555               WHERE ordnumber IN (|
556     . join(', ', map { $dbh->quote($_) } @ids) . qq|)|;
557   $dbh->do($query) || $form->dberror($query);
558   $dbh->disconnect;
559
560   $main::lxdebug->leave_sub();
561 }
562
563 sub delete {
564   $main::lxdebug->enter_sub();
565
566   my ($self, $myconfig, $form, $spool) = @_;
567
568   # connect to database
569   my $dbh = $form->dbconnect_noauto($myconfig);
570
571   # delete spool files
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);
576
577   my $spoolfile;
578   my @spoolfiles = ();
579
580   while (($spoolfile) = $sth->fetchrow_array) {
581     push @spoolfiles, $spoolfile;
582   }
583   $sth->finish;
584
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);
589
590   while (my ($id, $ship) = $sth->fetchrow_array) {
591     $form->update_balance($dbh, "parts", "onhand", qq|id = $id|, $ship * -1);
592   }
593   $sth->finish;
594
595   # delete inventory
596   $query = qq|DELETE FROM inventory
597               WHERE oe_id = $form->{id}|;
598   $dbh->do($query) || $form->dberror($query);
599
600   # delete status entries
601   $query = qq|DELETE FROM status
602               WHERE trans_id = $form->{id}|;
603   $dbh->do($query) || $form->dberror($query);
604
605   # delete OE record
606   $query = qq|DELETE FROM oe
607               WHERE id = $form->{id}|;
608   $dbh->do($query) || $form->dberror($query);
609
610   # delete individual entries
611   $query = qq|DELETE FROM orderitems
612               WHERE trans_id = $form->{id}|;
613   $dbh->do($query) || $form->dberror($query);
614
615   $query = qq|DELETE FROM shipto
616               WHERE trans_id = $form->{id} AND module = 'OE'|;
617   $dbh->do($query) || $form->dberror($query);
618
619   my $rc = $dbh->commit;
620   $dbh->disconnect;
621
622   if ($rc) {
623     foreach $spoolfile (@spoolfiles) {
624       unlink "$spool/$spoolfile" if $spoolfile;
625     }
626   }
627
628   $main::lxdebug->leave_sub();
629
630   return $rc;
631 }
632
633 sub retrieve {
634   $main::lxdebug->enter_sub();
635
636   my ($self, $myconfig, $form) = @_;
637
638   # connect to database
639   my $dbh = $form->dbconnect_noauto($myconfig);
640
641   my $query, @ids;
642
643   # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
644   map {
645     push @ids, $form->{"trans_id_$_"}
646       if ($form->{"id_$_"} and $form->{"trans_id_$_"})
647   } (1 .. $form->{"rowcount"});
648
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];
652     undef @ids;
653   }
654
655   if ($form->{id}) {
656
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,
668                 d.curr AS currencies
669                 FROM defaults d|;
670   } else {
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
683                 FROM defaults d|;
684   }
685   my $sth = $dbh->prepare($query);
686   $sth->execute || $form->dberror($query);
687
688   my $ref = $sth->fetchrow_hashref(NAME_lc);
689   map { $form->{$_} = $ref->{$_} } keys %$ref;
690   $sth->finish;
691
692   ($form->{currency}) = split /:/, $form->{currencies};
693
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/);
699
700   if ($form->{id} or @ids) {
701
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
712                 FROM oe o
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)
716                 |
717       . ($form->{id}
718          ? qq|WHERE o.id = $form->{id}|
719          : qq|WHERE o.id IN (| . join(', ', @ids) . qq|)|);
720
721     #$main::lxdebug->message(0, $query);
722
723     $sth = $dbh->prepare($query);
724     $sth->execute || $form->dberror($query);
725
726     $ref = $sth->fetchrow_hashref(NAME_lc);
727     map { $form->{$_} = $ref->{$_} } keys %$ref;
728
729
730
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;
734     }
735
736     # if not given, fill transdate with current_date
737     $form->{transdate} = $form->current_date($myconfig)
738       unless $form->{transdate};
739
740     $sth->finish;
741
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();
747       $sth->finish;
748     }
749
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();
755       $sth->finish;
756     }
757
758     # shipto and pinted/mailed/queued status makes only sense for single id retrieve
759     if (!@ids) {
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);
764
765       $ref = $sth->fetchrow_hashref(NAME_lc);
766       delete($ref->{id});
767       map { $form->{$_} = $ref->{$_} } keys %$ref;
768       $sth->finish;
769
770       # get printed, emailed and queued
771       $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname
772                   FROM status s
773                   WHERE s.trans_id = $form->{id}|;
774       $sth = $dbh->prepare($query);
775       $sth->execute || $form->dberror($query);
776
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};
782       }
783       $sth->finish;
784       map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
785     }    # if !@ids
786
787     my %oid = ('Pg'     => 'oid',
788                'Oracle' => 'rowid');
789
790     my $transdate = "'$form->{transdate}'";
791     if (!$transdate) {
792       $transdate = "current_date";
793     }
794     if(!$form->{taxzone_id}) {
795       $form->{taxzone_id} = 0;
796     }
797     # retrieve individual items
798     # this query looks up all information about the items
799     # stuff different from the whole will not be overwritten, but saved with a suffix.
800     $query = qq|SELECT o.id AS orderitems_id,
801                 c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid,
802                 c2.accno AS income_accno, c2.new_chart_id AS income_new_chart, date($transdate)  - c2.valid_from as income_valid,
803                 c3.accno AS expense_accno, c3.new_chart_id AS expense_new_chart, date($transdate) - c3.valid_from as expense_valid,
804                 oe.ordnumber AS ordnumber_oe, oe.transdate AS transdate_oe, oe.cusordnumber AS cusordnumber_oe, 
805                 p.partnumber, p.assembly, o.description, o.qty,
806                 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,
807                 o.reqdate, o.project_id, o.serialnumber, o.ship,
808                 o.ordnumber, o.transdate, o.cusordnumber, o.subtotal, o.longdescription,
809                 pr.projectnumber, p.alu, p.formel,
810                 pg.partsgroup, o.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=o.pricegroup_id) as pricegroup
811                 FROM orderitems o
812                 JOIN parts p ON (o.parts_id = p.id)
813                 JOIN oe ON (o.trans_id = oe.id)
814                 LEFT JOIN chart c1 ON ((select inventory_accno_id from buchungsgruppen where id=p.buchungsgruppen_id) = c1.id)
815                 LEFT JOIN chart c2 ON ((select income_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c2.id)
816                 LEFT JOIN chart c3 ON ((select expense_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c3.id)
817                 LEFT JOIN project pr ON (o.project_id = pr.id)
818                 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
819                 |
820       . ($form->{id}
821          ? qq|WHERE o.trans_id = $form->{id}|
822          : qq|WHERE o.trans_id IN (| . join(", ", @ids) . qq|)|)
823       . qq|
824                 ORDER BY o.$oid{$myconfig->{dbdriver}}|;
825
826     $sth = $dbh->prepare($query);
827     $sth->execute || $form->dberror($query);
828
829     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
830       if (!$ref->{"part_inventory_accno_id"}) {
831         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
832       }
833       delete($ref->{"part_inventory_accno_id"});
834
835       # in collective order, copy global ordnumber, transdate, cusordnumber into item scope
836       #   unless already present there
837       # remove _oe entries afterwards
838       map { $ref->{$_} = $ref->{"${_}_oe"} if ($ref->{$_} eq '') }
839         qw|ordnumber transdate cusordnumber|
840         if (@ids);
841       map { delete $ref->{$_} } qw|ordnumber_oe transdate_oe cusordnumber_oe|;
842
843
844
845     while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >=0)) {
846       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}|;
847       my $stw = $dbh->prepare($query);
848       $stw->execute || $form->dberror($query);
849       ($ref->{inventory_accno}, $ref->{inventory_new_chart}, $ref->{inventory_valid}) = $stw->fetchrow_array;
850       $stw->finish;
851     }
852
853     while ($ref->{income_new_chart} && ($ref->{income_valid} >=0)) {
854       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}|;
855       my $stw = $dbh->prepare($query);
856       $stw->execute || $form->dberror($query);
857       ($ref->{income_accno}, $ref->{income_new_chart}, $ref->{income_valid}) = $stw->fetchrow_array;
858       $stw->finish;
859     }
860
861     while ($ref->{expense_new_chart} && ($ref->{expense_valid} >=0)) {
862       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}|;
863       my $stw = $dbh->prepare($query);
864       $stw->execute || $form->dberror($query);
865       ($ref->{expense_accno}, $ref->{expense_new_chart}, $ref->{expense_valid}) = $stw->fetchrow_array;
866       $stw->finish;
867     }
868
869       # delete orderitems_id in collective orders, so that they get cloned no matter what
870       delete $ref->{orderitems_id} if (@ids);
871
872       #set expense_accno=inventory_accno if they are different => bilanz
873       $vendor_accno =
874         ($ref->{expense_accno} != $ref->{inventory_accno})
875         ? $ref->{inventory_accno}
876         : $ref->{expense_accno};
877
878       # get tax rates and description
879       $accno_id =
880         ($form->{vc} eq "customer") ? $ref->{income_accno} : $vendor_accno;
881       $query = qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
882                  FROM tax t LEFT JOIN chart c ON (c.id=t.chart_id)
883                  WHERE t.taxkey in (SELECT taxkey_id from chart where accno = '$accno_id')
884                  ORDER BY accno|;
885       $stw = $dbh->prepare($query);
886       $stw->execute || $form->dberror($query);
887       $ref->{taxaccounts} = "";
888       my $i = 0;
889       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
890
891         #    if ($customertax{$ref->{accno}}) {
892         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
893           $i++;
894           $ptr->{accno} = $i;
895         }
896         $ref->{taxaccounts} .= "$ptr->{accno} ";
897         if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
898           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
899           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
900           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
901           $form->{taxaccounts} .= "$ptr->{accno} ";
902         }
903
904       }
905
906       chop $ref->{taxaccounts};
907       push @{ $form->{form_details} }, $ref;
908       $stw->finish;
909     }
910     $sth->finish;
911
912   } else {
913
914     # get last name used
915     $form->lastname_used($dbh, $myconfig, $form->{vc})
916       unless $form->{"$form->{vc}_id"};
917
918   }
919
920   $form->{exchangerate} =
921     $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate},
922                             ($form->{vc} eq 'customer') ? "buy" : "sell");
923
924   if ($form->{webdav}) {
925     &webdav_folder($myconfig, $form);
926   }
927
928   # get tax zones
929   $query = qq|SELECT id, description
930               FROM tax_zones|;
931   $sth = $dbh->prepare($query);
932   $sth->execute || $form->dberror($query);
933
934
935   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
936     push @{ $form->{TAXZONE} }, $ref;
937   }
938   $sth->finish;
939
940
941   my $rc = $dbh->commit;
942   $dbh->disconnect;
943
944   $main::lxdebug->leave_sub();
945
946   return $rc;
947 }
948
949 sub order_details {
950   $main::lxdebug->enter_sub();
951
952   my ($self, $myconfig, $form) = @_;
953
954   # connect to database
955   my $dbh = $form->dbconnect($myconfig);
956   my $query;
957   my $sth;
958   my $nodiscount;
959   my $yesdiscount;
960   my $nodiscount_subtotal = 0;
961   my $discount_subtotal = 0;
962   my $item;
963   my $i;
964   my @partsgroup = ();
965   my $partsgroup;
966   my $position = 0;
967   my $subtotal_header = 0;
968   my $subposition = 0;
969
970   my %oid = ('Pg'     => 'oid',
971              'Oracle' => 'rowid');
972
973   # sort items by partsgroup
974   for $i (1 .. $form->{rowcount}) {
975     $partsgroup = "";
976     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
977       $partsgroup = $form->{"partsgroup_$i"};
978     }
979     push @partsgroup, [$i, $partsgroup];
980   }
981
982   # if there is a warehouse limit picking
983   if ($form->{warehouse_id} && $form->{formname} =~ /(pick|packing)_list/) {
984
985     # run query to check for inventory
986     $query = qq|SELECT sum(i.qty) AS qty
987                 FROM inventory i
988                 WHERE i.parts_id = ?
989                 AND i.warehouse_id = ?|;
990     $sth = $dbh->prepare($query) || $form->dberror($query);
991
992     for $i (1 .. $form->{rowcount}) {
993       $sth->execute($form->{"id_$i"}, $form->{warehouse_id}) || $form->dberror;
994
995       ($qty) = $sth->fetchrow_array;
996       $sth->finish;
997
998       $form->{"qty_$i"} = 0 if $qty == 0;
999
1000       if ($form->parse_amount($myconfig, $form->{"ship_$i"}) > $qty) {
1001         $form->{"ship_$i"} = $form->format_amount($myconfig, $qty);
1002       }
1003     }
1004   }
1005
1006   my $sameitem = "";
1007   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
1008     $i = $item->[0];
1009
1010     if ($item->[1] ne $sameitem) {
1011       push(@{ $form->{description} }, qq|$item->[1]|);
1012       $sameitem = $item->[1];
1013
1014       map { push(@{ $form->{$_} }, "") }
1015         qw(runningnumber number qty ship unit bin partnotes serialnumber reqdate sellprice listprice netprice discount linetotal);
1016     }
1017
1018     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
1019
1020     if ($form->{"qty_$i"} != 0) {
1021
1022       # add number, description and qty to $form->{number}, ....
1023
1024       if ($form->{"subtotal_$i"} && !$subtotal_header) {
1025         $subtotal_header = $i;
1026         $position = int($position);
1027         $subposition = 0;
1028         $position++;
1029       } elsif ($subtotal_header) {
1030         $subposition += 1;
1031         $position = int($position);
1032         $position = $position.".".$subposition;
1033       } else {
1034         $position = int($position);
1035         $position++;
1036       }
1037
1038       push(@{ $form->{runningnumber} }, $i);
1039       push(@{ $form->{number} },        qq|$form->{"partnumber_$i"}|);
1040       push(@{ $form->{description} },   qq|$form->{"description_$i"}|);
1041       push(@{ $form->{longdescription} },   qq|$form->{"longdescription_$i"}|);
1042       push(@{ $form->{qty} },
1043            $form->format_amount($myconfig, $form->{"qty_$i"}));
1044       push(@{ $form->{ship} },
1045            $form->format_amount($myconfig, $form->{"ship_$i"}));
1046       push(@{ $form->{unit} },         qq|$form->{"unit_$i"}|);
1047       push(@{ $form->{bin} },          qq|$form->{"bin_$i"}|);
1048       push(@{ $form->{"partnotes"} },  qq|$form->{"partnotes_$i"}|);
1049       push(@{ $form->{serialnumber} }, qq|$form->{"serialnumber_$i"}|);
1050       push(@{ $form->{reqdate} },      qq|$form->{"reqdate_$i"}|);
1051
1052       push(@{ $form->{sellprice} }, $form->{"sellprice_$i"});
1053
1054       push(@{ $form->{listprice} }, $form->{"listprice_$i"});
1055
1056       my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
1057       my ($dec) = ($sellprice =~ /\.(\d+)/);
1058       $dec = length $dec;
1059       my $decimalplaces = ($dec > 2) ? $dec : 2;
1060
1061       my $i_discount =
1062         $form->round_amount(
1063                             $sellprice * $form->parse_amount($myconfig,
1064                                                  $form->{"discount_$i"}) / 100,
1065                             $decimalplaces);
1066
1067       my $discount =
1068         $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces);
1069
1070       # keep a netprice as well, (sellprice - discount)
1071       #$form->{"netprice_$i"} = $sellprice - $discount;
1072       $form->{"netprice_$i"} = $sellprice - $i_discount;
1073       my $nodiscount_linetotal =
1074         $form->round_amount($form->{"qty_$i"} * $sellprice, 2);
1075       my $linetotal =
1076         $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
1077
1078       push(@{ $form->{netprice} },
1079            ($form->{"netprice_$i"} != 0)
1080            ? $form->format_amount(
1081                                  $myconfig, $form->{"netprice_$i"},
1082                                  $decimalplaces
1083              )
1084            : " ");
1085
1086       $discount =
1087         ($discount != 0)
1088         ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
1089         : " ";
1090       $linetotal = ($linetotal != 0) ? $linetotal : " ";
1091
1092       push(@{ $form->{discount} },   $discount);
1093       push(@{ $form->{p_discount} }, $form->{"discount_$i"});
1094
1095       $form->{ordtotal} += $linetotal;
1096      $discount_subtotal += $linetotal;
1097       $form->{nodiscount_total} += $nodiscount_linetotal;
1098       $nodiscount_subtotal += $nodiscount_linetotal;
1099       $form->{discount_total} += $form->parse_amount($myconfig, $discount);
1100
1101       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
1102         $discount_subtotal = $form->format_amount($myconfig, $discount_subtotal, 2);
1103         push(@{ $form->{discount_sub} },  $discount_subtotal);
1104         $nodiscount_subtotal = $form->format_amount($myconfig, $nodiscount_subtotal, 2);
1105         push(@{ $form->{nodiscount_sub} }, $nodiscount_subtotal);
1106         $discount_subtotal = 0;
1107         $nodiscount_subtotal = 0;
1108         $subtotal_header = 0;
1109       } else {
1110         push(@{ $form->{discount_sub} }, "");
1111         push(@{ $form->{nodiscount_sub} }, "");
1112       }
1113
1114       if ($linetotal == $netto_linetotal) {
1115         $nodiscount += $linetotal;
1116       }
1117       push(@{ $form->{linetotal} },
1118            $form->format_amount($myconfig, $linetotal, 2));
1119       push(@{ $form->{nodiscount_linetotal} },
1120            $form->format_amount($myconfig, $nodiscount_linetotal, 2));
1121
1122       my ($taxamount, $taxbase);
1123       my $taxrate = 0;
1124
1125       map { $taxrate += $form->{"${_}_rate"} } split / /,
1126         $form->{"taxaccounts_$i"};
1127
1128       if ($form->{taxincluded}) {
1129
1130         # calculate tax
1131         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
1132         $taxbase = $linetotal / (1 + $taxrate);
1133       } else {
1134         $taxamount = $linetotal * $taxrate;
1135         $taxbase   = $linetotal;
1136       }
1137
1138       if ($taxamount != 0) {
1139         foreach my $item (split / /, $form->{"taxaccounts_$i"}) {
1140           $taxaccounts{$item} +=
1141             $taxamount * $form->{"${item}_rate"} / $taxrate;
1142           $taxbase{$item} += $taxbase;
1143         }
1144       }
1145
1146       $tax_rate = $taxrate * 100;
1147       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
1148
1149       if ($form->{"assembly_$i"}) {
1150         $sameitem = "";
1151
1152         # get parts and push them onto the stack
1153         my $sortorder = "";
1154         if ($form->{groupitems}) {
1155           $sortorder =
1156             qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
1157         } else {
1158           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
1159         }
1160
1161         $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty,
1162                     pg.partsgroup
1163                     FROM assembly a
1164                     JOIN parts p ON (a.parts_id = p.id)
1165                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1166                     WHERE a.bom = '1'
1167                     AND a.id = '$form->{"id_$i"}'
1168                     $sortorder|;
1169         $sth = $dbh->prepare($query);
1170         $sth->execute || $form->dberror($query);
1171
1172         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1173           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
1174             map { push(@{ $form->{$_} }, "") }
1175               qw(runningnumber ship bin serialnumber number unit bin qty reqdate sellprice listprice netprice discount linetotal nodiscount_linetotal);
1176             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
1177             push(@{ $form->{description} }, $sameitem);
1178           }
1179
1180           push(@{ $form->{description} },
1181                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
1182                  )
1183                  . qq|, $ref->{partnumber}, $ref->{description}|);
1184
1185           map { push(@{ $form->{$_} }, "") }
1186             qw(number unit qty runningnumber ship bin serialnumber reqdate sellprice listprice netprice discount linetotal nodiscount_linetotal);
1187
1188         }
1189         $sth->finish;
1190       }
1191
1192     }
1193   }
1194
1195   my $tax = 0;
1196   foreach $item (sort keys %taxaccounts) {
1197       push(@{ $form->{taxbase} },
1198            $form->format_amount($myconfig, $taxbase{$item}, 2));
1199
1200       $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
1201
1202       push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
1203       push(@{ $form->{taxdescription} }, $form->{"${item}_description"});
1204       push(@{ $form->{taxrate} },
1205            $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
1206       push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
1207   }
1208   $form->{subtotal} = $form->format_amount($myconfig, $form->{total}, 2);
1209   $yesdiscount = $form->{nodiscount_total} - $nodiscount;
1210   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
1211   $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2);
1212   $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2);
1213   $form->{yesdiscount} = $form->format_amount($myconfig, $yesdiscount, 2);
1214
1215   $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1216   $form->{ordtotal} =
1217     ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
1218
1219   # format amounts
1220   $form->{quototal} = $form->{ordtotal} =
1221     $form->format_amount($myconfig, $form->{ordtotal}, 2);
1222
1223   if ($form->{type} =~ /_quotation/) {
1224     $form->set_payment_options($myconfig, $form->{quodate});
1225   } else {
1226     $form->set_payment_options($myconfig, $form->{orddate});
1227   }
1228
1229   # myconfig variables
1230   map { $form->{$_} = $myconfig->{$_} }
1231     (qw(company address tel fax signature businessnumber));
1232   $form->{username} = $myconfig->{name};
1233
1234   $dbh->disconnect;
1235
1236   $main::lxdebug->leave_sub();
1237 }
1238
1239 sub project_description {
1240   $main::lxdebug->enter_sub();
1241
1242   my ($self, $dbh, $id) = @_;
1243
1244   my $query = qq|SELECT p.description
1245                  FROM project p
1246                  WHERE p.id = $id|;
1247   my $sth = $dbh->prepare($query);
1248   $sth->execute || $form->dberror($query);
1249
1250   ($_) = $sth->fetchrow_array;
1251
1252   $sth->finish;
1253
1254   $main::lxdebug->leave_sub();
1255
1256   return $_;
1257 }
1258
1259 sub get_warehouses {
1260   $main::lxdebug->enter_sub();
1261
1262   my ($self, $myconfig, $form) = @_;
1263
1264   my $dbh = $form->dbconnect($myconfig);
1265
1266   # setup warehouses
1267   my $query = qq|SELECT id, description
1268                  FROM warehouse|;
1269
1270   my $sth = $dbh->prepare($query);
1271   $sth->execute || $form->dberror($query);
1272
1273   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1274     push @{ $form->{all_warehouses} }, $ref;
1275   }
1276   $sth->finish;
1277
1278   $dbh->disconnect;
1279
1280   $main::lxdebug->leave_sub();
1281 }
1282
1283 sub save_inventory {
1284   $main::lxdebug->enter_sub();
1285
1286   my ($self, $myconfig, $form) = @_;
1287
1288   my ($null, $warehouse_id) = split /--/, $form->{warehouse};
1289   $warehouse_id *= 1;
1290
1291   my $employee_id;
1292   ($null, $employee_id) = split /--/, $form->{employee};
1293
1294   my $ml = ($form->{type} eq 'ship_order') ? -1 : 1;
1295
1296   my $dbh = $form->dbconnect_noauto($myconfig);
1297   my $sth;
1298   my $wth;
1299   my $serialnumber;
1300   my $ship;
1301
1302   $query = qq|SELECT o.serialnumber, o.ship
1303               FROM orderitems o
1304               WHERE o.trans_id = ?
1305               AND o.id = ?
1306               FOR UPDATE|;
1307   $sth = $dbh->prepare($query) || $form->dberror($query);
1308
1309   $query = qq|SELECT sum(i.qty)
1310               FROM inventory i
1311               WHERE i.parts_id = ?
1312               AND i.warehouse_id = ?|;
1313   $wth = $dbh->prepare($query) || $form->dberror($query);
1314
1315   for my $i (1 .. $form->{rowcount} - 1) {
1316
1317     $ship =
1318       (abs($form->{"ship_$i"}) > abs($form->{"qty_$i"}))
1319       ? $form->{"qty_$i"}
1320       : $form->{"ship_$i"};
1321
1322     if ($warehouse_id && $form->{type} eq 'ship_order') {
1323
1324       $wth->execute($form->{"id_$i"}, $warehouse_id) || $form->dberror;
1325
1326       ($qty) = $wth->fetchrow_array;
1327       $wth->finish;
1328
1329       if ($ship > $qty) {
1330         $ship = $qty;
1331       }
1332     }
1333
1334     if ($ship != 0) {
1335
1336       $ship *= $ml;
1337       $query = qq|INSERT INTO inventory (parts_id, warehouse_id,
1338                   qty, oe_id, orderitems_id, shippingdate, employee_id)
1339                   VALUES ($form->{"id_$i"}, $warehouse_id,
1340                   $ship, $form->{"id"},
1341                   $form->{"orderitems_id_$i"}, '$form->{shippingdate}',
1342                   $employee_id)|;
1343       $dbh->do($query) || $form->dberror($query);
1344
1345       # add serialnumber, ship to orderitems
1346       $sth->execute($form->{id}, $form->{"orderitems_id_$i"})
1347         || $form->dberror;
1348       ($serialnumber, $ship) = $sth->fetchrow_array;
1349       $sth->finish;
1350
1351       $serialnumber .= " " if $serialnumber;
1352       $serialnumber .= qq|$form->{"serialnumber_$i"}|;
1353       $ship += $form->{"ship_$i"};
1354
1355       $query = qq|UPDATE orderitems SET
1356                   serialnumber = '$serialnumber',
1357                   ship = $ship
1358                   WHERE trans_id = $form->{id}
1359                   AND id = $form->{"orderitems_id_$i"}|;
1360       $dbh->do($query) || $form->dberror($query);
1361
1362       # update order with ship via
1363       $query = qq|UPDATE oe SET
1364                   shippingpoint = '$form->{shippingpoint}',
1365                   shipvia = '$form->{shipvia}'
1366                   WHERE id = $form->{id}|;
1367       $dbh->do($query) || $form->dberror($query);
1368
1369       # update onhand for parts
1370       $form->update_balance($dbh, "parts", "onhand",
1371                             qq|id = $form->{"id_$i"}|,
1372                             $form->{"ship_$i"} * $ml);
1373
1374     }
1375   }
1376
1377   my $rc = $dbh->commit;
1378   $dbh->disconnect;
1379
1380   $main::lxdebug->leave_sub();
1381
1382   return $rc;
1383 }
1384
1385 sub adj_onhand {
1386   $main::lxdebug->enter_sub();
1387
1388   my ($dbh, $form, $ml) = @_;
1389
1390   my $service_units = $form->{service_units};
1391   my $part_units = $form->{part_units};
1392
1393   my $query = qq|SELECT oi.parts_id, oi.ship, oi.unit, p.inventory_accno_id, p.assembly
1394                  FROM orderitems oi
1395                  JOIN parts p ON (p.id = oi.parts_id)
1396                  WHERE oi.trans_id = $form->{id}|;
1397   my $sth = $dbh->prepare($query);
1398   $sth->execute || $form->dberror($query);
1399
1400   $query = qq|SELECT sum(p.inventory_accno_id)
1401               FROM parts p
1402               JOIN assembly a ON (a.parts_id = p.id)
1403               WHERE a.id = ?|;
1404   my $ath = $dbh->prepare($query) || $form->dberror($query);
1405
1406   my $ispa;
1407
1408   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1409   #print(STDERR "Bin in Schleife $ref->{inventory_accno_id}\n");
1410
1411     if ($ref->{inventory_accno_id} || $ref->{assembly}) {
1412
1413       # do not update if assembly consists of all services
1414       if ($ref->{assembly}) {
1415         $ath->execute($ref->{parts_id}) || $form->dberror($query);
1416
1417         ($ispa) = $sth->fetchrow_array;
1418         $ath->finish;
1419
1420         next unless $ispa;
1421
1422       }
1423
1424       # get item baseunit
1425       $query = qq|SELECT p.unit
1426                   FROM parts p
1427                   WHERE p.id = $ref->{parts_id}|;
1428       my $stw = $dbh->prepare($query);
1429       $stw->execute || $form->dberror($query);
1430
1431       my ($item_unit) = $stw->fetchrow_array();
1432       $stw->finish;
1433
1434       if ($ref->{inventory_accno_id}) {        
1435         if (defined($part_units->{$item_unit}->{factor}) && $part_units->{$item_unit}->{factor} ne '' && $part_units->{$item_unit}->{factor} ne '0') {
1436           $basefactor = $part_units->{$ref->{unit}}->{factor} / $part_units->{$item_unit}->{factor};
1437         } else {
1438           $basefactor = 1;
1439         }
1440         $baseqty = $ref->{ship} * $basefactor;
1441       } else {
1442         if (defined($service_units->{$item_unit}->{factor}) && $service_units->{$item_unit}->{factor} ne '' && $service_units->{$item_unit}->{factor} ne '0') {
1443           $basefactor = $service_units->{$ref->{unit}}->{factor} / $part_units->{$item_unit}->{factor};
1444         } else {
1445           $basefactor = 1;
1446         }
1447         $baseqty = $ref->{ship} * $basefactor;
1448       }  
1449       #print(STDERR "$baseqty Basismenge\n");
1450
1451       # adjust onhand in parts table
1452       $form->update_balance($dbh, "parts", "onhand",
1453                             qq|id = $ref->{parts_id}|,
1454                             $baseqty * $ml);
1455     }
1456   }
1457
1458   $sth->finish;
1459
1460   $main::lxdebug->leave_sub();
1461 }
1462
1463 sub adj_inventory {
1464   $main::lxdebug->enter_sub();
1465
1466   my ($dbh, $myconfig, $form) = @_;
1467
1468   my %oid = ('Pg'     => 'oid',
1469              'Oracle' => 'rowid');
1470
1471   # increase/reduce qty in inventory table
1472   my $query = qq|SELECT oi.id, oi.parts_id, oi.ship
1473                  FROM orderitems oi
1474                  WHERE oi.trans_id = $form->{id}|;
1475   my $sth = $dbh->prepare($query);
1476   $sth->execute || $form->dberror($query);
1477
1478   $query = qq|SELECT $oid{$myconfig->{dbdriver}} AS oid, qty,
1479                      (SELECT SUM(qty) FROM inventory
1480                       WHERE oe_id = $form->{id}
1481                       AND orderitems_id = ?) AS total
1482               FROM inventory
1483               WHERE oe_id = $form->{id}
1484               AND orderitems_id = ?|;
1485   my $ith = $dbh->prepare($query) || $form->dberror($query);
1486
1487   my $qty;
1488   my $ml = ($form->{type} =~ /(ship|sales)_order/) ? -1 : 1;
1489
1490   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1491
1492     $ith->execute($ref->{id}, $ref->{id}) || $form->dberror($query);
1493
1494     while (my $inv = $ith->fetchrow_hashref(NAME_lc)) {
1495
1496       if (($qty = (($inv->{total} * $ml) - $ref->{ship})) >= 0) {
1497         $qty = $inv->{qty} if ($qty > ($inv->{qty} * $ml));
1498
1499         $form->update_balance($dbh, "inventory", "qty",
1500                               qq|$oid{$myconfig->{dbdriver}} = $inv->{oid}|,
1501                               $qty * -1 * $ml);
1502       }
1503     }
1504     $ith->finish;
1505
1506   }
1507   $sth->finish;
1508
1509   # delete inventory entries if qty = 0
1510   $query = qq|DELETE FROM inventory
1511               WHERE oe_id = $form->{id}
1512               AND qty = 0|;
1513   $dbh->do($query) || $form->dberror($query);
1514
1515   $main::lxdebug->leave_sub();
1516 }
1517
1518 sub get_inventory {
1519   $main::lxdebug->enter_sub();
1520
1521   my ($self, $myconfig, $form) = @_;
1522
1523   my ($null, $warehouse_id) = split /--/, $form->{warehouse};
1524   $warehouse_id *= 1;
1525
1526   my $dbh = $form->dbconnect($myconfig);
1527
1528   my $query = qq|SELECT p.id, p.partnumber, p.description, p.onhand,
1529                  pg.partsgroup
1530                  FROM parts p
1531                  LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1532                  WHERE p.onhand > 0|;
1533
1534   if ($form->{partnumber}) {
1535     $var = $form->like(lc $form->{partnumber});
1536     $query .= "
1537                  AND lower(p.partnumber) LIKE '$var'";
1538   }
1539   if ($form->{description}) {
1540     $var = $form->like(lc $form->{description});
1541     $query .= "
1542                  AND lower(p.description) LIKE '$var'";
1543   }
1544   if ($form->{partsgroup}) {
1545     $var = $form->like(lc $form->{partsgroup});
1546     $query .= "
1547                  AND lower(pg.partsgroup) LIKE '$var'";
1548   }
1549
1550   $sth = $dbh->prepare($query);
1551   $sth->execute || $form->dberror($query);
1552
1553   $query = qq|SELECT sum(i.qty), w.description, w.id
1554               FROM inventory i
1555               LEFT JOIN warehouse w ON (w.id = i.warehouse_id)
1556               WHERE i.parts_id = ?
1557               AND NOT i.warehouse_id = $warehouse_id
1558               GROUP BY w.description, w.id|;
1559   $wth = $dbh->prepare($query) || $form->dberror($query);
1560
1561   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1562
1563     $wth->execute($ref->{id}) || $form->dberror;
1564
1565     while (($qty, $warehouse, $warehouse_id) = $wth->fetchrow_array) {
1566       push @{ $form->{all_inventory} },
1567         { 'id'           => $ref->{id},
1568           'partnumber'   => $ref->{partnumber},
1569           'description'  => $ref->{description},
1570           'partsgroup'   => $ref->{partsgroup},
1571           'qty'          => $qty,
1572           'warehouse_id' => $warehouse_id,
1573           'warehouse'    => $warehouse }
1574         if $qty > 0;
1575     }
1576     $wth->finish;
1577   }
1578   $sth->finish;
1579
1580   $dbh->disconnect;
1581
1582   # sort inventory
1583   @{ $form->{all_inventory} } =
1584     sort { $a->{ $form->{sort} } cmp $b->{ $form->{sort} } }
1585     @{ $form->{all_inventory} };
1586
1587   $main::lxdebug->leave_sub();
1588
1589   return @{ $form->{all_inventory} };
1590 }
1591
1592 sub transfer {
1593   $main::lxdebug->enter_sub();
1594
1595   my ($self, $myconfig, $form) = @_;
1596
1597   my $dbh = $form->dbconnect_noauto($myconfig);
1598
1599   my $query = qq|INSERT INTO inventory
1600                  (warehouse_id, parts_id, qty, shippingdate, employee_id)
1601                  VALUES (?, ?, ?, ?, ?)|;
1602   $sth = $dbh->prepare($query) || $form->dberror($query);
1603
1604   $form->get_employee($dbh);
1605
1606   my @a = localtime;
1607   $a[5] += 1900;
1608   $a[4]++;
1609   $shippingdate = "$a[5]-$a[4]-$a[3]";
1610
1611   for my $i (1 .. $form->{rowcount}) {
1612     $qty = $form->parse_amount($myconfig, $form->{"transfer_$i"});
1613
1614     $qty = $form->{"qty_$i"} if ($qty > $form->{"qty_$i"});
1615
1616     if ($qty) {
1617
1618       # to warehouse
1619       $sth->execute($form->{warehouse_id}, $form->{"id_$i"}, $qty,
1620                     $shippingdate, $form->{employee_id})
1621         || $form->dberror;
1622
1623       $sth->finish;
1624
1625       # from warehouse
1626       $sth->execute($form->{"warehouse_id_$i"},
1627                     $form->{"id_$i"}, $qty * -1, $shippingdate,
1628                     $form->{employee_id})
1629         || $form->dberror;
1630
1631       $sth->finish;
1632     }
1633   }
1634
1635   my $rc = $dbh->commit;
1636   $dbh->disconnect;
1637
1638   $main::lxdebug->leave_sub();
1639
1640   return $rc;
1641 }
1642
1643 sub webdav_folder {
1644   $main::lxdebug->enter_sub();
1645
1646   my ($myconfig, $form) = @_;
1647
1648 SWITCH: {
1649     $path = "webdav/angebote/" . $form->{quonumber}, last SWITCH
1650       if ($form->{type} eq "sales_quotation");
1651     $path = "webdav/bestellungen/" . $form->{ordnumber}, last SWITCH
1652       if ($form->{type} eq "sales_order");
1653     $path = "webdav/anfragen/" . $form->{quonumber}, last SWITCH
1654       if ($form->{type} eq "request_quotation");
1655     $path = "webdav/lieferantenbestellungen/" . $form->{ordnumber}, last SWITCH
1656       if ($form->{type} eq "purchase_order");
1657   }
1658
1659   if (!-d $path) {
1660     mkdir($path, 0770) or die "can't make directory $!\n";
1661   } else {
1662     if ($form->{id}) {
1663       @files = <$path/*>;
1664       foreach $file (@files) {
1665         $file =~ /\/([^\/]*)$/;
1666         $fname = $1;
1667         $ENV{'SCRIPT_NAME'} =~ /\/([^\/]*)\//;
1668         $lxerp = $1;
1669         $link  = "http://" . $ENV{'SERVER_NAME'} . "/" . $lxerp . "/" . $file;
1670         $form->{WEBDAV}{$fname} = $link;
1671       }
1672     }
1673   }
1674
1675   $main::lxdebug->leave_sub();
1676 }
1677 1;
1678