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