Verkaufsrechnung: Die Drop-Down-Box für den Bearbeiter heißt nun employee_id (wie...
[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};
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) = @_;
485
486   # connect to database, turn off autocommit
487   my $dbh = $form->dbconnect_noauto($myconfig);
488
489   my ($query, $sth, $null, $project_id, $deliverydate, @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 ($form->{id}) {
501
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   my ($netamount, $invoicediff) = (0, 0);
519   my ($amount, $linetotal, $lastincomeaccno);
520
521   if ($form->{currency} eq $form->{defaultcurrency}) {
522     $form->{exchangerate} = 1;
523   } else {
524     $exchangerate =
525       $form->check_exchangerate($myconfig, $form->{currency},
526                                 $form->{transdate}, 'buy');
527   }
528
529   $form->{exchangerate} =
530     ($exchangerate)
531     ? $exchangerate
532     : $form->parse_amount($myconfig, $form->{exchangerate});
533
534   $form->{expense_inventory} = "";
535
536   my %baseunits;
537
538   foreach my $i (1 .. $form->{rowcount}) {
539     if ($form->{type} eq "credit_note") {
540       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
541       $form->{shipped} = 1;
542     } else {
543       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
544     }
545     my $basefactor;
546     my $basqty;
547
548     if ($form->{storno}) {
549       $form->{"qty_$i"} *= -1;
550     }
551
552     if ($form->{"id_$i"}) {
553       my $item_unit;
554
555       if (defined($baseunits{$form->{"id_$i"}})) {
556         $item_unit = $baseunits{$form->{"id_$i"}};
557       } else {
558         # get item baseunit
559         $query = qq|SELECT unit FROM parts WHERE id = ?|;
560         ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
561         $baseunits{$form->{"id_$i"}} = $item_unit;
562       }
563
564       if (defined($all_units->{$item_unit}->{factor})
565           && ($all_units->{$item_unit}->{factor} ne '')
566           && ($all_units->{$item_unit}->{factor} != 0)) {
567         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
568       } else {
569         $basefactor = 1;
570       }
571       $baseqty = $form->{"qty_$i"} * $basefactor;
572
573       # undo discount formatting
574       $form->{"discount_$i"} =
575         $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
576
577       my ($allocated, $taxrate) = (0, 0);
578       my $taxamount;
579
580       # keep entered selling price
581       my $fxsellprice =
582         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
583
584       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
585       $dec = length $dec;
586       my $decimalplaces = ($dec > 2) ? $dec : 2;
587
588       # deduct discount
589       my $discount =
590         $form->round_amount($fxsellprice * $form->{"discount_$i"},
591                             $decimalplaces);
592       $form->{"sellprice_$i"} = $fxsellprice - $discount;
593
594       # add tax rates
595       map({ $taxrate += $form->{"${_}_rate"} } split(/ /,
596         $form->{"taxaccounts_$i"}));
597
598       # round linetotal to 2 decimal places
599       $linetotal =
600         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2);
601
602       if ($form->{taxincluded}) {
603         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
604         $form->{"sellprice_$i"} =
605           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
606       } else {
607         $taxamount = $linetotal * $taxrate;
608       }
609
610       $netamount += $linetotal;
611
612       if ($taxamount != 0) {
613         map {
614           $form->{amount}{ $form->{id} }{$_} +=
615             $taxamount * $form->{"${_}_rate"} / $taxrate
616         } split(/ /, $form->{"taxaccounts_$i"});
617       }
618
619       # add amount to income, $form->{amount}{trans_id}{accno}
620       $amount =
621         $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate};
622
623       $linetotal =
624         $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"}, 2) *
625         $form->{exchangerate};
626       $linetotal = $form->round_amount($linetotal, 2);
627
628       # this is the difference from the inventory
629       $invoicediff += ($amount - $linetotal);
630
631       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
632         $linetotal;
633
634       $lastincomeaccno = $form->{"income_accno_$i"};
635
636       # adjust and round sellprice
637       $form->{"sellprice_$i"} =
638         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
639                             $decimalplaces);
640
641       if ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"}) {
642
643         # adjust parts onhand quantity
644
645         if ($form->{"assembly_$i"}) {
646
647           # do not update if assembly consists of all services
648           $query =
649             qq|SELECT sum(p.inventory_accno_id)
650                FROM parts p
651                JOIN assembly a ON (a.parts_id = p.id)
652                WHERE a.id = ?|;
653           $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
654
655           if ($sth->fetchrow_array) {
656             $form->update_balance($dbh, "parts", "onhand", qq|id = ?|,
657                                   $baseqty * -1, $form->{"id_$i"})
658               unless $form->{shipped};
659           }
660           $sth->finish;
661
662           # record assembly item as allocated
663           &process_assembly($dbh, $form, $form->{"id_$i"}, $baseqty);
664         } else {
665           $form->update_balance($dbh, "parts", "onhand", qq|id = ?|,
666                                 $baseqty * -1, $form->{"id_$i"})
667             unless $form->{shipped};
668
669           $allocated = &cogs($dbh, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
670         }
671       }
672
673       # get pricegroup_id and save it
674       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
675       $pricegroup_id *= 1;
676       my $subtotal = $form->{"subtotal_$i"} * 1;
677
678       # save detail record in invoice table
679       $query =
680         qq|INSERT INTO invoice (trans_id, parts_id, description, longdescription, qty,
681                                 sellprice, fxsellprice, discount, allocated, assemblyitem,
682                                 unit, deliverydate, project_id, serialnumber, pricegroup_id,
683                                 ordnumber, transdate, cusordnumber, base_qty, subtotal)
684            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
685
686       @values = (conv_i($form->{id}), conv_i($form->{"id_$i"}),
687                  $form->{"description_$i"}, $form->{"longdescription_$i"}, $form->{"qty_$i"},
688                  $form->{"sellprice_$i"}, $fxsellprice,
689                  $form->{"discount_$i"}, $allocated, 'f',
690                  $form->{"unit_$i"}, conv_date($form->{"deliverydate_$i"}), conv_i($form->{"project_id_$i"}),
691                  $form->{"serialnumber_$i"}, conv_i($pricegroup_id),
692                  $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
693                  $form->{"cusordnumber_$i"}, $baseqty, $subtotal);
694       do_query($form, $dbh, $query, @values);
695
696       if ($form->{lizenzen} && $form->{"licensenumber_$i"}) {
697         $query =
698           qq|INSERT INTO licenseinvoice (trans_id, license_id)
699              VALUES ((SELECT id FROM invoice WHERE trans_id = ? ORDER BY oid DESC LIMIT 1), ?)|;
700         @values = (conv_i($form->{"id"}), conv_i($form->{"licensenumber_$i"}));
701         do_query($form, $dbh, $query, @values);
702       }
703     }
704   }
705
706   $form->{datepaid} = $form->{invdate};
707
708   # total payments, don't move we need it here
709   for my $i (1 .. $form->{paidaccounts}) {
710     if ($form->{type} eq "credit_note") {
711       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
712     } else {
713       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
714     }
715     $form->{paid} += $form->{"paid_$i"};
716     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
717   }
718
719   my ($tax, $diff) = (0, 0);
720
721   $netamount = $form->round_amount($netamount, 2);
722
723   # figure out rounding errors for total amount vs netamount + taxes
724   if ($form->{taxincluded}) {
725
726     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
727     $diff += $amount - $netamount * $form->{exchangerate};
728     $netamount = $amount;
729
730     foreach my $item (split(/ /, $form->{taxaccounts})) {
731       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
732       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
733       $tax += $form->{amount}{ $form->{id} }{$item};
734       $netamount -= $form->{amount}{ $form->{id} }{$item};
735     }
736
737     $invoicediff += $diff;
738     ######## this only applies to tax included
739     if ($lastincomeaccno) {
740       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
741     }
742
743   } else {
744     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
745     $diff      = $amount - $netamount * $form->{exchangerate};
746     $netamount = $amount;
747     foreach my $item (split(/ /, $form->{taxaccounts})) {
748       $form->{amount}{ $form->{id} }{$item} =
749         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
750       $amount =
751         $form->round_amount(
752                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
753                  2);
754       $diff +=
755         $amount - $form->{amount}{ $form->{id} }{$item} *
756         $form->{exchangerate};
757       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
758       $tax += $form->{amount}{ $form->{id} }{$item};
759     }
760   }
761
762   $form->{amount}{ $form->{id} }{ $form->{AR} } = $netamount + $tax;
763   $form->{paid} =
764     $form->round_amount($form->{paid} * $form->{exchangerate} + $diff, 2);
765
766   # reverse AR
767   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
768
769   # update exchangerate
770   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
771     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
772                                $form->{exchangerate}, 0);
773   }
774
775   $project_id = conv_i($form->{"globalproject_id"});
776
777   foreach my $trans_id (keys %{ $form->{amount} }) {
778     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
779       next unless ($form->{expense_inventory} =~ /$accno/);
780       if (
781           ($form->{amount}{$trans_id}{$accno} =
782            $form->round_amount($form->{amount}{$trans_id}{$accno}, 2)
783           ) != 0
784         ) {
785         $query =
786           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
787              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
788                      (SELECT taxkey_id  FROM chart WHERE accno = ?), ?)|;
789         @values = (conv_i($trans_id), $accno, $form->{amount}{$trans_id}{$accno}, conv_date($form->{invdate}), $accno, conv_i($project_id));
790         do_query($form, $dbh, $query, @values);
791         $form->{amount}{$trans_id}{$accno} = 0;
792       }
793     }
794
795     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
796       if (
797           ($form->{amount}{$trans_id}{$accno} =
798            $form->round_amount($form->{amount}{$trans_id}{$accno}, 2)
799           ) != 0
800         ) {
801         $query =
802           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
803              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
804                      (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
805         @values = (conv_i($trans_id), $accno, $form->{amount}{$trans_id}{$accno}, conv_date($form->{invdate}), $accno, conv_i($project_id));
806         do_query($form, $dbh, $query, @values);
807       }
808     }
809   }
810
811   # deduct payment differences from diff
812   for my $i (1 .. $form->{paidaccounts}) {
813     if ($form->{"paid_$i"} != 0) {
814       $amount =
815         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
816       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
817     }
818   }
819
820   # record payments and offsetting AR
821   if (!$form->{storno}) {
822     for my $i (1 .. $form->{paidaccounts}) {
823
824       next if ($form->{"paid_$i"} == 0);
825
826       my ($accno) = split(/--/, $form->{"AR_paid_$i"});
827       $form->{"datepaid_$i"} = $form->{invdate}
828       unless ($form->{"datepaid_$i"});
829       $form->{datepaid} = $form->{"datepaid_$i"};
830
831       $exchangerate = 0;
832
833       if ($form->{currency} eq $form->{defaultcurrency}) {
834         $form->{"exchangerate_$i"} = 1;
835       } else {
836         $exchangerate =
837           $form->check_exchangerate($myconfig, $form->{currency},
838                                     $form->{"datepaid_$i"}, 'buy');
839
840         $form->{"exchangerate_$i"} =
841           $exchangerate ? $exchangerate
842             : $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
843       }
844
845       # record AR
846       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
847
848       if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
849         $query =
850         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, project_id)
851            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
852                    (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
853         @values = (conv_i($form->{"id"}), $form->{AR}, $amount, $form->{"datepaid_$i"}, $form->{AR}, $project_id);
854         do_query($form, $dbh, $query, @values);
855       }
856
857       # record payment
858       $form->{"paid_$i"} *= -1;
859
860       $query =
861       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, source, memo, taxkey, project_id)
862          VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?,
863                  (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
864       @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
865                  $form->{"source_$i"}, $form->{"memo_$i"}, $accno, $project_id);
866       do_query($form, $dbh, $query, @values);
867
868       # exchangerate difference
869       $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
870       $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
871
872       # gain/loss
873       $amount =
874       $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
875       $form->{"exchangerate_$i"};
876       if ($amount > 0) {
877         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } +=
878         $amount;
879       } else {
880         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } +=
881         $amount;
882       }
883
884       $diff = 0;
885
886       # update exchange rate
887       if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
888         $form->update_exchangerate($dbh, $form->{currency},
889                                    $form->{"datepaid_$i"},
890                                    $form->{"exchangerate_$i"}, 0);
891       }
892     }
893   }
894
895   # record exchange rate differences and gains/losses
896   foreach my $accno (keys %{ $form->{fx} }) {
897     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
898       if (
899           ($form->{fx}{$accno}{$transdate} =
900            $form->round_amount($form->{fx}{$accno}{$transdate}, 2)
901           ) != 0
902         ) {
903
904         $query =
905           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, taxkey, project_id)
906              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
907              (SELECT taxkey_id FROM chart WHERE accno = ?), ?)|;
908         @values = (conv_i($form->{"id"}), $accno, $form->{fx}{$accno}{$transdate}, conv_date($transdate), $accno, $project_id);
909         do_query($form, $dbh, $query, @values);
910       }
911     }
912   }
913
914   $amount = $netamount + $tax;
915
916   # set values which could be empty to 0
917   my $datepaid = conv_date($form->{paid});
918   my $duedate  = conv_date($form->{duedate});
919   $deliverydate = conv_date($form->{deliverydate});
920
921   # fill in subject if there is none
922   $form->{subject} = qq|$form->{label} $form->{invnumber}|
923     unless $form->{subject};
924
925   # if there is a message stuff it into the intnotes
926   my $cc  = "Cc: $form->{cc}\\r\n"   if $form->{cc};
927   my $bcc = "Bcc: $form->{bcc}\\r\n" if $form->{bcc};
928   my $now = scalar localtime;
929   $form->{intnotes} .= qq|\r
930 \r| if $form->{intnotes};
931
932   $form->{intnotes} .= qq|[email]\r
933 Date: $now
934 To: $form->{email}\r
935 $cc${bcc}Subject: $form->{subject}\r
936 \r
937 Message: $form->{message}\r| if $form->{message};
938
939   # save AR record
940   $query = qq|UPDATE ar set
941                 invnumber = ?,
942                 ordnumber = ?,
943                 quonumber = ?,
944                 cusordnumber = ?,
945                 transdate = ?,
946                 orddate = ?,
947                 quodate = ?,
948                 customer_id = ?,
949                 amount = ?,
950                 netamount = ?,
951                 paid = ?,
952                 datepaid = ?,
953                 duedate = ?,
954                 deliverydate = ?,
955                 invoice = '1',
956                 shippingpoint = ?,
957                 shipvia = ?,
958                 terms = ?,
959                 notes = ?,
960                 intnotes = ?,
961                 taxincluded = ?,
962                 curr = ?,
963                 department_id = ?,
964                 payment_id = ?,
965                 type = ?,
966                 language_id = ?,
967                 taxzone_id = ?,
968                 shipto_id = ?,
969                 delivery_customer_id = ?,
970                 delivery_vendor_id = ?,
971                 employee_id = ?,
972                 salesman_id = ?,
973                 storno = ?,
974                 globalproject_id = ?,
975                 cp_id = ?,
976                 transaction_description = ?
977               WHERE id = ?|;
978   @values = ($form->{"invnumber"}, $form->{"ordnumber"}, $form->{"quonumber"}, $form->{"cusordnumber"},
979              conv_date($form->{"invdate"}), conv_date($form->{"orddate"}), conv_date($form->{"quodate"}),
980              conv_i($form->{"customer_id"}), $amount, $netamount, $form->{"paid"},
981              conv_date($form->{"datepaid"}), conv_date($form->{"duedate"}), conv_date($form->{"deliverydate"}),
982              $form->{"shippingpoint"}, $form->{"shipvia"}, conv_i($form->{"terms"}),
983              $form->{"notes"}, $form->{"intnotes"}, $form->{"taxincluded"} ? 't' : 'f',
984              $form->{"currency"}, conv_i($form->{"department_id"}), conv_i($form->{"payment_id"}),
985              $form->{"type"}, conv_i($form->{"language_id"}), conv_i($form->{"taxzone_id"}),
986              conv_i($form->{"shipto_id"}),
987              conv_i($form->{"delivery_customer_id"}), conv_i($form->{"delivery_vendor_id"}),
988              conv_i($form->{"employee_id"}), conv_i($form->{"salesman_id"}),
989              $form->{"storno"} ? 't' : 'f', conv_i($form->{"globalproject_id"}),
990              conv_i($form->{"cp_id"}), $form->{transaction_description},
991              conv_i($form->{"id"}));
992   do_query($form, $dbh, $query, @values);
993   
994   if($form->{"formname"} eq "credit_note") {
995     for my $i (1 .. $form->{paidaccounts}) {
996       $query = qq|UPDATE parts SET onhand = onhand - ? WHERE id = ?|;
997       @values = (conv_i($form->{"qty_$i"}), conv_i($form->{"id_$i"}));
998       do_query($form, $dbh, $query, @values);
999     }
1000   }
1001   
1002   if ($form->{storno}) {
1003     $query =
1004       qq!UPDATE ar SET
1005            paid = paid + amount,
1006            storno = 't',
1007            intnotes = ? || intnotes
1008          WHERE id = ?!;
1009     do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{"storno_id"}));
1010     do_query($form, $dbh, qq|UPDATE ar SET paid = amount WHERE id = ?|, conv_i($form->{"id"}));
1011   }
1012
1013   # add shipto
1014   $form->{name} = $form->{customer};
1015   $form->{name} =~ s/--$form->{customer_id}//;
1016
1017   if (!$form->{shipto_id}) {
1018     $form->add_shipto($dbh, $form->{id}, "AR");
1019   }
1020
1021   # save printed, emailed and queued
1022   $form->save_status($dbh);
1023
1024   Common::webdav_folder($form) if ($main::webdav);
1025
1026   my $rc = $dbh->commit;
1027   $dbh->disconnect;
1028
1029   $main::lxdebug->leave_sub();
1030
1031   return $rc;
1032 }
1033
1034 sub post_payment {
1035   $main::lxdebug->enter_sub() and my ($self, $myconfig, $form, $locale) = @_;
1036
1037   # connect to database, turn off autocommit
1038   my $dbh = $form->dbconnect_noauto($myconfig);
1039
1040   $form->{datepaid} = $form->{invdate};
1041
1042   # total payments, don't move we need it here
1043   for my $i ( 1 .. $form->{paidaccounts} ) {
1044     $form->{"paid_$i"}  = $form->parse_amount($myconfig, $form->{"paid_$i"});
1045     $form->{"paid_$i"} *= -1                     if $form->{type} eq "credit_note";
1046     $form->{"paid"}    += $form->{"paid_$i"};
1047     $form->{"datepaid"} = $form->{"datepaid_$i"} if $form->{"datepaid_$i"};
1048   }
1049
1050   $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
1051
1052   # record payments and offsetting AR
1053   for my $i (1 .. $form->{paidaccounts}) {
1054     if ($form->{"paid_$i"}) {
1055
1056       my ($accno) = split /--/, $form->{"AR_paid_$i"};
1057       $form->{"datepaid_$i"} = $form->{invdate} unless ($form->{"datepaid_$i"});
1058       $form->{datepaid} = $form->{"datepaid_$i"};
1059
1060       $exchangerate = 0;
1061       if (($form->{currency} eq $form->{defaultcurrency}) || ($form->{defaultcurrency} eq "")) {
1062         $form->{"exchangerate_$i"} = 1;
1063       } else {
1064         $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
1065         $form->{"exchangerate_$i"} = ($exchangerate) ? $exchangerate : $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
1066       }
1067
1068       # record AR
1069       $amount = $form->round_amount($form->{"paid_$i"} * $form->{"exchangerate"}, 2);
1070
1071       $query =
1072         qq|DELETE FROM acc_trans
1073            WHERE (trans_id = ?)
1074              AND (chart_id = (SELECT id FROM chart WHERE accno = ?))
1075              AND (amount = ?) AND (transdate = ?)|;
1076       do_query($form, $dbh, $query, $form->{id}, $form->{AR}, $amount, conv_date($form->{"datepaid_$i"}));
1077       $query =
1078         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey)
1079            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?,
1080                    (SELECT taxkey_id FROM chart WHERE accno = ?))|;
1081       do_query($form, $dbh, $query, $form->{id}, $form->{AR}, $amount, $form->{"datepaid_$i"}, conv_i($form->{"globalproject_id"}), $accno);
1082
1083       # record payment
1084       $form->{"paid_$i"} *= -1;
1085
1086       $query =
1087         qq|DELETE FROM acc_trans
1088            WHERE (trans_id = ?)
1089              AND (chart_id = (SELECT id FROM chart WHERE accno = ?))
1090              AND (amount = ?) AND (transdate = ?) AND (source = ?) AND (memo = ?)|;
1091       do_query($form, $dbh, $query, $form->{id}, $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"}, $form->{"source_$i"}, $form->{"memo_$i"});
1092
1093       $query =
1094         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, source, memo, project_id, taxkey)
1095            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
1096                    (SELECT taxkey_id FROM chart WHERE accno = ?))|;
1097       do_query($form, $dbh, $query, $form->{id}, $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"}, $form->{"source_$i"}, $form->{"memo_$i"},
1098                conv_i($form->{"globalproject_id"}), $accno);
1099
1100       # gain/loss
1101       $amount = $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} * $form->{"exchangerate_$i"};
1102       $form->{fx}{ $form->{($amount > 0 ? 'fxgain_accno' : 'fxloss_accno')} }{ $form->{"datepaid_$i"} } += $amount;
1103
1104       $diff = 0;
1105
1106       # update exchange rate
1107       if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
1108         $form->update_exchangerate($dbh, $form->{currency}, $form->{"datepaid_$i"}, $form->{"exchangerate_$i"}, 0);
1109       }
1110
1111     }
1112   }
1113
1114   # record exchange rate differences and gains/losses
1115   foreach my $accno (keys %{ $form->{fx} }) {
1116     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
1117
1118       if ($form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2)) { # '=' is no typo, it's an assignment
1119         $query =
1120           qq|DELETE FROM acc_trans
1121              WHERE (trans_id = ?)
1122                AND (chart_id = (SELECT c.id FROM chart c WHERE c.accno = ?))
1123                AND (amount = ?) AND (transdate = ?) AND (cleared = ?) AND (fx_transaction = ?)|;
1124         do_query($form, $dbh, $query, $form->{id}, $accno, $form->{fx}{$accno}{$transdate}, $transdate, 0, 1);
1125         $query =
1126           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, project_id, taxkey)
1127              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
1128                      (SELECT taxkey_id FROM chart WHERE accno = ?))|;
1129         do_query($form, $dbh, $query, $form->{id}, $accno, $form->{fx}{$accno}{$transdate}, $transdate, 0, 1, conv_i($form->{"globalproject_id"}), $accno);
1130       }
1131
1132     }
1133   }
1134
1135   # save AR record
1136   delete $form->{datepaid} unless $form->{paid};
1137
1138   my $query = qq|UPDATE ar SET paid = ?, datepaid = ? WHERE id = ?|;
1139   do_query($form, $dbh, $query, $form->{"paid"}, conv_date($form->{"datepaid"}), conv_i($form->{"id"}));
1140
1141   my $rc = $dbh->commit;
1142   $dbh->disconnect;
1143
1144   $main::lxdebug->leave_sub() and return $rc;
1145 }
1146
1147 sub process_assembly {
1148   $main::lxdebug->enter_sub();
1149
1150   my ($dbh, $form, $id, $totalqty) = @_;
1151
1152   my $query =
1153     qq|SELECT a.parts_id, a.qty, p.assembly, p.partnumber, p.description, p.unit,
1154          p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
1155        FROM assembly a
1156        JOIN parts p ON (a.parts_id = p.id)
1157        WHERE (a.id = ?)|;
1158   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1159
1160   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1161
1162     my $allocated = 0;
1163
1164     $ref->{inventory_accno_id} *= 1;
1165     $ref->{expense_accno_id}   *= 1;
1166
1167     # multiply by number of assemblies
1168     $ref->{qty} *= $totalqty;
1169
1170     if ($ref->{assembly}) {
1171       &process_assembly($dbh, $form, $ref->{parts_id}, $ref->{qty});
1172       next;
1173     } else {
1174       if ($ref->{inventory_accno_id}) {
1175         $allocated = &cogs($dbh, $form, $ref->{parts_id}, $ref->{qty});
1176       }
1177     }
1178
1179     # save detail record for individual assembly item in invoice table
1180     $query =
1181       qq|INSERT INTO invoice (trans_id, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
1182          VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1183     @values = (conv_i($form->{id}), $ref->{description}, conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
1184     do_query($form, $dbh, $query, @values);
1185
1186   }
1187
1188   $sth->finish;
1189
1190   $main::lxdebug->leave_sub();
1191 }
1192
1193 sub cogs {
1194   $main::lxdebug->enter_sub();
1195
1196   my ($dbh, $form, $id, $totalqty, $basefactor, $row) = @_;
1197   $form->{taxzone_id} *=1;
1198   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
1199   my $taxzone_id = $form->{"taxzone_id"} * 1;
1200   my $query =
1201     qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice,
1202
1203          c1.accno AS inventory_accno,
1204          c1.new_chart_id AS inventory_new_chart,
1205          date($transdate) - c1.valid_from AS inventory_valid,
1206
1207          c2.accno AS income_accno,
1208          c2.new_chart_id AS income_new_chart,
1209          date($transdate)  - c2.valid_from AS income_valid,
1210
1211          c3.accno AS expense_accno,
1212          c3.new_chart_id AS expense_new_chart,
1213          date($transdate) - c3.valid_from AS expense_valid
1214
1215        FROM invoice i, parts p
1216        LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
1217        LEFT JOIN chart c2 ON ((SELECT income_accno_id_${taxzone_id} FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c2.id)
1218        LEFT JOIN chart c3 ON ((select expense_accno_id_${taxzone_id} FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c3.id)
1219        WHERE (i.parts_id = p.id)
1220          AND (i.parts_id = ?)
1221          AND ((i.base_qty + i.allocated) < 0)
1222        ORDER BY trans_id|;
1223   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1224
1225   my $allocated = 0;
1226   my $qty;
1227
1228   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1229     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
1230       $qty = $totalqty;
1231     }
1232
1233     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
1234
1235     # total expenses and inventory
1236     # sellprice is the cost of the item
1237     $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / $basefactor, 2);
1238
1239     if (!$main::eur) {
1240       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
1241       # add to expense
1242       $form->{amount}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
1243       $form->{expense_inventory} .= " " . $ref->{expense_accno};
1244       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
1245       # deduct inventory
1246       $form->{amount}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
1247       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
1248     }
1249
1250     # add allocated
1251     $allocated -= $qty;
1252
1253     last if (($totalqty -= $qty) <= 0);
1254   }
1255
1256   $sth->finish;
1257
1258   $main::lxdebug->leave_sub();
1259
1260   return $allocated;
1261 }
1262
1263 sub reverse_invoice {
1264   $main::lxdebug->enter_sub();
1265
1266   my ($dbh, $form) = @_;
1267
1268   # reverse inventory items
1269   my $query =
1270     qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly, p.inventory_accno_id
1271        FROM invoice i
1272        JOIN parts p ON (i.parts_id = p.id)
1273        WHERE i.trans_id = ?|;
1274   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
1275
1276   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1277
1278     if ($ref->{inventory_accno_id} || $ref->{assembly}) {
1279
1280       # if the invoice item is not an assemblyitem adjust parts onhand
1281       if (!$ref->{assemblyitem}) {
1282
1283         # adjust onhand in parts table
1284         $form->update_balance($dbh, "parts", "onhand", qq|id = $ref->{parts_id}|, $ref->{qty});
1285       }
1286
1287       # loop if it is an assembly
1288       next if ($ref->{assembly});
1289
1290       # de-allocated purchases
1291       $query =
1292         qq|SELECT i.id, i.trans_id, i.allocated
1293            FROM invoice i
1294            WHERE (i.parts_id = ?) AND (i.allocated > 0)
1295            ORDER BY i.trans_id DESC|;
1296       my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
1297
1298       while (my $inhref = $sth2->fetchrow_hashref(NAME_lc)) {
1299         $qty = $ref->{qty};
1300         if (($ref->{qty} - $inhref->{allocated}) > 0) {
1301           $qty = $inhref->{allocated};
1302         }
1303
1304         # update invoice
1305         $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
1306
1307         last if (($ref->{qty} -= $qty) <= 0);
1308       }
1309       $sth2->finish;
1310     }
1311   }
1312
1313   $sth->finish;
1314
1315   # delete acc_trans
1316   @values = (conv_i($form->{id}));
1317   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
1318   do_query($form, $dbh, qq|DELETE FROM invoice WHERE trans_id = ?|, @values);
1319
1320   if ($form->{lizenzen}) {
1321     $query =
1322       qq|DELETE FROM licenseinvoice
1323          WHERE trans_id in (SELECT id FROM invoice WHERE trans_id = ?)|;
1324     do_query($form, $dbh, $query, @values);
1325   }
1326
1327   do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
1328
1329   $main::lxdebug->leave_sub();
1330 }
1331
1332 sub delete_invoice {
1333   $main::lxdebug->enter_sub();
1334
1335   my ($self, $myconfig, $form, $spool) = @_;
1336
1337   # connect to database
1338   my $dbh = $form->dbconnect_noauto($myconfig);
1339
1340   &reverse_invoice($dbh, $form);
1341
1342   my @values = (conv_i($form->{id}));
1343
1344   # delete AR record
1345   do_query($form, $dbh, qq|DELETE FROM ar WHERE id = ?|, @values);
1346
1347   # delete spool files
1348   my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
1349
1350   # delete status entries
1351   do_query($form, $dbh, qq|DELETE FROM status WHERE trans_id = ?|, @values);
1352
1353   my $rc = $dbh->commit;
1354   $dbh->disconnect;
1355
1356   if ($rc) {
1357     map { unlink "$spool/$_" if -f "$spool/$_"; } @{ $spoolfiles };
1358   }
1359
1360   $main::lxdebug->leave_sub();
1361
1362   return $rc;
1363 }
1364
1365 sub retrieve_invoice {
1366   $main::lxdebug->enter_sub();
1367
1368   my ($self, $myconfig, $form) = @_;
1369
1370   # connect to database
1371   my $dbh = $form->dbconnect_noauto($myconfig);
1372
1373   my ($sth, $ref, $query);
1374
1375   my $query_transdate = ", current_date AS invdate" if !$form->{id};
1376
1377   $query =
1378     qq|SELECT
1379          (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
1380          (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
1381          (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
1382          (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
1383          (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno,
1384          d.curr AS currencies
1385          ${query_transdate}
1386        FROM defaults d|;
1387
1388   $ref = selectfirst_hashref_query($form, $dbh, $query);
1389   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1390
1391   if ($form->{id}) {
1392     my $id = conv_i($form->{id});
1393
1394     # retrieve invoice
1395     $query =
1396       qq|SELECT
1397            a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
1398            a.orddate, a.quodate, a.globalproject_id,
1399            a.transdate AS invdate, a.deliverydate, a.paid, a.storno, a.gldate,
1400            a.shippingpoint, a.shipvia, a.terms, a.notes, a.intnotes, a.taxzone_id,
1401            a.duedate, a.taxincluded, a.curr AS currency, a.shipto_id, a.cp_id,
1402            a.employee_id, a.salesman_id, a.payment_id,
1403            a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
1404            a.transaction_description,
1405            e.name AS employee
1406          FROM ar a
1407          LEFT JOIN employee e ON (e.id = a.employee_id)
1408          WHERE a.id = ?|;
1409     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
1410     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1411
1412
1413     $form->{exchangerate} =
1414       $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
1415
1416     # get shipto
1417     $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|;
1418     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
1419     delete $ref->{id};
1420     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1421
1422     foreach my $vc (qw(customer vendor)) {
1423       next if !$form->{"delivery_${vc}_id"};
1424       ($form->{"delivery_${vc}_string"})
1425         = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
1426     }
1427
1428     # get printed, emailed
1429     $query =
1430       qq|SELECT printed, emailed, spoolfile, formname
1431          FROM status
1432          WHERE trans_id = ?|;
1433     $sth = prepare_execute_query($form, $dbh, $query, $id);
1434
1435     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1436       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
1437       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
1438       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} "
1439         if $ref->{spoolfile};
1440     }
1441     $sth->finish;
1442     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
1443
1444     my $transdate =
1445       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
1446       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
1447                               "current_date";
1448
1449     my $taxzone_id = $form->{taxzone_id} *= 1;
1450     $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
1451
1452     # retrieve individual items
1453     $query =
1454       qq|SELECT
1455            c1.accno AS inventory_accno,
1456            c1.new_chart_id AS inventory_new_chart,
1457            date($transdate) - c1.valid_from AS inventory_valid,
1458
1459            c2.accno AS income_accno,
1460            c2.new_chart_id AS income_new_chart,
1461            date($transdate) - c2.valid_from as income_valid,
1462
1463            c3.accno AS expense_accno,
1464            c3.new_chart_id AS expense_new_chart,
1465            date($transdate) - c3.valid_from AS expense_valid,
1466
1467            i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice,
1468            i.discount, i.parts_id AS id, i.unit, i.deliverydate,
1469            i.project_id, i.serialnumber, i.id AS invoice_pos, i.pricegroup_id,
1470            i.ordnumber, i.transdate, i.cusordnumber, i.subtotal,
1471
1472            p.partnumber, p.assembly, p.bin, p.notes AS partnotes,
1473            p.inventory_accno_id AS part_inventory_accno_id, p.formel,
1474
1475            pr.projectnumber,
1476            pg.partsgroup,
1477            prg.pricegroup
1478
1479          FROM invoice i
1480          LEFT JOIN parts p ON (i.parts_id = p.id)
1481          LEFT JOIN project pr ON (i.project_id = pr.id)
1482          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1483          LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
1484
1485          LEFT JOIN chart c1 ON
1486            ((SELECT inventory_accno_id
1487              FROM buchungsgruppen
1488              WHERE id = p.buchungsgruppen_id) = c1.id)
1489          LEFT JOIN chart c2 ON
1490            ((SELECT income_accno_id_${taxzone_id}
1491              FROM buchungsgruppen
1492              WHERE id=p.buchungsgruppen_id) = c2.id)
1493          LEFT JOIN chart c3 ON
1494            ((SELECT expense_accno_id_${taxzone_id}
1495              FROM buchungsgruppen
1496              WHERE id = p.buchungsgruppen_id) = c3.id)
1497
1498          WHERE (i.trans_id = ?)
1499            AND NOT (i.assemblyitem = '1')
1500          ORDER BY i.id|;
1501
1502     $sth = prepare_execute_query($form, $dbh, $query, $id);
1503
1504     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1505       if (!$ref->{"part_inventory_accno_id"}) {
1506         map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid));
1507       }
1508       delete($ref->{"part_inventory_accno_id"});
1509
1510       foreach my $type (qw(inventory income expense)) {
1511         while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
1512           my $query =
1513             qq|SELECT accno, new_chart_id, date($transdate) - valid_from
1514                FROM chart
1515                WHERE id = ?|;
1516           ($ref->{"${type}_accno"},
1517            $ref->{"${type}_new_chart"},
1518            $ref->{"${type}_valid"})
1519             = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
1520         }
1521       }
1522
1523       # get tax rates and description
1524       my $accno_id =
1525         ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1526       $query =
1527         qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
1528            FROM tax t
1529            LEFT JOIN chart c ON (c.id = t.chart_id)
1530            WHERE t.id IN
1531              (SELECT tk.tax_id
1532               FROM taxkeys tk
1533               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
1534                 AND startdate <= date($transdate)
1535               ORDER BY startdate DESC
1536               LIMIT 1)
1537            ORDER BY c.accno|;
1538       my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
1539       $ref->{taxaccounts} = "";
1540       my $i=0;
1541       while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
1542
1543         #    if ($customertax{$ref->{accno}}) {
1544         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1545           $i++;
1546           $ptr->{accno} = $i;
1547         }
1548         $ref->{taxaccounts} .= "$ptr->{accno} ";
1549
1550         if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
1551           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
1552           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
1553           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
1554           $form->{taxaccounts} .= "$ptr->{accno} ";
1555         }
1556
1557       }
1558
1559       if ($form->{lizenzen}) {
1560         $query =
1561           qq|SELECT l.licensenumber, l.id AS licenseid
1562              FROM license l, licenseinvoice li
1563              WHERE l.id = li.license_id AND li.trans_id = ?|;
1564         my ($licensenumber, $licenseid)
1565           = selectrow_query($form, $dbh, $query, conv_i($ref->{invoice_pos}));
1566         $ref->{lizenzen} = "<option value=\"$licenseid\">$licensenumber</option>";
1567       }
1568
1569       $ref->{qty} *= -1 if $form->{type} eq "credit_note";
1570
1571       chop $ref->{taxaccounts};
1572       push @{ $form->{invoice_details} }, $ref;
1573       $stw->finish;
1574     }
1575     $sth->finish;
1576
1577     Common::webdav_folder($form) if ($main::webdav);
1578   }
1579
1580   my $rc = $dbh->commit;
1581   $dbh->disconnect;
1582
1583   $main::lxdebug->leave_sub();
1584
1585   return $rc;
1586 }
1587
1588 sub get_customer {
1589   $main::lxdebug->enter_sub();
1590
1591   my ($self, $myconfig, $form) = @_;
1592
1593   # connect to database
1594   my $dbh = $form->dbconnect($myconfig);
1595
1596   my $dateformat = $myconfig->{dateformat};
1597   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
1598
1599   my (@values, $duedate, $ref, $query);
1600
1601   if ($form->{invdate}) {
1602     $duedate = "to_date(?, '$dateformat')";
1603     push @values, $form->{invdate};
1604   } else {
1605     $duedate = "current_date";
1606   }
1607
1608   my $cid = conv_i($form->{customer_id});
1609
1610   # get customer
1611   $query =
1612     qq|SELECT
1613          c.name AS customer, c.discount, c.creditlimit, c.terms,
1614          c.email, c.cc, c.bcc, c.language_id, c.payment_id AS customer_payment_id,
1615          c.street, c.zipcode, c.city, c.country,
1616          c.notes AS intnotes, c.klass as customer_klass, c.taxzone_id, c.salesman_id,
1617          $duedate + COALESCE(pt.terms_netto, 0) AS duedate,
1618          b.discount AS tradediscount, b.description AS business
1619        FROM customer c
1620        LEFT JOIN business b ON (b.id = c.business_id)
1621        LEFT JOIN payment_terms pt ON (c.payment_id = pt.id)
1622        WHERE c.id = ?|;
1623   push @values, $cid;
1624   $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
1625   map { $form->{$_} = $ref->{$_} } keys %$ref;
1626
1627   $query =
1628     qq|SELECT sum(amount - paid) AS dunning_amount
1629        FROM ar
1630        WHERE (paid < amount)
1631          AND (customer_id = ?)
1632          AND (dunning_config_id IS NOT NULL)|;
1633   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
1634   map { $form->{$_} = $ref->{$_} } keys %$ref;
1635
1636   $query =
1637     qq|SELECT dnn.dunning_description AS max_dunning_level
1638        FROM dunning_config dnn
1639        WHERE id IN (SELECT dunning_config_id
1640                     FROM ar
1641                     WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
1642        ORDER BY dunning_level DESC LIMIT 1|;
1643   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
1644   map { $form->{$_} = $ref->{$_} } keys %$ref;
1645
1646   #check whether payment_terms are better than old payment_terms
1647   if (($form->{payment_id} ne "") && ($form->{customer_payment_id} ne "")) {
1648     $query =
1649       qq|SELECT
1650           (SELECT ranking FROM payment_terms WHERE id = ?),
1651           (SELECT ranking FROM payment_terms WHERE id = ?)|;
1652     my ($old_ranking, $new_ranking)
1653       = selectrow_query($form, $dbh, $query, conv_i($form->{payment_id}), conv_i($form->{customer_payment_id}));
1654     if ($new_ranking > $old_ranking) {
1655       $form->{payment_id} = $form->{customer_payment_id};
1656     }
1657   }
1658
1659   if ($form->{payment_id} eq "") {
1660     $form->{payment_id} = $form->{customer_payment_id};
1661   }
1662
1663   $form->{creditremaining} = $form->{creditlimit};
1664   $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
1665   my ($value) = selectrow_query($form, $dbh, $query, $cid);
1666   $form->{creditremaining} -= $value;
1667
1668   $query =
1669     qq|SELECT o.amount,
1670          (SELECT e.buy FROM exchangerate e
1671           WHERE e.curr = o.curr
1672             AND e.transdate = o.transdate)
1673        FROM oe o
1674        WHERE o.customer_id = ?
1675          AND o.quotation = '0'
1676          AND o.closed = '0'|;
1677   $sth = prepare_execute_query($form, $dbh, $query, $cid);
1678
1679   while (my ($amount, $exch) = $sth->fetchrow_array) {
1680     $exch = 1 unless $exch;
1681     $form->{creditremaining} -= $amount * $exch;
1682   }
1683   $sth->finish;
1684
1685   # get shipto if we did not converted an order or invoice
1686   if (!$form->{shipto}) {
1687     map { delete $form->{$_} }
1688       qw(shiptoname shiptodepartment_1 shiptodepartment_2
1689          shiptostreet shiptozipcode shiptocity shiptocountry
1690          shiptocontact shiptophone shiptofax shiptoemail);
1691
1692     $query = qq|SELECT * FROM shipto WHERE trans_id = ? AND module = 'CT'|;
1693     $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
1694     delete $ref->{id};
1695     map { $form->{$_} = $ref->{$_} } keys %$ref;
1696   }
1697
1698   # setup last accounts used for this customer
1699   if (!$form->{id} && $form->{type} !~ /_(order|quotation)/) {
1700     $query =
1701       qq|SELECT c.id, c.accno, c.description, c.link, c.category
1702          FROM chart c
1703          JOIN acc_trans ac ON (ac.chart_id = c.id)
1704          JOIN ar a ON (a.id = ac.trans_id)
1705          WHERE a.customer_id = ?
1706            AND NOT (c.link LIKE '%_tax%' OR c.link LIKE '%_paid%')
1707            AND a.id IN (SELECT max(a2.id) FROM ar a2 WHERE a2.customer_id = ?)|;
1708     $sth = prepare_execute_query($form, $dbh, $query, $cid, $cid);
1709
1710     my $i = 0;
1711     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1712       if ($ref->{category} eq 'I') {
1713         $i++;
1714         $form->{"AR_amount_$i"} = "$ref->{accno}--$ref->{description}";
1715
1716         if ($form->{initial_transdate}) {
1717           my $tax_query =
1718             qq|SELECT tk.tax_id, t.rate
1719                FROM taxkeys tk
1720                LEFT JOIN tax t ON tk.tax_id = t.id
1721                WHERE (tk.chart_id = ?) AND (startdate <= date(?))
1722                ORDER BY tk.startdate DESC
1723                LIMIT 1|;
1724           my ($tax_id, $rate) =
1725             selectrow_query($form, $dbh, $tax_query, $ref->{id},
1726                             $form->{initial_transdate});
1727           $form->{"taxchart_$i"} = "${tax_id}--${rate}";
1728         }
1729       }
1730       if ($ref->{category} eq 'A') {
1731         $form->{ARselected} = $form->{AR_1} = $ref->{accno};
1732       }
1733     }
1734     $sth->finish;
1735     $form->{rowcount} = $i if ($i && !$form->{type});
1736   }
1737
1738   $dbh->disconnect;
1739
1740   $main::lxdebug->leave_sub();
1741 }
1742
1743 sub retrieve_item {
1744   $main::lxdebug->enter_sub();
1745
1746   my ($self, $myconfig, $form) = @_;
1747
1748   # connect to database
1749   my $dbh = $form->dbconnect($myconfig);
1750
1751   my $i = $form->{rowcount};
1752
1753   my $where = qq|NOT p.obsolete = '1'|;
1754   my @values;
1755
1756   foreach my $column (qw(p.partnumber p.description pgpartsgroup)) {
1757     my ($table, $field) = split m/\./, $column;
1758     next if !$form->{"${field}_${i}"};
1759     $where .= qq| AND lower(${column}) ILIKE ?|;
1760     push @values, '%' . $form->{"${field}_${i}"} . '%';
1761   }
1762
1763   if ($form->{"description_$i"}) {
1764     $where .= qq| ORDER BY p.description|;
1765   } else {
1766     $where .= qq| ORDER BY p.partnumber|;
1767   }
1768
1769   my $transdate;
1770   if ($form->{type} eq "invoice") {
1771     $transdate =
1772       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
1773       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
1774                               "current_date";
1775   } else {
1776     $transdate =
1777       $form->{transdate}    ? $dbh->quote($form->{transdate}) :
1778                               "current_date";
1779   }
1780
1781   my $taxzone_id = $form->{taxzone_id} * 1;
1782   $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
1783
1784   my $query =
1785     qq|SELECT
1786          p.id, p.partnumber, p.description, p.sellprice,
1787          p.listprice, p.inventory_accno_id,
1788
1789          c1.accno AS inventory_accno,
1790          c1.new_chart_id AS inventory_new_chart,
1791          date($transdate) - c1.valid_from AS inventory_valid,
1792
1793          c2.accno AS income_accno,
1794          c2.new_chart_id AS income_new_chart,
1795          date($transdate)  - c2.valid_from AS income_valid,
1796
1797          c3.accno AS expense_accno,
1798          c3.new_chart_id AS expense_new_chart,
1799          date($transdate) - c3.valid_from AS expense_valid,
1800
1801          p.unit, p.assembly, p.bin, p.onhand,
1802          p.notes AS partnotes, p.notes AS longdescription,
1803          p.not_discountable, p.formel, p.payment_id AS part_payment_id,
1804
1805          pg.partsgroup
1806
1807        FROM parts p
1808        LEFT JOIN chart c1 ON
1809          ((SELECT inventory_accno_id
1810            FROM buchungsgruppen
1811            WHERE id = p.buchungsgruppen_id) = c1.id)
1812        LEFT JOIN chart c2 ON
1813          ((SELECT income_accno_id_${taxzone_id}
1814            FROM buchungsgruppen
1815            WHERE id = p.buchungsgruppen_id) = c2.id)
1816        LEFT JOIN chart c3 ON
1817          ((SELECT expense_accno_id_${taxzone_id}
1818            FROM buchungsgruppen
1819            WHERE id = p.buchungsgruppen_id) = c3.id)
1820        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
1821        WHERE $where|;
1822   my $sth = prepare_execute_query($form, $dbh, $query, @values);
1823
1824   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1825
1826     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
1827     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
1828     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
1829     if (!$ref->{inventory_accno_id}) {
1830       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
1831     }
1832     delete($ref->{inventory_accno_id});
1833
1834     foreach my $type (qw(inventory income expense)) {
1835       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
1836         my $query =
1837           qq|SELECT accno, new_chart_id, date($transdate) - valid_from
1838              FROM chart
1839              WHERE id = ?|;
1840         ($ref->{"${type}_accno"},
1841          $ref->{"${type}_new_chart"},
1842          $ref->{"${type}_valid"})
1843           = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
1844       }
1845     }
1846
1847     #check whether payment_terms are better than old payment_terms
1848     if (($form->{payment_id} ne "") && ($form->{part_payment_id} ne "")) {
1849       $query =
1850         qq|SELECT
1851             (SELECT ranking FROM payment_terms WHERE id = ?),
1852             (SELECT ranking FROM payment_terms WHERE id = ?)|;
1853       my ($old_ranking, $new_ranking)
1854         = selectrow_query($form, $dbh, $query, conv_i($form->{payment_id}), conv_i($form->{part_payment_id}));
1855       if ($new_ranking > $old_ranking) {
1856         $form->{payment_id} = $form->{customer_payment_id};
1857       }
1858     }
1859
1860     if ($form->{payment_id} eq "") {
1861       $form->{payment_id} = $form->{part_payment_id};
1862     }
1863
1864     # get tax rates and description
1865     $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1866     $query =
1867       qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
1868          FROM tax t
1869          LEFT JOIN chart c ON (c.id = t.chart_id)
1870          WHERE t.id in
1871            (SELECT tk.tax_id
1872             FROM taxkeys tk
1873             WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
1874               AND startdate <= ?
1875             ORDER BY startdate DESC
1876             LIMIT 1)
1877          ORDER BY c.accno|;
1878     @values = ($accno_id, $transdate eq "current_date" ? "now" : $transdate);
1879     $stw = $dbh->prepare($query);
1880     $stw->execute(@values) || $form->dberror($query);
1881
1882     $ref->{taxaccounts} = "";
1883     my $i = 0;
1884     while ($ptr = $stw->fetchrow_hashref(NAME_lc)) {
1885
1886       #    if ($customertax{$ref->{accno}}) {
1887       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
1888         $i++;
1889         $ptr->{accno} = $i;
1890       }
1891       $ref->{taxaccounts} .= "$ptr->{accno} ";
1892
1893       if (!($form->{taxaccounts} =~ /$ptr->{accno}/)) {
1894         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
1895         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
1896         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
1897         $form->{taxaccounts} .= "$ptr->{accno} ";
1898       }
1899
1900     }
1901
1902     $stw->finish;
1903     chop $ref->{taxaccounts};
1904     if ($form->{language_id}) {
1905       $query =
1906         qq|SELECT tr.translation, tr.longdescription
1907            FROM translation tr
1908            WHERE tr.language_id = ? AND tr.parts_id = ?|;
1909       @values = (conv_i($form->{language_id}), conv_i($ref->{id}));
1910       my ($translation, $longdescription) = selectrow_query($form, $dbh, $query, @values);
1911       if ($translation ne "") {
1912         $ref->{description} = $translation;
1913         $ref->{longdescription} = $longdescription;
1914
1915       } else {
1916         $query =
1917           qq|SELECT tr.translation, tr.longdescription
1918              FROM translation tr
1919              WHERE tr.language_id IN
1920                (SELECT id
1921                 FROM language
1922                 WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
1923                AND tr.parts_id = ?
1924              LIMIT 1|;
1925         @values = (conv_i($form->{language_id}), conv_i($ref->{id}));
1926         my ($translation, $longdescription) = selectrow_query($form, $dbh, $query, @values);
1927         if ($translation ne "") {
1928           $ref->{description} = $translation;
1929           $ref->{longdescription} = $longdescription;
1930         }
1931       }
1932     }
1933
1934     push @{ $form->{item_list} }, $ref;
1935
1936     if ($form->{lizenzen}) {
1937       if ($ref->{inventory_accno} > 0) {
1938         $query =
1939           qq|SELECT l.*
1940              FROM license l
1941              WHERE l.parts_id = ? AND NOT l.id IN (SELECT li.license_id FROM licenseinvoice li)|;
1942         my $stw = prepare_execute_query($form, $dbh, $query, conv_i($ref->{id}));
1943         while (my $ptr = $stw->fetchrow_hashref(NAME_lc)) {
1944           push @{ $form->{LIZENZEN}{ $ref->{id} } }, $ptr;
1945         }
1946         $stw->finish;
1947       }
1948     }
1949   }
1950   $sth->finish;
1951   $dbh->disconnect;
1952
1953   $main::lxdebug->leave_sub();
1954 }
1955
1956 ##########################
1957 # get pricegroups from database
1958 # build up selected pricegroup
1959 # if an exchange rate - change price
1960 # for each part
1961 #
1962 sub get_pricegroups_for_parts {
1963
1964   $main::lxdebug->enter_sub();
1965
1966   my ($self, $myconfig, $form) = @_;
1967
1968   my $dbh = $form->dbconnect($myconfig);
1969
1970   $form->{"PRICES"} = {};
1971
1972   my $i  = 1;
1973   my $id = 0;
1974   my $dimension_units = AM->retrieve_units($myconfig, $form, "dimension");
1975   my $service_units = AM->retrieve_units($myconfig, $form, "service");
1976   my $all_units = AM->retrieve_units($myconfig, $form);
1977   while (($form->{"id_$i"}) or ($form->{"new_id_$i"})) {
1978     $form->{"PRICES"}{$i} = [];
1979
1980     $id = $form->{"id_$i"};
1981
1982     if (!($form->{"id_$i"}) and $form->{"new_id_$i"}) {
1983
1984       $id = $form->{"new_id_$i"};
1985     }
1986
1987     ($price, $selectedpricegroup_id) = split(/--/,
1988       $form->{"sellprice_pg_$i"});
1989
1990     $pricegroup_old = $form->{"pricegroup_old_$i"};
1991     $form->{"new_pricegroup_$i"} = $selectedpricegroup_id;
1992     $form->{"old_pricegroup_$i"} = $pricegroup_old;
1993
1994     $price_new = $form->{"price_new_$i"};
1995     $price_old = $form->{"price_old_$i"};
1996
1997     if (!$form->{"unit_old_$i"}) {
1998       # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
1999       # Einheit, wie sie in den Stammdaten hinterlegt wurde.
2000       # Es sollte also angenommen werden, dass diese ausgewaehlt war.
2001       $form->{"unit_old_$i"} = $form->{"unit_$i"};
2002     }
2003
2004     # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
2005     # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
2006     $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
2007
2008     my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
2009     if (!$check_units->{$form->{"selected_unit_$i"}} ||
2010         ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
2011          $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
2012       # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
2013       # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
2014       # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
2015       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
2016     }
2017
2018     my $basefactor = 1;
2019
2020     if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
2021       if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
2022           $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
2023         $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
2024           $all_units->{$form->{"unit_old_$i"}}->{"factor"};
2025       }
2026     }
2027
2028     if (!$form->{"basefactor_$i"}) {
2029       $form->{"basefactor_$i"} = 1;
2030     }
2031
2032     $query =
2033       qq|SELECT
2034            pricegroup_id,
2035            (SELECT p.sellprice FROM parts p WHERE p.id = ?) AS default_sellprice,
2036            (SELECT pg.pricegroup FROM pricegroup pg WHERE id = pricegroup_id) AS pricegroup,
2037            price,
2038            '' AS selected
2039           FROM prices
2040           WHERE parts_id = ?
2041
2042           UNION
2043
2044           SELECT
2045             0 as pricegroup_id,
2046             (SELECT sellprice FROM parts WHERE id = ?) AS default_sellprice,
2047             '' AS pricegroup,
2048             (SELECT DISTINCT sellprice FROM parts where id = ?) AS price,
2049             'selected' AS selected
2050           FROM prices
2051
2052           ORDER BY pricegroup|;
2053     @values = (conv_i($id), conv_i($id), conv_i($id), conv_i($id));
2054     my $pkq = prepare_execute_query($form, $dbh, $query, @values);
2055
2056     while ($pkr = $pkq->fetchrow_hashref(NAME_lc)) {
2057       $pkr->{id}       = $id;
2058       $pkr->{selected} = '';
2059
2060       # if there is an exchange rate change price
2061       if (($form->{exchangerate} * 1) != 0) {
2062
2063         $pkr->{price} /= $form->{exchangerate};
2064       }
2065
2066       $pkr->{price} *= $form->{"basefactor_$i"};
2067
2068       $pkr->{price} *= $basefactor;
2069
2070       $pkr->{price} = $form->format_amount($myconfig, $pkr->{price}, 5);
2071
2072       if ($selectedpricegroup_id eq undef) {
2073         if ($pkr->{pricegroup_id} eq $form->{customer_klass}) {
2074
2075           $pkr->{selected}  = ' selected';
2076
2077           # no customer pricesgroup set
2078           if ($pkr->{price} == $pkr->{default_sellprice}) {
2079
2080             $pkr->{price} = $form->{"sellprice_$i"};
2081
2082           } else {
2083
2084             $form->{"sellprice_$i"} = $pkr->{price};
2085           }
2086
2087         } elsif ($pkr->{price} == $pkr->{default_sellprice}) {
2088           $pkr->{price}    = $form->{"sellprice_$i"};
2089           $pkr->{selected} = ' selected';
2090         }
2091       }
2092
2093       if ($selectedpricegroup_id or $selectedpricegroup_id == 0) {
2094         if ($selectedpricegroup_id ne $pricegroup_old) {
2095           if ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
2096             $pkr->{selected}  = ' selected';
2097           }
2098         } elsif (($price_new != $form->{"sellprice_$i"}) and ($price_new ne 0)) {
2099           if ($pkr->{pricegroup_id} == 0) {
2100             $pkr->{price}     = $form->{"sellprice_$i"};
2101             $pkr->{selected}  = ' selected';
2102           }
2103         } elsif ($pkr->{pricegroup_id} eq $selectedpricegroup_id) {
2104           $pkr->{selected}  = ' selected';
2105           if (    ($pkr->{pricegroup_id} == 0)
2106               and ($pkr->{price} == $form->{"sellprice_$i"})) {
2107             # $pkr->{price}                         = $form->{"sellprice_$i"};
2108           } else {
2109             $pkr->{price} = $form->{"sellprice_$i"};
2110           }
2111         }
2112       }
2113       push @{ $form->{PRICES}{$i} }, $pkr;
2114
2115     }
2116     $form->{"basefactor_$i"} *= $basefactor;
2117
2118     $i++;
2119
2120     $pkq->finish;
2121   }
2122
2123   $dbh->disconnect;
2124
2125   $main::lxdebug->leave_sub();
2126 }
2127
2128 sub has_storno {
2129   $main::lxdebug->enter_sub();
2130
2131   my ($self, $myconfig, $form, $table) = @_;
2132
2133   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
2134
2135   # make sure there's no funny stuff in $table
2136   # ToDO: die when this happens and throw an error
2137   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
2138
2139   my $dbh = $form->dbconnect($myconfig);
2140
2141   my $query = qq|SELECT storno FROM $table WHERE storno_id = ?|;
2142   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
2143
2144   $dbh->disconnect();
2145
2146   $main::lxdebug->leave_sub();
2147
2148   return $result;
2149 }
2150
2151 sub is_storno {
2152   $main::lxdebug->enter_sub();
2153
2154   my ($self, $myconfig, $form, $table) = @_;
2155
2156   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
2157
2158   # make sure there's no funny stuff in $table
2159   # ToDO: die when this happens and throw an error
2160   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
2161
2162   my $dbh = $form->dbconnect($myconfig);
2163
2164   my $query = qq|SELECT storno FROM $table WHERE id = ?|;
2165   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
2166
2167   $dbh->disconnect();
2168
2169   $main::lxdebug->leave_sub();
2170
2171   return $result;
2172 }
2173
2174 1;