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