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