Anzahlungs-Rg.: Workaround f. fxselprice/PTC beim Ermitteln der Steuern
[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     # Collect VAT of invoices for advance payment.
582     # Set sellprices to fxsellprices for items, because
583     # the PriceTaxCalculator sets fxsellprice from sellprice before calculating.
584     $_->sellprice($_->fxsellprice) for @{$invoice_for_advance_payment->items};
585     my %pat       = $invoice_for_advance_payment->calculate_prices_and_taxes;
586     my $taxamount = sum0 values %{ $pat{taxes_by_tax_id} };
587
588     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_$_"} },              $invoice_for_advance_payment->$_) for qw(invnumber transdate);
589     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_amount_nofmt"} },    $invoice_for_advance_payment->amount);
590     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_amount"} },          $invoice_for_advance_payment->amount_as_number);
591     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_taxamount_nofmt"} }, $taxamount);
592     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_taxamount"} },       $form->format_amount($myconfig, $taxamount, 2));
593
594     $form->{iap_amount_nofmt}    += $invoice_for_advance_payment->amount;
595     $form->{iap_taxamount_nofmt} += $taxamount;
596     $form->{iap_existing}         = 1;
597   }
598   $form->{iap_amount}    = $form->format_amount($myconfig, $form->{iap_amount_nofmt},    2);
599   $form->{iap_taxamount} = $form->format_amount($myconfig, $form->{iap_taxamount_nofmt}, 2);
600
601   $main::lxdebug->leave_sub();
602 }
603
604 sub customer_details {
605   $main::lxdebug->enter_sub();
606
607   my ($self, $myconfig, $form, @wanted_vars) = @_;
608
609   # connect to database
610   my $dbh = $form->get_standard_dbh;
611
612   my $language_id = $form->{language_id};
613
614   # get contact id, set it if nessessary
615   $form->{cp_id} *= 1;
616
617   my @values =  (conv_i($form->{customer_id}));
618
619   my $where = "";
620   if ($form->{cp_id}) {
621     $where = qq| AND (cp.cp_id = ?) |;
622     push(@values, conv_i($form->{cp_id}));
623   }
624
625   # get rest for the customer
626   my $query =
627     qq|SELECT ct.*, cp.*, ct.notes as customernotes,
628          ct.phone AS customerphone, ct.fax AS customerfax, ct.email AS customeremail,
629          cu.name AS currency
630        FROM customer ct
631        LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
632        LEFT JOIN currencies cu ON (ct.currency_id = cu.id)
633        WHERE (ct.id = ?) $where
634        ORDER BY cp.cp_id
635        LIMIT 1|;
636   my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
637   # we have no values, probably a invalid contact person. hotfix and first idea for issue #10
638   if (!$ref) {
639     my $customer = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id});
640     if ($customer) {
641       $ref->{name} = $customer->name;
642       $ref->{street} = $customer->street;
643       $ref->{zipcode} = $customer->zipcode;
644       $ref->{country} = $customer->country;
645       $ref->{gln} = $customer->gln;
646     }
647     my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id});
648     if ($contact) {
649       $ref->{cp_name} = $contact->cp_name;
650       $ref->{cp_givenname} = $contact->cp_givenname;
651       $ref->{cp_gender} = $contact->cp_gender;
652     }
653   }
654   # remove id,notes (double of customernotes) and taxincluded before copy back
655   delete @$ref{qw(id taxincluded notes)};
656
657   @wanted_vars = grep({ $_ } @wanted_vars);
658   if (scalar(@wanted_vars) > 0) {
659     my %h_wanted_vars;
660     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
661     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
662   }
663
664   map { $form->{$_} = $ref->{$_} } keys %$ref;
665
666   if ($form->{delivery_customer_id}) {
667     $query =
668       qq|SELECT *, notes as customernotes
669          FROM customer
670          WHERE id = ?
671          LIMIT 1|;
672     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_customer_id}));
673
674     map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
675   }
676
677   if ($form->{delivery_vendor_id}) {
678     $query =
679       qq|SELECT *, notes as customernotes
680          FROM customer
681          WHERE id = ?
682          LIMIT 1|;
683     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_vendor_id}));
684
685     map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
686   }
687
688   my $custom_variables = CVar->get_custom_variables('dbh'      => $dbh,
689                                                     'module'   => 'CT',
690                                                     'trans_id' => $form->{customer_id});
691   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
692
693   if ($form->{cp_id}) {
694     $custom_variables = CVar->get_custom_variables(dbh      => $dbh,
695                                                    module   => 'Contacts',
696                                                    trans_id => $form->{cp_id});
697     $form->{"cp_cvar_$_->{name}"} = $_->{value} for @{ $custom_variables };
698   }
699
700   $form->{cp_greeting} = GenericTranslations->get('dbh'              => $dbh,
701                                                   'translation_type' => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
702                                                   'language_id'      => $language_id,
703                                                   'allow_fallback'   => 1);
704
705
706   $main::lxdebug->leave_sub();
707 }
708
709 sub post_invoice {
710   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
711   $main::lxdebug->enter_sub();
712
713   my $rc = SL::DB->client->with_transaction(\&_post_invoice, $self, $myconfig, $form, $provided_dbh, %params);
714
715   $::lxdebug->leave_sub;
716   return $rc;
717 }
718
719 sub _post_invoice {
720   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
721
722   my $payments_only = $params{payments_only};
723   my $dbh = $provided_dbh || SL::DB->client->dbh;
724   my $restricter = SL::HTML::Restrict->create;
725
726   my ($query, $sth, $null, $project_id, @values);
727   my $exchangerate = 0;
728
729   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
730                                           dbh    => $dbh);
731
732   if (!$form->{employee_id}) {
733     $form->get_employee($dbh);
734   }
735
736   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
737   my $defaultcurrency = $form->{defaultcurrency};
738
739   my $all_units = AM->retrieve_units($myconfig, $form);
740
741   my $already_booked = !!$form->{id};
742
743   if (!$payments_only) {
744     if ($form->{storno}) {
745       _delete_transfers($dbh, $form, $form->{storno_id});
746     }
747     if ($form->{id}) {
748       &reverse_invoice($dbh, $form);
749       _delete_transfers($dbh, $form, $form->{id});
750
751     } else {
752       my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, save => 1);
753       $form->{invnumber} = $trans_number->create_unique unless $trans_number->is_unique;
754
755       $query = qq|SELECT nextval('glid')|;
756       ($form->{"id"}) = selectrow_query($form, $dbh, $query);
757
758       $query = qq|INSERT INTO ar (id, invnumber, currency_id, taxzone_id) VALUES (?, ?, (SELECT id FROM currencies WHERE name=?), ?)|;
759       do_query($form, $dbh, $query, $form->{"id"}, $form->{"id"}, $form->{currency}, $form->{taxzone_id});
760
761       if (!$form->{invnumber}) {
762         my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, id => $form->{id});
763         $form->{invnumber} = $trans_number->create_unique;
764       }
765     }
766   }
767
768   my ($netamount, $invoicediff) = (0, 0);
769   my ($amount, $linetotal, $lastincomeaccno);
770
771   if ($form->{currency} eq $defaultcurrency) {
772     $form->{exchangerate} = 1;
773   } else {
774     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{invdate}, 'buy');
775   }
776
777   $form->{exchangerate} =
778     ($exchangerate)
779     ? $exchangerate
780     : $form->parse_amount($myconfig, $form->{exchangerate});
781
782   $form->{expense_inventory} = "";
783
784   my %baseunits;
785
786   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
787   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
788   my $price_factor;
789
790   $form->{amount}      = {};
791   $form->{amount_cogs} = {};
792
793   my @processed_invoice_ids;
794
795   foreach my $i (1 .. $form->{rowcount}) {
796     if ($form->{type} eq "credit_note") {
797       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
798       $form->{shipped} = 1;
799     } else {
800       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
801     }
802     my $basefactor;
803     my $baseqty;
804
805     $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
806     $form->{"marge_absolut_$i"} = $form->parse_amount($myconfig, $form->{"marge_absolut_$i"}) * 1;
807     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"}) * 1;
808
809     if ($form->{storno}) {
810       $form->{"qty_$i"} *= -1;
811     }
812
813     if ($form->{"id_$i"}) {
814       my $item_unit;
815       my $position = $i;
816
817       if (defined($baseunits{$form->{"id_$i"}})) {
818         $item_unit = $baseunits{$form->{"id_$i"}};
819       } else {
820         # get item baseunit
821         $query = qq|SELECT unit FROM parts WHERE id = ?|;
822         ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
823         $baseunits{$form->{"id_$i"}} = $item_unit;
824       }
825
826       if (defined($all_units->{$item_unit}->{factor})
827           && ($all_units->{$item_unit}->{factor} ne '')
828           && ($all_units->{$item_unit}->{factor} != 0)) {
829         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
830       } else {
831         $basefactor = 1;
832       }
833       $baseqty = $form->{"qty_$i"} * $basefactor;
834
835       my ($allocated, $taxrate) = (0, 0);
836       my $taxamount;
837
838       # add tax rates
839       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
840
841       # keep entered selling price
842       my $fxsellprice =
843         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
844
845       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
846       $dec = length $dec;
847       my $decimalplaces = ($dec > 2) ? $dec : 2;
848
849       # undo discount formatting
850       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
851
852       # deduct discount
853       $form->{"sellprice_$i"} = $fxsellprice * (1 - $form->{"discount_$i"});
854
855       # round linetotal to 2 decimal places
856       $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
857       $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
858
859       if ($form->{taxincluded}) {
860         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
861         $form->{"sellprice_$i"} =
862           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
863       } else {
864         $taxamount = $linetotal * $taxrate;
865       }
866
867       $netamount += $linetotal;
868
869       if ($taxamount != 0) {
870         map {
871           $form->{amount}{ $form->{id} }{$_} +=
872             $taxamount * $form->{"${_}_rate"} / $taxrate
873         } split(/ /, $form->{"taxaccounts_$i"});
874       }
875
876       # add amount to income, $form->{amount}{trans_id}{accno}
877       $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor;
878
879       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate};
880       $linetotal = $form->round_amount($linetotal, 2);
881
882       # this is the difference from the inventory
883       $invoicediff += ($amount - $linetotal);
884
885       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
886         $linetotal;
887
888       $lastincomeaccno = $form->{"income_accno_$i"};
889
890       # adjust and round sellprice
891       $form->{"sellprice_$i"} =
892         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
893                             $decimalplaces);
894
895       next if $payments_only;
896
897       if ($form->{"inventory_accno_$i"} || $form->{"part_type_$i"} eq 'assembly') {
898
899         if ($form->{"part_type_$i"} eq 'assembly') {
900           # record assembly item as allocated
901           &process_assembly($dbh, $myconfig, $form, $position, $form->{"id_$i"}, $baseqty);
902
903         } else {
904           $allocated = &cogs($dbh, $myconfig, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
905         }
906       }
907
908       # Get pricegroup_id and save it. Unfortunately the interface
909       # also uses ID "0" for signalling that none is selected, but "0"
910       # must not be stored in the database. Therefore we cannot simply
911       # use conv_i().
912       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
913       $pricegroup_id *= 1;
914       $pricegroup_id  = undef if !$pricegroup_id;
915
916       CVar->get_non_editable_ic_cvars(form               => $form,
917                                       dbh                => $dbh,
918                                       row                => $i,
919                                       sub_module         => 'invoice',
920                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
921
922       if (!$form->{"invoice_id_$i"}) {
923         # there is no persistent id, therefore create one with all necessary constraints
924         my $q_invoice_id = qq|SELECT nextval('invoiceid')|;
925         my $h_invoice_id = prepare_query($form, $dbh, $q_invoice_id);
926         do_statement($form, $h_invoice_id, $q_invoice_id);
927         $form->{"invoice_id_$i"}  = $h_invoice_id->fetchrow_array();
928         my $q_create_invoice_id = qq|INSERT INTO invoice (id, trans_id, position, parts_id) values (?, ?, ?, ?)|;
929         do_query($form, $dbh, $q_create_invoice_id, conv_i($form->{"invoice_id_$i"}),
930                  conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}));
931         $h_invoice_id->finish();
932       }
933
934       # save detail record in invoice table
935       $query = <<SQL;
936         UPDATE invoice SET trans_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?,
937                            sellprice = ?, fxsellprice = ?, discount = ?, allocated = ?, assemblyitem = ?,
938                            unit = ?, deliverydate = ?, project_id = ?, serialnumber = ?, pricegroup_id = ?,
939                            base_qty = ?, subtotal = ?,
940                            marge_percent = ?, marge_total = ?, lastcost = ?, active_price_source = ?, active_discount_source = ?,
941                            price_factor_id = ?, price_factor = (SELECT factor FROM price_factors WHERE id = ?), marge_price_factor = ?
942         WHERE id = ?
943 SQL
944
945       @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
946                  $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}), $form->{"qty_$i"},
947                  $form->{"sellprice_$i"}, $fxsellprice,
948                  $form->{"discount_$i"}, $allocated, 'f',
949                  $form->{"unit_$i"}, conv_date($form->{"reqdate_$i"}), conv_i($form->{"project_id_$i"}),
950                  $form->{"serialnumber_$i"}, $pricegroup_id,
951                  $baseqty, $form->{"subtotal_$i"} ? 't' : 'f',
952                  $form->{"marge_percent_$i"}, $form->{"marge_absolut_$i"},
953                  $form->{"lastcost_$i"},
954                  $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
955                  conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
956                  conv_i($form->{"marge_price_factor_$i"}),
957                  conv_i($form->{"invoice_id_$i"}));
958       do_query($form, $dbh, $query, @values);
959       push @processed_invoice_ids, $form->{"invoice_id_$i"};
960
961       CVar->save_custom_variables(module       => 'IC',
962                                   sub_module   => 'invoice',
963                                   trans_id     => $form->{"invoice_id_$i"},
964                                   configs      => $ic_cvar_configs,
965                                   variables    => $form,
966                                   name_prefix  => 'ic_',
967                                   name_postfix => "_$i",
968                                   dbh          => $dbh);
969     }
970     # link previous items with invoice items
971     foreach (qw(delivery_order_items orderitems invoice)) {
972       if (!$form->{useasnew} && $form->{"converted_from_${_}_id_$i"}) {
973         RecordLinks->create_links('dbh'        => $dbh,
974                                   'mode'       => 'ids',
975                                   'from_table' => $_,
976                                   'from_ids'   => $form->{"converted_from_${_}_id_$i"},
977                                   'to_table'   => 'invoice',
978                                   'to_id'      => $form->{"invoice_id_$i"},
979         );
980       }
981       delete $form->{"converted_from_${_}_id_$i"};
982     }
983   }
984
985   # total payments, don't move we need it here
986   for my $i (1 .. $form->{paidaccounts}) {
987     if ($form->{type} eq "credit_note") {
988       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
989     } else {
990       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
991     }
992     $form->{paid} += $form->{"paid_$i"};
993     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
994   }
995
996   my ($tax, $diff) = (0, 0);
997
998   $netamount = $form->round_amount($netamount, 2);
999
1000   # figure out rounding errors for total amount vs netamount + taxes
1001   if ($form->{taxincluded}) {
1002
1003     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
1004     $diff += $amount - $netamount * $form->{exchangerate};
1005     $netamount = $amount;
1006
1007     foreach my $item (split(/ /, $form->{taxaccounts})) {
1008       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
1009       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
1010       $tax += $form->{amount}{ $form->{id} }{$item};
1011       $netamount -= $form->{amount}{ $form->{id} }{$item};
1012     }
1013
1014     $invoicediff += $diff;
1015     ######## this only applies to tax included
1016     if ($lastincomeaccno) {
1017       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
1018     }
1019
1020   } else {
1021     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
1022     $diff      = $amount - $netamount * $form->{exchangerate};
1023     $netamount = $amount;
1024     foreach my $item (split(/ /, $form->{taxaccounts})) {
1025       $form->{amount}{ $form->{id} }{$item} =
1026         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
1027       $amount =
1028         $form->round_amount(
1029                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
1030                  2);
1031       $diff +=
1032         $amount - $form->{amount}{ $form->{id} }{$item} *
1033         $form->{exchangerate};
1034       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
1035       $tax += $form->{amount}{ $form->{id} }{$item};
1036     }
1037   }
1038
1039   # Invoice Summary includes Rounding
1040   my $grossamount = $netamount + $tax;
1041   my $rounding = $form->round_amount(
1042     $form->round_amount($grossamount, 2, 1) - $form->round_amount($grossamount, 2),
1043     2
1044   );
1045   my $rnd_accno = $rounding == 0 ? 0
1046                 : $rounding > 0  ? $form->{rndgain_accno}
1047                 :                  $form->{rndloss_accno}
1048   ;
1049   $form->{amount}{ $form->{id} }{ $form->{AR} } = $form->round_amount($grossamount, 2, 1);
1050   $form->{paid} = $form->round_amount(
1051     $form->{paid} * $form->{exchangerate} + $diff,
1052     2
1053   );
1054
1055   # reverse AR
1056   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
1057
1058   # update exchangerate
1059   if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
1060     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
1061                                $form->{exchangerate}, 0);
1062   }
1063
1064   $project_id = conv_i($form->{"globalproject_id"});
1065   # entsprechend auch beim Bestimmen des Steuerschlüssels in Taxkey.pm berücksichtigen
1066   my $taxdate = $form->{tax_point} ||$form->{deliverydate} || $form->{invdate};
1067
1068   if (!$already_booked && $form->{type} eq 'final_invoice') {
1069     my $invoices_for_advance_payment = $self->_get_invoices_for_advance_payment($form->{convert_from_ar_ids} || $form->{id});
1070     if (scalar @$invoices_for_advance_payment > 0) {
1071       # reverse booking for invoices for advance payment
1072       my $clearing_chart = SL::DB::Chart->new(id => $::instance_conf->get_advance_payment_clearing_chart_id)->load;
1073       die "No Clearing Chart for Advance Payment" unless ref $clearing_chart eq 'SL::DB::Chart';
1074       foreach my $invoice_for_advance_payment (@$invoices_for_advance_payment) {
1075         # delete ?
1076         # --> is implemented below (bookings are marked in memo field)
1077         #
1078         # TODO: helper table acc_trans_advance_payment
1079         # trans_id for final invoice connects to acc_trans_id here
1080         # my $booking = SL::DB::AccTrans->new( ...)
1081         # --> helper table not nessessary because of mark in memo field
1082         #
1083         # TODO: If final_invoice change (delete storno) delete all connectin acc_trans entries, if
1084         # period is not closed
1085         # --> no problem because gldate of reverse booking is date of final invoice
1086         #     if deletion of final invoice is allowed, reverting bookings in invoices
1087         #     for advance payment are allowed, too.
1088         # $booking->id, $self->id in helper table
1089         $form->{amount}->{$invoice_for_advance_payment->id}->{$clearing_chart->accno} = -1 * $invoice_for_advance_payment->netamount;
1090         $form->{memo}  ->{$invoice_for_advance_payment->id}->{$clearing_chart->accno} = 'reverse booking by final invoice';
1091         # AR
1092         $form->{amount}->{$invoice_for_advance_payment->id}->{$form->{AR}} = $invoice_for_advance_payment->netamount;
1093         $form->{memo}  ->{$invoice_for_advance_payment->id}->{$form->{AR}} = 'reverse booking by final invoice';
1094       }
1095     }
1096   }
1097   if ($form->{type} eq 'invoice_for_advance_payment') {
1098     # sanity and decomplex, allow only one tax rate
1099     my $clearing_chart = SL::DB::Chart->new(id => $::instance_conf->get_advance_payment_clearing_chart_id)->load;
1100     die "No Clearing Chart for Advance Payment" unless ref $clearing_chart eq 'SL::DB::Chart';
1101
1102     my @current_taxaccounts = (split(/ /, $form->{taxaccounts}));
1103     die 'Wrong Call, cannot post invoice for advance payment with more than one tax' if (scalar @current_taxaccounts > 1);
1104
1105     my @trans_ids = keys %{ $form->{amount} };
1106     if (scalar @trans_ids > 1) {
1107       require Data::Dumper;
1108       die "Invalid state for advance payment more than one trans_id " . Dumper($form->{amount});
1109     }
1110
1111     # get gross and move to clearing chart - delete everything else
1112     # 1. gross
1113     my $gross = $form->{amount}{$trans_ids[0]}{$form->{AR}};
1114     # 2. destroy
1115     undef $form->{amount}{$trans_ids[0]};
1116     # 3. rebuild
1117     $form->{amount}{$trans_ids[0]}{$form->{AR}}            = $gross;
1118     $form->{amount}{$trans_ids[0]}{$clearing_chart->accno} = $gross * -1;
1119     # 4. no cogs, hopefully not commonly used at all
1120     undef $form->{amount_cogs};
1121   }
1122
1123   foreach my $trans_id (keys %{ $form->{amount_cogs} }) {
1124     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
1125       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
1126
1127       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
1128
1129       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
1130         $query =
1131           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1132                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
1133         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
1134         do_query($form, $dbh, $query, @values);
1135         $form->{amount_cogs}{$trans_id}{$accno} = 0;
1136       }
1137     }
1138
1139     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
1140       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
1141
1142       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
1143         $query =
1144           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1145                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
1146         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
1147         do_query($form, $dbh, $query, @values);
1148       }
1149     }
1150   }
1151
1152   foreach my $trans_id (keys %{ $form->{amount} }) {
1153     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
1154       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
1155
1156       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
1157
1158       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
1159         $query =
1160           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link, memo)
1161              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
1162                      (SELECT tax_id
1163                       FROM taxkeys
1164                       WHERE chart_id= (SELECT id
1165                                        FROM chart
1166                                        WHERE accno = ?)
1167                       AND startdate <= ?
1168                       ORDER BY startdate DESC LIMIT 1),
1169                      (SELECT taxkey_id
1170                       FROM taxkeys
1171                       WHERE chart_id= (SELECT id
1172                                        FROM chart
1173                                        WHERE accno = ?)
1174                       AND startdate <= ?
1175                       ORDER BY startdate DESC LIMIT 1),
1176                      ?,
1177                      (SELECT link FROM chart WHERE accno = ?),
1178                      ?)|;
1179         @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});
1180         do_query($form, $dbh, $query, @values);
1181         $form->{amount}{$trans_id}{$accno} = 0;
1182       }
1183     }
1184
1185     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
1186       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
1187
1188       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
1189         $query =
1190           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link, memo)
1191              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
1192                      (SELECT tax_id
1193                       FROM taxkeys
1194                       WHERE chart_id= (SELECT id
1195                                        FROM chart
1196                                        WHERE accno = ?)
1197                       AND startdate <= ?
1198                       ORDER BY startdate DESC LIMIT 1),
1199                      (SELECT taxkey_id
1200                       FROM taxkeys
1201                       WHERE chart_id= (SELECT id
1202                                        FROM chart
1203                                        WHERE accno = ?)
1204                       AND startdate <= ?
1205                       ORDER BY startdate DESC LIMIT 1),
1206                      ?,
1207                      (SELECT link FROM chart WHERE accno = ?),
1208                      ?)|;
1209         @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});
1210         do_query($form, $dbh, $query, @values);
1211       }
1212     }
1213     if (!$payments_only && ($rnd_accno != 0)) {
1214       $query =
1215         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1216              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
1217       @values = (conv_i($trans_id), $rnd_accno, $rounding, conv_date($form->{invdate}), conv_i($project_id), $rnd_accno);
1218       do_query($form, $dbh, $query, @values);
1219       $rnd_accno = 0;
1220     }
1221   }
1222
1223   # deduct payment differences from diff
1224   for my $i (1 .. $form->{paidaccounts}) {
1225     if ($form->{"paid_$i"} != 0) {
1226       $amount =
1227         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
1228       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
1229     }
1230   }
1231
1232   my %already_cleared = %{ $params{already_cleared} // {} };
1233
1234   # record payments and offsetting AR
1235   if (!$form->{storno}) {
1236     for my $i (1 .. $form->{paidaccounts}) {
1237
1238       if ($form->{"acc_trans_id_$i"}
1239           && $payments_only
1240           && (SL::DB::Default->get->payments_changeable == 0)) {
1241         next;
1242       }
1243
1244       next if ($form->{"paid_$i"} == 0);
1245
1246       my ($accno) = split(/--/, $form->{"AR_paid_$i"});
1247       $form->{"datepaid_$i"} = $form->{invdate}
1248       unless ($form->{"datepaid_$i"});
1249       $form->{datepaid} = $form->{"datepaid_$i"};
1250
1251       $exchangerate = 0;
1252
1253       if ($form->{currency} eq $defaultcurrency) {
1254         $form->{"exchangerate_$i"} = 1;
1255       } else {
1256         $exchangerate              = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
1257         $form->{"exchangerate_$i"} = $exchangerate || $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
1258       }
1259
1260       # record AR
1261       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
1262
1263       my $new_cleared = !$form->{"acc_trans_id_$i"}                                                       ? 'f'
1264                       : !$already_cleared{$form->{"acc_trans_id_$i"}}                                     ? 'f'
1265                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{amount} != $form->{"paid_$i"} * -1 ? 'f'
1266                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{accno}  != $accno                  ? 'f'
1267                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{cleared}                           ? 't'
1268                       :                                                                                     'f';
1269
1270       if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
1271         $query =
1272         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, cleared, chart_link)
1273            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
1274                    (SELECT tax_id
1275                     FROM taxkeys
1276                     WHERE chart_id= (SELECT id
1277                                      FROM chart
1278                                      WHERE accno = ?)
1279                     AND startdate <= ?
1280                     ORDER BY startdate DESC LIMIT 1),
1281                    (SELECT taxkey_id
1282                     FROM taxkeys
1283                     WHERE chart_id= (SELECT id
1284                                      FROM chart
1285                                      WHERE accno = ?)
1286                     AND startdate <= ?
1287                     ORDER BY startdate DESC LIMIT 1),
1288                    ?, ?,
1289                    (SELECT link FROM chart WHERE accno = ?))|;
1290         @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});
1291         do_query($form, $dbh, $query, @values);
1292       }
1293
1294       # record payment
1295       $form->{"paid_$i"} *= -1;
1296       my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
1297
1298       $query =
1299       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, tax_id, taxkey, project_id, cleared, chart_link)
1300          VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
1301                  (SELECT tax_id
1302                   FROM taxkeys
1303                   WHERE chart_id= (SELECT id
1304                                    FROM chart
1305                                    WHERE accno = ?)
1306                   AND startdate <= ?
1307                   ORDER BY startdate DESC LIMIT 1),
1308                  (SELECT taxkey_id
1309                   FROM taxkeys
1310                   WHERE chart_id= (SELECT id
1311                                    FROM chart
1312                                    WHERE accno = ?)
1313                   AND startdate <= ?
1314                   ORDER BY startdate DESC LIMIT 1),
1315                  ?, ?,
1316                  (SELECT link FROM chart WHERE accno = ?))|;
1317       @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
1318                  $gldate, $form->{"source_$i"}, $form->{"memo_$i"}, $accno, conv_date($taxdate), $accno, conv_date($taxdate), $project_id, $new_cleared, $accno);
1319       do_query($form, $dbh, $query, @values);
1320
1321       # exchangerate difference
1322       $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
1323         $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
1324
1325       # gain/loss
1326       $amount =
1327         $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
1328         $form->{"exchangerate_$i"};
1329       if ($amount > 0) {
1330         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } += $amount;
1331       } else {
1332         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } += $amount;
1333       }
1334
1335       $diff = 0;
1336
1337       # update exchange rate
1338       if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
1339         $form->update_exchangerate($dbh, $form->{currency},
1340                                    $form->{"datepaid_$i"},
1341                                    $form->{"exchangerate_$i"}, 0);
1342       }
1343     }
1344
1345   } else {                      # if (!$form->{storno})
1346     $form->{marge_total} *= -1;
1347   }
1348
1349   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
1350
1351   # record exchange rate differences and gains/losses
1352   foreach my $accno (keys %{ $form->{fx} }) {
1353     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
1354       $form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2);
1355       if ( $form->{fx}{$accno}{$transdate} != 0 ) {
1356
1357         $query =
1358           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, tax_id, taxkey, project_id, chart_link)
1359              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
1360                  (SELECT tax_id
1361                   FROM taxkeys
1362                   WHERE chart_id= (SELECT id
1363                                    FROM chart
1364                                    WHERE accno = ?)
1365                   AND startdate <= ?
1366                   ORDER BY startdate DESC LIMIT 1),
1367                  (SELECT taxkey_id
1368                   FROM taxkeys
1369                   WHERE chart_id= (SELECT id
1370                                    FROM chart
1371                                    WHERE accno = ?)
1372                   AND startdate <= ?
1373                   ORDER BY startdate DESC LIMIT 1),
1374                  ?,
1375                  (SELECT link FROM chart WHERE accno = ?))|;
1376         @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);
1377         do_query($form, $dbh, $query, @values);
1378       }
1379     }
1380   }
1381
1382   if ($payments_only) {
1383     $query = qq|UPDATE ar SET paid = ? WHERE id = ?|;
1384     do_query($form, $dbh, $query,  $form->{paid}, conv_i($form->{id}));
1385
1386     $form->new_lastmtime('ar');
1387
1388     return;
1389   }
1390
1391   $amount = $form->round_amount( $netamount + $tax, 2, 1);
1392
1393   # save AR record
1394   #erweiterung fuer lieferscheinnummer (donumber) 12.02.09 jb
1395
1396   $query = qq|UPDATE ar set
1397                 invnumber   = ?, ordnumber     = ?, quonumber     = ?, cusordnumber  = ?,
1398                 transdate   = ?, orddate       = ?, quodate       = ?, tax_point     = ?, customer_id   = ?,
1399                 amount      = ?, netamount     = ?, paid          = ?,
1400                 duedate     = ?, deliverydate  = ?, invoice       = ?, shippingpoint = ?,
1401                 shipvia     = ?,                    notes         = ?, intnotes      = ?,
1402                 currency_id = (SELECT id FROM currencies WHERE name = ?),
1403                 department_id = ?, payment_id    = ?, taxincluded   = ?,
1404                 type        = ?, language_id   = ?, taxzone_id    = ?, shipto_id     = ?, billing_address_id = ?,
1405                 employee_id = ?, salesman_id   = ?, storno_id     = ?, storno        = ?,
1406                 cp_id       = ?, marge_total   = ?, marge_percent = ?,
1407                 globalproject_id               = ?, delivery_customer_id             = ?,
1408                 transaction_description        = ?, delivery_vendor_id               = ?,
1409                 donumber    = ?, invnumber_for_credit_note = ?,        direct_debit  = ?,
1410                 delivery_term_id = ?
1411               WHERE id = ?|;
1412   @values = (          $form->{"invnumber"},           $form->{"ordnumber"},             $form->{"quonumber"},          $form->{"cusordnumber"},
1413              conv_date($form->{"invdate"}),  conv_date($form->{"orddate"}),    conv_date($form->{"quodate"}), conv_date($form->{tax_point}), conv_i($form->{"customer_id"}),
1414                        $amount,                        $netamount,                       $form->{"paid"},
1415              conv_date($form->{"duedate"}),  conv_date($form->{"deliverydate"}),    '1',                                $form->{"shippingpoint"},
1416                        $form->{"shipvia"},                                $restricter->process($form->{"notes"}),       $form->{"intnotes"},
1417                        $form->{"currency"},     conv_i($form->{"department_id"}), conv_i($form->{"payment_id"}),        $form->{"taxincluded"} ? 't' : 'f',
1418                        $form->{"type"},         conv_i($form->{"language_id"}),   conv_i($form->{"taxzone_id"}), conv_i($form->{"shipto_id"}), conv_i($form->{billing_address_id}),
1419                 conv_i($form->{"employee_id"}), conv_i($form->{"salesman_id"}),   conv_i($form->{storno_id}),           $form->{"storno"} ? 't' : 'f',
1420                 conv_i($form->{"cp_id"}),            1 * $form->{marge_total} ,      1 * $form->{marge_percent},
1421                 conv_i($form->{"globalproject_id"}),                              conv_i($form->{"delivery_customer_id"}),
1422                        $form->{transaction_description},                          conv_i($form->{"delivery_vendor_id"}),
1423                        $form->{"donumber"}, $form->{"invnumber_for_credit_note"},        $form->{direct_debit} ? 't' : 'f',
1424                 conv_i($form->{delivery_term_id}),
1425                 conv_i($form->{"id"}));
1426   do_query($form, $dbh, $query, @values);
1427
1428
1429   if ($form->{storno}) {
1430     $query =
1431       qq!UPDATE ar SET
1432            paid = amount,
1433            storno = 't',
1434            intnotes = ? || intnotes
1435          WHERE id = ?!;
1436     do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{"storno_id"}));
1437     do_query($form, $dbh, qq|UPDATE ar SET paid = amount WHERE id = ?|, conv_i($form->{"id"}));
1438   }
1439
1440   # maybe we are in a larger transaction and the current
1441   # object is not yet persistent in the db, therefore we
1442   # need the current dbh to get the not yet committed mtime
1443   $form->new_lastmtime('ar', $provided_dbh);
1444
1445   # add shipto
1446   if (!$form->{shipto_id}) {
1447     $form->add_shipto($dbh, $form->{id}, "AR");
1448   }
1449
1450   # save printed, emailed and queued
1451   $form->save_status($dbh);
1452
1453   Common::webdav_folder($form);
1454
1455   if ($form->{convert_from_ar_ids}) {
1456     RecordLinks->create_links('dbh'        => $dbh,
1457                               'mode'       => 'ids',
1458                               'from_table' => 'ar',
1459                               'from_ids'   => $form->{convert_from_ar_ids},
1460                               'to_table'   => 'ar',
1461                               'to_id'      => $form->{id},
1462     );
1463     delete $form->{convert_from_ar_ids};
1464   }
1465
1466   # Link this record to the records it was created from.
1467   if ($form->{convert_from_oe_ids}) {
1468     RecordLinks->create_links('dbh'        => $dbh,
1469                               'mode'       => 'ids',
1470                               'from_table' => 'oe',
1471                               'from_ids'   => $form->{convert_from_oe_ids},
1472                               'to_table'   => 'ar',
1473                               'to_id'      => $form->{id},
1474       );
1475     delete $form->{convert_from_oe_ids};
1476   }
1477
1478   my @convert_from_do_ids = map { $_ * 1 } grep { $_ } split m/\s+/, $form->{convert_from_do_ids};
1479
1480   if (scalar @convert_from_do_ids) {
1481     DO->close_orders('dbh' => $dbh,
1482                      'ids' => \@convert_from_do_ids);
1483
1484     RecordLinks->create_links('dbh'        => $dbh,
1485                               'mode'       => 'ids',
1486                               'from_table' => 'delivery_orders',
1487                               'from_ids'   => \@convert_from_do_ids,
1488                               'to_table'   => 'ar',
1489                               'to_id'      => $form->{id},
1490       );
1491   }
1492   delete $form->{convert_from_do_ids};
1493
1494   ARAP->close_orders_if_billed('dbh'     => $dbh,
1495                                'arap_id' => $form->{id},
1496                                'table'   => 'ar',);
1497
1498   # search for orphaned invoice items
1499   $query  = sprintf 'SELECT id FROM invoice WHERE trans_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_invoice_ids;
1500   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_invoice_ids);
1501   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
1502   if (scalar @orphaned_ids) {
1503     # clean up invoice items
1504     $query  = sprintf 'DELETE FROM invoice WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
1505     do_query($form, $dbh, $query, @orphaned_ids);
1506   }
1507
1508   if ($form->{draft_id}) {
1509     SL::DB::Manager::Draft->delete_all(where => [ id => delete($form->{draft_id}) ]);
1510   }
1511
1512   # safety check datev export
1513   if ($::instance_conf->get_datev_check_on_sales_invoice) {
1514
1515     my $datev = SL::DATEV->new(
1516       dbh        => $dbh,
1517       trans_id   => $form->{id},
1518     );
1519
1520     $datev->generate_datev_data;
1521
1522     if ($datev->errors) {
1523       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
1524     }
1525   }
1526
1527   # update shop status
1528   my $invoice = SL::DB::Invoice->new( id => $form->{id} )->load;
1529   my @linked_shop_orders = $invoice->linked_records(
1530     from      => 'ShopOrder',
1531     via       => ['DeliveryOrder','Order',],
1532   );
1533     #do update
1534     my $shop_order = $linked_shop_orders[0][0];
1535   if ( $shop_order ) {
1536     require SL::Shop;
1537     my $shop_config = SL::DB::Manager::Shop->get_first( query => [ id => $shop_order->shop_id ] );
1538     my $shop = SL::Shop->new( config => $shop_config );
1539     $shop->connector->set_orderstatus($shop_order->shop_trans_id, "completed");
1540   }
1541
1542   return 1;
1543 }
1544
1545 sub _get_invoices_for_advance_payment {
1546   my ($self, $id) = @_;
1547
1548   return [] if !$id;
1549
1550   my $invoice_obj      = SL::DB::Invoice->new(id => $id*1)->load;
1551   my $links            = $invoice_obj->linked_records(direction => 'from', from => ['Invoice'], recursive => 1);
1552   my @related_invoices = grep {'SL::DB::Invoice' eq ref $_ && "invoice_for_advance_payment" eq $_->type} @$links;
1553
1554   push @related_invoices, $invoice_obj if "invoice_for_advance_payment" eq $invoice_obj->type;
1555
1556   return \@related_invoices;
1557 }
1558
1559
1560 sub transfer_out {
1561   $::lxdebug->enter_sub;
1562
1563   my ($self, $form, $dbh) = @_;
1564
1565   my (@errors, @transfers);
1566
1567   # do nothing, if transfer default is not requested at all
1568   if (!$::instance_conf->get_transfer_default) {
1569     $::lxdebug->leave_sub;
1570     return \@errors;
1571   }
1572
1573   require SL::WH;
1574
1575   foreach my $i (1 .. $form->{rowcount}) {
1576     next if !$form->{"id_$i"};
1577
1578     my ($err, $qty, $wh_id, $bin_id, $chargenumber);
1579
1580     if ($::instance_conf->get_sales_serial_eq_charge && $form->{"serialnumber_$i"}) {
1581       my @serials = split(" ", $form->{"serialnumber_$i"});
1582       if (scalar @serials != $form->{"qty_$i"}) {
1583         push @errors, $::locale->text("Cannot transfer #1 qty with #2 serial number(s)", $form->{"qty_$i"}, scalar @serials);
1584         last;
1585       }
1586       foreach my $serial (@serials) {
1587         ($qty, $wh_id, $bin_id, $chargenumber) = WH->get_wh_and_bin_for_charge(chargenumber => $serial);
1588         if (!$qty) {
1589           push @errors, $::locale->text("Not enough in stock for the serial number #1", $serial);
1590           last;
1591         }
1592         push @transfers, {
1593             'parts_id'         => $form->{"id_$i"},
1594             'qty'              => 1,
1595             'unit'             => $form->{"unit_$i"},
1596             'transfer_type'    => 'shipped',
1597             'src_warehouse_id' => $wh_id,
1598             'src_bin_id'       => $bin_id,
1599             'chargenumber'     => $chargenumber,
1600             'project_id'       => $form->{"project_id_$i"},
1601             'invoice_id'       => $form->{"invoice_id_$i"},
1602             'comment'          => $::locale->text("Default transfer invoice with charge number"),
1603         };
1604       }
1605       $err = []; # error handling uses @errors direct
1606     } else {
1607       ($err, $wh_id, $bin_id)    = _determine_wh_and_bin($dbh, $::instance_conf,
1608                                                          $form->{"id_$i"},
1609                                                          $form->{"qty_$i"},
1610                                                          $form->{"unit_$i"});
1611       if (!@{ $err } && $wh_id && $bin_id) {
1612         push @transfers, {
1613           'parts_id'         => $form->{"id_$i"},
1614           'qty'              => $form->{"qty_$i"},
1615           'unit'             => $form->{"unit_$i"},
1616           'transfer_type'    => 'shipped',
1617           'src_warehouse_id' => $wh_id,
1618           'src_bin_id'       => $bin_id,
1619           'project_id'       => $form->{"project_id_$i"},
1620           'invoice_id'       => $form->{"invoice_id_$i"},
1621           'comment'          => $::locale->text("Default transfer invoice"),
1622         };
1623       }
1624     }
1625     push @errors, @{ $err };
1626   } # end form rowcount
1627
1628   if (!@errors) {
1629     WH->transfer(@transfers);
1630   }
1631
1632   $::lxdebug->leave_sub;
1633   return \@errors;
1634 }
1635
1636 sub _determine_wh_and_bin {
1637   $::lxdebug->enter_sub(2);
1638
1639   my ($dbh, $conf, $part_id, $qty, $unit) = @_;
1640   my @errors;
1641
1642   my $part = SL::DB::Part->new(id => $part_id)->load;
1643
1644   # ignore service if they are not configured to be transfered
1645   if ($part->is_service && !$conf->get_transfer_default_services) {
1646     $::lxdebug->leave_sub(2);
1647     return (\@errors);
1648   }
1649
1650   # test negative qty
1651   if ($qty < 0) {
1652     push @errors, $::locale->text("Cannot transfer negative quantities.");
1653     return (\@errors);
1654   }
1655
1656   # get/test default bin
1657   my ($default_wh_id, $default_bin_id);
1658   if ($conf->get_transfer_default_use_master_default_bin) {
1659     $default_wh_id  = $conf->get_warehouse_id if $conf->get_warehouse_id;
1660     $default_bin_id = $conf->get_bin_id       if $conf->get_bin_id;
1661   }
1662   my $wh_id  = $part->warehouse_id || $default_wh_id;
1663   my $bin_id = $part->bin_id       || $default_bin_id;
1664
1665   # check qty and bin
1666   if ($bin_id) {
1667     my ($max_qty, $error) = WH->get_max_qty_parts_bin(dbh      => $dbh,
1668                                                       parts_id => $part->id,
1669                                                       bin_id   => $bin_id);
1670     if ($error == 1) {
1671       push @errors, $::locale->text('Part "#1" has chargenumber or best before date set. So it cannot be transfered automatically.',
1672                                     $part->description);
1673     }
1674     my $form_unit_obj = SL::DB::Unit->new(name => $unit)->load;
1675     my $part_unit_qty = $form_unit_obj->convert_to($qty, $part->unit_obj);
1676     my $diff_qty      = $max_qty - $part_unit_qty;
1677     if (!@errors && $diff_qty < 0) {
1678       push @errors, $::locale->text('For part "#1" there are missing #2 #3 in the default warehouse/bin "#4/#5".',
1679                                     $part->description,
1680                                     $::form->format_amount(\%::myconfig, -1*$diff_qty),
1681                                     $part->unit_obj->name,
1682                                     SL::DB::Warehouse->new(id => $wh_id)->load->description,
1683                                     SL::DB::Bin->new(      id => $bin_id)->load->description);
1684     }
1685   } else {
1686     push @errors, $::locale->text('For part "#1" there is no default warehouse and bin defined.',
1687                                   $part->description);
1688   }
1689
1690   # transfer to special "ignore onhand" bin if requested and default bin does not work
1691   if (@errors && $conf->get_transfer_default_ignore_onhand && $conf->get_bin_id_ignore_onhand) {
1692     $wh_id  = $conf->get_warehouse_id_ignore_onhand;
1693     $bin_id = $conf->get_bin_id_ignore_onhand;
1694     if ($wh_id && $bin_id) {
1695       @errors = ();
1696     } else {
1697       push @errors, $::locale->text('For part "#1" there is no default warehouse and bin for ignoring onhand defined.',
1698                                     $part->description);
1699     }
1700   }
1701
1702   $::lxdebug->leave_sub(2);
1703   return (\@errors, $wh_id, $bin_id);
1704 }
1705
1706 sub _delete_transfers {
1707   $::lxdebug->enter_sub;
1708
1709   my ($dbh, $form, $id) = @_;
1710
1711   my $query = qq|DELETE FROM inventory WHERE invoice_id
1712                   IN (SELECT id FROM invoice WHERE trans_id = ?)|;
1713
1714   do_query($form, $dbh, $query, $id);
1715
1716   $::lxdebug->leave_sub;
1717 }
1718
1719 sub _delete_payments {
1720   $main::lxdebug->enter_sub();
1721
1722   my ($self, $form, $dbh) = @_;
1723
1724   my @delete_acc_trans_ids;
1725
1726   # Delete old payment entries from acc_trans.
1727   my $query =
1728     qq|SELECT acc_trans_id
1729        FROM acc_trans
1730        WHERE (trans_id = ?) AND fx_transaction
1731
1732        UNION
1733
1734        SELECT at.acc_trans_id
1735        FROM acc_trans at
1736        LEFT JOIN chart c ON (at.chart_id = c.id)
1737        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
1738   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
1739
1740   $query =
1741     qq|SELECT at.acc_trans_id
1742        FROM acc_trans at
1743        LEFT JOIN chart c ON (at.chart_id = c.id)
1744        WHERE (trans_id = ?)
1745          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
1746        ORDER BY at.acc_trans_id
1747        OFFSET 1|;
1748   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
1749
1750   if (@delete_acc_trans_ids) {
1751     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
1752     do_query($form, $dbh, $query);
1753   }
1754
1755   $main::lxdebug->leave_sub();
1756 }
1757
1758 sub post_payment {
1759   my ($self, $myconfig, $form, $locale) = @_;
1760   $main::lxdebug->enter_sub();
1761
1762   my $rc = SL::DB->client->with_transaction(\&_post_payment, $self, $myconfig, $form, $locale);
1763
1764   $::lxdebug->leave_sub;
1765   return $rc;
1766 }
1767
1768 sub _post_payment {
1769   my ($self, $myconfig, $form, $locale) = @_;
1770
1771   my $dbh = SL::DB->client->dbh;
1772
1773   my (%payments, $old_form, $row, $item, $query, %keep_vars);
1774
1775   $old_form = save_form();
1776
1777   $query = <<SQL;
1778     SELECT at.acc_trans_id, at.amount, at.cleared, c.accno
1779     FROM acc_trans at
1780     LEFT JOIN chart c ON (at.chart_id = c.id)
1781     WHERE (at.trans_id = ?)
1782 SQL
1783
1784   my %already_cleared = selectall_as_map($form, $dbh, $query, 'acc_trans_id', [ qw(amount cleared accno) ], $form->{id});
1785
1786   # Delete all entries in acc_trans from prior payments.
1787   if (SL::DB::Default->get->payments_changeable != 0) {
1788     $self->_delete_payments($form, $dbh);
1789   }
1790
1791   # Save the new payments the user made before cleaning up $form.
1792   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 };
1793
1794   # Clean up $form so that old content won't tamper the results.
1795   %keep_vars = map { $_, 1 } qw(login password id);
1796   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
1797
1798   # Retrieve the invoice from the database.
1799   $self->retrieve_invoice($myconfig, $form);
1800
1801   # Set up the content of $form in the way that IS::post_invoice() expects.
1802   $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
1803
1804   for $row (1 .. scalar @{ $form->{invoice_details} }) {
1805     $item = $form->{invoice_details}->[$row - 1];
1806
1807     map { $item->{$_} = $form->format_amount($myconfig, $item->{$_}) } qw(qty sellprice discount);
1808
1809     map { $form->{"${_}_${row}"} = $item->{$_} } keys %{ $item };
1810   }
1811
1812   $form->{rowcount} = scalar @{ $form->{invoice_details} };
1813
1814   delete @{$form}{qw(invoice_details paidaccounts storno paid)};
1815
1816   # Restore the payment options from the user input.
1817   map { $form->{$_} = $payments{$_} } keys %payments;
1818
1819   # Get the AR accno (which is normally done by Form::create_links()).
1820   $query =
1821     qq|SELECT c.accno
1822        FROM acc_trans at
1823        LEFT JOIN chart c ON (at.chart_id = c.id)
1824        WHERE (trans_id = ?)
1825          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
1826        ORDER BY at.acc_trans_id
1827        LIMIT 1|;
1828
1829   ($form->{AR}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
1830
1831   # Post the new payments.
1832   $self->post_invoice($myconfig, $form, $dbh, payments_only => 1, already_cleared => \%already_cleared);
1833
1834   restore_form($old_form);
1835
1836   return 1;
1837 }
1838
1839 sub process_assembly {
1840   $main::lxdebug->enter_sub();
1841
1842   my ($dbh, $myconfig, $form, $position, $id, $totalqty) = @_;
1843
1844   my $query =
1845     qq|SELECT a.parts_id, a.qty, p.part_type, p.partnumber, p.description, p.unit
1846        FROM assembly a
1847        JOIN parts p ON (a.parts_id = p.id)
1848        WHERE (a.id = ?)|;
1849   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1850
1851   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
1852
1853     my $allocated = 0;
1854
1855     $ref->{inventory_accno_id} *= 1;
1856     $ref->{expense_accno_id}   *= 1;
1857
1858     # multiply by number of assemblies
1859     $ref->{qty} *= $totalqty;
1860
1861     if ($ref->{assembly}) {
1862       &process_assembly($dbh, $myconfig, $form, $position, $ref->{parts_id}, $ref->{qty});
1863       next;
1864     } else {
1865       if ($ref->{inventory_accno_id}) {
1866         $allocated = &cogs($dbh, $myconfig, $form, $ref->{parts_id}, $ref->{qty});
1867       }
1868     }
1869
1870     # save detail record for individual assembly item in invoice table
1871     $query =
1872       qq|INSERT INTO invoice (trans_id, position, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
1873          VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1874     my @values = (conv_i($form->{id}), conv_i($position), $ref->{description},
1875                   conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
1876     do_query($form, $dbh, $query, @values);
1877
1878   }
1879
1880   $sth->finish;
1881
1882   $main::lxdebug->leave_sub();
1883 }
1884
1885 sub cogs {
1886   $main::lxdebug->enter_sub();
1887
1888   # adjust allocated in table invoice according to FIFO princicple
1889   # for a certain part with part_id $id
1890
1891   my ($dbh, $myconfig, $form, $id, $totalqty, $basefactor, $row) = @_;
1892
1893   $basefactor ||= 1;
1894
1895   $form->{taxzone_id} *=1;
1896   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
1897   my $taxzone_id = $form->{"taxzone_id"} * 1;
1898   my $query =
1899     qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice, i.price_factor,
1900          c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
1901          c2.accno AS    income_accno, c2.new_chart_id AS    income_new_chart, date($transdate) - c2.valid_from AS    income_valid,
1902          c3.accno AS   expense_accno, c3.new_chart_id AS   expense_new_chart, date($transdate) - c3.valid_from AS   expense_valid
1903        FROM invoice i, parts p
1904        LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
1905        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)
1906        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)
1907        WHERE (i.parts_id = p.id)
1908          AND (i.parts_id = ?)
1909          AND ((i.base_qty + i.allocated) < 0)
1910        ORDER BY trans_id|;
1911   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1912
1913   my $allocated = 0;
1914   my $qty;
1915
1916 # all invoice entries of an example part:
1917
1918 # id | trans_id | base_qty | allocated | sellprice | inventory_accno | income_accno | expense_accno
1919 # ---+----------+----------+-----------+-----------+-----------------+--------------+---------------
1920 #  4 |        4 |       -5 |         5 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
1921 #  5 |        5 |        4 |        -4 |  50.00000 | 1140            | 4400         | 5400     sold   4 for 50
1922 #  6 |        6 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
1923 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
1924 #  8 |        8 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
1925
1926 # 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
1927 # and all parts have been allocated
1928
1929 # so transaction 8 only sees transaction 7 with unallocated parts and adjusts allocated for that transaction, before allocated was 0
1930 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
1931
1932 # in this example there are still 4 unsold articles
1933
1934
1935   # search all invoice entries for the part in question, adjusting "allocated"
1936   # until the total number of sold parts has been reached
1937
1938   # ORDER BY trans_id ensures FIFO
1939
1940
1941   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
1942     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
1943       $qty = $totalqty;
1944     }
1945
1946     # update allocated in invoice
1947     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
1948
1949     # total expenses and inventory
1950     # sellprice is the cost of the item
1951     my $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / ( ($ref->{price_factor} || 1) * ( $basefactor || 1 )), 2);
1952
1953     if ( $::instance_conf->get_inventory_system eq 'perpetual' ) {
1954       # Bestandsmethode: when selling parts, deduct their purchase value from the inventory account
1955       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
1956       # add to expense
1957       $form->{amount_cogs}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
1958       $form->{expense_inventory} .= " " . $ref->{expense_accno};
1959       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
1960       # deduct inventory
1961       $form->{amount_cogs}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
1962       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
1963     }
1964
1965     # add allocated
1966     $allocated -= $qty;
1967
1968     last if (($totalqty -= $qty) <= 0);
1969   }
1970
1971   $sth->finish;
1972
1973   $main::lxdebug->leave_sub();
1974
1975   return $allocated;
1976 }
1977
1978 sub reverse_invoice {
1979   $main::lxdebug->enter_sub();
1980
1981   my ($dbh, $form) = @_;
1982
1983   # reverse inventory items
1984   my $query =
1985     qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.part_type
1986        FROM invoice i
1987        JOIN parts p ON (i.parts_id = p.id)
1988        WHERE i.trans_id = ?|;
1989   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
1990
1991   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
1992
1993     if ($ref->{inventory_accno_id}) {
1994       # de-allocated purchases
1995       $query =
1996         qq|SELECT i.id, i.trans_id, i.allocated
1997            FROM invoice i
1998            WHERE (i.parts_id = ?) AND (i.allocated > 0)
1999            ORDER BY i.trans_id DESC|;
2000       my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
2001
2002       while (my $inhref = $sth2->fetchrow_hashref('NAME_lc')) {
2003         my $qty = $ref->{qty};
2004         if (($ref->{qty} - $inhref->{allocated}) > 0) {
2005           $qty = $inhref->{allocated};
2006         }
2007
2008         # update invoice
2009         $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
2010
2011         last if (($ref->{qty} -= $qty) <= 0);
2012       }
2013       $sth2->finish;
2014     }
2015   }
2016
2017   $sth->finish;
2018
2019   # delete acc_trans
2020   my @values = (conv_i($form->{id}));
2021   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
2022
2023   $query = qq|DELETE FROM custom_variables
2024               WHERE (config_id IN (SELECT id        FROM custom_variable_configs WHERE (module = 'ShipTo')))
2025                 AND (trans_id  IN (SELECT shipto_id FROM shipto                  WHERE (module = 'AR') AND (trans_id = ?)))|;
2026   do_query($form, $dbh, $query, @values);
2027   do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
2028
2029   $main::lxdebug->leave_sub();
2030 }
2031
2032 sub delete_invoice {
2033   my ($self, $myconfig, $form) = @_;
2034   $main::lxdebug->enter_sub();
2035
2036   my $rc = SL::DB->client->with_transaction(\&_delete_invoice, $self, $myconfig, $form);
2037
2038   $::lxdebug->leave_sub;
2039   return $rc;
2040 }
2041
2042 sub _delete_invoice {
2043   my ($self, $myconfig, $form) = @_;
2044
2045   my $dbh = SL::DB->client->dbh;
2046
2047   &reverse_invoice($dbh, $form);
2048   _delete_transfers($dbh, $form, $form->{id});
2049
2050   my @values = (conv_i($form->{id}));
2051
2052   # Falls wir ein Storno haben, müssen zwei Felder in der stornierten Rechnung wieder
2053   # zurückgesetzt werden. Vgl:
2054   #  id | storno | storno_id |  paid   |  amount
2055   #----+--------+-----------+---------+-----------
2056   # 18 | f      |           | 0.00000 | 119.00000
2057   # ZU:
2058   # 18 | t      |           |  119.00000 |  119.00000
2059   #
2060   if($form->{storno}){
2061     # storno_id auslesen und korrigieren
2062     my ($invoice_id) = selectfirst_array_query($form, $dbh, qq|SELECT storno_id FROM ar WHERE id = ?|,@values);
2063     do_query($form, $dbh, qq|UPDATE ar SET storno = 'f', paid = 0 WHERE id = ?|, $invoice_id);
2064   }
2065
2066   # if we delete a final invoice, the reverse bookings for the clearing account in the invoice for advance payment
2067   # must be deleted as well
2068   my $invoices_for_advance_payment = $self->_get_invoices_for_advance_payment($form->{convert_from_ar_ids} || $form->{id});
2069
2070   # Todo: allow only if invoice for advance payment is not paid.
2071   # die if any { $_->paid } for @$invoices_for_advance_payment;
2072   my @trans_ids_to_consider        = map { $_->id } @$invoices_for_advance_payment;
2073   if (scalar @trans_ids_to_consider) {
2074     my $query = sprintf 'DELETE FROM acc_trans WHERE memo LIKE ? AND trans_id IN (%s)', join ', ', ("?") x scalar @trans_ids_to_consider;
2075     do_query($form, $dbh, $query, 'reverse booking by final invoice', @trans_ids_to_consider);
2076   }
2077
2078   # delete spool files
2079   my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
2080
2081   my @queries = (
2082     qq|DELETE FROM status WHERE trans_id = ?|,
2083     qq|DELETE FROM periodic_invoices WHERE ar_id = ?|,
2084     qq|DELETE FROM invoice WHERE trans_id = ?|,
2085     qq|DELETE FROM ar WHERE id = ?|,
2086   );
2087
2088   map { do_query($form, $dbh, $_, @values) } @queries;
2089
2090   my $spool = $::lx_office_conf{paths}->{spool};
2091   map { unlink "$spool/$_" if -f "$spool/$_"; } @spoolfiles;
2092
2093   return 1;
2094 }
2095
2096 sub retrieve_invoice {
2097   my ($self, $myconfig, $form) = @_;
2098   $main::lxdebug->enter_sub();
2099
2100   my $rc = SL::DB->client->with_transaction(\&_retrieve_invoice, $self, $myconfig, $form);
2101
2102   $::lxdebug->leave_sub;
2103   return $rc;
2104 }
2105
2106 sub _retrieve_invoice {
2107   my ($self, $myconfig, $form) = @_;
2108
2109   my $dbh = SL::DB->client->dbh;
2110
2111   my ($sth, $ref, $query);
2112
2113   my $query_transdate = !$form->{id} ? ", current_date AS invdate" : '';
2114
2115   $query =
2116     qq|SELECT
2117          (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
2118          (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
2119          (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
2120          (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
2121          (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno,
2122          (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id)   AS rndgain_accno,
2123          (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id)   AS rndloss_accno
2124          ${query_transdate}
2125        FROM defaults d|;
2126
2127   $ref = selectfirst_hashref_query($form, $dbh, $query);
2128   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
2129
2130   if ($form->{id}) {
2131     my $id = conv_i($form->{id});
2132
2133     # retrieve invoice
2134     #erweiterung um das entsprechende feld lieferscheinnummer (a.donumber) in der html-maske anzuzeigen 12.02.2009 jb
2135
2136     $query =
2137       qq|SELECT
2138            a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
2139            a.orddate, a.quodate, a.globalproject_id,
2140            a.transdate AS invdate, a.deliverydate, a.tax_point, a.paid, a.storno, a.storno_id, a.gldate,
2141            a.shippingpoint, a.shipvia, a.notes, a.intnotes, a.taxzone_id,
2142            a.duedate, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.shipto_id, a.cp_id,
2143            a.billing_address_id,
2144            a.employee_id, a.salesman_id, a.payment_id,
2145            a.mtime, a.itime,
2146            a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
2147            a.transaction_description, a.donumber, a.invnumber_for_credit_note,
2148            a.marge_total, a.marge_percent, a.direct_debit, a.delivery_term_id,
2149            dc.dunning_description,
2150            e.name AS employee
2151          FROM ar a
2152          LEFT JOIN employee e ON (e.id = a.employee_id)
2153          LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id)
2154          WHERE a.id = ?|;
2155     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
2156     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
2157     $form->{mtime} = $form->{itime} if !$form->{mtime};
2158     $form->{lastmtime} = $form->{mtime};
2159
2160     $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
2161
2162     foreach my $vc (qw(customer vendor)) {
2163       next if !$form->{"delivery_${vc}_id"};
2164       ($form->{"delivery_${vc}_string"}) = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
2165     }
2166
2167     # get shipto
2168     $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|;
2169     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
2170     $form->{$_} = $ref->{$_} for grep { m{^shipto(?!_id$)} } keys %$ref;
2171
2172     # get printed, emailed
2173     $query = qq|SELECT printed, emailed, spoolfile, formname FROM status WHERE trans_id = ?|;
2174     $sth = prepare_execute_query($form, $dbh, $query, $id);
2175
2176     while ($ref = $sth->fetchrow_hashref('NAME_lc')) {
2177       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
2178       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
2179       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
2180     }
2181     $sth->finish;
2182     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
2183
2184     my $transdate = $form->{tax_point}    ? $dbh->quote($form->{tax_point})
2185                   : $form->{deliverydate} ? $dbh->quote($form->{deliverydate})
2186                   : $form->{invdate}      ? $dbh->quote($form->{invdate})
2187                   :                         "current_date";
2188
2189
2190     my $taxzone_id = $form->{taxzone_id} *= 1;
2191     $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
2192
2193     # retrieve individual items
2194     $query =
2195       qq|SELECT
2196            c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
2197            c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from as income_valid,
2198            c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from AS expense_valid,
2199
2200            i.id AS invoice_id,
2201            i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice, i.discount, i.parts_id AS id, i.unit, i.deliverydate AS reqdate,
2202            i.project_id, i.serialnumber, i.pricegroup_id, i.ordnumber, i.donumber, i.transdate, i.cusordnumber, i.subtotal, i.lastcost,
2203            i.price_factor_id, i.price_factor, i.marge_price_factor, i.active_price_source, i.active_discount_source,
2204            p.partnumber, p.part_type, p.notes AS partnotes, p.formel, p.listprice,
2205            p.classification_id,
2206            pr.projectnumber, pg.partsgroup, prg.pricegroup
2207
2208          FROM invoice i
2209          LEFT JOIN parts p ON (i.parts_id = p.id)
2210          LEFT JOIN project pr ON (i.project_id = pr.id)
2211          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
2212          LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
2213
2214          LEFT JOIN chart c1 ON ((SELECT inventory_accno_id             FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
2215          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)
2216          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)
2217
2218          WHERE (i.trans_id = ?) AND NOT (i.assemblyitem = '1') ORDER BY i.position|;
2219
2220     $sth = prepare_execute_query($form, $dbh, $query, $id);
2221
2222     while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
2223       # Retrieve custom variables.
2224       my $cvars = CVar->get_custom_variables(dbh        => $dbh,
2225                                              module     => 'IC',
2226                                              sub_module => 'invoice',
2227                                              trans_id   => $ref->{invoice_id},
2228                                             );
2229       map { $ref->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
2230
2231       map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid)) if !$ref->{"part_inventory_accno_id"};
2232       delete($ref->{"part_inventory_accno_id"});
2233
2234       foreach my $type (qw(inventory income expense)) {
2235         while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
2236           my $query = qq|SELECT accno, new_chart_id, date($transdate) - valid_from FROM chart WHERE id = ?|;
2237           @$ref{ map $type.$_, qw(_accno _new_chart _valid) } = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
2238         }
2239       }
2240
2241       # get tax rates and description
2242       my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
2243       $query =
2244         qq|SELECT c.accno, t.taxdescription, t.rate, t.id as tax_id, c.accno as taxnumber
2245            FROM tax t
2246            LEFT JOIN chart c ON (c.id = t.chart_id)
2247            WHERE t.id IN
2248              (SELECT tk.tax_id FROM taxkeys tk
2249               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
2250                 AND startdate <= date($transdate)
2251               ORDER BY startdate DESC LIMIT 1)
2252            ORDER BY c.accno|;
2253       my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
2254       $ref->{taxaccounts} = "";
2255       my $i=0;
2256       while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
2257
2258         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
2259           $i++;
2260           $ptr->{accno} = $i;
2261         }
2262         $ref->{taxaccounts} .= "$ptr->{accno} ";
2263
2264         if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
2265           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
2266           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
2267           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber}; # don't use this anymore
2268           $form->{"$ptr->{accno}_tax_id"}      = $ptr->{tax_id};
2269           $form->{taxaccounts} .= "$ptr->{accno} ";
2270         }
2271
2272       }
2273
2274       $ref->{qty} *= -1 if $form->{type} eq "credit_note";
2275
2276       chop $ref->{taxaccounts};
2277       push @{ $form->{invoice_details} }, $ref;
2278       $stw->finish;
2279     }
2280     $sth->finish;
2281
2282     # Fetch shipping address.
2283     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'AR'|;
2284     $ref   = selectfirst_hashref_query($form, $dbh, $query, $form->{id});
2285
2286     $form->{$_} = $ref->{$_} for grep { $_ ne 'id' } keys %$ref;
2287
2288     if ($form->{shipto_id}) {
2289       my $cvars = CVar->get_custom_variables(
2290         dbh      => $dbh,
2291         module   => 'ShipTo',
2292         trans_id => $form->{shipto_id},
2293       );
2294       $form->{"shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars };
2295     }
2296
2297     Common::webdav_folder($form);
2298   }
2299
2300   return 1;
2301 }
2302
2303 sub get_customer {
2304   $main::lxdebug->enter_sub();
2305
2306   my ($self, $myconfig, $form) = @_;
2307
2308   # connect to database
2309   my $dbh = $form->get_standard_dbh;
2310
2311   my $dateformat = $myconfig->{dateformat};
2312   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2313
2314   my (@values, $ref, $query);
2315
2316   my $cid = conv_i($form->{customer_id});
2317   my $payment_id;
2318
2319   # get customer
2320   my $where = '';
2321   if ($cid) {
2322     $where .= 'AND c.id = ?';
2323     push @values, $cid;
2324   }
2325   $query =
2326     qq|SELECT
2327          c.id AS customer_id, c.name AS customer, c.discount as customer_discount, c.creditlimit,
2328          c.email, c.cc, c.bcc, c.language_id, c.payment_id, c.delivery_term_id,
2329          c.street, c.zipcode, c.city, c.country,
2330          c.notes AS intnotes, c.pricegroup_id as customer_pricegroup_id, c.taxzone_id, c.salesman_id, cu.name AS curr,
2331          c.taxincluded_checked, c.direct_debit,
2332          (SELECT aba.id
2333           FROM additional_billing_addresses aba
2334           WHERE aba.default_address
2335           LIMIT 1) AS default_billing_address_id,
2336          b.discount AS tradediscount, b.description AS business
2337        FROM customer c
2338        LEFT JOIN business b ON (b.id = c.business_id)
2339        LEFT JOIN currencies cu ON (c.currency_id=cu.id)
2340        WHERE 1 = 1 $where|;
2341   $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
2342
2343   delete $ref->{salesman_id} if !$ref->{salesman_id};
2344   delete $ref->{payment_id}  if !$ref->{payment_id};
2345
2346   map { $form->{$_} = $ref->{$_} } keys %$ref;
2347
2348   if ($form->{payment_id}) {
2349     my $reference_date = $form->{invdate} ? DateTime->from_kivitendo($form->{invdate}) : undef;
2350     $form->{duedate}   = SL::DB::PaymentTerm->new(id => $form->{payment_id})->load->calc_date(reference_date => $reference_date)->to_kivitendo;
2351   } else {
2352     $form->{duedate}   = DateTime->today_local->to_kivitendo;
2353   }
2354
2355   # use customer currency
2356   $form->{currency} = $form->{curr};
2357
2358   $query =
2359     qq|SELECT sum(amount - paid) AS dunning_amount
2360        FROM ar
2361        WHERE (paid < amount)
2362          AND (customer_id = ?)
2363          AND (dunning_config_id IS NOT NULL)|;
2364   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
2365   map { $form->{$_} = $ref->{$_} } keys %$ref;
2366
2367   $query =
2368     qq|SELECT dnn.dunning_description AS max_dunning_level
2369        FROM dunning_config dnn
2370        WHERE id IN (SELECT dunning_config_id
2371                     FROM ar
2372                     WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
2373        ORDER BY dunning_level DESC LIMIT 1|;
2374   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
2375   map { $form->{$_} = $ref->{$_} } keys %$ref;
2376
2377   $form->{creditremaining} = $form->{creditlimit};
2378   $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
2379   my ($value) = selectrow_query($form, $dbh, $query, $cid);
2380   $form->{creditremaining} -= $value;
2381
2382   $query =
2383     qq|SELECT o.amount,
2384          (SELECT e.buy FROM exchangerate e
2385           WHERE e.currency_id = o.currency_id
2386             AND e.transdate = o.transdate)
2387        FROM oe o
2388        WHERE o.customer_id = ?
2389          AND o.quotation = '0'
2390          AND o.closed = '0'|;
2391   my $sth = prepare_execute_query($form, $dbh, $query, $cid);
2392
2393   while (my ($amount, $exch) = $sth->fetchrow_array) {
2394     $exch = 1 unless $exch;
2395     $form->{creditremaining} -= $amount * $exch;
2396   }
2397   $sth->finish;
2398
2399   $main::lxdebug->leave_sub();
2400 }
2401
2402 sub retrieve_item {
2403   $main::lxdebug->enter_sub();
2404
2405   my ($self, $myconfig, $form) = @_;
2406
2407   # connect to database
2408   my $dbh = $form->get_standard_dbh;
2409
2410   my $i = $form->{rowcount};
2411
2412   my $where = qq|NOT p.obsolete = '1'|;
2413   my @values;
2414
2415   foreach my $column (qw(p.partnumber p.description pgpartsgroup )) {
2416     my ($table, $field) = split m/\./, $column;
2417     next if !$form->{"${field}_${i}"};
2418     $where .= qq| AND lower(${column}) ILIKE ?|;
2419     push @values, like($form->{"${field}_${i}"});
2420   }
2421
2422   my (%mm_by_id);
2423   if ($form->{"partnumber_$i"} && !$form->{"description_$i"}) {
2424     $where .= qq| OR (NOT p.obsolete = '1' AND p.ean = ? )|;
2425     push @values, $form->{"partnumber_$i"};
2426
2427     # also search hits in makemodels, but only cache the results by id and merge later
2428     my $mm_query = qq|
2429       SELECT parts_id, model FROM makemodel LEFT JOIN parts ON parts.id = parts_id WHERE NOT parts.obsolete AND model ILIKE ?;
2430     |;
2431     my $mm_results = selectall_hashref_query($::form, $dbh, $mm_query, like($form->{"partnumber_$i"}));
2432     my @mm_ids     = map { $_->{parts_id} } @$mm_results;
2433     push @{$mm_by_id{ $_->{parts_id} } ||= []}, $_ for @$mm_results;
2434
2435     if (@mm_ids) {
2436       $where .= qq| OR p.id IN (| . join(',', ('?') x @mm_ids) . qq|)|;
2437       push @values, @mm_ids;
2438     }
2439   }
2440
2441   # Search for part ID overrides all other criteria.
2442   if ($form->{"id_${i}"}) {
2443     $where  = qq|p.id = ?|;
2444     @values = ($form->{"id_${i}"});
2445   }
2446
2447   if ($form->{"description_$i"}) {
2448     $where .= qq| ORDER BY p.description|;
2449   } else {
2450     $where .= qq| ORDER BY p.partnumber|;
2451   }
2452
2453   my $transdate;
2454   if ($form->{type} eq "invoice") {
2455     $transdate =
2456       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
2457       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
2458                               "current_date";
2459   } else {
2460     $transdate =
2461       $form->{transdate}    ? $dbh->quote($form->{transdate}) :
2462                               "current_date";
2463   }
2464
2465   my $taxzone_id = $form->{taxzone_id} * 1;
2466   $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
2467
2468   my $query =
2469     qq|SELECT
2470          p.id, p.partnumber, p.description, p.sellprice,
2471          p.listprice, p.part_type, p.lastcost,
2472          p.ean, p.notes,
2473          p.classification_id,
2474
2475          c1.accno AS inventory_accno,
2476          c1.new_chart_id AS inventory_new_chart,
2477          date($transdate) - c1.valid_from AS inventory_valid,
2478
2479          c2.accno AS income_accno,
2480          c2.new_chart_id AS income_new_chart,
2481          date($transdate)  - c2.valid_from AS income_valid,
2482
2483          c3.accno AS expense_accno,
2484          c3.new_chart_id AS expense_new_chart,
2485          date($transdate) - c3.valid_from AS expense_valid,
2486
2487          p.unit, p.part_type, p.onhand,
2488          p.notes AS partnotes, p.notes AS longdescription,
2489          p.not_discountable, p.formel, p.payment_id AS part_payment_id,
2490          p.price_factor_id, p.weight,
2491
2492          pfac.factor AS price_factor,
2493          pt.used_for_sale AS used_for_sale,
2494          pg.partsgroup
2495
2496        FROM parts p
2497        LEFT JOIN chart c1 ON
2498          ((SELECT inventory_accno_id
2499            FROM buchungsgruppen
2500            WHERE id = p.buchungsgruppen_id) = c1.id)
2501        LEFT JOIN chart c2 ON
2502          ((SELECT tc.income_accno_id
2503            FROM taxzone_charts tc
2504            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c2.id)
2505        LEFT JOIN chart c3 ON
2506          ((SELECT tc.expense_accno_id
2507            FROM taxzone_charts tc
2508            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c3.id)
2509        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
2510        LEFT JOIN part_classifications pt ON (pt.id = p.classification_id)
2511        LEFT JOIN price_factors pfac ON (pfac.id = p.price_factor_id)
2512        WHERE $where|;
2513   my $sth = prepare_execute_query($form, $dbh, $query, @values);
2514
2515   my @translation_queries = ( [ qq|SELECT tr.translation, tr.longdescription
2516                                    FROM translation tr
2517                                    WHERE tr.language_id = ? AND tr.parts_id = ?| ],
2518                               [ qq|SELECT tr.translation, tr.longdescription
2519                                    FROM translation tr
2520                                    WHERE tr.language_id IN
2521                                      (SELECT id
2522                                       FROM language
2523                                       WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
2524                                      AND tr.parts_id = ?
2525                                    LIMIT 1| ] );
2526   map { push @{ $_ }, prepare_query($form, $dbh, $_->[0]) } @translation_queries;
2527
2528   my $has_wrong_pclass = PCLASS_OK;
2529   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
2530
2531     if ($mm_by_id{$ref->{id}}) {
2532       $ref->{makemodels} = $mm_by_id{$ref->{id}};
2533       push @{ $ref->{matches} ||= [] }, $::locale->text('Model') . ': ' . join ', ', map { $_->{model} } @{ $mm_by_id{$ref->{id}} };
2534     }
2535
2536     if (($::form->{"partnumber_$i"} ne '') && ($ref->{ean} eq $::form->{"partnumber_$i"})) {
2537       push @{ $ref->{matches} ||= [] }, $::locale->text('EAN') . ': ' . $ref->{ean};
2538     }
2539
2540     $ref->{type_and_classific} = type_abbreviation($ref->{part_type}) .
2541                                  classification_abbreviation($ref->{classification_id});
2542     if (! $ref->{used_for_sale} ) {
2543       $has_wrong_pclass = PCLASS_NOTFORSALE ;
2544       next;
2545     }
2546     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
2547     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
2548     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
2549     if (!$ref->{inventory_accno_id}) {
2550       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
2551     }
2552     delete($ref->{inventory_accno_id});
2553
2554     foreach my $type (qw(inventory income expense)) {
2555       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
2556         my $query =
2557           qq|SELECT accno, new_chart_id, date($transdate) - valid_from
2558              FROM chart
2559              WHERE id = ?|;
2560         ($ref->{"${type}_accno"},
2561          $ref->{"${type}_new_chart"},
2562          $ref->{"${type}_valid"})
2563           = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
2564       }
2565     }
2566
2567     if ($form->{payment_id} eq "") {
2568       $form->{payment_id} = $form->{part_payment_id};
2569     }
2570
2571     # get tax rates and description
2572     my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
2573     $query =
2574       qq|SELECT c.accno, t.taxdescription, t.id as tax_id, t.rate, c.accno as taxnumber
2575          FROM tax t
2576          LEFT JOIN chart c ON (c.id = t.chart_id)
2577          WHERE t.id in
2578            (SELECT tk.tax_id
2579             FROM taxkeys tk
2580             WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
2581               AND startdate <= ?
2582             ORDER BY startdate DESC
2583             LIMIT 1)
2584          ORDER BY c.accno|;
2585     @values = ($accno_id, $transdate eq "current_date" ? "now" : $transdate);
2586     my $stw = $dbh->prepare($query);
2587     $stw->execute(@values) || $form->dberror($query);
2588
2589     $ref->{taxaccounts} = "";
2590     my $i = 0;
2591     while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
2592
2593       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
2594         $i++;
2595         $ptr->{accno} = $i;
2596       }
2597       $ref->{taxaccounts} .= "$ptr->{accno} ";
2598
2599       if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
2600         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
2601         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
2602         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
2603         $form->{"$ptr->{accno}_tax_id"}      = $ptr->{tax_id};
2604         $form->{taxaccounts} .= "$ptr->{accno} ";
2605       }
2606
2607     }
2608
2609     $stw->finish;
2610     chop $ref->{taxaccounts};
2611
2612     if ($form->{language_id}) {
2613       for my $spec (@translation_queries) {
2614         do_statement($form, $spec->[1], $spec->[0], conv_i($form->{language_id}), conv_i($ref->{id}));
2615         my ($translation, $longdescription) = $spec->[1]->fetchrow_array;
2616         next unless $translation;
2617         $ref->{description} = $translation;
2618         $ref->{longdescription} = $longdescription;
2619         last;
2620       }
2621     }
2622
2623     $ref->{onhand} *= 1;
2624     push @{ $form->{item_list} }, $ref;
2625   }
2626   $sth->finish;
2627   $_->[1]->finish for @translation_queries;
2628
2629   $form->{is_wrong_pclass} = $has_wrong_pclass;
2630   $form->{NOTFORSALE}      = PCLASS_NOTFORSALE;
2631   $form->{NOTFORPURCHASE}  = PCLASS_NOTFORPURCHASE;
2632   foreach my $item (@{ $form->{item_list} }) {
2633     my $custom_variables = CVar->get_custom_variables(module   => 'IC',
2634                                                       trans_id => $item->{id},
2635                                                       dbh      => $dbh,
2636                                                      );
2637     $form->{is_wrong_pclass} = PCLASS_OK; # one correct type
2638     map { $item->{"ic_cvar_" . $_->{name} } = $_->{value} } @{ $custom_variables };
2639   }
2640   $main::lxdebug->leave_sub();
2641 }
2642
2643 sub has_storno {
2644   $main::lxdebug->enter_sub();
2645
2646   my ($self, $myconfig, $form, $table) = @_;
2647
2648   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
2649
2650   # make sure there's no funny stuff in $table
2651   # ToDO: die when this happens and throw an error
2652   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
2653
2654   my $dbh = $form->get_standard_dbh;
2655
2656   my $query = qq|SELECT storno FROM $table WHERE storno_id = ?|;
2657   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
2658
2659   $main::lxdebug->leave_sub();
2660
2661   return $result;
2662 }
2663
2664 sub is_storno {
2665   $main::lxdebug->enter_sub();
2666
2667   my ($self, $myconfig, $form, $table, $id) = @_;
2668
2669   $main::lxdebug->leave_sub() and return 0 unless ($id);
2670
2671   # make sure there's no funny stuff in $table
2672   # ToDO: die when this happens and throw an error
2673   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
2674
2675   my $dbh = $form->get_standard_dbh;
2676
2677   my $query = qq|SELECT storno FROM $table WHERE id = ?|;
2678   my ($result) = selectrow_query($form, $dbh, $query, $id);
2679
2680   $main::lxdebug->leave_sub();
2681
2682   return $result;
2683 }
2684
2685 sub get_standard_accno_current_assets {
2686   $main::lxdebug->enter_sub();
2687
2688   my ($self, $myconfig, $form) = @_;
2689
2690   my $dbh = $form->get_standard_dbh;
2691
2692   my $query = qq| SELECT accno FROM chart WHERE id = (SELECT ar_paid_accno_id FROM defaults)|;
2693   my ($result) = selectrow_query($form, $dbh, $query);
2694
2695   $main::lxdebug->leave_sub();
2696
2697   return $result;
2698 }
2699
2700 1;