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