Einkaufs- und Verkaufsrechnungen: Bei den Buchungen (sowohl für die Positionen als...
[kivitendo-erp.git] / SL / IS.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) 1998-2002
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 # Inventory invoicing module
32 #
33 #======================================================================
34
35 package IS;
36
37 use Data::Dumper;
38 use SL::AM;
39 use SL::Common;
40 use SL::DBUtils;
41
42 sub invoice_details {
43   $main::lxdebug->enter_sub();
44
45   my ($self, $myconfig, $form, $locale) = @_;
46
47   $form->{duedate} = $form->{invdate} unless ($form->{duedate});
48
49   # connect to database
50   my $dbh = $form->dbconnect($myconfig);
51
52   my $query = qq|SELECT date '$form->{duedate}' - date '$form->{invdate}'
53                  AS terms
54                  FROM defaults|;
55   my $sth = $dbh->prepare($query);
56   $sth->execute || $form->dberror($query);
57
58   ($form->{terms}) = $sth->fetchrow_array;
59   $sth->finish;
60
61   my $tax = 0;
62   my $item;
63   my $i;
64   my @partsgroup = ();
65   my $partsgroup;
66   my %oid = ('Pg'     => 'oid',
67              'Oracle' => 'rowid');
68
69   # sort items by partsgroup
70   for $i (1 .. $form->{rowcount}) {
71     $partsgroup = "";
72     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
73       $partsgroup = $form->{"partsgroup_$i"};
74     }
75     push @partsgroup, [$i, $partsgroup];
76   }
77
78   my $sameitem = "";
79   my @taxaccounts;
80   my %taxaccounts;
81   my %taxbase;
82   my $taxrate;
83   my $taxamount;
84   my $taxbase;
85   my $taxdiff;
86   my $nodiscount;
87   my $yesdiscount;
88   my $nodiscount_subtotal = 0;
89   my $discount_subtotal = 0;
90   my $position = 0;
91   my $subtotal_header = 0;
92   my $subposition = 0;
93
94
95   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
96     $i = $item->[0];
97
98     if ($item->[1] ne $sameitem) {
99       push(@{ $form->{description} }, qq|$item->[1]|);
100       $sameitem = $item->[1];
101
102       map { push(@{ $form->{$_} }, "") }
103         qw(runningnumber number serialnumber bin partnotes qty unit deliverydate sellprice listprice netprice discount linetotal);
104     }
105
106     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
107
108     if ($form->{"id_$i"} != 0) {
109
110       # add number, description and qty to $form->{number},
111       if ($form->{"subtotal_$i"} && !$subtotal_header) {
112         $subtotal_header = $i;
113         $position = int($position);
114         $subposition = 0;
115         $position++;
116       } elsif ($subtotal_header) {
117         $subposition += 1;
118         $position = int($position);
119         $position = $position.".".$subposition;
120       } else {
121         $position = int($position);
122         $position++;
123       }
124       push(@{ $form->{runningnumber} }, $position);
125       push(@{ $form->{number} },        qq|$form->{"partnumber_$i"}|);
126       push(@{ $form->{serialnumber} },  qq|$form->{"serialnumber_$i"}|);
127       push(@{ $form->{bin} },           qq|$form->{"bin_$i"}|);
128       push(@{ $form->{"partnotes"} },   qq|$form->{"partnotes_$i"}|);
129       push(@{ $form->{description} },   qq|$form->{"description_$i"}|);
130       push(@{ $form->{longdescription} },   qq|$form->{"longdescription_$i"}|);
131       push(@{ $form->{qty} },
132            $form->format_amount($myconfig, $form->{"qty_$i"}));
133       push(@{ $form->{unit} },            qq|$form->{"unit_$i"}|);
134       push(@{ $form->{deliverydate_oe} }, qq|$form->{"deliverydate_$i"}|);
135
136       push(@{ $form->{sellprice} },    $form->{"sellprice_$i"});
137       push(@{ $form->{ordnumber_oe} }, qq|$form->{"ordnumber_$i"}|);
138       push(@{ $form->{transdate_oe} }, qq|$form->{"transdate_$i"}|);
139       push(@{ $form->{invnumber} }, qq|$form->{"invnumber"}|);
140       push(@{ $form->{invdate} }, qq|$form->{"invdate"}|);
141
142       if ($form->{lizenzen}) {
143         if ($form->{"licensenumber_$i"}) {
144           $query =
145             qq|SELECT l.licensenumber, l.validuntil FROM license l WHERE l.id = $form->{"licensenumber_$i"}|;
146           $sth = $dbh->prepare($query);
147           $sth->execute || $form->dberror($query);
148
149           ($licensenumber, $validuntil) = $sth->fetchrow_array;
150           push(@{ $form->{licensenumber} }, $licensenumber);
151           push(@{ $form->{validuntil} },
152                $locale->date($myconfig, $validuntil, 0));
153           $sth->finish;
154         } else {
155           push(@{ $form->{licensenumber} }, "");
156           push(@{ $form->{validuntil} },    "");
157         }
158       }
159
160       # listprice
161       push(@{ $form->{listprice} }, $form->{"listprice_$i"});
162
163       my $sellprice = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
164       my ($dec) = ($sellprice =~ /\.(\d+)/);
165       $dec = length $dec;
166       my $decimalplaces = ($dec > 2) ? $dec : 2;
167
168       my $i_discount =
169         $form->round_amount(
170                             $sellprice * $form->parse_amount($myconfig,
171                                                  $form->{"discount_$i"}) / 100,
172                             $decimalplaces);
173
174       my $discount =
175         $form->round_amount($form->{"qty_$i"} * $i_discount, $decimalplaces);
176
177       # keep a netprice as well, (sellprice - discount)
178       $form->{"netprice_$i"} = $sellprice - $i_discount;
179
180       push(@{ $form->{netprice} },
181            ($form->{"netprice_$i"} != 0)
182            ? $form->format_amount(
183                                  $myconfig, $form->{"netprice_$i"},
184                                  $decimalplaces
185              )
186            : " ");
187
188       my $linetotal =
189         $form->round_amount($form->{"qty_$i"} * $form->{"netprice_$i"}, 2);
190
191       my $nodiscount_linetotal =
192         $form->round_amount($form->{"qty_$i"} * $sellprice, 2);
193
194       $discount =
195         ($discount != 0)
196         ? $form->format_amount($myconfig, $discount * -1, $decimalplaces)
197         : " ";
198       $linetotal = ($linetotal != 0) ? $linetotal : " ";
199
200       push(@{ $form->{discount} },   $discount);
201       push(@{ $form->{p_discount} }, $form->{"discount_$i"});
202       if (($form->{"discount_$i"} ne "") && ($form->{"discount_$i"} != 0)) {
203         $form->{discount_p} = $form->{"discount_$i"};
204       }
205       $form->{total} += $linetotal;
206       $discount_subtotal += $linetotal;
207       $form->{nodiscount_total} += $nodiscount_linetotal;
208       $nodiscount_subtotal += $nodiscount_linetotal;
209       $form->{discount_total} += $form->parse_amount($myconfig, $discount);
210
211       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
212         $discount_subtotal = $form->format_amount($myconfig, $discount_subtotal, 2);
213         push(@{ $form->{discount_sub} },  $discount_subtotal);
214         $nodiscount_subtotal = $form->format_amount($myconfig, $nodiscount_subtotal, 2);
215         push(@{ $form->{nodiscount_sub} }, $nodiscount_subtotal);
216         $discount_subtotal = 0;
217         $nodiscount_subtotal = 0;
218         $subtotal_header = 0;
219       } else {
220         push(@{ $form->{discount_sub} }, "");
221         push(@{ $form->{nodiscount_sub} }, "");
222       }
223
224       if ($linetotal == $netto_linetotal) {
225         $nodiscount += $linetotal;
226       }
227
228       push(@{ $form->{linetotal} },
229            $form->format_amount($myconfig, $linetotal, 2));
230       push(@{ $form->{nodiscount_linetotal} },
231            $form->format_amount($myconfig, $nodiscount_linetotal, 2));
232
233
234       
235       @taxaccounts = split / /, $form->{"taxaccounts_$i"};
236       $taxrate     = 0;
237       $taxdiff     = 0;
238
239       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
240
241       if ($form->{taxincluded}) {
242
243         # calculate tax
244         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
245         $taxbase = $linetotal - $taxamount;
246       } else {
247         $taxamount = $linetotal * $taxrate;
248         $taxbase   = $linetotal;
249       }
250
251       if ($form->round_amount($taxrate, 7) == 0) {
252         if ($form->{taxincluded}) {
253           foreach $item (@taxaccounts) {
254             $taxamount =
255               $form->round_amount($linetotal * $form->{"${item}_rate"} /
256                                     (1 + abs($form->{"${item}_rate"})),
257                                   2);
258
259             $taxaccounts{$item} += $taxamount;
260             $taxdiff            += $taxamount;
261
262             $taxbase{$item} += $taxbase;
263           }
264           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
265         } else {
266           foreach $item (@taxaccounts) {
267             $taxaccounts{$item} += $linetotal * $form->{"${item}_rate"};
268             $taxbase{$item}     += $taxbase;
269           }
270         }
271       } else {
272         foreach $item (@taxaccounts) {
273           $taxaccounts{$item} +=
274             $taxamount * $form->{"${item}_rate"} / $taxrate;
275           $taxbase{$item} += $taxbase;
276         }
277       }
278       $tax_rate = $taxrate * 100;
279       push(@{ $form->{tax_rate} }, qq|$tax_rate|);
280       if ($form->{"assembly_$i"}) {
281         $sameitem = "";
282
283         # get parts and push them onto the stack
284         my $sortorder = "";
285         if ($form->{groupitems}) {
286           $sortorder =
287             qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
288         } else {
289           $sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
290         }
291
292         $query = qq|SELECT p.partnumber, p.description, p.unit, a.qty,
293                     pg.partsgroup
294                     FROM assembly a
295                     JOIN parts p ON (a.parts_id = p.id)
296                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
297                     WHERE a.bom = '1'
298                     AND a.id = '$form->{"id_$i"}'
299                     $sortorder|;
300         $sth = $dbh->prepare($query);
301         $sth->execute || $form->dberror($query);
302
303         while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
304           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
305             map { push(@{ $form->{$_} }, "") }
306               qw(runningnumber number serialnumber unit qty bin sellprice listprice netprice discount linetotal nodiscount_linetotal);
307             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
308             push(@{ $form->{description} }, $sameitem);
309           }
310
311           map { $form->{"a_$_"} = $ref->{$_} } qw(partnumber description);
312
313           push(@{ $form->{description} },
314                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
315                  )
316                  . qq| -- $form->{"a_partnumber"}, $form->{"a_description"}|);
317           map { push(@{ $form->{$_} }, "") }
318             qw(number unit qty runningnumber serialnumber bin sellprice listprice netprice discount linetotal nodiscount_linetotal);
319
320         }
321         $sth->finish;
322       }
323     }
324   }
325
326   foreach my $item (sort keys %taxaccounts) {
327     push(@{ $form->{taxbase} },
328           $form->format_amount($myconfig, $taxbase{$item}, 2));
329
330     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
331
332     push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2));
333     push(@{ $form->{taxdescription} }, $form->{"${item}_description"});
334     push(@{ $form->{taxrate} },
335           $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
336     push(@{ $form->{taxnumber} }, $form->{"${item}_taxnumber"});
337   }
338
339   for my $i (1 .. $form->{paidaccounts}) {
340     if ($form->{"paid_$i"}) {
341       push(@{ $form->{payment} }, $form->{"paid_$i"});
342       my ($accno, $description) = split /--/, $form->{"AR_paid_$i"};
343       push(@{ $form->{paymentaccount} }, $description);
344       push(@{ $form->{paymentdate} },    $form->{"datepaid_$i"});
345       push(@{ $form->{paymentsource} },  $form->{"source_$i"});
346
347       $form->{paid} += $form->parse_amount($myconfig, $form->{"paid_$i"});
348     }
349   }
350
351   $form->{subtotal} = $form->format_amount($myconfig, $form->{total}, 2);
352   $yesdiscount = $form->{nodiscount_total} - $nodiscount;
353   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
354   $form->{discount_total} = $form->format_amount($myconfig, $form->{discount_total}, 2);
355   $form->{nodiscount} = $form->format_amount($myconfig, $nodiscount, 2);
356   $form->{yesdiscount} = $form->format_amount($myconfig, $yesdiscount, 2);
357
358   $form->{invtotal} =
359     ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax;
360   $form->{total} =
361     $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2);
362
363   $form->{invtotal} = $form->format_amount($myconfig, $form->{invtotal}, 2);
364   $form->{paid} = $form->format_amount($myconfig, $form->{paid}, 2);
365   $form->set_payment_options($myconfig, $form->{invdate});
366
367   $form->{username} = $myconfig->{name};
368
369   $dbh->disconnect;
370
371   $main::lxdebug->leave_sub();
372 }
373
374 sub project_description {
375   $main::lxdebug->enter_sub();
376
377   my ($self, $dbh, $id) = @_;
378
379   my $query = qq|SELECT p.description
380                  FROM project p
381                  WHERE p.id = $id|;
382   my $sth = $dbh->prepare($query);
383   $sth->execute || $form->dberror($query);
384
385   ($_) = $sth->fetchrow_array;
386
387   $sth->finish;
388
389   $main::lxdebug->leave_sub();
390
391   return $_;
392 }
393
394 sub customer_details {
395   $main::lxdebug->enter_sub();
396
397   my ($self, $myconfig, $form, @wanted_vars) = @_;
398
399   # connect to database
400   my $dbh = $form->dbconnect($myconfig);
401
402   # get contact id, set it if nessessary
403   $form->{cp_id} *= 1;
404
405   $contact = "";
406   if ($form->{cp_id}) {
407     $contact = "and cp.cp_id = $form->{cp_id}";
408   }
409
410   # get rest for the customer
411   my $query = qq|SELECT ct.*, cp.*, ct.notes as customernotes
412                  FROM customer ct
413                  LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
414                  WHERE ct.id = $form->{customer_id} $contact order by cp.cp_id limit 1|;
415   my $sth = $dbh->prepare($query);
416   $sth->execute || $form->dberror($query);
417
418   $ref = $sth->fetchrow_hashref(NAME_lc);
419
420   # remove id and taxincluded before copy back
421   delete @$ref{qw(id taxincluded)};
422
423   @wanted_vars = grep({ $_ } @wanted_vars);
424   if (scalar(@wanted_vars) > 0) {
425     my %h_wanted_vars;
426     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
427     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
428   }
429
430   map { $form->{$_} = $ref->{$_} } keys %$ref;
431   $sth->finish;
432
433   if ($form->{delivery_customer_id}) {
434     my $query = qq|SELECT ct.*, ct.notes as customernotes
435                  FROM customer ct
436                  WHERE ct.id = $form->{delivery_customer_id} limit 1|;
437     my $sth = $dbh->prepare($query);
438     $sth->execute || $form->dberror($query);
439
440     $ref = $sth->fetchrow_hashref(NAME_lc);
441
442     $sth->finish;
443     map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
444   }
445
446   if ($form->{delivery_vendor_id}) {
447     my $query = qq|SELECT ct.*, ct.notes as customernotes
448                  FROM customer ct
449                  WHERE ct.id = $form->{delivery_vendor_id} limit 1|;
450     my $sth = $dbh->prepare($query);
451     $sth->execute || $form->dberror($query);
452
453     $ref = $sth->fetchrow_hashref(NAME_lc);
454
455     $sth->finish;
456     map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
457   }
458   $dbh->disconnect;
459
460   $main::lxdebug->leave_sub();
461 }
462
463 sub post_invoice {
464   $main::lxdebug->enter_sub();
465
466   my ($self, $myconfig, $form) = @_;
467
468   # connect to database, turn off autocommit
469   my $dbh = $form->dbconnect_noauto($myconfig);
470
471   my ($query, $sth, $null, $project_id, $deliverydate);
472   my $exchangerate = 0;
473
474   ($null, $form->{employee_id}) = split /--/, $form->{employee};
475   unless ($form->{employee_id}) {
476     $form->get_employee($dbh);
477   }
478
479   $form->{payment_id} *= 1;
480   $form->{language_id} *= 1;
481   $form->{taxzone_id} *= 1;
482   $form->{delivery_customer_id} *= 1;
483   $form->{delivery_vendor_id} *= 1;
484   $form->{storno} *= 1;
485   $form->{shipto_id} *= 1;
486
487
488   ($null, $form->{department_id}) = split(/--/, $form->{department});
489   $form->{department_id} *= 1;
490
491   my $service_units = AM->retrieve_units($myconfig,$form,"service");
492   my $part_units = AM->retrieve_units($myconfig,$form,"dimension");
493
494
495
496   if ($form->{id}) {
497
498     &reverse_invoice($dbh, $form);
499
500   } else {
501     my $uid = rand() . time;
502
503     $uid .= $form->{login};
504
505     $uid = substr($uid, 2, 75);
506
507     $query = qq|INSERT INTO ar (invnumber, employee_id)
508                 VALUES ('$uid', $form->{employee_id})|;
509     $dbh->do($query) || $form->dberror($query);
510
511     $query = qq|SELECT a.id FROM ar a
512                 WHERE a.invnumber = '$uid'|;
513     $sth = $dbh->prepare($query);
514     $sth->execute || $form->dberror($query);
515
516     ($form->{id}) = $sth->fetchrow_array;
517     $sth->finish;
518   }
519
520   map { $form->{$_} =~ s/\'/\'\'/g }
521     (qw(invnumber shippingpoint shipvia notes intnotes message));
522
523   my ($netamount, $invoicediff) = (0, 0);
524   my ($amount, $linetotal, $lastincomeaccno);
525
526   if ($form->{currency} eq $form->{defaultcurrency}) {
527     $form->{exchangerate} = 1;
528   } else {
529     $exchangerate =
530       $form->check_exchangerate($myconfig, $form->{currency},
531                                 $form->{transdate}, 'buy');
532   }
533
534   $form->{exchangerate} =
535     ($exchangerate)
536     ? $exchangerate
537     : $form->parse_amount($myconfig, $form->{exchangerate});
538
539   $form->{expense_inventory} = "";
540
541   foreach my $i (1 .. $form->{rowcount}) {
542     if ($form->{type} eq "credit_note") {
543       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
544       $form->{shipped} = 1;   
545     } else {
546       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
547     }
548     my $basefactor;
549     my $basqty;
550
551     if ($form->{storno}) {
552       $form->{"qty_$i"} *= -1;
553     }
554
555     if ($form->{"id_$i"}) {
556
557       # get item baseunit
558       $query = qq|SELECT p.unit
559                   FROM parts p
560                   WHERE p.id = $form->{"id_$i"}|;
561       $sth = $dbh->prepare($query);
562       $sth->execute || $form->dberror($query);
563
564       my ($item_unit) = $sth->fetchrow_array();
565       $sth->finish;
566
567       if ($form->{"inventory_accno_$i"}) {
568         if (defined($part_units->{$item_unit}->{factor}) && $part_units->{$item_unit}->{factor} ne '' && $part_units->{$item_unit}->{factor} ne '0') {
569           $basefactor = $part_units->{$form->{"unit_$i"}}->{factor} / $part_units->{$item_unit}->{factor};
570         } else {
571           $basefactor = 1;
572         }
573         $baseqty = $form->{"qty_$i"} * $basefactor;
574       } else {
575         if (defined($service_units->{$item_unit}->{factor}) && $service_units->{$item_unit}->{factor} ne '' && $service_units->{$item_unit}->{factor} ne '0') {
576           $basefactor = $service_units->{$form->{"unit_$i"}}->{factor} / $service_units->{$item_unit}->{factor};
577         } else {
578           $basefactor = 1;
579         }
580         $baseqty = $form->{"qty_$i"} * $basefactor;
581       }
582
583       map { $form->{"${_}_$i"} =~ s/\'/\'\'/g }
584         (qw(partnumber description unit));
585
586       # undo discount formatting
587       $form->{"discount_$i"} =
588         $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
589
590       my ($allocated, $taxrate) = (0, 0);
591       my $taxamount;
592
593       # keep entered selling price
594       my $fxsellprice =
595         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
596
597       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
598       $dec = length $dec;
599       my $decimalplaces = ($dec > 2) ? $dec : 2;
600
601       # deduct discount
602       my $discount =
603         $form->round_amount($fxsellprice * $form->{"discount_$i"},
604                             $decimalplaces);
605       $form->{"sellprice_$i"} = $fxsellprice - $discount;
606
607       # add tax rates
608       map { $taxrate += $form->{"${_}_rate"} } split / /,
609         $form->{"taxaccounts_$i"};
610
611       # round linetotal to 2 decimal places
612       $linetotal =
613         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
614
615       if ($form->{taxincluded}) {
616         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
617         $form->{"sellprice_$i"} =
618           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
619       } else {
620         $taxamount = $linetotal * $taxrate;
621       }
622
623       $netamount += $linetotal;
624
625       if ($taxamount != 0) {
626         map {
627           $form->{amount}{ $form->{id} }{$_} +=
628             $taxamount * $form->{"${_}_rate"} / $taxrate
629         } split / /, $form->{"taxaccounts_$i"};
630       }
631
632       # add amount to income, $form->{amount}{trans_id}{accno}
633       $amount =
634         $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate};
635
636       $linetotal =
637         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2) *
638         $form->{exchangerate};
639       $linetotal = $form->round_amount($linetotal, 2);
640
641       # this is the difference from the inventory
642       $invoicediff += ($amount - $linetotal);
643
644       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
645         $linetotal;
646
647       $lastincomeaccno = $form->{"income_accno_$i"};
648
649       # adjust and round sellprice
650       $form->{"sellprice_$i"} =
651         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
652                             $decimalplaces);
653
654       if ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"}) {
655
656         # adjust parts onhand quantity
657
658         if ($form->{"assembly_$i"}) {
659
660           # do not update if assembly consists of all services
661           $query = qq|SELECT sum(p.inventory_accno_id)
662                       FROM parts p
663                       JOIN assembly a ON (a.parts_id = p.id)
664                       WHERE a.id = $form->{"id_$i"}|;
665           $sth = $dbh->prepare($query);
666           $sth->execute || $form->dberror($query);
667
668           if ($sth->fetchrow_array) {
669             $form->update_balance($dbh, "parts", "onhand",
670                                   qq|id = $form->{"id_$i"}|,
671                                   $baseqty * -1)
672               unless $form->{shipped};
673           }
674           $sth->finish;
675
676           # record assembly item as allocated
677           &process_assembly($dbh, $form, $form->{"id_$i"}, $baseqty);
678         } else {
679           $form->update_balance($dbh, "parts", "onhand",
680                                 qq|id = $form->{"id_$i"}|,
681                                 $baseqty * -1)
682             unless $form->{shipped};
683
684           $allocated = &cogs($dbh, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
685         }
686       }
687
688       $deliverydate =
689         ($form->{"deliverydate_$i"})
690         ? qq|'$form->{"deliverydate_$i"}'|
691         : "NULL";
692
693       # get pricegroup_id and save it
694       ($null, my $pricegroup_id) = split /--/, $form->{"sellprice_pg_$i"};
695       $pricegroup_id *= 1;
696       my $subtotal = $form->{"subtotal_$i"} * 1;
697
698       # save detail record in invoice table
699       $query = qq|INSERT INTO invoice (trans_id, parts_id, description,longdescription, qty,
700                   sellprice, fxsellprice, discount, allocated, assemblyitem,
701                   unit, deliverydate, project_id, serialnumber, pricegroup_id,
702                   ordnumber, transdate, cusordnumber, base_qty, subtotal)
703                   VALUES ($form->{id}, $form->{"id_$i"},
704                   '$form->{"description_$i"}', '$form->{"longdescription_$i"}', $form->{"qty_$i"},
705                   $form->{"sellprice_$i"}, $fxsellprice,
706                   $form->{"discount_$i"}, $allocated, 'f',
707                   '$form->{"unit_$i"}', $deliverydate, | . conv_i($form->{"project_id_$i"}) . qq|,
708                   '$form->{"serialnumber_$i"}', '$pricegroup_id',
709                   '$form->{"ordnumber_$i"}', '$form->{"transdate_$i"}', '$form->{"cusordnumber_$i"}', $baseqty, '$subtotal')|;
710       $dbh->do($query) || $form->dberror($query);
711
712       if ($form->{lizenzen}) {
713         if ($form->{"licensenumber_$i"}) {
714           $query =
715             qq|SELECT i.id FROM invoice i WHERE i.trans_id=$form->{id} ORDER BY i.oid DESC LIMIT 1|;
716           $sth = $dbh->prepare($query);
717           $sth->execute || $form->dberror($query);
718
719           ($invoice_row_id) = $sth->fetchrow_array;
720           $sth->finish;
721
722           $query =
723             qq|INSERT INTO licenseinvoice (trans_id, license_id) VALUES ($invoice_row_id, $form->{"licensenumber_$i"})|;
724           $dbh->do($query) || $form->dberror($query);
725         }
726       }
727
728     }
729   }
730
731   $form->{datepaid} = $form->{invdate};
732
733   # total payments, don't move we need it here
734   for my $i (1 .. $form->{paidaccounts}) {
735     if ($form->{type} eq "credit_note") {
736       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
737     } else {
738       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
739     }
740     $form->{paid} += $form->{"paid_$i"};
741     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
742   }
743
744   my ($tax, $diff) = (0, 0);
745
746   $netamount = $form->round_amount($netamount, 2);
747
748   # figure out rounding errors for total amount vs netamount + taxes
749   if ($form->{taxincluded}) {
750
751     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
752     $diff += $amount - $netamount * $form->{exchangerate};
753     $netamount = $amount;
754
755     foreach my $item (split / /, $form->{taxaccounts}) {
756       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
757       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
758       $tax += $form->{amount}{ $form->{id} }{$item};
759       $netamount -= $form->{amount}{ $form->{id} }{$item};
760     }
761
762     $invoicediff += $diff;
763     ######## this only applies to tax included
764     if ($lastincomeaccno) {
765       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
766     }
767
768   } else {
769     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
770     $diff      = $amount - $netamount * $form->{exchangerate};
771     $netamount = $amount;
772     foreach my $item (split / /, $form->{taxaccounts}) {
773       $form->{amount}{ $form->{id} }{$item} =
774         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
775       $amount =
776         $form->round_amount(
777                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
778                  2);
779       $diff +=
780         $amount - $form->{amount}{ $form->{id} }{$item} *
781         $form->{exchangerate};
782       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
783       $tax += $form->{amount}{ $form->{id} }{$item};
784     }
785   }
786
787   $form->{amount}{ $form->{id} }{ $form->{AR} } = $netamount + $tax;
788   $form->{paid} =
789     $form->round_amount($form->{paid} * $form->{exchangerate} + $diff, 2);
790
791   # reverse AR
792   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
793
794   # update exchangerate
795   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
796     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
797                                $form->{exchangerate}, 0);
798   }
799
800   $project_id = conv_i($form->{"globalproject_id"});
801
802   foreach my $trans_id (keys %{ $form->{amount} }) {
803     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
804       next unless ($form->{expense_inventory} =~ /$accno/);
805       if (
806           ($form->{amount}{$trans_id}{$accno} =
807            $form->round_amount($form->{amount}{$trans_id}{$accno}, 2)
808           ) != 0
809         ) {
810         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
811                     transdate, taxkey, project_id)
812                     VALUES ($trans_id, (SELECT c.id FROM chart c
813                                         WHERE c.accno = '$accno'),
814                     $form->{amount}{$trans_id}{$accno}, '$form->{invdate}',
815                     (SELECT taxkey_id  FROM chart WHERE accno = '$accno'), ?)|;
816         do_query($form, $dbh, $query, $project_id);
817         $form->{amount}{$trans_id}{$accno} = 0;
818       }
819     }
820
821     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
822       if (
823           ($form->{amount}{$trans_id}{$accno} =
824            $form->round_amount($form->{amount}{$trans_id}{$accno}, 2)
825           ) != 0
826         ) {
827         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
828                     transdate, taxkey, project_id)
829                     VALUES ($trans_id, (SELECT id FROM chart
830                                         WHERE accno = '$accno'),
831                     $form->{amount}{$trans_id}{$accno}, '$form->{invdate}',
832                     (SELECT taxkey_id  FROM chart WHERE accno = '$accno'), ?)|;
833         do_query($form, $dbh, $query, $project_id);
834       }
835     }
836   }
837
838   # deduct payment differences from diff
839   for my $i (1 .. $form->{paidaccounts}) {
840     if ($form->{"paid_$i"} != 0) {
841       $amount =
842         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
843       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
844     }
845   }
846
847   # force AR entry if 0
848   #  $form->{amount}{$form->{id}}{$form->{AR}} = 1 if ($form->{amount}{$form->{id}}{$form->{AR}} == 0);
849
850   # record payments and offsetting AR
851   if (!$form->{storno}) {
852     for my $i (1 .. $form->{paidaccounts}) {
853   
854       if ($form->{"paid_$i"} != 0) {
855         my ($accno) = split /--/, $form->{"AR_paid_$i"};
856         $form->{"datepaid_$i"} = $form->{invdate}
857           unless ($form->{"datepaid_$i"});
858         $form->{datepaid} = $form->{"datepaid_$i"};
859   
860         $exchangerate = 0;
861   
862         if ($form->{currency} eq $form->{defaultcurrency}) {
863           $form->{"exchangerate_$i"} = 1;
864         } else {
865           $exchangerate =
866             $form->check_exchangerate($myconfig, $form->{currency},
867                                       $form->{"datepaid_$i"}, 'buy');
868   
869           $form->{"exchangerate_$i"} =
870             ($exchangerate)
871             ? $exchangerate
872             : $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
873         }
874   
875         # record AR
876         $amount =
877           $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff,
878                               2);
879   
880         if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
881           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
882                       transdate, project_id)
883                       VALUES ($form->{id}, (SELECT c.id FROM chart c
884                                           WHERE c.accno = '$form->{AR}'),
885                       $amount, '$form->{"datepaid_$i"}', ?)|;
886           do_query($form, $dbh, $query, $project_id);
887         }
888   
889         # record payment
890         $form->{"paid_$i"} *= -1;
891   
892         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate,
893                     source, memo, ?)
894                     VALUES ($form->{id}, (SELECT c.id FROM chart c
895                                         WHERE c.accno = '$accno', project_id),
896                     $form->{"paid_$i"}, '$form->{"datepaid_$i"}',
897                     '$form->{"source_$i"}', '$form->{"memo_$i"}')|;
898         do_query($form, $dbh, $query, $project_id);
899   
900         # exchangerate difference
901         $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
902           $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
903   
904         # gain/loss
905         $amount =
906           $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
907           $form->{"exchangerate_$i"};
908         if ($amount > 0) {
909           $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } +=
910             $amount;
911         } else {
912           $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } +=
913             $amount;
914         }
915   
916         $diff = 0;
917   
918         # update exchange rate
919         if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
920           $form->update_exchangerate($dbh, $form->{currency},
921                                     $form->{"datepaid_$i"},
922                                     $form->{"exchangerate_$i"}, 0);
923         }
924       }
925     }
926   }
927
928   # record exchange rate differences and gains/losses
929   foreach my $accno (keys %{ $form->{fx} }) {
930     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
931       if (
932           ($form->{fx}{$accno}{$transdate} =
933            $form->round_amount($form->{fx}{$accno}{$transdate}, 2)
934           ) != 0
935         ) {
936
937         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
938                     transdate, cleared, fx_transaction, project_id)
939                     VALUES ($form->{id},
940                            (SELECT c.id FROM chart c
941                             WHERE c.accno = '$accno'),
942                     $form->{fx}{$accno}{$transdate}, '$transdate', '0', '1', ?)|;
943         do_query($form, $dbh, $query, $project_id);
944       }
945     }
946   }
947
948   $amount = $netamount + $tax;
949
950   # set values which could be empty to 0
951   $form->{terms}       *= 1;
952   $form->{taxincluded} *= 1;
953   my $datepaid = ($form->{paid})    ? qq|'$form->{datepaid}'| : "NULL";
954   my $duedate  = ($form->{duedate}) ? qq|'$form->{duedate}'|  : "NULL";
955   my $deliverydate =
956     ($form->{deliverydate}) ? qq|'$form->{deliverydate}'| : "NULL";
957
958   # fill in subject if there is none
959   $form->{subject} = qq|$form->{label} $form->{invnumber}|
960     unless $form->{subject};
961
962   # if there is a message stuff it into the intnotes
963   my $cc  = "Cc: $form->{cc}\\r\n"   if $form->{cc};
964   my $bcc = "Bcc: $form->{bcc}\\r\n" if $form->{bcc};
965   my $now = scalar localtime;
966   $form->{intnotes} .= qq|\r
967 \r| if $form->{intnotes};
968
969   $form->{intnotes} .= qq|[email]\r
970 Date: $now
971 To: $form->{email}\r
972 $cc${bcc}Subject: $form->{subject}\r
973 \r
974 Message: $form->{message}\r| if $form->{message};
975
976   # save AR record
977   $query = qq|UPDATE ar set
978               invnumber = '$form->{invnumber}',
979               ordnumber = '$form->{ordnumber}',
980               quonumber = '$form->{quonumber}',
981               cusordnumber = '$form->{cusordnumber}',
982               transdate = '$form->{invdate}',
983               orddate = | . conv_dateq($form->{orddate}) . qq|,
984               quodate = | . conv_dateq($form->{quodate}) . qq|,
985               customer_id = $form->{customer_id},
986               amount = $amount,
987               netamount = $netamount,
988               paid = $form->{paid},
989               datepaid = $datepaid,
990               duedate = $duedate,
991               deliverydate = $deliverydate,
992               invoice = '1',
993               shippingpoint = '$form->{shippingpoint}',
994               shipvia = '$form->{shipvia}',
995               terms = $form->{terms},
996               notes = '$form->{notes}',
997               intnotes = '$form->{intnotes}',
998               taxincluded = '$form->{taxincluded}',
999               curr = '$form->{currency}',
1000               department_id = $form->{department_id},
1001               payment_id = $form->{payment_id},
1002               type = '$form->{type}',
1003               language_id = $form->{language_id},
1004               taxzone_id = $form->{taxzone_id},
1005               shipto_id = $form->{shipto_id},
1006               delivery_customer_id = $form->{delivery_customer_id},
1007               delivery_vendor_id = $form->{delivery_vendor_id},
1008               employee_id = $form->{employee_id},
1009               storno = '$form->{storno}',
1010               globalproject_id = | . conv_i($form->{"globalproject_id"}, 'NULL') . qq|,
1011               cp_id = | . conv_i($form->{"cp_id"}, 'NULL') . qq|
1012               WHERE id = $form->{id}
1013              |;
1014   $dbh->do($query) || $form->dberror($query);
1015
1016   if ($form->{storno}) {
1017     $query = qq| update ar set paid=paid+amount where id=$form->{storno_id}|;
1018     $dbh->do($query) || $form->dberror($query);
1019     $query = qq| update ar set storno='$form->{storno}' where id=$form->{storno_id}|;
1020     $dbh->do($query) || $form->dberror($query);
1021     $query = qq§ update ar set intnotes='Rechnung storniert am $form->{invdate} ' || intnotes where id=$form->{storno_id}§;
1022     $dbh->do($query) || $form->dberror($query);
1023
1024     $query = qq| update ar set paid=amount where id=$form->{id}|;
1025     $dbh->do($query) || $form->dberror($query);
1026   }
1027
1028   $form->{pago_total} = $amount;
1029
1030   # add shipto
1031   $form->{name} = $form->{customer};
1032   $form->{name} =~ s/--$form->{customer_id}//;
1033
1034   if (!$form->{shipto_id}) {
1035     $form->add_shipto($dbh, $form->{id}, "AR");
1036   }
1037
1038   # save printed, emailed and queued
1039   $form->save_status($dbh);
1040
1041   Common::webdav_folder($form) if ($main::webdav);
1042
1043   my $rc = $dbh->commit;
1044   $dbh->disconnect;
1045
1046   $main::lxdebug->leave_sub();
1047
1048   return $rc;
1049 }
1050
1051 sub post_payment {
1052   $main::lxdebug->enter_sub();
1053
1054   my ($self, $myconfig, $form, $locale) = @_;
1055
1056   # connect to database, turn off autocommit
1057   my $dbh = $form->dbconnect_noauto($myconfig);
1058
1059   $form->{datepaid} = $form->{invdate};
1060
1061   # total payments, don't move we need it here
1062   for my $i (1 .. $form->{paidaccounts}) {
1063     if ($form->{type} eq "credit_note") {
1064       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
1065     } else {
1066       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
1067     } 
1068     $form->{paid} += $form->{"paid_$i"};
1069     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
1070   }
1071
1072   $form->{exchangerate} =
1073       $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate},
1074                               "buy");
1075
1076   my $project_id = conv_i($form->{"globalproject_id"});
1077
1078   # record payments and offsetting AR
1079   for my $i (1 .. $form->{paidaccounts}) {
1080
1081     if ($form->{"paid_$i"} != 0) {
1082       my ($accno) = split /--/, $form->{"AR_paid_$i"};
1083       $form->{"datepaid_$i"} = $form->{invdate}
1084         unless ($form->{"datepaid_$i"});
1085       $form->{datepaid} = $form->{"datepaid_$i"};
1086
1087       $exchangerate = 0;
1088       if (($form->{currency} eq $form->{defaultcurrency}) || ($form->{defaultcurrency} eq "")) {
1089         $form->{"exchangerate_$i"} = 1;
1090       } else {
1091         $exchangerate =
1092           $form->check_exchangerate($myconfig, $form->{currency},
1093                                     $form->{"datepaid_$i"}, 'buy');
1094
1095         $form->{"exchangerate_$i"} =
1096           ($exchangerate)
1097           ? $exchangerate
1098           : $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
1099       }
1100
1101       # record AR
1102       $amount =
1103         $form->round_amount($form->{"paid_$i"} * $form->{"exchangerate"},
1104                             2);
1105
1106
1107       $query = qq|DELETE FROM acc_trans WHERE trans_id=$form->{id} AND chart_id=(SELECT c.id FROM chart c
1108                                       WHERE c.accno = '$form->{AR}') AND amount=$amount AND transdate='$form->{"datepaid_$i"}'|;
1109       $dbh->do($query) || $form->dberror($query);
1110
1111       $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
1112                   transdate, project_id)
1113                   VALUES ($form->{id}, (SELECT c.id FROM chart c
1114                                       WHERE c.accno = '$form->{AR}'),
1115                   $amount, '$form->{"datepaid_$i"}', ?)|;
1116       do_query($form, $dbh, $query, $project_id);
1117
1118
1119       # record payment
1120       $form->{"paid_$i"} *= -1;
1121
1122       $query = qq|DELETE FROM acc_trans WHERE trans_id=$form->{id} AND chart_id=(SELECT c.id FROM chart c
1123                                       WHERE c.accno = '$accno') AND amount=$form->{"paid_$i"} AND transdate='$form->{"datepaid_$i"}' AND source='$form->{"source_$i"}' AND memo='$form->{"memo_$i"}'|;
1124       $dbh->do($query) || $form->dberror($query);
1125
1126       $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate,
1127                   source, memo, project_id)
1128                   VALUES ($form->{id}, (SELECT c.id FROM chart c
1129                                       WHERE c.accno = '$accno'),
1130                   $form->{"paid_$i"}, '$form->{"datepaid_$i"}',
1131                   '$form->{"source_$i"}', '$form->{"memo_$i"}', ?)|;
1132       do_query($form, $dbh, $query, $project_id);
1133
1134
1135       # gain/loss
1136       $amount =
1137         $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
1138         $form->{"exchangerate_$i"};
1139       if ($amount > 0) {
1140         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } +=
1141           $amount;
1142       } else {
1143         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } +=
1144           $amount;
1145       }
1146
1147       $diff = 0;
1148
1149       # update exchange rate
1150       if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
1151         $form->update_exchangerate($dbh, $form->{currency},
1152                                    $form->{"datepaid_$i"},
1153                                    $form->{"exchangerate_$i"}, 0);
1154       }
1155     }
1156   }
1157
1158   # record exchange rate differences and gains/losses
1159   foreach my $accno (keys %{ $form->{fx} }) {
1160     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
1161       if (
1162           ($form->{fx}{$accno}{$transdate} =
1163            $form->round_amount($form->{fx}{$accno}{$transdate}, 2)
1164           ) != 0
1165         ) {
1166         $query = qq|DELETE FROM acc_trans WHERE trans_id=$form->{id} AND chart_id=(SELECT c.id FROM chart c
1167                                         WHERE c.accno = '$accno') AND amount=$form->{fx}{$accno}{$transdate} AND transdate='$transdate' AND cleared='0' AND fx_transaction='1'|;
1168         $dbh->do($query) || $form->dberror($query);
1169         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
1170                     transdate, cleared, fx_transaction, project_id)
1171                     VALUES ($form->{id},
1172                            (SELECT c.id FROM chart c
1173                             WHERE c.accno = '$accno'),
1174                     $form->{fx}{$accno}{$transdate}, '$transdate', '0', '1', ?)|;
1175         do_query($form, $dbh, $query, $project_id);
1176       }
1177     }
1178   }
1179   my $datepaid = ($form->{paid})    ? qq|'$form->{datepaid}'| : "NULL";
1180
1181   # save AR record
1182   my $query = qq|UPDATE ar set
1183               paid = $form->{paid},
1184               datepaid = $datepaid
1185               WHERE id=$form->{id}|;
1186
1187   $dbh->do($query) || $form->dberror($query);
1188
1189   my $rc = $dbh->commit;
1190   $dbh->disconnect;
1191
1192   $main::lxdebug->leave_sub();
1193
1194   return $rc;
1195 }
1196
1197 sub process_assembly {
1198   $main::lxdebug->enter_sub();
1199
1200   my ($dbh, $form, $id, $totalqty) = @_;
1201
1202   my $query = qq|SELECT a.parts_id, a.qty, p.assembly,
1203                  p.partnumber, p.description, p.unit,
1204                  p.inventory_accno_id, p.income_accno_id,
1205                  p.expense_accno_id
1206                  FROM assembly a
1207                  JOIN parts p ON (a.parts_id = p.id)
1208                  WHERE a.id = $id|;
1209   my $sth = $dbh->prepare($query);
1210   $sth->execute || $form->dberror($query);
1211
1212   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1213
1214     my $allocated = 0;
1215
1216     $ref->{inventory_accno_id} *= 1;
1217     $ref->{expense_accno_id}   *= 1;
1218
1219     map { $ref->{$_} =~ s/\'/\'\'/g } (qw(partnumber description unit));
1220
1221     # multiply by number of assemblies
1222     $ref->{qty} *= $totalqty;
1223
1224     if ($ref->{assembly}) {
1225       &process_assembly($dbh, $form, $ref->{parts_id}, $ref->{qty});
1226       next;
1227     } else {
1228       if ($ref->{inventory_accno_id}) {
1229         $allocated = &cogs($dbh, $form, $ref->{parts_id}, $ref->{qty});
1230       }
1231     }
1232
1233     # save detail record for individual assembly item in invoice table
1234     $query = qq|INSERT INTO invoice (trans_id, description, parts_id, qty,
1235                 sellprice, fxsellprice, allocated, assemblyitem, unit)
1236                 VALUES
1237                 ($form->{id}, '$ref->{description}',
1238                 $ref->{parts_id}, $ref->{qty}, 0, 0, $allocated, 't',
1239                 '$ref->{unit}')|;
1240     $dbh->do($query) || $form->dberror($query);
1241
1242   }
1243
1244   $sth->finish;
1245
1246   $main::lxdebug->leave_sub();
1247 }
1248
1249 sub cogs {
1250   $main::lxdebug->enter_sub();
1251
1252   my ($dbh, $form, $id, $totalqty, $basefactor, $row) = @_;
1253   $form->{taxzone_id} *=1;
1254   my $transdate = ($form->{invdate}) ? "'$form->{invdate}'" : "current_date";
1255   my $query = qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice,
1256                         c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid,
1257                         c2.accno AS income_accno, c2.new_chart_id AS income_new_chart, date($transdate)  - c2.valid_from as income_valid,
1258                         c3.accno AS expense_accno, c3.new_chart_id AS expense_new_chart, date($transdate) - c3.valid_from as expense_valid
1259                   FROM invoice i, parts p
1260                   LEFT JOIN chart c1 ON ((select inventory_accno_id from buchungsgruppen where id=p.buchungsgruppen_id) = c1.id)
1261                   LEFT JOIN chart c2 ON ((select income_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c2.id)
1262                   LEFT JOIN chart c3 ON ((select expense_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c3.id)
1263                   WHERE i.parts_id = p.id
1264                   AND i.parts_id = $id
1265                   AND (i.base_qty + i.allocated) < 0
1266                   ORDER BY trans_id|;
1267   my $sth = $dbh->prepare($query);
1268   $sth->execute || $form->dberror($query);
1269
1270   my $allocated = 0;
1271   my $qty;
1272
1273   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1274     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
1275       $qty = $totalqty;
1276     }
1277
1278     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|,
1279                           $qty);
1280
1281     # total expenses and inventory
1282     # sellprice is the cost of the item
1283     $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / $basefactor, 2);
1284
1285     if (!$main::eur) {
1286       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
1287       # add to expense
1288       $form->{amount}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
1289       $form->{expense_inventory} .= " " . $ref->{expense_accno};
1290       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
1291       # deduct inventory
1292       $form->{amount}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
1293       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
1294     }
1295
1296     # add allocated
1297     $allocated += -$qty;
1298
1299     last if (($totalqty -= $qty) <= 0);
1300   }
1301
1302   $sth->finish;
1303
1304   $main::lxdebug->leave_sub();
1305
1306   return $allocated;
1307 }
1308
1309 sub reverse_invoice {
1310   $main::lxdebug->enter_sub();
1311
1312   my ($dbh, $form) = @_;
1313
1314   # reverse inventory items
1315   my $query = qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly,
1316                  p.inventory_accno_id
1317                  FROM invoice i
1318                  JOIN parts p ON (i.parts_id = p.id)
1319                  WHERE i.trans_id = $form->{id}|;
1320   my $sth = $dbh->prepare($query);
1321   $sth->execute || $form->dberror($query);
1322
1323   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1324
1325     if ($ref->{inventory_accno_id} || $ref->{assembly}) {
1326
1327       # if the invoice item is not an assemblyitem adjust parts onhand
1328       if (!$ref->{assemblyitem}) {
1329
1330         # adjust onhand in parts table
1331         $form->update_balance($dbh, "parts", "onhand",
1332                               qq|id = $ref->{parts_id}|,
1333                               $ref->{qty});
1334       }
1335
1336       # loop if it is an assembly
1337       next if ($ref->{assembly});
1338
1339       # de-allocated purchases
1340       $query = qq|SELECT i.id, i.trans_id, i.allocated
1341                   FROM invoice i
1342                   WHERE i.parts_id = $ref->{parts_id}
1343                   AND i.allocated > 0
1344                   ORDER BY i.trans_id DESC|;
1345       my $sth = $dbh->prepare($query);
1346       $sth->execute || $form->dberror($query);
1347
1348       while (my $inhref = $sth->fetchrow_hashref(NAME_lc)) {
1349         $qty = $ref->{qty};
1350         if (($ref->{qty} - $inhref->{allocated}) > 0) {
1351           $qty = $inhref->{allocated};
1352         }
1353
1354         # update invoice
1355         $form->update_balance($dbh, "invoice", "allocated",
1356                               qq|id = $inhref->{id}|,
1357                               $qty * -1);
1358
1359         last if (($ref->{qty} -= $qty) <= 0);
1360       }
1361       $sth->finish;
1362     }
1363   }
1364
1365   $sth->finish;
1366
1367   # delete acc_trans
1368   $query = qq|DELETE FROM acc_trans
1369               WHERE trans_id = $form->{id}|;
1370   $dbh->do($query) || $form->dberror($query);
1371
1372   # delete invoice entries
1373   $query = qq|DELETE FROM invoice
1374               WHERE trans_id = $form->{id}|;
1375   $dbh->do($query) || $form->dberror($query);
1376
1377   if ($form->{lizenzen}) {
1378     $query = qq|DELETE FROM licenseinvoice
1379               WHERE trans_id in (SELECT id FROM invoice WHERE trans_id = $form->{id})|;
1380     $dbh->do($query) || $form->dberror($query);
1381   }
1382
1383   $query = qq|DELETE FROM shipto
1384               WHERE trans_id = $form->{id} AND module = 'AR'|;
1385   $dbh->do($query) || $form->dberror($query);
1386
1387   $main::lxdebug->leave_sub();
1388 }
1389
1390 sub delete_invoice {
1391   $main::lxdebug->enter_sub();
1392
1393   my ($self, $myconfig, $form, $spool) = @_;
1394
1395   # connect to database
1396   my $dbh = $form->dbconnect_noauto($myconfig);
1397
1398   &reverse_invoice($dbh, $form);
1399
1400   # delete AR record
1401   my $query = qq|DELETE FROM ar
1402                  WHERE id = $form->{id}|;
1403   $dbh->do($query) || $form->dberror($query);
1404
1405   # delete spool files
1406   $query = qq|SELECT s.spoolfile FROM status s
1407               WHERE s.trans_id = $form->{id}|;
1408   my $sth = $dbh->prepare($query);
1409   $sth->execute || $self->dberror($query);
1410
1411   my $spoolfile;
1412   my @spoolfiles = ();
1413
1414   while (($spoolfile) = $sth->fetchrow_array) {
1415     push @spoolfiles, $spoolfile;
1416   }
1417   $sth->finish;
1418
1419   # delete status entries
1420   $query = qq|DELETE FROM status
1421               WHERE trans_id = $form->{id}|;
1422   $dbh->do($query) || $form->dberror($query);
1423
1424   my $rc = $dbh->commit;
1425   $dbh->disconnect;
1426
1427   if ($rc) {
1428     foreach $spoolfile (@spoolfiles) {
1429       unlink "$spool/$spoolfile" if $spoolfile;
1430     }
1431   }
1432
1433   $main::lxdebug->leave_sub();
1434
1435   return $rc;
1436 }
1437
1438 sub retrieve_invoice {
1439   $main::lxdebug->enter_sub();
1440
1441   my ($self, $myconfig, $form) = @_;
1442
1443   # connect to database
1444   my $dbh = $form->dbconnect_noauto($myconfig);
1445
1446   my $query;
1447
1448   if ($form->{id}) {
1449
1450     # get default accounts and last invoice number
1451     $query = qq|SELECT (SELECT c.accno FROM chart c
1452                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
1453                        (SELECT c.accno FROM chart c
1454                         WHERE d.income_accno_id = c.id) AS income_accno,
1455                        (SELECT c.accno FROM chart c
1456                         WHERE d.expense_accno_id = c.id) AS expense_accno,
1457                        (SELECT c.accno FROM chart c
1458                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
1459                        (SELECT c.accno FROM chart c
1460                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
1461                 d.curr AS currencies
1462                 FROM defaults d|;
1463   } else {
1464     $query = qq|SELECT (SELECT c.accno FROM chart c
1465                         WHERE d.inventory_accno_id = c.id) AS inventory_accno,
1466                        (SELECT c.accno FROM chart c
1467                         WHERE d.income_accno_id = c.id) AS income_accno,
1468                        (SELECT c.accno FROM chart c
1469                         WHERE d.expense_accno_id = c.id) AS expense_accno,
1470                        (SELECT c.accno FROM chart c
1471                         WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
1472                        (SELECT c.accno FROM chart c
1473                         WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
1474                 d.curr AS currencies, current_date AS invdate
1475                 FROM defaults d|;
1476   }
1477   my $sth = $dbh->prepare($query);
1478   $sth->execute || $form->dberror($query);
1479
1480   my $ref = $sth->fetchrow_hashref(NAME_lc);
1481   map { $form->{$_} = $ref->{$_} } keys %$ref;
1482   $sth->finish;
1483
1484   if ($form->{id}) {
1485
1486     # retrieve invoice
1487     $query = qq|SELECT a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
1488                 a.orddate, a.quodate, a.globalproject_id,
1489                 a.transdate AS invdate, a.deliverydate, a.paid, a.storno, a.gldate,
1490                 a.shippingpoint, a.shipvia, a.terms, a.notes, a.intnotes, a.taxzone_id,
1491                 a.duedate, a.taxincluded, a.curr AS currency, a.shipto_id, a.cp_id,
1492                 a.employee_id, e.name AS employee, a.payment_id, a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type
1493                 FROM ar a
1494                 LEFT JOIN employee e ON (e.id = a.employee_id)
1495                 WHERE a.id = $form->{id}|;
1496     $sth = $dbh->prepare($query);
1497     $sth->execute || $form->dberror($query);
1498
1499     $ref = $sth->fetchrow_hashref(NAME_lc);
1500     map { $form->{$_} = $ref->{$_} } keys %$ref;
1501     $sth->finish;
1502
1503     $form->{exchangerate} =
1504       $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate},
1505                               "buy");
1506     # get shipto
1507     $query = qq|SELECT s.* FROM shipto s
1508                 WHERE s.trans_id = $form->{id} AND s.module = 'AR'|;
1509     $sth = $dbh->prepare($query);
1510     $sth->execute || $form->dberror($query);
1511
1512     $ref = $sth->fetchrow_hashref(NAME_lc);
1513     delete($ref->{id});
1514     map { $form->{$_} = $ref->{$_} } keys %$ref;
1515     $sth->finish;
1516
1517    if ($form->{delivery_customer_id}) {
1518       $query = qq|SELECT name FROM customer WHERE id=$form->{delivery_customer_id}|;
1519       $sth = $dbh->prepare($query);
1520       $sth->execute || $form->dberror($query);
1521       ($form->{delivery_customer_string}) = $sth->fetchrow_array();
1522       $sth->finish;
1523     }
1524
1525     if ($form->{delivery_vendor_id}) {
1526       $query = qq|SELECT name FROM customer WHERE id=$form->{delivery_vendor_id}|;
1527       $sth = $dbh->prepare($query);
1528       $sth->execute || $form->dberror($query);
1529       ($form->{delivery_vendor_string}) = $sth->fetchrow_array();
1530       $sth->finish;
1531     }
1532
1533     # get printed, emailed
1534     $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname
1535                 FROM status s
1536                 WHERE s.trans_id = $form->{id}|;
1537     $sth = $dbh->prepare($query);
1538     $sth->execute || $form->dberror($query);
1539
1540     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1541       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
1542       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
1543       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} "
1544         if $ref->{spoolfile};
1545     }
1546     $sth->finish;
1547     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
1548
1549     my $transdate =
1550       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
1551       $form->{invdate} ? $dbh->quote($form->{invdate}) :
1552       "current_date";
1553
1554     if (!$form->{taxzone_id}) {
1555       $form->{taxzone_id} = 0;
1556     }
1557     # retrieve individual items
1558     $query = qq|SELECT  
1559                 c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid,
1560                 c2.accno AS income_accno, c2.new_chart_id AS income_new_chart, date($transdate)  - c2.valid_from as income_valid,
1561                 c3.accno AS expense_accno, c3.new_chart_id AS expense_new_chart, date($transdate) - c3.valid_from as expense_valid,
1562                 i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice,
1563                 i.discount, i.parts_id AS id, i.unit, i.deliverydate,
1564                 i.project_id, pr.projectnumber, i.serialnumber,
1565                 p.partnumber, p.assembly, p.bin, p.notes AS partnotes, p.inventory_accno_id AS part_inventory_accno_id, i.id AS invoice_pos,
1566                 pg.partsgroup, i.pricegroup_id, (SELECT pricegroup FROM pricegroup WHERE id=i.pricegroup_id) as pricegroup,
1567                 i.ordnumber, i.transdate, i.cusordnumber, p.formel, i.subtotal
1568                 FROM invoice i
1569                 JOIN parts p ON (i.parts_id = p.id)
1570                 LEFT JOIN project pr ON (i.project_id = pr.id)
1571                 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1572                 LEFT JOIN chart c1 ON ((select inventory_accno_id from buchungsgruppen where id=p.buchungsgruppen_id) = c1.id)
1573                 LEFT JOIN chart c2 ON ((select income_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c2.id)
1574                 LEFT JOIN chart c3 ON ((select expense_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c3.id)
1575                 WHERE i.trans_id = $form->{id}
1576                 AND NOT i.assemblyitem = '1'
1577                 ORDER BY i.id|;
1578     $sth = $dbh->prepare($query);
1579
1580     $sth->execute || $form->dberror($query);
1581     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1582       if (!$ref->{"part_inventory_accno_id"}) {
1583         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
1584       }
1585       delete($ref->{"part_inventory_accno_id"});
1586
1587     while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >=0)) {
1588       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}|;
1589       my $stw = $dbh->prepare($query);
1590       $stw->execute || $form->dberror($query);
1591       ($ref->{inventory_accno}, $ref->{inventory_new_chart}, $ref->{inventory_valid}) = $stw->fetchrow_array;
1592       $stw->finish;
1593     }
1594
1595     while ($ref->{income_new_chart} && ($ref->{income_valid} >=0)) {
1596       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}|;
1597       my $stw = $dbh->prepare($query);
1598       $stw->execute || $form->dberror($query);
1599       ($ref->{income_accno}, $ref->{income_new_chart}, $ref->{income_valid}) = $stw->fetchrow_array;
1600       $stw->finish;
1601     }
1602
1603     while ($ref->{expense_new_chart} && ($ref->{expense_valid} >=0)) {
1604       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}|;
1605       my $stw = $dbh->prepare($query);
1606       $stw->execute || $form->dberror($query);
1607       ($ref->{expense_accno}, $ref->{expense_new_chart}, $ref->{expense_valid}) = $stw->fetchrow_array;
1608       $stw->finish;
1609     }
1610
1611       # get tax rates and description
1612       $accno_id =
1613         ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1614     $query = qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
1615               FROM tax t LEFT JOIN chart c on (c.id=t.chart_id)
1616               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)
1617               ORDER BY c.accno|;
1618       $stw = $dbh->prepare($query);
1619       $stw->execute || $form->dberror($query);
1620       $ref->{taxaccounts} = "";
1621       my $i=0;
1622       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
1623
1624         #    if ($customertax{$ref->{accno}}) {
1625         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1626           $i++;
1627           $ptr->{accno} = $i;
1628         }
1629         $ref->{taxaccounts} .= "$ptr->{accno} ";
1630
1631         if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
1632           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
1633           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
1634           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
1635           $form->{taxaccounts} .= "$ptr->{accno} ";
1636         }
1637
1638       }
1639
1640       if ($form->{lizenzen}) {
1641         $query = qq|SELECT l.licensenumber, l.id AS licenseid
1642                  FROM license l, licenseinvoice li
1643                  WHERE l.id = li.license_id AND li.trans_id = $ref->{invoice_pos}|;
1644         $stg = $dbh->prepare($query);
1645         $stg->execute || $form->dberror($query);
1646         ($licensenumber, $licenseid) = $stg->fetchrow_array();
1647         $ref->{lizenzen} =
1648           "<option value=\"$licenseid\">$licensenumber</option>";
1649         $stg->finish();
1650       }
1651       if ($form->{type} eq "credit_note") {
1652         $ref->{qty} *= -1;
1653       }
1654
1655       chop $ref->{taxaccounts};
1656       push @{ $form->{invoice_details} }, $ref;
1657       $stw->finish;
1658     }
1659     $sth->finish;
1660
1661     Common::webdav_folder($form) if ($main::webdav);
1662   }
1663
1664   my $rc = $dbh->commit;
1665   $dbh->disconnect;
1666
1667   $main::lxdebug->leave_sub();
1668
1669   return $rc;
1670 }
1671
1672 sub get_customer {
1673   $main::lxdebug->enter_sub();
1674
1675   my ($self, $myconfig, $form) = @_;
1676
1677   # connect to database
1678   my $dbh = $form->dbconnect($myconfig);
1679
1680   my $dateformat = $myconfig->{dateformat};
1681   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
1682
1683   my $duedate =
1684     ($form->{invdate})
1685     ? "to_date('$form->{invdate}', '$dateformat')"
1686     : "current_date";
1687
1688   $form->{customer_id} *= 1;
1689
1690   # get customer
1691   my $query = qq|SELECT c.name AS customer, c.discount, c.creditlimit, c.terms,
1692                  c.email, c.cc, c.bcc, c.language_id, c.payment_id AS customer_payment_id,
1693                  c.street, c.zipcode, c.city, c.country,
1694                  $duedate + c.terms AS duedate, c.notes AS intnotes,
1695                  b.discount AS tradediscount, b.description AS business, c.klass as customer_klass, c.taxzone_id
1696                  FROM customer c
1697                  LEFT JOIN business b ON (b.id = c.business_id)
1698                  WHERE c.id = $form->{customer_id}|;
1699   my $sth = $dbh->prepare($query);
1700   $sth->execute || $form->dberror($query);
1701
1702   $ref = $sth->fetchrow_hashref(NAME_lc);
1703
1704   map { $form->{$_} = $ref->{$_} } keys %$ref;
1705   $sth->finish;
1706
1707   my $query = qq|SELECT sum(a.amount-a.paid) AS dunning_amount FROM ar a WHERE a.paid < a.amount AND a.customer_id=$form->{customer_id} AND a.dunning_id IS NOT NULL|;
1708   my $sth = $dbh->prepare($query);
1709
1710   $sth->execute || $form->dberror($query);
1711   
1712   $ref = $sth->fetchrow_hashref(NAME_lc);
1713
1714   map { $form->{$_} = $ref->{$_} } keys %$ref;
1715   $sth->finish;
1716
1717   #print(STDERR "DUNNING AMOUTN $form->{dunning_amount}\n");
1718
1719   my $query = qq|SELECT dnn.dunning_description AS max_dunning_level FROM dunning_config dnn WHERE id in (select dunning_id from ar WHERE paid < amount AND customer_id=$form->{customer_id} AND dunning_id IS NOT NULL) ORDER BY dunning_level DESC LIMIT 1|;
1720   my $sth = $dbh->prepare($query);
1721
1722   $sth->execute || $form->dberror($query);
1723
1724   $ref = $sth->fetchrow_hashref(NAME_lc);
1725
1726   map { $form->{$_} = $ref->{$_} } keys %$ref;
1727   $sth->finish;
1728   #print(STDERR "LEVEL $form->{max_dunning_level}\n");
1729
1730
1731   #check whether payment_terms are better than old payment_terms
1732   if (($form->{payment_id} ne "") && ($form->{customer_payment_id} ne "")) {
1733     my $query = qq|select (select ranking from payment_terms WHERE id = $form->{payment_id}), (select ranking from payment_terms WHERE id = $form->{customer_payment_id})|;
1734     my $stw = $dbh->prepare($query);
1735     $stw->execute || $form->dberror($query);
1736     ($old_ranking, $new_ranking) = $stw->fetchrow_array;
1737     $stw->finish;
1738     if ($new_ranking > $old_ranking) {
1739       $form->{payment_id} =$form->{customer_payment_id};
1740     }
1741   }
1742   if ($form->{payment_id} eq "") {
1743     $form->{payment_id} =$form->{customer_payment_id};
1744   }
1745
1746   $form->{creditremaining} = $form->{creditlimit};
1747   $query = qq|SELECT SUM(a.amount - a.paid)
1748               FROM ar a
1749               WHERE a.customer_id = $form->{customer_id}|;
1750   $sth = $dbh->prepare($query);
1751   $sth->execute || $form->dberror($query);
1752
1753   ($form->{creditremaining}) -= $sth->fetchrow_array;
1754
1755   $sth->finish;
1756
1757   $query = qq|SELECT o.amount,
1758                 (SELECT e.buy FROM exchangerate e
1759                  WHERE e.curr = o.curr
1760                  AND e.transdate = o.transdate)
1761               FROM oe o
1762               WHERE o.customer_id = $form->{customer_id}
1763               AND o.quotation = '0'
1764               AND o.closed = '0'|;
1765   $sth = $dbh->prepare($query);
1766   $sth->execute || $form->dberror($query);
1767
1768   while (my ($amount, $exch) = $sth->fetchrow_array) {
1769     $exch = 1 unless $exch;
1770     $form->{creditremaining} -= $amount * $exch;
1771   }
1772   $sth->finish;
1773
1774   # get shipto if we did not converted an order or invoice
1775   if (!$form->{shipto}) {
1776     map { delete $form->{$_} }
1777       qw(shiptoname shiptodepartment_1 shiptodepartment_2 shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail);
1778
1779     $query = qq|SELECT s.* FROM shipto s
1780                 WHERE s.trans_id = $form->{customer_id} AND s.module = 'CT'|;
1781     $sth = $dbh->prepare($query);
1782     $sth->execute || $form->dberror($query);
1783
1784     $ref = $sth->fetchrow_hashref(NAME_lc);
1785     undef($ref->{id});
1786     map { $form->{$_} = $ref->{$_} } keys %$ref;
1787     $sth->finish;
1788   }
1789
1790   # get taxes we charge for this customer
1791   $query = qq|SELECT c.accno
1792               FROM chart c
1793               JOIN customertax ct ON (ct.chart_id = c.id)
1794               WHERE ct.customer_id = $form->{customer_id}|;
1795   $sth = $dbh->prepare($query);
1796   $sth->execute || $form->dberror($query);
1797
1798   my $customertax = ();
1799   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1800     $customertax{ $ref->{accno} } = 1;
1801   }
1802   $sth->finish;
1803
1804   # setup last accounts used for this customer
1805   if (!$form->{id} && $form->{type} !~ /_(order|quotation)/) {
1806     $query = qq|SELECT c.accno, c.description, c.link, c.category
1807                 FROM chart c
1808                 JOIN acc_trans ac ON (ac.chart_id = c.id)
1809                 JOIN ar a ON (a.id = ac.trans_id)
1810                 WHERE a.customer_id = $form->{customer_id}
1811                 AND NOT (c.link LIKE '%_tax%' OR c.link LIKE '%_paid%')
1812                 AND a.id IN (SELECT max(a2.id) FROM ar a2
1813                              WHERE a2.customer_id = $form->{customer_id})|;
1814     $sth = $dbh->prepare($query);
1815     $sth->execute || $form->dberror($query);
1816
1817     my $i = 0;
1818     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1819       if ($ref->{category} eq 'I') {
1820         $i++;
1821         $form->{"AR_amount_$i"} = "$ref->{accno}--$ref->{description}";
1822       }
1823       if ($ref->{category} eq 'A') {
1824         $form->{ARselected} = $form->{AR_1} =
1825           "$ref->{accno}--$ref->{description}";
1826       }
1827     }
1828     $sth->finish;
1829     $form->{rowcount} = $i if ($i && !$form->{type});
1830   }
1831
1832   $dbh->disconnect;
1833
1834   $main::lxdebug->leave_sub();
1835 }
1836
1837 sub retrieve_item {
1838   $main::lxdebug->enter_sub();
1839
1840   my ($self, $myconfig, $form) = @_;
1841
1842   # connect to database
1843   my $dbh = $form->dbconnect($myconfig);
1844
1845   my $i = $form->{rowcount};
1846
1847   my $where = "NOT p.obsolete = '1'";
1848
1849   if ($form->{"partnumber_$i"}) {
1850     my $partnumber = $form->like(lc $form->{"partnumber_$i"});
1851     $where .= " AND lower(p.partnumber) LIKE '$partnumber'";
1852   }
1853   if ($form->{"description_$i"}) {
1854     my $description = $form->like(lc $form->{"description_$i"});
1855     $where .= " AND lower(p.description) LIKE '$description'";
1856   }
1857
1858   if ($form->{"partsgroup_$i"}) {
1859     my $partsgroup = $form->like(lc $form->{"partsgroup_$i"});
1860     $where .= " AND lower(pg.partsgroup) LIKE '$partsgroup'";
1861   }
1862
1863   if ($form->{"description_$i"}) {
1864     $where .= " ORDER BY p.description";
1865   } else {
1866     $where .= " ORDER BY p.partnumber";
1867   }
1868
1869   my $transdate;
1870   if ($form->{type} eq "invoice") {
1871     $transdate =
1872       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
1873       $form->{invdate} ? $dbh->quote($form->{invdate}) :
1874       "current_date";
1875   } else {
1876     $transdate =
1877       $form->{transdate} ? $dbh->quote($form->{transdate}) :
1878       "current_date";
1879   }
1880
1881   my $query = qq|SELECT p.id, p.partnumber, p.description, p.sellprice,
1882                         p.listprice, p.inventory_accno_id,
1883                         c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from as inventory_valid,
1884                         c2.accno AS income_accno, c2.new_chart_id AS income_new_chart, date($transdate)  - c2.valid_from as income_valid,
1885                         c3.accno AS expense_accno, c3.new_chart_id AS expense_new_chart, date($transdate) - c3.valid_from as expense_valid,
1886                  p.unit, p.assembly, p.bin, p.onhand, p.notes AS partnotes, p.notes AS longdescription, p.not_discountable,
1887                  pg.partsgroup, p.formel, p.payment_id AS part_payment_id
1888                  FROM parts p
1889                  LEFT JOIN chart c1 ON ((select inventory_accno_id from buchungsgruppen where id=p.buchungsgruppen_id) = c1.id)
1890                  LEFT JOIN chart c2 ON ((select income_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c2.id)
1891                  LEFT JOIN chart c3 ON ((select expense_accno_id_$form->{taxzone_id} from buchungsgruppen where id=p.buchungsgruppen_id) = c3.id)
1892                  LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
1893                  WHERE $where|;
1894   my $sth = $dbh->prepare($query);
1895   $sth->execute || $form->dberror($query);
1896
1897   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1898
1899     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
1900     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
1901     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
1902     if (!$ref->{inventory_accno_id}) {
1903       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
1904     }
1905     delete($ref->{inventory_accno_id});
1906
1907     #set expense_accno=inventory_accno if they are different => bilanz
1908
1909
1910     while ($ref->{inventory_new_chart} && ($ref->{inventory_valid} >=0)) {
1911       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}|;
1912       my $stw = $dbh->prepare($query);
1913       $stw->execute || $form->dberror($query);
1914       ($ref->{inventory_accno}, $ref->{inventory_new_chart}, $ref->{inventory_valid}) = $stw->fetchrow_array;
1915       $stw->finish;
1916     }
1917
1918     while ($ref->{income_new_chart} && ($ref->{income_valid} >=0)) {
1919       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}|;
1920       my $stw = $dbh->prepare($query);
1921       $stw->execute || $form->dberror($query);
1922       ($ref->{income_accno}, $ref->{income_new_chart}, $ref->{income_valid}) = $stw->fetchrow_array;
1923       $stw->finish;
1924     }
1925
1926     while ($ref->{expense_new_chart} && ($ref->{expense_valid} >=0)) {
1927       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}|;
1928       my $stw = $dbh->prepare($query);
1929       $stw->execute || $form->dberror($query);
1930       ($ref->{expense_accno}, $ref->{expense_new_chart}, $ref->{expense_valid}) = $stw->fetchrow_array;
1931       $stw->finish;
1932     }
1933
1934     #check whether payment_terms are better than old payment_terms
1935     if (($form->{payment_id} ne "") && ($ref->{part_payment_id} ne "")) {
1936       my $query = qq|select (select ranking from payment_terms WHERE id = $form->{payment_id}), (select ranking from payment_terms WHERE id = $ref->{part_payment_id})|;
1937       my $stw = $dbh->prepare($query);
1938       $stw->execute || $form->dberror($query);
1939       ($old_ranking, $new_ranking) = $stw->fetchrow_array;
1940       $stw->finish;
1941       if ($new_ranking <= $old_ranking) {
1942         $ref->{part_payment_id} = "";
1943       }
1944     }
1945
1946     # get tax rates and description
1947     $accno_id =
1948       ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1949     $query = qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
1950               FROM tax t LEFT JOIN chart c on (c.id=t.chart_id)
1951               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)
1952               ORDER BY c.accno|;
1953     $stw = $dbh->prepare($query);
1954     $stw->execute || $form->dberror($query);
1955
1956     $ref->{taxaccounts} = "";
1957     my $i = 0;
1958     while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
1959
1960       #    if ($customertax{$ref->{accno}}) {
1961       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1962         $i++;
1963         $ptr->{accno} = $i;
1964       }
1965       $ref->{taxaccounts} .= "$ptr->{accno} ";
1966
1967       if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
1968         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
1969         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
1970         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
1971         $form->{taxaccounts} .= "$ptr->{accno} ";
1972       }
1973
1974     }
1975
1976     $stw->finish;
1977     chop $ref->{taxaccounts};
1978     if ($form->{language_id}) {
1979       $query = qq|SELECT tr.translation, tr.longdescription
1980                 FROM translation tr
1981                 WHERE tr.language_id=$form->{language_id} AND tr.parts_id=$ref->{id}|;
1982       $stw = $dbh->prepare($query);
1983       $stw->execute || $form->dberror($query);
1984       my ($translation, $longdescription) = $stw->fetchrow_array();
1985       if ($translation ne "") {
1986         $ref->{description} = $translation;
1987         $ref->{longdescription} = $longdescription;
1988
1989       } else {
1990         $query = qq|SELECT tr.translation, tr.longdescription
1991                 FROM translation tr
1992                 WHERE tr.language_id in (select id from language where article_code=(select article_code from language where id = $form->{language_id})) AND tr.parts_id=$ref->{id} LIMIT 1|;
1993         $stg = $dbh->prepare($query);
1994         $stg->execute || $form->dberror($query);
1995         my ($translation) = $stg->fetchrow_array();
1996         if ($translation ne "") {
1997           $ref->{description} = $translation;
1998           $ref->{longdescription} = $longdescription;
1999         }
2000         $stg->finish;
2001       }
2002       $stw->finish;
2003     }
2004
2005     push @{ $form->{item_list} }, $ref;
2006
2007     if ($form->{lizenzen}) {
2008       if ($ref->{inventory_accno} > 0) {
2009         $query =
2010           qq| SELECT l.* FROM license l WHERE l.parts_id = $ref->{id} AND NOT l.id IN (SELECT li.license_id FROM licenseinvoice li)|;
2011         $stw = $dbh->prepare($query);
2012         $stw->execute || $form->dberror($query);
2013         while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
2014           push @{ $form->{LIZENZEN}{ $ref->{id} } }, $ptr;
2015         }
2016         $stw->finish;
2017       }
2018     }
2019   }
2020   $sth->finish;
2021   $dbh->disconnect;
2022
2023   $main::lxdebug->leave_sub();
2024 }
2025
2026 ##########################
2027 # get pricegroups from database
2028 # build up selected pricegroup
2029 # if an exchange rate - change price
2030 # for each part
2031 #
2032 sub get_pricegroups_for_parts {
2033
2034   $main::lxdebug->enter_sub();
2035
2036   my ($self, $myconfig, $form) = @_;
2037
2038   my $dbh = $form->dbconnect($myconfig);
2039
2040   $form->{"PRICES"} = {};
2041
2042   my $i  = 1;
2043   my $id = 0;
2044   my $dimension_units = AM->retrieve_units($myconfig, $form, "dimension");
2045   my $service_units = AM->retrieve_units($myconfig, $form, "service");
2046   my $all_units = AM->retrieve_units($myconfig, $form);
2047   while (($form->{"id_$i"}) or ($form->{"new_id_$i"})) {
2048     $form->{"PRICES"}{$i} = [];
2049
2050     $id = $form->{"id_$i"};
2051
2052     if (!($form->{"id_$i"}) and $form->{"new_id_$i"}) {
2053
2054       $id = $form->{"new_id_$i"};
2055     }
2056
2057     ($price, $selectedpricegroup_id) = split /--/,
2058       $form->{"sellprice_pg_$i"};
2059
2060     $pricegroup_old = $form->{"pricegroup_old_$i"};
2061     $form->{"new_pricegroup_$i"} = $selectedpricegroup_id;
2062     $form->{"old_pricegroup_$i"} = $pricegroup_old;
2063     $price_new = $form->{"price_new_$i"};
2064
2065     $price_old = $form->{"price_old_$i"};
2066     $query =
2067       qq|SELECT pricegroup_id, (SELECT p.sellprice from parts p where p.id = $id) as default_sellprice,(SELECT pg.pricegroup FROM pricegroup pg WHERE id=pricegroup_id) AS pricegroup, price, '' AS selected FROM prices WHERE parts_id = $id UNION SELECT 0 as pricegroup_id,(SELECT sellprice FROM parts WHERE id=$id) as default_sellprice,'' as pricegroup, (SELECT DISTINCT sellprice from parts where id=$id) as price, 'selected' AS selected from prices ORDER BY pricegroup|;
2068
2069     $pkq = $dbh->prepare($query);
2070     $pkq->execute || $form->dberror($query);
2071     if (!$form->{"unit_old_$i"}) {
2072       # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
2073       # Einheit, wie sie in den Stammdaten hinterlegt wurde.
2074       # Es sollte also angenommen werden, dass diese ausgewaehlt war.
2075       $form->{"unit_old_$i"} = $form->{"unit_$i"};
2076     }
2077  
2078     # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
2079     # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
2080     $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
2081
2082     my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
2083     if (!$check_units->{$form->{"selected_unit_$i"}} ||
2084         ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
2085          $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
2086       # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
2087       # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
2088       # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
2089       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
2090     }
2091     my $basefactor = 1;
2092     
2093     if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
2094       if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
2095           $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
2096         $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
2097           $all_units->{$form->{"unit_old_$i"}}->{"factor"};
2098       }
2099     }
2100     if (!$form->{"basefactor_$i"}) {
2101       $form->{"basefactor_$i"} = 1;
2102     }
2103     while ($pkr = $pkq->fetchrow_hashref(NAME_lc)) {
2104
2105       #       push @{ $form->{PRICES}{$id} }, $pkr;
2106       #push @{ $form->{PRICES}{$i} }, $pkr;
2107       $pkr->{id}       = $id;
2108       $pkr->{selected} = '';
2109
2110       # if there is an exchange rate change price
2111       if (($form->{exchangerate} * 1) != 0) {
2112
2113         $pkr->{price} /= $form->{exchangerate};
2114       }
2115
2116       $pkr->{price} *= $form->{"basefactor_$i"};
2117       
2118       $pkr->{price} *= $basefactor;
2119  
2120       $pkr->{price} = $form->format_amount($myconfig, $pkr->{price}, 5);
2121
2122       if ($selectedpricegroup_id eq undef) {
2123         if ($pkr->{pricegroup_id} eq $form->{customer_klass}) {
2124
2125           $pkr->{selected}  = ' selected';
2126
2127           # no customer pricesgroup set
2128           if ($pkr->{price} == $pkr->{default_sellprice}) {
2129
2130             $pkr->{price} = $form->{"sellprice_$i"};
2131
2132           } else {
2133
2134             $form->{"sellprice_$i"} = $pkr->{price};
2135           }
2136
2137         } else {
2138           if ($pkr->{price} == $pkr->{default_sellprice}) {
2139
2140             $pkr->{price}    = $form->{"sellprice_$i"};
2141             $pkr->{selected} = ' selected';
2142           }
2143         }
2144       }
2145
2146       if ($selectedpricegroup_id or $selectedpricegroup_id == 0) {
2147         if ($selectedpricegroup_id ne $pricegroup_old) {
2148           if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
2149             $pkr->{selected}  = ' selected';
2150           }
2151         } else {
2152           if (($price_new != $form->{"sellprice_$i"}) and ($price_new ne 0)) {
2153             if ($pkr->{pricegroup_id} == 0) {
2154               $pkr->{price}     = $form->{"sellprice_$i"};
2155               $pkr->{selected}  = ' selected';
2156             }
2157           } else {
2158             if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
2159               $pkr->{selected}  = ' selected';
2160               if (    ($pkr->{pricegroup_id} == 0)
2161                   and ($pkr->{price} == $form->{"sellprice_$i"})) {
2162
2163                 # $pkr->{price}                         = $form->{"sellprice_$i"};
2164               } else {
2165                 $pkr->{price} = $form->{"sellprice_$i"};
2166               }
2167             }
2168           }
2169         }
2170       }
2171       push @{ $form->{PRICES}{$i} }, $pkr;
2172
2173     }
2174     $form->{"basefactor_$i"} *= $basefactor;
2175
2176     $i++;
2177
2178     $pkq->finish;
2179   }
2180
2181   $dbh->disconnect;
2182
2183   $main::lxdebug->leave_sub();
2184 }
2185
2186 1;
2187