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