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