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