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