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