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