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