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