Speichern und Anzeigen eines Verkäufers bei Verkaufsmasken.
[kivitendo-erp.git] / SL / OE.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1999-2003
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #======================================================================
30 #
31 # Order entry module
32 # Quotation
33 #======================================================================
34
35 package OE;
36
37 use SL::AM;
38 use SL::Common;
39 use SL::DBUtils;
40
41 sub transactions {
42   $main::lxdebug->enter_sub();
43
44   my ($self, $myconfig, $form) = @_;
45
46   # connect to database
47   my $dbh = $form->dbconnect($myconfig);
48
49   my $query;
50   my $ordnumber = 'ordnumber';
51   my $quotation = '0';
52   my ($null, $department_id) = split /--/, $form->{department};
53
54   my $department = " AND o.department_id = $department_id" if $department_id;
55   my @values;
56
57   if ($form->{"project_id"}) {
58     $department .=
59       qq|AND ((globalproject_id = ?) OR EXISTS | .
60       qq|  (SELECT * FROM orderitems oi | .
61       qq|   WHERE oi.project_id = ? AND oi.trans_id = o.id))|;
62     push(@values, $form->{"project_id"}, $form->{"project_id"});
63   }
64
65   my $rate = ($form->{vc} eq 'customer') ? 'buy' : 'sell';
66
67   if ($form->{type} =~ /_quotation$/) {
68     $quotation = '1';
69     $ordnumber = 'quonumber';
70   }
71
72   my $number = $form->like(lc $form->{$ordnumber});
73   my $name   = $form->like(lc $form->{ $form->{vc} });
74
75   my $query = qq|SELECT o.id, o.ordnumber, o.transdate, o.reqdate,
76                  o.amount, ct.name, o.netamount, o.$form->{vc}_id,
77                  o.globalproject_id, pr.projectnumber AS globalprojectnumber,
78                  ex.$rate AS exchangerate,
79                  o.closed, o.delivered, o.quonumber, o.shippingpoint, o.shipvia,
80                  e.name AS employee
81                  FROM oe o
82                  JOIN $form->{vc} ct ON (o.$form->{vc}_id = ct.id)
83                  LEFT JOIN employee e ON (o.employee_id = e.id)
84                  LEFT JOIN exchangerate ex ON (ex.curr = o.curr
85                                                AND ex.transdate = o.transdate)
86                  LEFT JOIN project pr ON o.globalproject_id = pr.id
87                  WHERE o.quotation = '$quotation'
88                  $department|;
89
90   if ($form->{"$form->{vc}_id"}) {
91     $query .= qq| AND o.$form->{vc}_id = $form->{"$form->{vc}_id"}|;
92   } else {
93     if ($form->{ $form->{vc} }) {
94       $query .= " AND lower(ct.name) LIKE '$name'";
95     }
96   }
97   if (!$form->{open} && !$form->{closed}) {
98     $query .= " AND o.id = 0";
99   } elsif (!($form->{open} && $form->{closed})) {
100     $query .= ($form->{open}) ? " AND o.closed = '0'" : " AND o.closed = '1'";
101   }
102
103   if (($form->{"notdelivered"} || $form->{"delivered"}) &&
104       ($form->{"notdelivered"} ne $form->{"delivered"})) {
105     $query .= $form->{"delivered"} ?
106       " AND o.delivered " : " AND NOT o.delivered";
107   }
108
109   my $sortorder = join ', ',
110     ("o.id", $form->sort_columns(transdate, $ordnumber, name));
111   $sortorder = $form->{sort} if $form->{sort};
112
113   $query .= " AND lower($ordnumber) LIKE '$number'" if $form->{$ordnumber};
114   $query .= " AND o.transdate >= '$form->{transdatefrom}'"
115     if $form->{transdatefrom};
116   $query .= " AND o.transdate <= '$form->{transdateto}'"
117     if $form->{transdateto};
118   $query .= " ORDER by $sortorder";
119
120   my $sth = $dbh->prepare($query);
121   $sth->execute(@values) ||
122     $form->dberror($query . " (" . join(", ", @values) . ")");
123
124   my %id = ();
125   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
126     $ref->{exchangerate} = 1 unless $ref->{exchangerate};
127     push @{ $form->{OE} }, $ref if $ref->{id} != $id{ $ref->{id} };
128     $id{ $ref->{id} } = $ref->{id};
129   }
130
131   $sth->finish;
132   $dbh->disconnect;
133
134   $main::lxdebug->leave_sub();
135 }
136
137 sub save {
138   $main::lxdebug->enter_sub();
139
140   my ($self, $myconfig, $form) = @_;
141
142   # connect to database, turn off autocommit
143   my $dbh = $form->dbconnect_noauto($myconfig);
144
145   my ($query, $sth, $null);
146   my $exchangerate = 0;
147
148   my $service_units = AM->retrieve_units($myconfig,$form,"service");
149   my $part_units = AM->retrieve_units($myconfig,$form,"dimension");
150   $form->{service_units} =$service_units;
151   $form->{part_units} =$part_units;
152
153   ($null, $form->{employee_id}) = split /--/, $form->{employee};
154   unless ($form->{employee_id}) {
155     $form->get_employee($dbh);
156   }
157
158   $form->{payment_id} *= 1;
159   $form->{language_id} *= 1;
160   $form->{shipto_id} *= 1;
161   $form->{delivery_customer_id} *= 1;
162   $form->{delivery_vendor_id} *= 1;
163
164   my $ml = ($form->{type} eq 'sales_order') ? 1 : -1;
165
166   if ($form->{id}) {
167
168     &adj_onhand($dbh, $form, $ml) if $form->{type} =~ /_order$/;
169
170     $query = qq|DELETE FROM orderitems
171                 WHERE trans_id = $form->{id}|;
172     $dbh->do($query) || $form->dberror($query);
173
174     $query = qq|DELETE FROM shipto
175                 WHERE trans_id = $form->{id} AND module = 'OE'|;
176     $dbh->do($query) || $form->dberror($query);
177
178   } else {
179
180     my $uid = rand() . time;
181
182     $uid .= $form->{login};
183
184     $uid = substr($uid, 2, 75);
185
186     $query = qq|INSERT INTO oe (ordnumber, employee_id)
187                 VALUES ('$uid', $form->{employee_id})|;
188     $dbh->do($query) || $form->dberror($query);
189
190     $query = qq|SELECT o.id FROM oe o
191                 WHERE o.ordnumber = '$uid'|;
192     $sth = $dbh->prepare($query);
193     $sth->execute || $form->dberror($query);
194
195     ($form->{id}) = $sth->fetchrow_array;
196     $sth->finish;
197   }
198
199   map { $form->{$_} =~ s/\'/\'\'/g }
200     qw(ordnumber quonumber shippingpoint shipvia notes intnotes message);
201
202   my $amount;
203   my $linetotal;
204   my $discount;
205   my $project_id;
206   my $reqdate;
207   my $taxrate;
208   my $taxamount;
209   my $fxsellprice;
210   my %taxbase;
211   my @taxaccounts;
212   my %taxaccounts;
213   my $netamount = 0;
214
215   for my $i (1 .. $form->{rowcount}) {
216
217     map {
218       $form->{"${_}_$i"} =
219         $form->parse_amount($myconfig, $form->{"${_}_$i"})
220     } qw(qty ship);
221
222     if ($form->{"id_$i"}) {
223
224       # get item baseunit
225       $query = qq|SELECT p.unit
226                   FROM parts p
227                   WHERE p.id = $form->{"id_$i"}|;
228       $sth = $dbh->prepare($query);
229       $sth->execute || $form->dberror($query);
230
231       my ($item_unit) = $sth->fetchrow_array();
232       $sth->finish;
233
234       if ($form->{"inventory_accno_$i"}) {
235         if (defined($part_units->{$item_unit}->{factor}) && $part_units->{$item_unit}->{factor} ne '' && $part_units->{$item_unit}->{factor} ne '0') {
236           $basefactor = $part_units->{$form->{"unit_$i"}}->{factor} / $part_units->{$item_unit}->{factor};
237         } else {
238           $basefactor = 1;
239         }
240         $baseqty = $form->{"qty_$i"} * $basefactor;
241       } else {
242         if (defined($service_units->{$item_unit}->{factor}) && $service_units->{$item_unit}->{factor} ne '' && $service_units->{$item_unit}->{factor} ne '0') {
243           $basefactor = $service_units->{$form->{"unit_$i"}}->{factor} / $service_units->{$item_unit}->{factor};
244         } else {
245           $basefactor = 1;
246         }
247         $baseqty = $form->{"qty_$i"} * $basefactor;
248       }
249
250       map { $form->{"${_}_$i"} =~ s/\'/\'\'/g }
251         qw(partnumber description unit);
252
253       # set values to 0 if nothing entered
254       $form->{"discount_$i"} =
255         $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
256
257       $form->{"sellprice_$i"} =
258         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
259       $fxsellprice = $form->{"sellprice_$i"};
260
261       my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
262       $dec = length $dec;
263       my $decimalplaces = ($dec > 2) ? $dec : 2;
264
265       $discount =
266         $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"},
267                             $decimalplaces);
268       $form->{"sellprice_$i"} =
269         $form->round_amount($form->{"sellprice_$i"} - $discount,
270                             $decimalplaces);
271
272       $form->{"inventory_accno_$i"} *= 1;
273       $form->{"expense_accno_$i"}   *= 1;
274
275       $linetotal =
276         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
277
278       @taxaccounts = split / /, $form->{"taxaccounts_$i"};
279       $taxrate     = 0;
280       $taxdiff     = 0;
281
282       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
283
284       if ($form->{taxincluded}) {
285         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
286         $taxbase   = $linetotal - $taxamount;
287
288         # we are not keeping a natural price, do not round
289         $form->{"sellprice_$i"} =
290           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
291       } else {
292         $taxamount = $linetotal * $taxrate;
293         $taxbase   = $linetotal;
294       }
295
296       if ($form->round_amount($taxrate, 7) == 0) {
297         if ($form->{taxincluded}) {
298           foreach $item (@taxaccounts) {
299             $taxamount =
300               $form->round_amount($linetotal * $form->{"${item}_rate"} /
301                                     (1 + abs($form->{"${item}_rate"})),
302                                   2);
303
304             $taxaccounts{$item} += $taxamount;
305             $taxdiff            += $taxamount;
306
307             $taxbase{$item} += $taxbase;
308           }
309           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
310         } else {
311           foreach $item (@taxaccounts) {
312             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
313             $taxbase{$item}     += $taxbase;
314           }
315         }
316       } else {
317         foreach $item (@taxaccounts) {
318           $taxaccounts{$item} +=
319             $taxamount * $form->{"${item}_rate"} / $taxrate;
320           $taxbase{$item} += $taxbase;
321         }
322       }
323
324       $netamount += $form->{"sellprice_$i"} * $form->{"qty_$i"};
325
326       $reqdate =
327         ($form->{"reqdate_$i"}) ? qq|'$form->{"reqdate_$i"}'| : "NULL";
328
329       # get pricegroup_id and save ist
330       ($null, my $pricegroup_id) = split /--/, $form->{"sellprice_pg_$i"};
331       $pricegroup_id *= 1;
332       $subtotal = $form->{"subtotal_$i"} * 1;
333
334       # save detail record in orderitems table
335       $query = qq|INSERT INTO orderitems (|;
336       $query .= "id, " if $form->{"orderitems_id_$i"};
337       $query .= qq|trans_id, parts_id, description, longdescription, qty, base_qty, sellprice, discount,
338                    unit, reqdate, project_id, serialnumber, ship, pricegroup_id,
339                    ordnumber, transdate, cusordnumber, subtotal)
340                    VALUES (|;
341       $query .= qq|$form->{"orderitems_id_$i"},|
342         if $form->{"orderitems_id_$i"};
343       $query .= qq|$form->{id}, $form->{"id_$i"},
344                    '$form->{"description_$i"}', '$form->{"longdescription_$i"}', $form->{"qty_$i"}, $baseqty,
345                    $fxsellprice, $form->{"discount_$i"},
346                    '$form->{"unit_$i"}', $reqdate, | . conv_i($form->{"project_id_$i"}, 'NULL') . qq|,
347                    '$form->{"serialnumber_$i"}', $form->{"ship_$i"}, '$pricegroup_id',
348                    '$form->{"ordnumber_$i"}', '$form->{"transdate_$i"}', '$form->{"cusordnumber_$i"}', '$subtotal')|;
349       $dbh->do($query) || $form->dberror($query);
350
351       $form->{"sellprice_$i"} = $fxsellprice;
352       $form->{"discount_$i"} *= 100;
353     }
354   }
355
356   # set values which could be empty
357   map { $form->{$_} *= 1 }
358     qw(vendor_id customer_id taxincluded closed quotation);
359
360   $reqdate = ($form->{reqdate}) ? qq|'$form->{reqdate}'| : "NULL";
361
362   # add up the tax
363   my $tax = 0;
364   map { $tax += $form->round_amount($taxaccounts{$_}, 2) } keys %taxaccounts;
365
366   $amount = $form->round_amount($netamount + $tax, 2);
367   $netamount = $form->round_amount($netamount, 2);
368
369   if ($form->{currency} eq $form->{defaultcurrency}) {
370     $form->{exchangerate} = 1;
371   } else {
372     $exchangerate =
373       $form->check_exchangerate($myconfig,
374                                 $form->{currency},
375                                 $form->{transdate},
376                                 ($form->{vc} eq 'customer') ? 'buy' : 'sell');
377   }
378
379   $form->{exchangerate} =
380     ($exchangerate)
381     ? $exchangerate
382     : $form->parse_amount($myconfig, $form->{exchangerate});
383
384   my $quotation;
385
386   # fill in subject if there is none
387   if ($form->{type} =~ /_order$/) {
388     $quotation = '0';
389     $form->{subject} = qq|$form->{label} $form->{ordnumber}|
390       unless $form->{subject};
391   } else {
392     $quotation = '1';
393     $form->{subject} = qq|$form->{label} $form->{quonumber}|
394       unless $form->{subject};
395   }
396
397   # if there is a message stuff it into the intnotes
398   my $cc  = "Cc: $form->{cc}\\r\n"   if $form->{cc};
399   my $bcc = "Bcc: $form->{bcc}\\r\n" if $form->{bcc};
400   my $now = scalar localtime;
401   $form->{intnotes} .= qq|\r
402 \r| if $form->{intnotes};
403
404   $form->{intnotes} .= qq|[email]\r
405 Date: $now
406 To: $form->{email}\r
407 $cc${bcc}Subject: $form->{subject}\r
408 \r
409 Message: $form->{message}\r| if $form->{message};
410
411   ($null, $form->{department_id}) = split(/--/, $form->{department});
412   $form->{department_id} *= 1;
413   $form->{payment_id} *= 1;
414   $form->{language_id} *= 1;
415   $form->{taxzone_id} *= 1;
416   $form->{proforma} *= 1;
417
418
419
420   # save OE record
421   $query = qq|UPDATE oe set
422               ordnumber = '$form->{ordnumber}',
423               quonumber = '$form->{quonumber}',
424               cusordnumber = '$form->{cusordnumber}',
425               transdate = '$form->{transdate}',
426               vendor_id = $form->{vendor_id},
427               customer_id = $form->{customer_id},
428               amount = $amount,
429               netamount = $netamount,
430               reqdate = $reqdate,
431               taxincluded = '$form->{taxincluded}',
432               shippingpoint = '$form->{shippingpoint}',
433               shipvia = '$form->{shipvia}',
434               notes = '$form->{notes}',
435               intnotes = '$form->{intnotes}',
436               curr = '$form->{currency}',
437               closed = '$form->{closed}',
438               delivered = '| . ($form->{delivered} ? "t" : "f") . qq|',
439               proforma = '$form->{proforma}',
440               quotation = '$quotation',
441               department_id = $form->{department_id},
442               language_id = $form->{language_id},
443               taxzone_id = $form->{taxzone_id},
444               shipto_id = $form->{shipto_id},
445               payment_id = $form->{payment_id},
446               delivery_vendor_id = $form->{delivery_vendor_id},
447               delivery_customer_id = $form->{delivery_customer_id},
448               globalproject_id = | . conv_i($form->{"globalproject_id"}, 'NULL') . qq|,
449               employee_id = $form->{employee_id},
450               salesman_id = | . conv_i($form->{salesman_id}, 'NULL') . qq|,
451               cp_id = | . conv_i($form->{cp_id}, 'NULL') . qq|
452               WHERE id = $form->{id}|;
453   $dbh->do($query) || $form->dberror($query);
454
455   $form->{ordtotal} = $amount;
456
457   # add shipto
458   $form->{name} = $form->{ $form->{vc} };
459   $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
460
461   if (!$form->{shipto_id}) {
462     $form->add_shipto($dbh, $form->{id}, "OE");
463   }
464
465   # save printed, emailed, queued
466   $form->save_status($dbh);
467
468   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
469     if ($form->{vc} eq 'customer') {
470       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
471                                  $form->{exchangerate}, 0);
472     }
473     if ($form->{vc} eq 'vendor') {
474       $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate},
475                                  0, $form->{exchangerate});
476     }
477   }
478
479   if ($form->{type} =~ /_order$/) {
480
481     # adjust onhand
482     &adj_onhand($dbh, $form, $ml * -1);
483   }
484
485   my $rc = $dbh->commit;
486   $dbh->disconnect;
487
488   $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
489                                        "quonumber" : "ordnumber"};
490
491   Common::webdav_folder($form) if ($main::webdav);
492
493   $main::lxdebug->leave_sub();
494
495   return $rc;
496 }
497
498 # this function closes multiple orders given in $form->{ordnumber_#}.
499 # use this for multiple orders that don't have to be saved back
500 # single orders should use OE::save instead.
501 sub close_orders {
502   $main::lxdebug->enter_sub();
503
504   my ($self, $myconfig, $form) = @_;
505
506   # get ids from $form
507   map { push @ids, $form->{"ordnumber_$_"} if $form->{"ordnumber_$_"} }
508     (1 .. $form->{rowcount});
509
510   my $dbh = $form->dbconnect($myconfig);
511   $query = qq|UPDATE oe SET
512               closed = TRUE
513               WHERE ordnumber IN (|
514     . join(', ', map { $dbh->quote($_) } @ids) . qq|)|;
515   $dbh->do($query) || $form->dberror($query);
516   $dbh->disconnect;
517
518   $main::lxdebug->leave_sub();
519 }
520
521 sub close_order {
522   $main::lxdebug->enter_sub();
523
524   my ($self, $myconfig, $form) = @_;
525
526   $main::lxdebug->leave_sub() unless ($form->{"id"});
527
528   my $dbh = $form->dbconnect($myconfig);
529   do_query($form, $dbh, qq|UPDATE oe SET closed = TRUE where id = ?|,
530            $form->{"id"});
531   $dbh->disconnect;
532
533   $main::lxdebug->leave_sub();
534 }
535
536 sub delete {
537   $main::lxdebug->enter_sub();
538
539   my ($self, $myconfig, $form, $spool) = @_;
540
541   # connect to database
542   my $dbh = $form->dbconnect_noauto($myconfig);
543
544   # delete spool files
545   my $query = qq|SELECT s.spoolfile FROM status s
546                  WHERE s.trans_id = $form->{id}|;
547   $sth = $dbh->prepare($query);
548   $sth->execute || $self->dberror($query);
549
550   my $spoolfile;
551   my @spoolfiles = ();
552
553   while (($spoolfile) = $sth->fetchrow_array) {
554     push @spoolfiles, $spoolfile;
555   }
556   $sth->finish;
557
558   $query = qq|SELECT o.parts_id, o.ship FROM orderitems o
559               WHERE o.trans_id = $form->{id}|;
560   $sth = $dbh->prepare($query);
561   $sth->execute || $self->dberror($query);
562
563   while (my ($id, $ship) = $sth->fetchrow_array) {
564     $form->update_balance($dbh, "parts", "onhand", qq|id = $id|, $ship * -1);
565   }
566   $sth->finish;
567
568   # delete inventory
569   $query = qq|DELETE FROM inventory
570               WHERE oe_id = $form->{id}|;
571   $dbh->do($query) || $form->dberror($query);
572
573   # delete status entries
574   $query = qq|DELETE FROM status
575               WHERE trans_id = $form->{id}|;
576   $dbh->do($query) || $form->dberror($query);
577
578   # delete OE record
579   $query = qq|DELETE FROM oe
580               WHERE id = $form->{id}|;
581   $dbh->do($query) || $form->dberror($query);
582
583   # delete individual entries
584   $query = qq|DELETE FROM orderitems
585               WHERE trans_id = $form->{id}|;
586   $dbh->do($query) || $form->dberror($query);
587
588   $query = qq|DELETE FROM shipto
589               WHERE trans_id = $form->{id} AND module = 'OE'|;
590   $dbh->do($query) || $form->dberror($query);
591
592   my $rc = $dbh->commit;
593   $dbh->disconnect;
594
595   if ($rc) {
596     foreach $spoolfile (@spoolfiles) {
597       unlink "$spool/$spoolfile" if $spoolfile;
598     }
599   }
600
601   $main::lxdebug->leave_sub();
602
603   return $rc;
604 }
605
606 sub retrieve {
607   $main::lxdebug->enter_sub();
608
609   my ($self, $myconfig, $form) = @_;
610
611   # connect to database
612   my $dbh = $form->dbconnect_noauto($myconfig);
613
614   my $query, @ids;
615
616   # translate the ids (given by id_# and trans_id_#) into one array of ids, so we can join them later
617   map {
618     push @ids, $form->{"trans_id_$_"}
619       if ($form->{"id_$_"} and $form->{"trans_id_$_"})
620   } (1 .. $form->{"rowcount"});
621
622   # if called in multi id mode, and still only got one id, switch back to single id
623   if ($form->{"rowcount"} and $#ids == 0) {
624     $form->{"id"} = $ids[0];
625     undef @ids;
626   }
627
628   if ($form->{id}) {
629
630     # get default accounts and last order number
631     $query = qq|SELECT (SELECT c.accno FROM chart c
632                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
633                        (SELECT c.accno FROM chart c
634                         WHERE d.income_accno_id = c.id) AS income_accno,
635                        (SELECT c.accno FROM chart c
636                         WHERE d.expense_accno_id = c.id) AS expense_accno,
637                        (SELECT c.accno FROM chart c
638                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
639                        (SELECT c.accno FROM chart c
640                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
641                 d.curr AS currencies
642                 FROM defaults d|;
643   } else {
644     $query = qq|SELECT (SELECT c.accno FROM chart c
645                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
646                        (SELECT c.accno FROM chart c
647                         WHERE d.income_accno_id = c.id) AS income_accno,
648                        (SELECT c.accno FROM chart c
649                         WHERE d.expense_accno_id = c.id) AS expense_accno,
650                        (SELECT c.accno FROM chart c
651                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
652                        (SELECT c.accno FROM chart c
653                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
654                 d.curr AS currencies,
655                 current_date AS transdate, current_date AS reqdate
656                 FROM defaults d|;
657   }
658   my $sth = $dbh->prepare($query);
659   $sth->execute || $form->dberror($query);
660
661   my $ref = $sth->fetchrow_hashref(NAME_lc);
662   map { $form->{$_} = $ref->{$_} } keys %$ref;
663   $sth->finish;
664
665   ($form->{currency}) = split /:/, $form->{currencies};
666
667   # set reqdate if this is an invoice->order conversion. If someone knows a better check to ensure
668   # we come from invoices, feel free.
669   $form->{reqdate} = $form->{deliverydate}
670     if (    $form->{deliverydate}
671         and $form->{callback} =~ /action=ar_transactions/);
672
673   if ($form->{id} or @ids) {
674
675     # retrieve order for single id
676     # NOTE: this query is intended to fetch all information only ONCE.
677     # so if any of these infos is important (or even different) for any item,
678     # it will be killed out and then has to be fetched from the item scope query further down
679     $query = qq|SELECT o.cp_id, o.ordnumber, o.transdate, o.reqdate,
680                 o.taxincluded, o.shippingpoint, o.shipvia, o.notes, o.intnotes,
681                 o.curr AS currency, e.name AS employee, o.employee_id, o.salesman_id,
682                 o.$form->{vc}_id, cv.name AS $form->{vc}, o.amount AS invtotal,
683                 o.closed, o.reqdate, o.quonumber, o.department_id, o.cusordnumber,
684                 d.description AS department, o.payment_id, o.language_id, o.taxzone_id,
685                 o.delivery_customer_id, o.delivery_vendor_id, o.proforma, o.shipto_id,
686                 o.globalproject_id,
687                 o.delivered
688                 FROM oe o
689                 JOIN $form->{vc} cv ON (o.$form->{vc}_id = cv.id)
690                 LEFT JOIN employee e ON (o.employee_id = e.id)
691                 LEFT JOIN department d ON (o.department_id = d.id)
692                 |
693       . ($form->{id}
694          ? qq|WHERE o.id = $form->{id}|
695          : qq|WHERE o.id IN (| . join(', ', @ids) . qq|)|);
696
697     #$main::lxdebug->message(0, $query);
698
699     $sth = $dbh->prepare($query);
700     $sth->execute || $form->dberror($query);
701
702     $ref = $sth->fetchrow_hashref(NAME_lc);
703     map { $form->{$_} = $ref->{$_} } keys %$ref;
704
705     $form->{saved_xyznumber} = $form->{$form->{type} =~ /_quotation$/ ?
706                                          "quonumber" : "ordnumber"};
707
708     # set all entries for multiple ids blank that yield different information
709     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
710       map { $form->{$_} = '' if ($ref->{$_} ne $form->{$_}) } keys %$ref;
711     }
712
713     # if not given, fill transdate with current_date
714     $form->{transdate} = $form->current_date($myconfig)
715       unless $form->{transdate};
716
717     $sth->finish;
718
719     if ($form->{delivery_customer_id}) {
720       $query = qq|SELECT name FROM customer WHERE id=$form->{delivery_customer_id}|;
721       $sth = $dbh->prepare($query);
722       $sth->execute || $form->dberror($query);
723       ($form->{delivery_customer_string}) = $sth->fetchrow_array();
724       $sth->finish;
725     }
726
727     if ($form->{delivery_vendor_id}) {
728       $query = qq|SELECT name FROM customer WHERE id=$form->{delivery_vendor_id}|;
729       $sth = $dbh->prepare($query);
730       $sth->execute || $form->dberror($query);
731       ($form->{delivery_vendor_string}) = $sth->fetchrow_array();
732       $sth->finish;
733     }
734
735     # shipto and pinted/mailed/queued status makes only sense for single id retrieve
736     if (!@ids) {
737       $query = qq|SELECT s.* FROM shipto s
738                   WHERE s.trans_id = $form->{id} AND s.module = 'OE'|;
739       $sth = $dbh->prepare($query);
740       $sth->execute || $form->dberror($query);
741
742       $ref = $sth->fetchrow_hashref(NAME_lc);
743       delete($ref->{id});
744       map { $form->{$_} = $ref->{$_} } keys %$ref;
745       $sth->finish;
746
747       # get printed, emailed and queued
748       $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname
749                   FROM status s
750                   WHERE s.trans_id = $form->{id}|;
751       $sth = $dbh->prepare($query);
752       $sth->execute || $form->dberror($query);
753
754       while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
755         $form->{printed} .= "$ref->{formname} " if $ref->{printed};
756         $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
757         $form->{queued} .= "$ref->{formname} $ref->{spoolfile} "
758           if $ref->{spoolfile};
759       }
760       $sth->finish;
761       map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
762     }    # if !@ids
763
764     my %oid = ('Pg'     => 'oid',
765                'Oracle' => 'rowid');
766
767     my $transdate =
768       $form->{transdate} ? $dbh->quote($form->{transdate}) : "current_date";
769
770     if(!$form->{taxzone_id}) {
771       $form->{taxzone_id} = 0;
772     }
773     # retrieve individual items
774     # this query looks up all information about the items
775     # stuff different from the whole will not be overwritten, but saved with a suffix.
776     $query = qq|SELECT o.id AS orderitems_id,
777                 c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid,
778                 c2.accno AS income_accno, c2.new_chart_id AS income_new_chart, date($transdate)  - c2.valid_from as income_valid,
779                 c3.accno AS expense_accno, c3.new_chart_id AS expense_new_chart, date($transdate) - c3.valid_from as expense_valid,
780                 oe.ordnumber AS ordnumber_oe, oe.transdate AS transdate_oe, oe.cusordnumber AS cusordnumber_oe, 
781                 p.partnumber, p.assembly, o.description, o.qty,
782                 o.sellprice, o.parts_id AS id, o.unit, o.discount, p.bin, p.notes AS partnotes, p.inventory_accno_id AS part_inventory_accno_id,
783                 o.reqdate, o.project_id, o.serialnumber, o.ship,
784                 o.ordnumber, o.transdate, o.cusordnumber, o.subtotal, o.longdescription,
785                 pr.projectnumber, p.formel,
786                 pg.partsgroup, o.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=o.pricegroup_id) as pricegroup
787                 FROM orderitems o
788                 JOIN parts p ON (o.parts_id = p.id)
789                 JOIN oe ON (o.trans_id = oe.id)
790                 LEFT JOIN chart c1 ON ((select inventory_accno_id from buchungsgruppen where id=p.buchungsgruppen_id) = c1.id)
791                 LEFT JOIN chart c2 ON ((select income_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c2.id)
792                 LEFT JOIN chart c3 ON ((select expense_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c3.id)
793                 LEFT JOIN project pr ON (o.project_id = pr.id)
794                 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
795                 |
796       . ($form->{id}
797          ? qq|WHERE o.trans_id = $form->{id}|
798          : qq|WHERE o.trans_id IN (| . join(", ", @ids) . qq|)|)
799       . qq|
800                 ORDER BY o.$oid{$myconfig->{dbdriver}}|;
801
802     $sth = $dbh->prepare($query);
803     $sth->execute || $form->dberror($query);
804
805     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
806       if (!$ref->{"part_inventory_accno_id"}) {
807         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
808       }
809       delete($ref->{"part_inventory_accno_id"});
810
811       # in collective order, copy global ordnumber, transdate, cusordnumber into item scope
812       #   unless already present there
813       # remove _oe entries afterwards
814       map { $ref->{$_} = $ref->{"${_}_oe"} if ($ref->{$_} eq '') }
815         qw|ordnumber transdate cusordnumber|
816         if (@ids);
817       map { delete $ref->{$_} } qw|ordnumber_oe transdate_oe cusordnumber_oe|;
818
819
820
821     while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >=0)) {
822       my $query = qq| SELECT accno AS inventory_accno, new_chart_id AS inventory_new_chart, date($transdate) - valid_from AS inventory_valid FROM chart WHERE id = $ref->{inventory_new_chart}|;
823       my $stw = $dbh->prepare($query);
824       $stw->execute || $form->dberror($query);
825       ($ref->{inventory_accno}, $ref->{inventory_new_chart}, $ref->{inventory_valid}) = $stw->fetchrow_array;
826       $stw->finish;
827     }
828
829     while ($ref->{income_new_chart} && ($ref->{income_valid} >=0)) {
830       my $query = qq| SELECT accno AS income_accno, new_chart_id AS income_new_chart, date($transdate) - valid_from AS income_valid FROM chart WHERE id = $ref->{income_new_chart}|;
831       my $stw = $dbh->prepare($query);
832       $stw->execute || $form->dberror($query);
833       ($ref->{income_accno}, $ref->{income_new_chart}, $ref->{income_valid}) = $stw->fetchrow_array;
834       $stw->finish;
835     }
836
837     while ($ref->{expense_new_chart} && ($ref->{expense_valid} >=0)) {
838       my $query = qq| SELECT accno AS expense_accno, new_chart_id AS expense_new_chart, date($transdate) - valid_from AS expense_valid FROM chart WHERE id = $ref->{expense_new_chart}|;
839       my $stw = $dbh->prepare($query);
840       $stw->execute || $form->dberror($query);
841       ($ref->{expense_accno}, $ref->{expense_new_chart}, $ref->{expense_valid}) = $stw->fetchrow_array;
842       $stw->finish;
843     }
844
845       # delete orderitems_id in collective orders, so that they get cloned no matter what
846       delete $ref->{orderitems_id} if (@ids);
847
848       # get tax rates and description
849       $accno_id =
850         ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
851       $query = qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
852               FROM tax t LEFT JOIN chart c on (c.id=t.chart_id)
853               WHERE t.id in (SELECT tk.tax_id from taxkeys tk where tk.chart_id = (SELECT id from chart WHERE accno='$accno_id') AND startdate<=$transdate ORDER BY startdate desc LIMIT 1)
854               ORDER BY c.accno|;
855       $stw = $dbh->prepare($query);
856       $stw->execute || $form->dberror($query);
857       $ref->{taxaccounts} = "";
858       my $i = 0;
859       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
860
861         #    if ($customertax{$ref->{accno}}) {
862         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
863           $i++;
864           $ptr->{accno} = $i;
865         }
866         $ref->{taxaccounts} .= "$ptr->{accno} ";
867         if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
868           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
869           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
870           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
871           $form->{taxaccounts} .= "$ptr->{accno} ";
872         }
873
874       }
875
876       chop $ref->{taxaccounts};
877       push @{ $form->{form_details} }, $ref;
878       $stw->finish;
879     }
880     $sth->finish;
881
882   } else {
883
884     # get last name used
885     $form->lastname_used($dbh, $myconfig, $form->{vc})
886       unless $form->{"$form->{vc}_id"};
887
888   }
889
890   $form->{exchangerate} =
891     $form->get_exchangerate($dbh, $form->{currency}, $form->{transdate},
892                             ($form->{vc} eq 'customer') ? "buy" : "sell");
893
894   Common::webdav_folder($form) if ($main::webdav);
895
896   # get tax zones
897   $query = qq|SELECT id, description
898               FROM tax_zones|;
899   $sth = $dbh->prepare($query);
900   $sth->execute || $form->dberror($query);
901
902
903   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
904     push @{ $form->{TAXZONE} }, $ref;
905   }
906   $sth->finish;
907
908
909   my $rc = $dbh->commit;
910   $dbh->disconnect;
911
912   $main::lxdebug->leave_sub();
913
914   return $rc;
915 }
916
917 sub order_details {
918   $main::lxdebug->enter_sub();
919
920   my ($self, $myconfig, $form) = @_;
921
922   # connect to database
923   my $dbh = $form->dbconnect($myconfig);
924   my $query;
925   my $sth;
926   my $nodiscount;
927   my $yesdiscount;
928   my $nodiscount_subtotal = 0;
929   my $discount_subtotal = 0;
930   my $item;
931   my $i;
932   my @partsgroup = ();
933   my $partsgroup;
934   my $position = 0;
935   my $subtotal_header = 0;
936   my $subposition = 0;
937
938   my %oid = ('Pg'     => 'oid',
939              'Oracle' => 'rowid');
940
941   my (@project_ids, %projectnumbers);
942
943   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
944
945   # sort items by partsgroup
946   for $i (1 .. $form->{rowcount}) {
947     $partsgroup = "";
948     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
949       $partsgroup = $form->{"partsgroup_$i"};
950     }
951     push @partsgroup, [$i, $partsgroup];
952     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
953   }
954
955   if (@project_ids) {
956     $query = "SELECT id, projectnumber FROM project WHERE id IN (" .
957       join(", ", map({ "?" } @project_ids)) . ")";
958     $sth = $dbh->prepare($query);
959     $sth->execute(@project_ids) ||
960       $form->dberror($query . " (" . join(", ", @project_ids) . ")");
961     while (my $ref = $sth->fetchrow_hashref()) {
962       $projectnumbers{$ref->{id}} = $ref->{projectnumber};
963     }
964     $sth->finish();
965   }
966
967   $form->{"globalprojectnumber"} =
968     $projectnumbers{$form->{"globalproject_id"}};
969
970   my @arrays =
971     qw(runningnumber number description longdescription qty ship unit bin
972        partnotes serialnumber reqdate sellprice listprice netprice
973        discount p_discount discount_sub nodiscount_sub
974        linetotal  nodiscount_linetotal tax_rate projectnumber);
975
976   my $sameitem = "";
977   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
978     $i = $item->[0];
979
980     if ($item->[1] ne $sameitem) {
981       push(@{ $form->{description} }, qq|$item->[1]|);
982       $sameitem = $item->[1];
983
984       map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
985     }
986
987     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
988
989     if ($form->{"id_$i"} != 0) {
990
991       # add number, description and qty to $form->{number}, ....
992
993       if ($form->{"subtotal_$i"} && !$subtotal_header) {
994         $subtotal_header = $i;
995         $position = int($position);
996         $subposition = 0;
997         $position++;
998       } elsif ($subtotal_header) {
999         $subposition += 1;
1000         $position = int($position);
1001         $position = $position.".".$subposition;
1002       } else {
1003         $position = int($position);
1004         $position++;
1005       }
1006
1007       push(@{ $form->{runningnumber} }, $i);
1008       push(@{ $form->{number} },        qq|$form->{"partnumber_$i"}|);
1009       push(@{ $form->{description} },   qq|$form->{"description_$i"}|);
1010       push(@{ $form->{longdescription} },   qq|$form->{"longdescription_$i"}|);
1011       push(@{ $form->{qty} },
1012            $form->format_amount($myconfig, $form->{"qty_$i"}));
1013       push(@{ $form->{ship} },
1014            $form->format_amount($myconfig, $form->{"ship_$i"}));
1015       push(@{ $form->{unit} },         qq|$form->{"unit_$i"}|);
1016       push(@{ $form->{bin} },          qq|$form->{"bin_$i"}|);
1017       push(@{ $form->{"partnotes"} },  qq|$form->{"partnotes_$i"}|);
1018       push(@{ $form->{serialnumber} }, qq|$form->{"serialnumber_$i"}|);
1019       push(@{ $form->{reqdate} },      qq|$form->{"reqdate_$i"}|);
1020
1021       push(@{ $form->{sellprice} }, $form->{"sellprice_$i"});
1022
1023       push(@{ $form->{listprice} }, $form->{"listprice_$i"});
1024
1025       my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
1026       my ($dec) = ($sellprice =~ /\.(\d+)/);
1027       $dec = length $dec;
1028       my $decimalplaces = ($dec > 2) ? $dec : 2;
1029
1030       my $i_discount =
1031         $form->round_amount(
1032                             $sellprice * $form->parse_amount($myconfig,
1033                                                  $form->{"discount_$i"}) / 100,
1034                             $decimalplaces);
1035
1036       my $discount =
1037         $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces);
1038
1039       # keep a netprice as well, (sellprice - discount)
1040       #$form->{"netprice_$i"} = $sellprice - $discount;
1041       $form->{"netprice_$i"} = $sellprice - $i_discount;
1042       my $nodiscount_linetotal =
1043         $form->round_amount($form->{"qty_$i"} * $sellprice, 2);
1044       my $linetotal =
1045         $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
1046
1047       push(@{ $form->{netprice} },
1048            ($form->{"netprice_$i"} != 0)
1049            ? $form->format_amount(
1050                                  $myconfig, $form->{"netprice_$i"},
1051                                  $decimalplaces
1052              )
1053            : " ");
1054
1055       $discount =
1056         ($discount != 0)
1057         ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
1058         : " ";
1059       $linetotal = ($linetotal != 0) ? $linetotal : " ";
1060
1061       push(@{ $form->{discount} },   $discount);
1062       push(@{ $form->{p_discount} }, $form->{"discount_$i"});
1063
1064       $form->{ordtotal} += $linetotal;
1065       $discount_subtotal += $linetotal;
1066       $form->{nodiscount_total} += $nodiscount_linetotal;
1067       $nodiscount_subtotal += $nodiscount_linetotal;
1068       $form->{discount_total} += $form->parse_amount($myconfig, $discount);
1069
1070       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
1071         $discount_subtotal = $form->format_amount($myconfig, $discount_subtotal, 2);
1072         push(@{ $form->{discount_sub} },  $discount_subtotal);
1073         $nodiscount_subtotal = $form->format_amount($myconfig, $nodiscount_subtotal, 2);
1074         push(@{ $form->{nodiscount_sub} }, $nodiscount_subtotal);
1075         $discount_subtotal = 0;
1076         $nodiscount_subtotal = 0;
1077         $subtotal_header = 0;
1078       } else {
1079         push(@{ $form->{discount_sub} }, "");
1080         push(@{ $form->{nodiscount_sub} }, "");
1081       }
1082
1083       if ($linetotal == $netto_linetotal) {
1084         $nodiscount += $linetotal;
1085       }
1086       push(@{ $form->{linetotal} },
1087            $form->format_amount($myconfig, $linetotal, 2));
1088       push(@{ $form->{nodiscount_linetotal} },
1089            $form->format_amount($myconfig, $nodiscount_linetotal, 2));
1090
1091       push(@{ $form->{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}});
1092
1093       my ($taxamount, $taxbase);
1094       my $taxrate = 0;
1095
1096       map { $taxrate += $form->{"${_}_rate"} } split / /,
1097         $form->{"taxaccounts_$i"};
1098
1099       if ($form->{taxincluded}) {
1100
1101         # calculate tax
1102         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
1103         $taxbase = $linetotal / (1 + $taxrate);
1104       } else {
1105         $taxamount = $linetotal * $taxrate;
1106         $taxbase   = $linetotal;
1107       }
1108
1109       if ($taxamount != 0) {
1110         foreach my $item (split / /, $form->{"taxaccounts_$i"}) {
1111           $taxaccounts{$item} +=
1112             $taxamount * $form->{"${item}_rate"} / $taxrate;
1113           $taxbase{$item} += $taxbase;
1114         }
1115       }
1116
1117       $tax_rate = $taxrate * 100;
1118       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
1119
1120       if ($form->{"assembly_$i"}) {
1121         $sameitem = "";
1122
1123         # get parts and push them onto the stack
1124         my $sortorder = "";
1125         if ($form->{groupitems}) {
1126           $sortorder =
1127             qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
1128         } else {
1129           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
1130         }
1131
1132         $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty,
1133                     pg.partsgroup
1134                     FROM assembly a
1135                     JOIN parts p ON (a.parts_id = p.id)
1136                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1137                     WHERE a.bom = '1'
1138                     AND a.id = '$form->{"id_$i"}'
1139                     $sortorder|;
1140         $sth = $dbh->prepare($query);
1141         $sth->execute || $form->dberror($query);
1142
1143         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1144           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
1145             map({ push(@{ $form->{$_} }, "") }
1146                 grep({ $_ ne "description" } @arrays));
1147             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
1148             push(@{ $form->{description} }, $sameitem);
1149           }
1150
1151           push(@{ $form->{description} },
1152                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
1153                  )
1154                  . qq|, $ref->{partnumber}, $ref->{description}|);
1155
1156           map({ push(@{ $form->{$_} }, "") }
1157               grep({ $_ ne "description" } @arrays));
1158         }
1159         $sth->finish;
1160       }
1161
1162     }
1163   }
1164
1165   my $tax = 0;
1166   foreach $item (sort keys %taxaccounts) {
1167     push(@{ $form->{taxbase} },
1168          $form->format_amount($myconfig, $taxbase{$item}, 2));
1169
1170     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
1171
1172     push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
1173     push(@{ $form->{taxdescription} }, $form->{"${item}_description"}  . q{ } . 100 * $form->{"${item}_rate"} . q{%});
1174     push(@{ $form->{taxrate} },
1175          $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
1176     push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
1177   }
1178   $form->{subtotal} = $form->format_amount($myconfig, $form->{total}, 2);
1179   $yesdiscount = $form->{nodiscount_total} - $nodiscount;
1180   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
1181   $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2);
1182   $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2);
1183   $form->{yesdiscount} = $form->format_amount($myconfig, $yesdiscount, 2);
1184
1185   $form->{subtotal} = $form->format_amount($myconfig, $form->{ordtotal}, 2);
1186   $form->{ordtotal} =
1187     ($form->{taxincluded}) ? $form->{ordtotal} : $form->{ordtotal} + $tax;
1188
1189   # format amounts
1190   $form->{quototal} = $form->{ordtotal} =
1191     $form->format_amount($myconfig, $form->{ordtotal}, 2);
1192
1193   if ($form->{type} =~ /_quotation/) {
1194     $form->set_payment_options($myconfig, $form->{quodate});
1195   } else {
1196     $form->set_payment_options($myconfig, $form->{orddate});
1197   }
1198
1199   $form->{username} = $myconfig->{name};
1200
1201   $dbh->disconnect;
1202
1203   $main::lxdebug->leave_sub();
1204 }
1205
1206 sub project_description {
1207   $main::lxdebug->enter_sub();
1208
1209   my ($self, $dbh, $id) = @_;
1210
1211   my $query = qq|SELECT p.description
1212                  FROM project p
1213                  WHERE p.id = $id|;
1214   my $sth = $dbh->prepare($query);
1215   $sth->execute || $form->dberror($query);
1216
1217   ($_) = $sth->fetchrow_array;
1218
1219   $sth->finish;
1220
1221   $main::lxdebug->leave_sub();
1222
1223   return $_;
1224 }
1225
1226 sub adj_onhand {
1227   $main::lxdebug->enter_sub();
1228
1229   my ($dbh, $form, $ml) = @_;
1230
1231   my $service_units = $form->{service_units};
1232   my $part_units = $form->{part_units};
1233
1234   my $query = qq|SELECT oi.parts_id, oi.ship, oi.unit, p.inventory_accno_id, p.assembly
1235                  FROM orderitems oi
1236                  JOIN parts p ON (p.id = oi.parts_id)
1237                  WHERE oi.trans_id = $form->{id}|;
1238   my $sth = $dbh->prepare($query);
1239   $sth->execute || $form->dberror($query);
1240
1241   $query = qq|SELECT sum(p.inventory_accno_id)
1242               FROM parts p
1243               JOIN assembly a ON (a.parts_id = p.id)
1244               WHERE a.id = ?|;
1245   my $ath = $dbh->prepare($query) || $form->dberror($query);
1246
1247   my $ispa;
1248
1249   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1250   #print(STDERR "Bin in Schleife $ref->{inventory_accno_id}\n");
1251
1252     if ($ref->{inventory_accno_id} || $ref->{assembly}) {
1253
1254       # do not update if assembly consists of all services
1255       if ($ref->{assembly}) {
1256         $ath->execute($ref->{parts_id}) || $form->dberror($query);
1257
1258         ($ispa) = $sth->fetchrow_array;
1259         $ath->finish;
1260
1261         next unless $ispa;
1262
1263       }
1264
1265       # get item baseunit
1266       $query = qq|SELECT p.unit
1267                   FROM parts p
1268                   WHERE p.id = $ref->{parts_id}|;
1269       my $stw = $dbh->prepare($query);
1270       $stw->execute || $form->dberror($query);
1271
1272       my ($item_unit) = $stw->fetchrow_array();
1273       $stw->finish;
1274
1275       if ($ref->{inventory_accno_id}) {        
1276         if (defined($part_units->{$item_unit}->{factor}) && $part_units->{$item_unit}->{factor} ne '' && $part_units->{$item_unit}->{factor} ne '0') {
1277           $basefactor = $part_units->{$ref->{unit}}->{factor} / $part_units->{$item_unit}->{factor};
1278         } else {
1279           $basefactor = 1;
1280         }
1281         $baseqty = $ref->{ship} * $basefactor;
1282       } else {
1283         if (defined($service_units->{$item_unit}->{factor}) && $service_units->{$item_unit}->{factor} ne '' && $service_units->{$item_unit}->{factor} ne '0') {
1284           $basefactor = $service_units->{$ref->{unit}}->{factor} / $part_units->{$item_unit}->{factor};
1285         } else {
1286           $basefactor = 1;
1287         }
1288         $baseqty = $ref->{ship} * $basefactor;
1289       }  
1290       #print(STDERR "$baseqty Basismenge\n");
1291
1292       # adjust onhand in parts table
1293       $form->update_balance($dbh, "parts", "onhand",
1294                             qq|id = $ref->{parts_id}|,
1295                             $baseqty * $ml);
1296     }
1297   }
1298
1299   $sth->finish;
1300
1301   $main::lxdebug->leave_sub();
1302 }
1303
1304 1;
1305