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