Kosmetik: Perltidy-Lauf nach den Einstellungen in doc/programmierrichtlinien.txt...
[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 sub transactions {
38   $main::lxdebug->enter_sub();
39
40   my ($self, $myconfig, $form) = @_;
41
42   # connect to database
43   my $dbh = $form->dbconnect($myconfig);
44
45   my $query;
46   my $ordnumber = 'ordnumber';
47   my $quotation = '0';
48   my ($null, $department_id) = split /--/, $form->{department};
49
50   my $department = " AND o.department_id = $department_id" if $department_id;
51
52   my $rate = ($form->{vc} eq 'customer') ? 'buy' : 'sell';
53
54   if ($form->{type} =~ /_quotation$/) {
55     $quotation = '1';
56     $ordnumber = 'quonumber';
57   }
58
59   my $number = $form->like(lc $form->{$ordnumber});
60   my $name   = $form->like(lc $form->{ $form->{vc} });
61
62   my $query = qq|SELECT o.id, o.ordnumber, o.transdate, o.reqdate,
63                  o.amount, ct.name, o.netamount, o.$form->{vc}_id,
64                  ex.$rate AS exchangerate,
65                  o.closed, o.quonumber, o.shippingpoint, o.shipvia,
66                  e.name AS employee
67                  FROM oe o
68                  JOIN $form->{vc} ct ON (o.$form->{vc}_id = ct.id)
69                  LEFT JOIN employee e ON (o.employee_id = e.id)
70                  LEFT JOIN exchangerate ex ON (ex.curr = o.curr
71                                                AND ex.transdate = o.transdate)
72                  WHERE o.quotation = '$quotation'
73                  $department|;
74
75   # build query if type eq (ship|receive)_order
76   if ($form->{type} =~ /(ship|receive)_order/) {
77     my ($warehouse, $warehouse_id) = split /--/, $form->{warehouse};
78
79     $query = qq|SELECT DISTINCT ON (o.id) o.id, o.ordnumber, o.transdate,
80                  o.reqdate, o.amount, ct.name, o.netamount, o.$form->{vc}_id,
81                  ex.$rate AS exchangerate,
82                  o.closed, o.quonumber, o.shippingpoint, o.shipvia,
83                  e.name AS employee
84                  FROM oe o
85                  JOIN $form->{vc} ct ON (o.$form->{vc}_id = ct.id)
86                  JOIN orderitems oi ON (oi.trans_id = o.id)
87                  JOIN parts p ON (p.id = oi.parts_id)|;
88
89     if ($warehouse_id && $form->{type} eq 'ship_order') {
90       $query .= qq|
91                  JOIN inventory i ON (oi.parts_id = i.parts_id)
92                  |;
93     }
94
95     $query .= qq|
96                  LEFT JOIN employee e ON (o.employee_id = e.id)
97                  LEFT JOIN exchangerate ex ON (ex.curr = o.curr
98                                                AND ex.transdate = o.transdate)
99                  WHERE o.quotation = '0'
100                  AND (p.inventory_accno_id > 0 OR p.assembly = '1')
101                  AND oi.qty <> oi.ship
102                  $department|;
103
104     if ($warehouse_id && $form->{type} eq 'ship_order') {
105       $query .= qq|
106                  AND i.warehouse_id = $warehouse_id
107                  AND i.qty >= (oi.qty - oi.ship)
108                  |;
109     }
110
111   }
112
113   if ($form->{"$form->{vc}_id"}) {
114     $query .= qq| AND o.$form->{vc}_id = $form->{"$form->{vc}_id"}|;
115   } else {
116     if ($form->{ $form->{vc} }) {
117       $query .= " AND lower(ct.name) LIKE '$name'";
118     }
119   }
120   if (!$form->{open} && !$form->{closed}) {
121     $query .= " AND o.id = 0";
122   } elsif (!($form->{open} && $form->{closed})) {
123     $query .= ($form->{open}) ? " AND o.closed = '0'" : " AND o.closed = '1'";
124   }
125
126   my $sortorder = join ', ',
127     ("o.id", $form->sort_columns(transdate, $ordnumber, name));
128   $sortorder = $form->{sort} if $form->{sort};
129
130   $query .= " AND lower($ordnumber) LIKE '$number'" if $form->{$ordnumber};
131   $query .= " AND o.transdate >= '$form->{transdatefrom}'"
132     if $form->{transdatefrom};
133   $query .= " AND o.transdate <= '$form->{transdateto}'"
134     if $form->{transdateto};
135   $query .= " ORDER by $sortorder";
136
137   my $sth = $dbh->prepare($query);
138   $sth->execute || $form->dberror($query);
139
140   my %id = ();
141   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
142     $ref->{exchangerate} = 1 unless $ref->{exchangerate};
143     push @{ $form->{OE} }, $ref if $ref->{id} != $id{ $ref->{id} };
144     $id{ $ref->{id} } = $ref->{id};
145   }
146
147   $sth->finish;
148   $dbh->disconnect;
149
150   $main::lxdebug->leave_sub();
151 }
152
153 sub save {
154   $main::lxdebug->enter_sub();
155
156   my ($self, $myconfig, $form) = @_;
157
158   # connect to database, turn off autocommit
159   my $dbh = $form->dbconnect_noauto($myconfig);
160
161   my ($query, $sth, $null);
162   my $exchangerate = 0;
163
164   ($null, $form->{employee_id}) = split /--/, $form->{employee};
165   unless ($form->{employee_id}) {
166     $form->get_employee($dbh);
167   }
168
169   ($null, $form->{contact_id}) = split /--/, $form->{contact};
170   $form->{contact_id} *= 1;
171
172   my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
173
174   if ($form->{id}) {
175
176     &adj_onhand($dbh, $form, $ml) if $form->{type} =~ /_order$/;
177
178     $query = qq|DELETE FROM orderitems
179                 WHERE trans_id = $form->{id}|;
180     $dbh->do($query) || $form->dberror($query);
181
182     $query = qq|DELETE FROM shipto
183                 WHERE trans_id = $form->{id}|;
184     $dbh->do($query) || $form->dberror($query);
185
186   } else {
187
188     my $uid = rand() . time;
189
190     $uid .= $form->{login};
191
192     $uid = substr($uid, 2, 75);
193
194     $query = qq|INSERT INTO oe (ordnumber, employee_id)
195                 VALUES ('$uid', $form->{employee_id})|;
196     $dbh->do($query) || $form->dberror($query);
197
198     $query = qq|SELECT o.id FROM oe o
199                 WHERE o.ordnumber = '$uid'|;
200     $sth = $dbh->prepare($query);
201     $sth->execute || $form->dberror($query);
202
203     ($form->{id}) = $sth->fetchrow_array;
204     $sth->finish;
205   }
206
207   map { $form->{$_} =~ s/\'/\'\'/g }
208     qw(ordnumber quonumber shippingpoint shipvia notes intnotes message);
209
210   my $amount;
211   my $linetotal;
212   my $discount;
213   my $project_id;
214   my $reqdate;
215   my $taxrate;
216   my $taxamount;
217   my $fxsellprice;
218   my %taxbase;
219   my @taxaccounts;
220   my %taxaccounts;
221   my $netamount = 0;
222
223   for my $i (1 .. $form->{rowcount}) {
224
225     map {
226       $form->{"${_}_$i"} =
227         $form->parse_amount($myconfig, $form->{"${_}_$i"})
228     } qw(qty ship);
229
230     if ($form->{"qty_$i"}) {
231
232       map { $form->{"${_}_$i"} =~ s/\'/\'\'/g }
233         qw(partnumber description unit);
234
235       # set values to 0 if nothing entered
236       $form->{"discount_$i"} =
237         $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
238
239       $form->{"sellprice_$i"} =
240         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
241       $fxsellprice = $form->{"sellprice_$i"};
242
243       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
244       $dec = length $dec;
245       my $decimalplaces = ($dec > 2) ? $dec : 2;
246
247       $discount =
248         $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"},
249                             $decimalplaces);
250       $form->{"sellprice_$i"} =
251         $form->round_amount($form->{"sellprice_$i"} - $discount,
252                             $decimalplaces);
253
254       $form->{"inventory_accno_$i"} *= 1;
255       $form->{"expense_accno_$i"}   *= 1;
256
257       $linetotal =
258         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
259
260       @taxaccounts = split / /, $form->{"taxaccounts_$i"};
261       $taxrate     = 0;
262       $taxdiff     = 0;
263
264       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
265
266       if ($form->{taxincluded}) {
267         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
268         $taxbase   = $linetotal - $taxamount;
269
270         # we are not keeping a natural price, do not round
271         $form->{"sellprice_$i"} =
272           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
273       } else {
274         $taxamount = $linetotal * $taxrate;
275         $taxbase   = $linetotal;
276       }
277
278       if ($form->round_amount($taxrate, 7) == 0) {
279         if ($form->{taxincluded}) {
280           foreach $item (@taxaccounts) {
281             $taxamount =
282               $form->round_amount($linetotal * $form->{"${item}_rate"} /
283                                     (1 + abs($form->{"${item}_rate"})),
284                                   2);
285
286             $taxaccounts{$item} += $taxamount;
287             $taxdiff            += $taxamount;
288
289             $taxbase{$item} += $taxbase;
290           }
291           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
292         } else {
293           foreach $item (@taxaccounts) {
294             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
295             $taxbase{$item}     += $taxbase;
296           }
297         }
298       } else {
299         foreach $item (@taxaccounts) {
300           $taxaccounts{$item} +=
301             $taxamount * $form->{"${item}_rate"} / $taxrate;
302           $taxbase{$item} += $taxbase;
303         }
304       }
305
306       $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"};
307
308       $project_id = 'NULL';
309       if ($form->{"projectnumber_$i"}) {
310         $project_id = $form->{"projectnumber_$i"};
311       }
312       $reqdate =
313         ($form->{"reqdate_$i"}) ? qq|'$form->{"reqdate_$i"}'| : "NULL";
314
315       # get pricegroup_id and save ist
316       ($null, my $pricegroup_id) = split /--/, $form->{"sellprice_drag_$i"};
317       $pricegroup_id *= 1;
318
319       # save detail record in orderitems table
320       $query = qq|INSERT INTO orderitems (|;
321       $query .= "id, " if $form->{"orderitems_id_$i"};
322       $query .= qq|trans_id, parts_id, description, qty, sellprice, discount,
323                    unit, reqdate, project_id, serialnumber, ship, pricegroup_id,
324                    ordnumber, transdate, cusordnumber)
325                    VALUES (|;
326       $query .= qq|$form->{"orderitems_id_$i"},|
327         if $form->{"orderitems_id_$i"};
328       $query .= qq|$form->{id}, $form->{"id_$i"},
329                    '$form->{"description_$i"}', $form->{"qty_$i"},
330                    $fxsellprice, $form->{"discount_$i"},
331                    '$form->{"unit_$i"}', $reqdate, (SELECT id from project where projectnumber = '$project_id'),
332                    '$form->{"serialnumber_$i"}', $form->{"ship_$i"}, '$pricegroup_id',
333                    '$form->{"ordnumber_$i"}', '$form->{"transdate_$i"}', '$form->{"cusordnumber_$i"}')|;
334       $dbh->do($query) || $form->dberror($query);
335
336       $form->{"sellprice_$i"} = $fxsellprice;
337       $form->{"discount_$i"} *= 100;
338     }
339   }
340
341   # set values which could be empty
342   map { $form->{$_} *= 1 }
343     qw(vendor_id customer_id taxincluded closed quotation);
344
345   $reqdate = ($form->{reqdate}) ? qq|'$form->{reqdate}'| : "NULL";
346
347   # add up the tax
348   my $tax = 0;
349   map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
350
351   $amount = $form->round_amount($netamount + $tax, 2);
352   $netamount = $form->round_amount($netamount, 2);
353
354   if ($form->{currency} eq $form->{defaultcurrency}) {
355     $form->{exchangerate} = 1;
356   } else {
357     $exchangerate =
358       $form->check_exchangerate($myconfig,
359                                 $form->{currency},
360                                 $form->{transdate},
361                                 ($form->{vc} eq 'customer') ? 'buy' : 'sell');
362   }
363
364   $form->{exchangerate} =
365     ($exchangerate)
366     ? $exchangerate
367     : $form->parse_amount($myconfig, $form->{exchangerate});
368
369   my $quotation;
370
371   # fill in subject if there is none
372   if ($form->{type} =~ /_order$/) {
373     $quotation = '0';
374     $form->{subject} = qq|$form->{label} $form->{ordnumber}|
375       unless $form->{subject};
376   } else {
377     $quotation = '1';
378     $form->{subject} = qq|$form->{label} $form->{quonumber}|
379       unless $form->{subject};
380   }
381
382   # if there is a message stuff it into the intnotes
383   my $cc  = "Cc: $form->{cc}\\r\n"   if $form->{cc};
384   my $bcc = "Bcc: $form->{bcc}\\r\n" if $form->{bcc};
385   my $now = scalar localtime;
386   $form->{intnotes} .= qq|\r
387 \r| if $form->{intnotes};
388
389   $form->{intnotes} .= qq|[email]\r
390 Date: $now
391 To: $form->{email}\r
392 $cc${bcc}Subject: $form->{subject}\r
393 \r
394 Message: $form->{message}\r| if $form->{message};
395
396   ($null, $form->{department_id}) = split(/--/, $form->{department});
397   $form->{department_id} *= 1;
398
399   # save OE record
400   $query = qq|UPDATE oe set
401               ordnumber = '$form->{ordnumber}',
402               quonumber = '$form->{quonumber}',
403               cusordnumber = '$form->{cusordnumber}',
404               transdate = '$form->{transdate}',
405               vendor_id = $form->{vendor_id},
406               customer_id = $form->{customer_id},
407               amount = $amount,
408               netamount = $netamount,
409               reqdate = $reqdate,
410               taxincluded = '$form->{taxincluded}',
411               shippingpoint = '$form->{shippingpoint}',
412               shipvia = '$form->{shipvia}',
413               notes = '$form->{notes}',
414               intnotes = '$form->{intnotes}',
415               curr = '$form->{currency}',
416               closed = '$form->{closed}',
417               quotation = '$quotation',
418               department_id = $form->{department_id},
419               employee_id = $form->{employee_id},
420               cp_id = $form->{contact_id}
421               WHERE id = $form->{id}|;
422   $dbh->do($query) || $form->dberror($query);
423
424   $form->{ordtotal} = $amount;
425
426   if ($form->{webdav}) {
427     &webdav_folder($myconfig, $form);
428   }
429
430   # add shipto
431   $form->{name} = $form->{ $form->{vc} };
432   $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
433   $form->add_shipto($dbh, $form->{id});
434
435   # save printed, emailed, queued
436   $form->save_status($dbh);
437
438   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
439     if ($form->{vc} eq 'customer') {
440       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
441                                  $form->{exchangerate}, 0);
442     }
443     if ($form->{vc} eq 'vendor') {
444       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
445                                  0, $form->{exchangerate});
446     }
447   }
448
449   if ($form->{type} =~ /_order$/) {
450
451     # adjust onhand
452     &adj_onhand($dbh, $form, $ml * -1);
453     &adj_inventory($dbh, $myconfig, $form);
454   }
455
456   my $rc = $dbh->commit;
457   $dbh->disconnect;
458
459   $main::lxdebug->leave_sub();
460
461   return $rc;
462 }
463
464 # this function closes multiple orders given in $form->{ordnumber_#}.
465 # use this for multiple orders that don't have to be saved back
466 # single orders should use OE::save instead.
467 sub close_orders {
468   $main::lxdebug->enter_sub();
469
470   my ($self, $myconfig, $form) = @_;
471
472   for my $i (1 .. $form->{rowcount}) {
473
474     map {
475       $form->{"${_}_$i"} =
476         $form->parse_amount($myconfig, $form->{"${_}_$i"})
477     } qw(qty ship);
478     if ($delete_oe_id) {
479       $form->{"orderitems_id_$i"} = "";
480     }
481
482     if ($form->{"qty_$i"}) {
483
484       # set values to 0 if nothing entered
485       $form->{"discount_$i"} =
486         $form->parse_amount($myconfig, $form->{"discount_$i"});
487
488       $form->{"sellprice_$i"} =
489         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
490     }
491   }
492
493   # get ids from $form
494   map { push @ids, $form->{"ordnumber_$_"} if $form->{"ordnumber_$_"} }
495     (1 .. $form->{rowcount});
496
497   my $dbh = $form->dbconnect($myconfig);
498   $query = qq|UPDATE oe SET
499               closed = TRUE
500               WHERE ordnumber IN (|
501     . join(', ', map { $dbh->quote($_) } @ids) . qq|)|;
502   $dbh->do($query) || $form->dberror($query);
503   $dbh->disconnect;
504
505   $main::lxdebug->leave_sub();
506 }
507
508 sub delete {
509   $main::lxdebug->enter_sub();
510
511   my ($self, $myconfig, $form, $spool) = @_;
512
513   # connect to database
514   my $dbh = $form->dbconnect_noauto($myconfig);
515
516   # delete spool files
517   my $query = qq|SELECT s.spoolfile FROM status s
518                  WHERE s.trans_id = $form->{id}|;
519   $sth = $dbh->prepare($query);
520   $sth->execute || $self->dberror($query);
521
522   my $spoolfile;
523   my @spoolfiles = ();
524
525   while (($spoolfile) = $sth->fetchrow_array) {
526     push @spoolfiles, $spoolfile;
527   }
528   $sth->finish;
529
530   $query = qq|SELECT o.parts_id, o.ship FROM orderitems o
531               WHERE o.trans_id = $form->{id}|;
532   $sth = $dbh->prepare($query);
533   $sth->execute || $self->dberror($query);
534
535   while (my ($id, $ship) = $sth->fetchrow_array) {
536     $form->update_balance($dbh, "parts", "onhand", qq|id = $id|, $ship * -1);
537   }
538   $sth->finish;
539
540   # delete inventory
541   $query = qq|DELETE FROM inventory
542               WHERE oe_id = $form->{id}|;
543   $dbh->do($query) || $form->dberror($query);
544
545   # delete status entries
546   $query = qq|DELETE FROM status
547               WHERE trans_id = $form->{id}|;
548   $dbh->do($query) || $form->dberror($query);
549
550   # delete OE record
551   $query = qq|DELETE FROM oe
552               WHERE id = $form->{id}|;
553   $dbh->do($query) || $form->dberror($query);
554
555   # delete individual entries
556   $query = qq|DELETE FROM orderitems
557               WHERE trans_id = $form->{id}|;
558   $dbh->do($query) || $form->dberror($query);
559
560   $query = qq|DELETE FROM shipto
561               WHERE trans_id = $form->{id}|;
562   $dbh->do($query) || $form->dberror($query);
563
564   my $rc = $dbh->commit;
565   $dbh->disconnect;
566
567   if ($rc) {
568     foreach $spoolfile (@spoolfiles) {
569       unlink "$spool/$spoolfile" if $spoolfile;
570     }
571   }
572
573   $main::lxdebug->leave_sub();
574
575   return $rc;
576 }
577
578 sub retrieve {
579   $main::lxdebug->enter_sub();
580
581   my ($self, $myconfig, $form) = @_;
582
583   # connect to database
584   my $dbh = $form->dbconnect_noauto($myconfig);
585
586   my $query, @ids;
587
588   # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
589   map {
590     push @ids, $form->{"trans_id_$_"}
591       if ($form->{"id_$_"} and $form->{"trans_id_$_"})
592   } (1 .. $form->{"rowcount"});
593
594   # if called in multi id mode, and still only got one id, switch back to single id
595   if ($form->{"rowcount"} and $#ids == 0) {
596     $form->{"id"} = $ids[0];
597     undef @ids;
598   }
599
600   if ($form->{id}) {
601
602     # get default accounts and last order number
603     $query = qq|SELECT (SELECT c.accno FROM chart c
604                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
605                        (SELECT c.accno FROM chart c
606                         WHERE d.income_accno_id = c.id) AS income_accno,
607                        (SELECT c.accno FROM chart c
608                         WHERE d.expense_accno_id = c.id) AS expense_accno,
609                        (SELECT c.accno FROM chart c
610                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
611                        (SELECT c.accno FROM chart c
612                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
613                 d.curr AS currencies
614                 FROM defaults d|;
615   } else {
616     $query = qq|SELECT (SELECT c.accno FROM chart c
617                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
618                        (SELECT c.accno FROM chart c
619                         WHERE d.income_accno_id = c.id) AS income_accno,
620                        (SELECT c.accno FROM chart c
621                         WHERE d.expense_accno_id = c.id) AS expense_accno,
622                        (SELECT c.accno FROM chart c
623                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
624                        (SELECT c.accno FROM chart c
625                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
626                 d.curr AS currencies,
627                 current_date AS transdate, current_date AS reqdate
628                 FROM defaults d|;
629   }
630   my $sth = $dbh->prepare($query);
631   $sth->execute || $form->dberror($query);
632
633   my $ref = $sth->fetchrow_hashref(NAME_lc);
634   map { $form->{$_} = $ref->{$_} } keys %$ref;
635   $sth->finish;
636
637   ($form->{currency}) = split /:/, $form->{currencies};
638
639   # set reqdate if this is an invoice->order conversion. If someone knows a better check to ensure
640   # we come from invoices, feel free.
641   $form->{reqdate} = $form->{deliverydate}
642     if (    $form->{deliverydate}
643         and $form->{callback} =~ /action=ar_transactions/);
644
645   if ($form->{id} or @ids) {
646
647     # retrieve order for single id
648     # NOTE: this query is intended to fetch all information only ONCE.
649     # so if any of these infos is important (or even different) for any item,
650     # it will be killed out and then has to be fetched from the item scope query further down
651     $query = qq|SELECT o.cp_id, o.ordnumber, o.transdate, o.reqdate,
652                 o.taxincluded, o.shippingpoint, o.shipvia, o.notes, o.intnotes,
653                 o.curr AS currency, e.name AS employee, o.employee_id,
654                 o.$form->{vc}_id, cv.name AS $form->{vc}, o.amount AS invtotal,
655                 o.closed, o.reqdate, o.quonumber, o.department_id, o.cusordnumber,
656                 d.description AS department
657                 FROM oe o
658                 JOIN $form->{vc} cv ON (o.$form->{vc}_id = cv.id)
659                 LEFT JOIN employee e ON (o.employee_id = e.id)
660                 LEFT JOIN department d ON (o.department_id = d.id)
661                 |
662       . ($form->{id}
663          ? qq|WHERE o.id = $form->{id}|
664          : qq|WHERE o.id IN (| . join(', ', @ids) . qq|)|);
665
666     #$main::lxdebug->message(0, $query);
667
668     $sth = $dbh->prepare($query);
669     $sth->execute || $form->dberror($query);
670
671     $ref = $sth->fetchrow_hashref(NAME_lc);
672     map { $form->{$_} = $ref->{$_} } keys %$ref;
673
674     # set all entries for multiple ids blank that yield different information
675     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
676       map { $form->{$_} = '' if ($ref->{$_} ne $form->{$_}) } keys %$ref;
677     }
678
679     # if not given, fill transdate with current_date
680     $form->{transdate} = $form->current_date($myconfig)
681       unless $form->{transdate};
682
683     $sth->finish;
684
685     # shipto and pinted/mailed/queued status makes only sense for single id retrieve
686     if (!@ids) {
687       $query = qq|SELECT s.* FROM shipto s
688                   WHERE s.trans_id = $form->{id}|;
689       $sth = $dbh->prepare($query);
690       $sth->execute || $form->dberror($query);
691
692       $ref = $sth->fetchrow_hashref(NAME_lc);
693       map { $form->{$_} = $ref->{$_} } keys %$ref;
694       $sth->finish;
695
696       # get printed, emailed and queued
697       $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname
698                   FROM status s
699                   WHERE s.trans_id = $form->{id}|;
700       $sth = $dbh->prepare($query);
701       $sth->execute || $form->dberror($query);
702
703       while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
704         $form->{printed} .= "$ref->{formname} " if $ref->{printed};
705         $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
706         $form->{queued} .= "$ref->{formname} $ref->{spoolfile} "
707           if $ref->{spoolfile};
708       }
709       $sth->finish;
710       map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
711     }    # if !@ids
712
713     my %oid = ('Pg'     => 'oid',
714                'Oracle' => 'rowid');
715
716     # retrieve individual items
717     # this query looks up all information about the items
718     # stuff different from the whole will not be overwritten, but saved with a suffix.
719     $query = qq|SELECT o.id AS orderitems_id,
720                 c1.accno AS inventory_accno,
721                 c2.accno AS income_accno,
722                 c3.accno AS expense_accno,
723                 oe.ordnumber AS ordnumber_oe, oe.transdate AS transdate_oe, oe.cusordnumber AS cusordnumber_oe, 
724                 p.partnumber, p.assembly, o.description, o.qty,
725                 o.sellprice, o.parts_id AS id, o.unit, o.discount, p.bin, p.notes AS partnotes,
726                 o.reqdate, o.project_id, o.serialnumber, o.ship,
727                 o.ordnumber, o.transdate, o.cusordnumber,
728                 pr.projectnumber,
729                 pg.partsgroup, o.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=o.pricegroup_id) as pricegroup
730                 FROM orderitems o
731                 JOIN parts p ON (o.parts_id = p.id)
732                 JOIN oe ON (o.trans_id = oe.id)
733                 LEFT JOIN chart c1 ON (p.inventory_accno_id = c1.id)
734                 LEFT JOIN chart c2 ON (p.income_accno_id = c2.id)
735                 LEFT JOIN chart c3 ON (p.expense_accno_id = c3.id)
736                 LEFT JOIN project pr ON (o.project_id = pr.id)
737                 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
738                 |
739       . ($form->{id}
740          ? qq|WHERE o.trans_id = $form->{id}|
741          : qq|WHERE o.trans_id IN (| . join(", ", @ids) . qq|)|)
742       . qq|
743                 ORDER BY o.$oid{$myconfig->{dbdriver}}|;
744
745     $sth = $dbh->prepare($query);
746     $sth->execute || $form->dberror($query);
747
748     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
749
750       # in collective order, copy global ordnumber, transdate, cusordnumber into item scope
751       #   unless already present there
752       # remove _oe entries afterwards
753       map { $ref->{$_} = $ref->{"${_}_oe"} if ($ref->{$_} eq '') }
754         qw|ordnumber transdate cusordnumber|
755         if (@ids);
756       map { delete $ref->{$_} } qw|ordnumber_oe transdate_oe cusordnumber_oe|;
757
758       #set expense_accno=inventory_accno if they are different => bilanz
759       $vendor_accno =
760         ($ref->{expense_accno} != $ref->{inventory_accno})
761         ? $ref->{inventory_accno}
762         : $ref->{expense_accno};
763
764       # get tax rates and description
765       $accno_id =
766         ($form->{vc} eq "customer") ? $ref->{income_accno} : $vendor_accno;
767       $query = qq|SELECT c.accno, c.description, t.rate, t.taxnumber
768                  FROM chart c, tax t
769                  WHERE c.id=t.chart_id AND t.taxkey in (SELECT taxkey_id from chart where accno = '$accno_id')
770                  ORDER BY accno|;
771       $stw = $dbh->prepare($query);
772       $stw->execute || $form->dberror($query);
773       $ref->{taxaccounts} = "";
774       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
775
776         #    if ($customertax{$ref->{accno}}) {
777         $ref->{taxaccounts} .= "$ptr->{accno} ";
778         if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
779           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
780           $form->{"$ptr->{accno}_description"} = $ptr->{description};
781           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
782           $form->{taxaccounts} .= "$ptr->{accno} ";
783         }
784
785       }
786
787       chop $ref->{taxaccounts};
788       push @{ $form->{form_details} }, $ref;
789       $stw->finish;
790     }
791     $sth->finish;
792
793   } else {
794
795     # get last name used
796     $form->lastname_used($dbh, $myconfig, $form->{vc})
797       unless $form->{"$form->{vc}_id"};
798
799   }
800
801   $form->{exchangerate} =
802     $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate},
803                             ($form->{vc} eq 'customer') ? "buy" : "sell");
804
805   if ($form->{webdav}) {
806     &webdav_folder($myconfig, $form);
807   }
808
809   my $rc = $dbh->commit;
810   $dbh->disconnect;
811
812   $main::lxdebug->leave_sub();
813
814   return $rc;
815 }
816
817 sub order_details {
818   $main::lxdebug->enter_sub();
819
820   my ($self, $myconfig, $form) = @_;
821
822   # connect to database
823   my $dbh = $form->dbconnect($myconfig);
824   my $query;
825   my $sth;
826
827   my $item;
828   my $i;
829   my @partsgroup = ();
830   my $partsgroup;
831   my %oid = ('Pg'     => 'oid',
832              'Oracle' => 'rowid');
833
834   # sort items by partsgroup
835   for $i (1 .. $form->{rowcount}) {
836     $partsgroup = "";
837     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
838       $form->format_string("partsgroup_$i");
839       $partsgroup = $form->{"partsgroup_$i"};
840     }
841     push @partsgroup, [$i, $partsgroup];
842   }
843
844   # if there is a warehouse limit picking
845   if ($form->{warehouse_id} && $form->{formname} =~ /(pick|packing)_list/) {
846
847     # run query to check for inventory
848     $query = qq|SELECT sum(i.qty) AS qty
849                 FROM inventory i
850                 WHERE i.parts_id = ?
851                 AND i.warehouse_id = ?|;
852     $sth = $dbh->prepare($query) || $form->dberror($query);
853
854     for $i (1 .. $form->{rowcount}) {
855       $sth->execute($form->{"id_$i"}, $form->{warehouse_id}) || $form->dberror;
856
857       ($qty) = $sth->fetchrow_array;
858       $sth->finish;
859
860       $form->{"qty_$i"} = 0 if $qty == 0;
861
862       if ($form->parse_amount($myconfig, $form->{"ship_$i"}) > $qty) {
863         $form->{"ship_$i"} = $form->format_amount($myconfig, $qty);
864       }
865     }
866   }
867
868   my $sameitem = "";
869   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
870     $i = $item->[0];
871
872     if ($item->[1] ne $sameitem) {
873       push(@{ $form->{description} }, qq|$item->[1]|);
874       $sameitem = $item->[1];
875
876       map { push(@{ $form->{$_} }, "") }
877         qw(runningnumber number qty ship unit bin partnotes serialnumber reqdate sellprice listprice netprice discount linetotal);
878     }
879
880     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
881
882     if ($form->{"qty_$i"} != 0) {
883
884       # add number, description and qty to $form->{number}, ....
885       push(@{ $form->{runningnumber} }, $i);
886       push(@{ $form->{number} },        qq|$form->{"partnumber_$i"}|);
887       push(@{ $form->{description} },   qq|$form->{"description_$i"}|);
888       push(@{ $form->{qty} },
889            $form->format_amount($myconfig, $form->{"qty_$i"}));
890       push(@{ $form->{ship} },
891            $form->format_amount($myconfig, $form->{"ship_$i"}));
892       push(@{ $form->{unit} },         qq|$form->{"unit_$i"}|);
893       push(@{ $form->{bin} },          qq|$form->{"bin_$i"}|);
894       push(@{ $form->{"partnotes"} },  qq|$form->{"partnotes_$i"}|);
895       push(@{ $form->{serialnumber} }, qq|$form->{"serialnumber_$i"}|);
896       push(@{ $form->{reqdate} },      qq|$form->{"reqdate_$i"}|);
897
898       push(@{ $form->{sellprice} }, $form->{"sellprice_$i"});
899
900       push(@{ $form->{listprice} }, $form->{"listprice_$i"});
901
902       my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
903       my ($dec) = ($sellprice =~ /\.(\d+)/);
904       $dec = length $dec;
905       my $decimalplaces = ($dec > 2) ? $dec : 2;
906
907       my $i_discount =
908         $form->round_amount(
909                             $sellprice * $form->parse_amount($myconfig,
910                                                  $form->{"discount_$i"}) / 100,
911                             $decimalplaces);
912
913       my $discount =
914         $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces);
915
916       # keep a netprice as well, (sellprice - discount)
917       #$form->{"netprice_$i"} = $sellprice - $discount;
918       $form->{"netprice_$i"} = $sellprice - $i_discount;
919
920       my $linetotal =
921         $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
922
923       push(@{ $form->{netprice} },
924            ($form->{"netprice_$i"} != 0)
925            ? $form->format_amount(
926                                  $myconfig, $form->{"netprice_$i"},
927                                  $decimalplaces
928              )
929            : " ");
930
931       $discount =
932         ($discount != 0)
933         ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
934         : " ";
935       $linetotal = ($linetotal != 0) ? $linetotal : " ";
936
937       push(@{ $form->{discount} },   $discount);
938       push(@{ $form->{p_discount} }, $form->{"discount_$i"});
939
940       $form->{ordtotal} += $linetotal;
941
942       push(@{ $form->{linetotal} },
943            $form->format_amount($myconfig, $linetotal, 2));
944
945       my ($taxamount, $taxbase);
946       my $taxrate = 0;
947
948       map { $taxrate += $form->{"${_}_rate"} } split / /,
949         $form->{"taxaccounts_$i"};
950
951       if ($form->{taxincluded}) {
952
953         # calculate tax
954         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
955         $taxbase = $linetotal / (1 + $taxrate);
956       } else {
957         $taxamount = $linetotal * $taxrate;
958         $taxbase   = $linetotal;
959       }
960
961       if ($taxamount != 0) {
962         foreach my $item (split / /, $form->{"taxaccounts_$i"}) {
963           $taxaccounts{$item} +=
964             $taxamount * $form->{"${item}_rate"} / $taxrate;
965           $taxbase{$item} += $taxbase;
966         }
967       }
968
969       $tax_rate = $taxrate * 100;
970       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
971
972       if ($form->{"assembly_$i"}) {
973         $sameitem = "";
974
975         # get parts and push them onto the stack
976         my $sortorder = "";
977         if ($form->{groupitems}) {
978           $sortorder =
979             qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
980         } else {
981           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
982         }
983
984         $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty,
985                     pg.partsgroup
986                     FROM assembly a
987                     JOIN parts p ON (a.parts_id = p.id)
988                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
989                     WHERE a.bom = '1'
990                     AND a.id = '$form->{"id_$i"}'
991                     $sortorder|;
992         $sth = $dbh->prepare($query);
993         $sth->execute || $form->dberror($query);
994
995         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
996           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
997             map { push(@{ $form->{$_} }, "") }
998               qw(runningnumber ship bin serialnumber number unit bin qty reqdate sellprice listprice netprice discount linetotal);
999             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
1000             push(@{ $form->{description} }, $sameitem);
1001           }
1002
1003           push(@{ $form->{description} },
1004                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
1005                  )
1006                  . qq|, $ref->{partnumber}, $ref->{description}|);
1007
1008           map { push(@{ $form->{$_} }, "") }
1009             qw(number unit qty runningnumber ship bin serialnumber reqdate sellprice listprice netprice discount linetotal);
1010
1011         }
1012         $sth->finish;
1013       }
1014
1015     }
1016   }
1017
1018   my $tax = 0;
1019   foreach $item (sort keys %taxaccounts) {
1020     if ($form->round_amount($taxaccounts{$item}, 2) != 0) {
1021       push(@{ $form->{taxbase} },
1022            $form->format_amount($myconfig, $taxbase{$item}, 2));
1023
1024       $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
1025
1026       push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
1027       push(@{ $form->{taxdescription} }, $form->{"${item}_description"});
1028       push(@{ $form->{taxrate} },
1029            $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
1030       push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
1031     }
1032   }
1033
1034   $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1035   $form->{ordtotal} =
1036     ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
1037
1038   # format amounts
1039   $form->{quototal} = $form->{ordtotal} =
1040     $form->format_amount($myconfig, $form->{ordtotal}, 2);
1041
1042   # myconfig variables
1043   map { $form->{$_} = $myconfig->{$_} }
1044     (qw(company address tel fax signature businessnumber));
1045   $form->{username} = $myconfig->{name};
1046
1047   $dbh->disconnect;
1048
1049   $main::lxdebug->leave_sub();
1050 }
1051
1052 sub project_description {
1053   $main::lxdebug->enter_sub();
1054
1055   my ($self, $dbh, $id) = @_;
1056
1057   my $query = qq|SELECT p.description
1058                  FROM project p
1059                  WHERE p.id = $id|;
1060   my $sth = $dbh->prepare($query);
1061   $sth->execute || $form->dberror($query);
1062
1063   ($_) = $sth->fetchrow_array;
1064
1065   $sth->finish;
1066
1067   $main::lxdebug->leave_sub();
1068
1069   return $_;
1070 }
1071
1072 sub get_warehouses {
1073   $main::lxdebug->enter_sub();
1074
1075   my ($self, $myconfig, $form) = @_;
1076
1077   my $dbh = $form->dbconnect($myconfig);
1078
1079   # setup warehouses
1080   my $query = qq|SELECT id, description
1081                  FROM warehouse|;
1082
1083   my $sth = $dbh->prepare($query);
1084   $sth->execute || $form->dberror($query);
1085
1086   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1087     push @{ $form->{all_warehouses} }, $ref;
1088   }
1089   $sth->finish;
1090
1091   $dbh->disconnect;
1092
1093   $main::lxdebug->leave_sub();
1094 }
1095
1096 sub save_inventory {
1097   $main::lxdebug->enter_sub();
1098
1099   my ($self, $myconfig, $form) = @_;
1100
1101   my ($null, $warehouse_id) = split /--/, $form->{warehouse};
1102   $warehouse_id *= 1;
1103
1104   my $employee_id;
1105   ($null, $employee_id) = split /--/, $form->{employee};
1106
1107   my $ml = ($form->{type} eq 'ship_order') ? -1 : 1;
1108
1109   my $dbh = $form->dbconnect_noauto($myconfig);
1110   my $sth;
1111   my $wth;
1112   my $serialnumber;
1113   my $ship;
1114
1115   $query = qq|SELECT o.serialnumber, o.ship
1116               FROM orderitems o
1117               WHERE o.trans_id = ?
1118               AND o.id = ?
1119               FOR UPDATE|;
1120   $sth = $dbh->prepare($query) || $form->dberror($query);
1121
1122   $query = qq|SELECT sum(i.qty)
1123               FROM inventory i
1124               WHERE i.parts_id = ?
1125               AND i.warehouse_id = ?|;
1126   $wth = $dbh->prepare($query) || $form->dberror($query);
1127
1128   for my $i (1 .. $form->{rowcount} - 1) {
1129
1130     $ship =
1131       (abs($form->{"ship_$i"}) > abs($form->{"qty_$i"}))
1132       ? $form->{"qty_$i"}
1133       : $form->{"ship_$i"};
1134
1135     if ($warehouse_id && $form->{type} eq 'ship_order') {
1136
1137       $wth->execute($form->{"id_$i"}, $warehouse_id) || $form->dberror;
1138
1139       ($qty) = $wth->fetchrow_array;
1140       $wth->finish;
1141
1142       if ($ship > $qty) {
1143         $ship = $qty;
1144       }
1145     }
1146
1147     if ($ship != 0) {
1148
1149       $ship *= $ml;
1150       $query = qq|INSERT INTO inventory (parts_id, warehouse_id,
1151                   qty, oe_id, orderitems_id, shippingdate, employee_id)
1152                   VALUES ($form->{"id_$i"}, $warehouse_id,
1153                   $ship, $form->{"id"},
1154                   $form->{"orderitems_id_$i"}, '$form->{shippingdate}',
1155                   $employee_id)|;
1156       $dbh->do($query) || $form->dberror($query);
1157
1158       # add serialnumber, ship to orderitems
1159       $sth->execute($form->{id}, $form->{"orderitems_id_$i"})
1160         || $form->dberror;
1161       ($serialnumber, $ship) = $sth->fetchrow_array;
1162       $sth->finish;
1163
1164       $serialnumber .= " " if $serialnumber;
1165       $serialnumber .= qq|$form->{"serialnumber_$i"}|;
1166       $ship += $form->{"ship_$i"};
1167
1168       $query = qq|UPDATE orderitems SET
1169                   serialnumber = '$serialnumber',
1170                   ship = $ship
1171                   WHERE trans_id = $form->{id}
1172                   AND id = $form->{"orderitems_id_$i"}|;
1173       $dbh->do($query) || $form->dberror($query);
1174
1175       # update order with ship via
1176       $query = qq|UPDATE oe SET
1177                   shippingpoint = '$form->{shippingpoint}',
1178                   shipvia = '$form->{shipvia}'
1179                   WHERE id = $form->{id}|;
1180       $dbh->do($query) || $form->dberror($query);
1181
1182       # update onhand for parts
1183       $form->update_balance($dbh, "parts", "onhand",
1184                             qq|id = $form->{"id_$i"}|,
1185                             $form->{"ship_$i"} * $ml);
1186
1187     }
1188   }
1189
1190   my $rc = $dbh->commit;
1191   $dbh->disconnect;
1192
1193   $main::lxdebug->leave_sub();
1194
1195   return $rc;
1196 }
1197
1198 sub adj_onhand {
1199   $main::lxdebug->enter_sub();
1200
1201   my ($dbh, $form, $ml) = @_;
1202
1203   my $query = qq|SELECT oi.parts_id, oi.ship, p.inventory_accno_id, p.assembly
1204                  FROM orderitems oi
1205                  JOIN parts p ON (p.id = oi.parts_id)
1206                  WHERE oi.trans_id = $form->{id}|;
1207   my $sth = $dbh->prepare($query);
1208   $sth->execute || $form->dberror($query);
1209
1210   $query = qq|SELECT sum(p.inventory_accno_id)
1211               FROM parts p
1212               JOIN assembly a ON (a.parts_id = p.id)
1213               WHERE a.id = ?|;
1214   my $ath = $dbh->prepare($query) || $form->dberror($query);
1215
1216   my $ispa;
1217
1218   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1219
1220     if ($ref->{inventory_accno_id} || $ref->{assembly}) {
1221
1222       # do not update if assembly consists of all services
1223       if ($ref->{assembly}) {
1224         $ath->execute($ref->{parts_id}) || $form->dberror($query);
1225
1226         ($ispa) = $sth->fetchrow_array;
1227         $ath->finish;
1228
1229         next unless $ispa;
1230
1231       }
1232
1233       # adjust onhand in parts table
1234       $form->update_balance($dbh, "parts", "onhand",
1235                             qq|id = $ref->{parts_id}|,
1236                             $ref->{ship} * $ml);
1237     }
1238   }
1239
1240   $sth->finish;
1241
1242   $main::lxdebug->leave_sub();
1243 }
1244
1245 sub adj_inventory {
1246   $main::lxdebug->enter_sub();
1247
1248   my ($dbh, $myconfig, $form) = @_;
1249
1250   my %oid = ('Pg'     => 'oid',
1251              'Oracle' => 'rowid');
1252
1253   # increase/reduce qty in inventory table
1254   my $query = qq|SELECT oi.id, oi.parts_id, oi.ship
1255                  FROM orderitems oi
1256                  WHERE oi.trans_id = $form->{id}|;
1257   my $sth = $dbh->prepare($query);
1258   $sth->execute || $form->dberror($query);
1259
1260   $query = qq|SELECT $oid{$myconfig->{dbdriver}} AS oid, qty,
1261                      (SELECT SUM(qty) FROM inventory
1262                       WHERE oe_id = $form->{id}
1263                       AND orderitems_id = ?) AS total
1264               FROM inventory
1265               WHERE oe_id = $form->{id}
1266               AND orderitems_id = ?|;
1267   my $ith = $dbh->prepare($query) || $form->dberror($query);
1268
1269   my $qty;
1270   my $ml = ($form->{type} =~ /(ship|sales)_order/) ? -1 : 1;
1271
1272   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1273
1274     $ith->execute($ref->{id}, $ref->{id}) || $form->dberror($query);
1275
1276     while (my $inv = $ith->fetchrow_hashref(NAME_lc)) {
1277
1278       if (($qty = (($inv->{total} * $ml) - $ref->{ship})) >= 0) {
1279         $qty = $inv->{qty} if ($qty > ($inv->{qty} * $ml));
1280
1281         $form->update_balance($dbh, "inventory", "qty",
1282                               qq|$oid{$myconfig->{dbdriver}} = $inv->{oid}|,
1283                               $qty * -1 * $ml);
1284       }
1285     }
1286     $ith->finish;
1287
1288   }
1289   $sth->finish;
1290
1291   # delete inventory entries if qty = 0
1292   $query = qq|DELETE FROM inventory
1293               WHERE oe_id = $form->{id}
1294               AND qty = 0|;
1295   $dbh->do($query) || $form->dberror($query);
1296
1297   $main::lxdebug->leave_sub();
1298 }
1299
1300 sub get_inventory {
1301   $main::lxdebug->enter_sub();
1302
1303   my ($self, $myconfig, $form) = @_;
1304
1305   my ($null, $warehouse_id) = split /--/, $form->{warehouse};
1306   $warehouse_id *= 1;
1307
1308   my $dbh = $form->dbconnect($myconfig);
1309
1310   my $query = qq|SELECT p.id, p.partnumber, p.description, p.onhand,
1311                  pg.partsgroup
1312                  FROM parts p
1313                  LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1314                  WHERE p.onhand > 0|;
1315
1316   if ($form->{partnumber}) {
1317     $var = $form->like(lc $form->{partnumber});
1318     $query .= "
1319                  AND lower(p.partnumber) LIKE '$var'";
1320   }
1321   if ($form->{description}) {
1322     $var = $form->like(lc $form->{description});
1323     $query .= "
1324                  AND lower(p.description) LIKE '$var'";
1325   }
1326   if ($form->{partsgroup}) {
1327     $var = $form->like(lc $form->{partsgroup});
1328     $query .= "
1329                  AND lower(pg.partsgroup) LIKE '$var'";
1330   }
1331
1332   $sth = $dbh->prepare($query);
1333   $sth->execute || $form->dberror($query);
1334
1335   $query = qq|SELECT sum(i.qty), w.description, w.id
1336               FROM inventory i
1337               LEFT JOIN warehouse w ON (w.id = i.warehouse_id)
1338               WHERE i.parts_id = ?
1339               AND NOT i.warehouse_id = $warehouse_id
1340               GROUP BY w.description, w.id|;
1341   $wth = $dbh->prepare($query) || $form->dberror($query);
1342
1343   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1344
1345     $wth->execute($ref->{id}) || $form->dberror;
1346
1347     while (($qty, $warehouse, $warehouse_id) = $wth->fetchrow_array) {
1348       push @{ $form->{all_inventory} },
1349         { 'id'           => $ref->{id},
1350           'partnumber'   => $ref->{partnumber},
1351           'description'  => $ref->{description},
1352           'partsgroup'   => $ref->{partsgroup},
1353           'qty'          => $qty,
1354           'warehouse_id' => $warehouse_id,
1355           'warehouse'    => $warehouse }
1356         if $qty > 0;
1357     }
1358     $wth->finish;
1359   }
1360   $sth->finish;
1361
1362   $dbh->disconnect;
1363
1364   # sort inventory
1365   @{ $form->{all_inventory} } =
1366     sort { $a->{ $form->{sort} } cmp $b->{ $form->{sort} } }
1367     @{ $form->{all_inventory} };
1368
1369   $main::lxdebug->leave_sub();
1370
1371   return @{ $form->{all_inventory} };
1372 }
1373
1374 sub transfer {
1375   $main::lxdebug->enter_sub();
1376
1377   my ($self, $myconfig, $form) = @_;
1378
1379   my $dbh = $form->dbconnect_noauto($myconfig);
1380
1381   my $query = qq|INSERT INTO inventory
1382                  (warehouse_id, parts_id, qty, shippingdate, employee_id)
1383                  VALUES (?, ?, ?, ?, ?)|;
1384   $sth = $dbh->prepare($query) || $form->dberror($query);
1385
1386   $form->get_employee($dbh);
1387
1388   my @a = localtime;
1389   $a[5] += 1900;
1390   $a[4]++;
1391   $shippingdate = "$a[5]-$a[4]-$a[3]";
1392
1393   for my $i (1 .. $form->{rowcount}) {
1394     $qty = $form->parse_amount($myconfig, $form->{"transfer_$i"});
1395
1396     $qty = $form->{"qty_$i"} if ($qty > $form->{"qty_$i"});
1397
1398     if ($qty) {
1399
1400       # to warehouse
1401       $sth->execute($form->{warehouse_id}, $form->{"id_$i"}, $qty,
1402                     $shippingdate, $form->{employee_id})
1403         || $form->dberror;
1404
1405       $sth->finish;
1406
1407       # from warehouse
1408       $sth->execute($form->{"warehouse_id_$i"},
1409                     $form->{"id_$i"}, $qty * -1, $shippingdate,
1410                     $form->{employee_id})
1411         || $form->dberror;
1412
1413       $sth->finish;
1414     }
1415   }
1416
1417   my $rc = $dbh->commit;
1418   $dbh->disconnect;
1419
1420   $main::lxdebug->leave_sub();
1421
1422   return $rc;
1423 }
1424
1425 sub webdav_folder {
1426   $main::lxdebug->enter_sub();
1427
1428   my ($myconfig, $form) = @_;
1429
1430 SWITCH: {
1431     $path = "webdav/angebote/" . $form->{quonumber}, last SWITCH
1432       if ($form->{type} eq "sales_quotation");
1433     $path = "webdav/bestellungen/" . $form->{ordnumber}, last SWITCH
1434       if ($form->{type} eq "sales_order");
1435     $path = "webdav/anfragen/" . $form->{quonumber}, last SWITCH
1436       if ($form->{type} eq "request_quotation");
1437     $path = "webdav/lieferantenbestellungen/" . $form->{ordnumber}, last SWITCH
1438       if ($form->{type} eq "purchase_order");
1439   }
1440
1441   if (!-d $path) {
1442     mkdir($path, 0770) or die "can't make directory $!\n";
1443   } else {
1444     if ($form->{id}) {
1445       @files = <$path/*>;
1446       foreach $file (@files) {
1447         $file =~ /\/([^\/]*)$/;
1448         $fname = $1;
1449         $ENV{'SCRIPT_NAME'} =~ /\/([^\/]*)\//;
1450         $lxerp = $1;
1451         $link  = "http://" . $ENV{'SERVER_NAME'} . "/" . $lxerp . "/" . $file;
1452         $form->{WEBDAV}{$fname} = $link;
1453       }
1454     }
1455   }
1456
1457   $main::lxdebug->leave_sub();
1458 }
1459 1;
1460