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