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