7ac0746161d7019fe0173e478cd1d770d5dc7c98
[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
533   $form->{username} = $myconfig->{name};
534
535   $main::lxdebug->leave_sub();
536 }
537
538 sub project_description {
539   $main::lxdebug->enter_sub();
540
541   my ($self, $dbh, $id) = @_;
542   my $form = \%main::form;
543
544   my $query = qq|SELECT description FROM project WHERE id = ?|;
545   my ($description) = selectrow_query($form, $dbh, $query, conv_i($id));
546
547   $main::lxdebug->leave_sub();
548
549   return $_;
550 }
551
552 sub customer_details {
553   $main::lxdebug->enter_sub();
554
555   my ($self, $myconfig, $form, @wanted_vars) = @_;
556
557   # connect to database
558   my $dbh = $form->get_standard_dbh;
559
560   my $language_id = $form->{language_id};
561
562   # get contact id, set it if nessessary
563   $form->{cp_id} *= 1;
564
565   my @values =  (conv_i($form->{customer_id}));
566
567   my $where = "";
568   if ($form->{cp_id}) {
569     $where = qq| AND (cp.cp_id = ?) |;
570     push(@values, conv_i($form->{cp_id}));
571   }
572
573   # get rest for the customer
574   my $query =
575     qq|SELECT ct.*, cp.*, ct.notes as customernotes,
576          ct.phone AS customerphone, ct.fax AS customerfax, ct.email AS customeremail,
577          cu.name AS currency
578        FROM customer ct
579        LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
580        LEFT JOIN currencies cu ON (ct.currency_id = cu.id)
581        WHERE (ct.id = ?) $where
582        ORDER BY cp.cp_id
583        LIMIT 1|;
584   my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
585   # we have no values, probably a invalid contact person. hotfix and first idea for issue #10
586   if (!$ref) {
587     my $customer = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id});
588     if ($customer) {
589       $ref->{name} = $customer->name;
590       $ref->{street} = $customer->street;
591       $ref->{zipcode} = $customer->zipcode;
592       $ref->{country} = $customer->country;
593     }
594     my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id});
595     if ($contact) {
596       $ref->{cp_name} = $contact->cp_name;
597       $ref->{cp_givenname} = $contact->cp_givenname;
598       $ref->{cp_gender} = $contact->cp_gender;
599     }
600   }
601   # remove id and taxincluded before copy back
602   delete @$ref{qw(id taxincluded)};
603
604   @wanted_vars = grep({ $_ } @wanted_vars);
605   if (scalar(@wanted_vars) > 0) {
606     my %h_wanted_vars;
607     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
608     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
609   }
610
611   map { $form->{$_} = $ref->{$_} } keys %$ref;
612
613   if ($form->{delivery_customer_id}) {
614     $query =
615       qq|SELECT *, notes as customernotes
616          FROM customer
617          WHERE id = ?
618          LIMIT 1|;
619     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_customer_id}));
620
621     map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
622   }
623
624   if ($form->{delivery_vendor_id}) {
625     $query =
626       qq|SELECT *, notes as customernotes
627          FROM customer
628          WHERE id = ?
629          LIMIT 1|;
630     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_vendor_id}));
631
632     map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
633   }
634
635   my $custom_variables = CVar->get_custom_variables('dbh'      => $dbh,
636                                                     'module'   => 'CT',
637                                                     'trans_id' => $form->{customer_id});
638   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
639
640   $form->{cp_greeting} = GenericTranslations->get('dbh'              => $dbh,
641                                                   'translation_type' => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
642                                                   'language_id'      => $language_id,
643                                                   'allow_fallback'   => 1);
644
645
646   $main::lxdebug->leave_sub();
647 }
648
649 sub post_invoice {
650   $main::lxdebug->enter_sub();
651
652   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
653
654   # connect to database, turn off autocommit
655   my $dbh = $provided_dbh ? $provided_dbh : $form->get_standard_dbh;
656   my $restricter = SL::HTML::Restrict->create;
657
658   my ($query, $sth, $null, $project_id, @values);
659   my $exchangerate = 0;
660
661   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
662                                           dbh    => $dbh);
663
664   if (!$form->{employee_id}) {
665     $form->get_employee($dbh);
666   }
667
668   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
669   my $defaultcurrency = $form->{defaultcurrency};
670
671   my $all_units = AM->retrieve_units($myconfig, $form);
672
673   if (!$payments_only) {
674     if ($form->{storno}) {
675       _delete_transfers($dbh, $form, $form->{storno_id});
676     }
677     if ($form->{id}) {
678       &reverse_invoice($dbh, $form);
679       _delete_transfers($dbh, $form, $form->{id});
680
681     } else {
682       my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, save => 1);
683       $form->{invnumber} = $trans_number->create_unique unless $trans_number->is_unique;
684
685       $query = qq|SELECT nextval('glid')|;
686       ($form->{"id"}) = selectrow_query($form, $dbh, $query);
687
688       $query = qq|INSERT INTO ar (id, invnumber, currency_id, taxzone_id) VALUES (?, ?, (SELECT id FROM currencies WHERE name=?), ?)|;
689       do_query($form, $dbh, $query, $form->{"id"}, $form->{"id"}, $form->{currency}, $form->{taxzone_id});
690
691       if (!$form->{invnumber}) {
692         my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, id => $form->{id});
693         $form->{invnumber} = $trans_number->create_unique;
694       }
695     }
696   }
697
698   my ($netamount, $invoicediff) = (0, 0);
699   my ($amount, $linetotal, $lastincomeaccno);
700
701   if ($form->{currency} eq $defaultcurrency) {
702     $form->{exchangerate} = 1;
703   } else {
704     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{invdate}, 'buy');
705   }
706
707   $form->{exchangerate} =
708     ($exchangerate)
709     ? $exchangerate
710     : $form->parse_amount($myconfig, $form->{exchangerate});
711
712   $form->{expense_inventory} = "";
713
714   my %baseunits;
715
716   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
717   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
718   my $price_factor;
719
720   $form->{amount}      = {};
721   $form->{amount_cogs} = {};
722
723   my @processed_invoice_ids;
724
725   foreach my $i (1 .. $form->{rowcount}) {
726     if ($form->{type} eq "credit_note") {
727       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
728       $form->{shipped} = 1;
729     } else {
730       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
731     }
732     my $basefactor;
733     my $baseqty;
734
735     $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
736     $form->{"marge_absolut_$i"} = $form->parse_amount($myconfig, $form->{"marge_absolut_$i"}) * 1;
737     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"}) * 1;
738
739     if ($form->{storno}) {
740       $form->{"qty_$i"} *= -1;
741     }
742
743     if ($form->{"id_$i"}) {
744       my $item_unit;
745       my $position = $i;
746
747       if (defined($baseunits{$form->{"id_$i"}})) {
748         $item_unit = $baseunits{$form->{"id_$i"}};
749       } else {
750         # get item baseunit
751         $query = qq|SELECT unit FROM parts WHERE id = ?|;
752         ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
753         $baseunits{$form->{"id_$i"}} = $item_unit;
754       }
755
756       if (defined($all_units->{$item_unit}->{factor})
757           && ($all_units->{$item_unit}->{factor} ne '')
758           && ($all_units->{$item_unit}->{factor} != 0)) {
759         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
760       } else {
761         $basefactor = 1;
762       }
763       $baseqty = $form->{"qty_$i"} * $basefactor;
764
765       my ($allocated, $taxrate) = (0, 0);
766       my $taxamount;
767
768       # add tax rates
769       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
770
771       # keep entered selling price
772       my $fxsellprice =
773         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
774
775       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
776       $dec = length $dec;
777       my $decimalplaces = ($dec > 2) ? $dec : 2;
778
779       # undo discount formatting
780       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
781
782       # deduct discount
783       $form->{"sellprice_$i"} = $fxsellprice * (1 - $form->{"discount_$i"});
784
785       # round linetotal to 2 decimal places
786       $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
787       $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
788
789       if ($form->{taxincluded}) {
790         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
791         $form->{"sellprice_$i"} =
792           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
793       } else {
794         $taxamount = $linetotal * $taxrate;
795       }
796
797       $netamount += $linetotal;
798
799       if ($taxamount != 0) {
800         map {
801           $form->{amount}{ $form->{id} }{$_} +=
802             $taxamount * $form->{"${_}_rate"} / $taxrate
803         } split(/ /, $form->{"taxaccounts_$i"});
804       }
805
806       # add amount to income, $form->{amount}{trans_id}{accno}
807       $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor;
808
809       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate};
810       $linetotal = $form->round_amount($linetotal, 2);
811
812       # this is the difference from the inventory
813       $invoicediff += ($amount - $linetotal);
814
815       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
816         $linetotal;
817
818       $lastincomeaccno = $form->{"income_accno_$i"};
819
820       # adjust and round sellprice
821       $form->{"sellprice_$i"} =
822         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
823                             $decimalplaces);
824
825       next if $payments_only;
826
827       if ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"}) {
828
829         if ($form->{"assembly_$i"}) {
830           # record assembly item as allocated
831           &process_assembly($dbh, $myconfig, $form, $position, $form->{"id_$i"}, $baseqty);
832
833         } else {
834           $allocated = &cogs($dbh, $myconfig, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
835         }
836       }
837
838       # Get pricegroup_id and save it. Unfortunately the interface
839       # also uses ID "0" for signalling that none is selected, but "0"
840       # must not be stored in the database. Therefore we cannot simply
841       # use conv_i().
842       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
843       $pricegroup_id *= 1;
844       $pricegroup_id  = undef if !$pricegroup_id;
845
846       CVar->get_non_editable_ic_cvars(form               => $form,
847                                       dbh                => $dbh,
848                                       row                => $i,
849                                       sub_module         => 'invoice',
850                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
851
852       if (!$form->{"invoice_id_$i"}) {
853         # there is no persistent id, therefore create one with all necessary constraints
854         my $q_invoice_id = qq|SELECT nextval('invoiceid')|;
855         my $h_invoice_id = prepare_query($form, $dbh, $q_invoice_id);
856         do_statement($form, $h_invoice_id, $q_invoice_id);
857         $form->{"invoice_id_$i"}  = $h_invoice_id->fetchrow_array();
858         my $q_create_invoice_id = qq|INSERT INTO invoice (id, trans_id, position, parts_id) values (?, ?, ?, ?)|;
859         do_query($form, $dbh, $q_create_invoice_id, conv_i($form->{"invoice_id_$i"}),
860                  conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}));
861         $h_invoice_id->finish();
862       }
863
864       # save detail record in invoice table
865       $query = <<SQL;
866         UPDATE invoice SET trans_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?,
867                            sellprice = ?, fxsellprice = ?, discount = ?, allocated = ?, assemblyitem = ?,
868                            unit = ?, deliverydate = ?, project_id = ?, serialnumber = ?, pricegroup_id = ?,
869                            base_qty = ?, subtotal = ?,
870                            marge_percent = ?, marge_total = ?, lastcost = ?, active_price_source = ?, active_discount_source = ?,
871                            price_factor_id = ?, price_factor = (SELECT factor FROM price_factors WHERE id = ?), marge_price_factor = ?
872         WHERE id = ?
873 SQL
874
875       @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
876                  $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}), $form->{"qty_$i"},
877                  $form->{"sellprice_$i"}, $fxsellprice,
878                  $form->{"discount_$i"}, $allocated, 'f',
879                  $form->{"unit_$i"}, conv_date($form->{"reqdate_$i"}), conv_i($form->{"project_id_$i"}),
880                  $form->{"serialnumber_$i"}, $pricegroup_id,
881                  $baseqty, $form->{"subtotal_$i"} ? 't' : 'f',
882                  $form->{"marge_percent_$i"}, $form->{"marge_absolut_$i"},
883                  $form->{"lastcost_$i"},
884                  $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
885                  conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
886                  conv_i($form->{"marge_price_factor_$i"}),
887                  conv_i($form->{"invoice_id_$i"}));
888       do_query($form, $dbh, $query, @values);
889       push @processed_invoice_ids, $form->{"invoice_id_$i"};
890
891       CVar->save_custom_variables(module       => 'IC',
892                                   sub_module   => 'invoice',
893                                   trans_id     => $form->{"invoice_id_$i"},
894                                   configs      => $ic_cvar_configs,
895                                   variables    => $form,
896                                   name_prefix  => 'ic_',
897                                   name_postfix => "_$i",
898                                   dbh          => $dbh);
899     }
900     # link previous items with invoice items
901     foreach (qw(delivery_order_items orderitems invoice)) {
902       if (!$form->{useasnew} && $form->{"converted_from_${_}_id_$i"}) {
903         RecordLinks->create_links('dbh'        => $dbh,
904                                   'mode'       => 'ids',
905                                   'from_table' => $_,
906                                   'from_ids'   => $form->{"converted_from_${_}_id_$i"},
907                                   'to_table'   => 'invoice',
908                                   'to_id'      => $form->{"invoice_id_$i"},
909         );
910       }
911       delete $form->{"converted_from_${_}_id_$i"};
912     }
913   }
914
915   # total payments, don't move we need it here
916   for my $i (1 .. $form->{paidaccounts}) {
917     if ($form->{type} eq "credit_note") {
918       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
919     } else {
920       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
921     }
922     $form->{paid} += $form->{"paid_$i"};
923     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
924   }
925
926   my ($tax, $diff) = (0, 0);
927
928   $netamount = $form->round_amount($netamount, 2);
929
930   # figure out rounding errors for total amount vs netamount + taxes
931   if ($form->{taxincluded}) {
932
933     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
934     $diff += $amount - $netamount * $form->{exchangerate};
935     $netamount = $amount;
936
937     foreach my $item (split(/ /, $form->{taxaccounts})) {
938       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
939       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
940       $tax += $form->{amount}{ $form->{id} }{$item};
941       $netamount -= $form->{amount}{ $form->{id} }{$item};
942     }
943
944     $invoicediff += $diff;
945     ######## this only applies to tax included
946     if ($lastincomeaccno) {
947       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
948     }
949
950   } else {
951     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
952     $diff      = $amount - $netamount * $form->{exchangerate};
953     $netamount = $amount;
954     foreach my $item (split(/ /, $form->{taxaccounts})) {
955       $form->{amount}{ $form->{id} }{$item} =
956         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
957       $amount =
958         $form->round_amount(
959                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
960                  2);
961       $diff +=
962         $amount - $form->{amount}{ $form->{id} }{$item} *
963         $form->{exchangerate};
964       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
965       $tax += $form->{amount}{ $form->{id} }{$item};
966     }
967   }
968
969   # Invoice Summary includes Rounding
970   my $totalamount = $netamount + $tax;
971   my $rounding = $form->round_amount( $form->round_amount( $totalamount, 2, 1 ) - $totalamount, 2 );
972   my $rnd_accno = $rounding == 0 ? 0 : $rounding > 0 ? $form->{rndgain_accno} : $form->{rndloss_accno};
973   $form->{amount}{ $form->{id} }{ $form->{AR} } = $totalamount = $form->round_amount( $totalamount, 2, 1 );
974   $form->{paid} = $form->round_amount($form->{paid} * $form->{exchangerate} + $diff, 2);
975
976   # reverse AR
977   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
978
979   # update exchangerate
980   if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
981     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
982                                $form->{exchangerate}, 0);
983   }
984
985   $project_id = conv_i($form->{"globalproject_id"});
986   # entsprechend auch beim Bestimmen des Steuerschlüssels in Taxkey.pm berücksichtigen
987   my $taxdate = $form->{deliverydate} ? $form->{deliverydate} : $form->{invdate};
988
989   foreach my $trans_id (keys %{ $form->{amount_cogs} }) {
990     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
991       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
992       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
993       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
994         $query =
995           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
996                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
997         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
998         do_query($form, $dbh, $query, @values);
999         $form->{amount_cogs}{$trans_id}{$accno} = 0;
1000       }
1001     }
1002
1003     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
1004       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
1005       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
1006         $query =
1007           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1008                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
1009         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
1010         do_query($form, $dbh, $query, @values);
1011       }
1012     }
1013   }
1014
1015   foreach my $trans_id (keys %{ $form->{amount} }) {
1016     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
1017       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
1018       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
1019       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
1020         $query =
1021           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1022              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
1023                      (SELECT tax_id
1024                       FROM taxkeys
1025                       WHERE chart_id= (SELECT id
1026                                        FROM chart
1027                                        WHERE accno = ?)
1028                       AND startdate <= ?
1029                       ORDER BY startdate DESC LIMIT 1),
1030                      (SELECT taxkey_id
1031                       FROM taxkeys
1032                       WHERE chart_id= (SELECT id
1033                                        FROM chart
1034                                        WHERE accno = ?)
1035                       AND startdate <= ?
1036                       ORDER BY startdate DESC LIMIT 1),
1037                      ?,
1038                      (SELECT link FROM chart WHERE accno = ?))|;
1039         @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);
1040         do_query($form, $dbh, $query, @values);
1041         $form->{amount}{$trans_id}{$accno} = 0;
1042       }
1043     }
1044     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
1045       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
1046       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
1047         $query =
1048           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1049              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
1050                      (SELECT tax_id
1051                       FROM taxkeys
1052                       WHERE chart_id= (SELECT id
1053                                        FROM chart
1054                                        WHERE accno = ?)
1055                       AND startdate <= ?
1056                       ORDER BY startdate DESC LIMIT 1),
1057                      (SELECT taxkey_id
1058                       FROM taxkeys
1059                       WHERE chart_id= (SELECT id
1060                                        FROM chart
1061                                        WHERE accno = ?)
1062                       AND startdate <= ?
1063                       ORDER BY startdate DESC LIMIT 1),
1064                      ?,
1065                      (SELECT link FROM chart WHERE accno = ?))|;
1066         @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);
1067         do_query($form, $dbh, $query, @values);
1068       }
1069     }
1070     if (!$payments_only && ($rnd_accno != 0)) {
1071       $query =
1072         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1073              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
1074       @values = (conv_i($trans_id), $rnd_accno, $rounding, conv_date($form->{invdate}), conv_i($project_id), $rnd_accno);
1075       do_query($form, $dbh, $query, @values);
1076       $rnd_accno = 0;
1077     }
1078   }
1079
1080   # deduct payment differences from diff
1081   for my $i (1 .. $form->{paidaccounts}) {
1082     if ($form->{"paid_$i"} != 0) {
1083       $amount =
1084         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
1085       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
1086     }
1087   }
1088
1089   # record payments and offsetting AR
1090   if (!$form->{storno}) {
1091     for my $i (1 .. $form->{paidaccounts}) {
1092
1093       if ($form->{"acc_trans_id_$i"}
1094           && $payments_only
1095           && (SL::DB::Default->get->payments_changeable == 0)) {
1096         next;
1097       }
1098
1099       next if ($form->{"paid_$i"} == 0);
1100
1101       my ($accno) = split(/--/, $form->{"AR_paid_$i"});
1102       $form->{"datepaid_$i"} = $form->{invdate}
1103       unless ($form->{"datepaid_$i"});
1104       $form->{datepaid} = $form->{"datepaid_$i"};
1105
1106       $exchangerate = 0;
1107
1108       if ($form->{currency} eq $defaultcurrency) {
1109         $form->{"exchangerate_$i"} = 1;
1110       } else {
1111         $exchangerate              = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
1112         $form->{"exchangerate_$i"} = $exchangerate || $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
1113       }
1114
1115       # record AR
1116       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
1117
1118       if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
1119         $query =
1120         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
1121            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
1122                    (SELECT tax_id
1123                     FROM taxkeys
1124                     WHERE chart_id= (SELECT id
1125                                      FROM chart
1126                                      WHERE accno = ?)
1127                     AND startdate <= ?
1128                     ORDER BY startdate DESC LIMIT 1),
1129                    (SELECT taxkey_id
1130                     FROM taxkeys
1131                     WHERE chart_id= (SELECT id
1132                                      FROM chart
1133                                      WHERE accno = ?)
1134                     AND startdate <= ?
1135                     ORDER BY startdate DESC LIMIT 1),
1136                    ?,
1137                    (SELECT link FROM chart WHERE accno = ?))|;
1138         @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});
1139         do_query($form, $dbh, $query, @values);
1140       }
1141
1142       # record payment
1143       $form->{"paid_$i"} *= -1;
1144       my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
1145
1146       $query =
1147       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, tax_id, taxkey, project_id, chart_link)
1148          VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
1149                  (SELECT tax_id
1150                   FROM taxkeys
1151                   WHERE chart_id= (SELECT id
1152                                    FROM chart
1153                                    WHERE accno = ?)
1154                   AND startdate <= ?
1155                   ORDER BY startdate DESC LIMIT 1),
1156                  (SELECT taxkey_id
1157                   FROM taxkeys
1158                   WHERE chart_id= (SELECT id
1159                                    FROM chart
1160                                    WHERE accno = ?)
1161                   AND startdate <= ?
1162                   ORDER BY startdate DESC LIMIT 1),
1163                  ?,
1164                  (SELECT link FROM chart WHERE accno = ?))|;
1165       @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
1166                  $gldate, $form->{"source_$i"}, $form->{"memo_$i"}, $accno, conv_date($taxdate), $accno, conv_date($taxdate), $project_id, $accno);
1167       do_query($form, $dbh, $query, @values);
1168
1169       # exchangerate difference
1170       $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
1171         $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
1172
1173       # gain/loss
1174       $amount =
1175         $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
1176         $form->{"exchangerate_$i"};
1177       if ($amount > 0) {
1178         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } += $amount;
1179       } else {
1180         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } += $amount;
1181       }
1182
1183       $diff = 0;
1184
1185       # update exchange rate
1186       if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
1187         $form->update_exchangerate($dbh, $form->{currency},
1188                                    $form->{"datepaid_$i"},
1189                                    $form->{"exchangerate_$i"}, 0);
1190       }
1191     }
1192
1193   } else {                      # if (!$form->{storno})
1194     $form->{marge_total} *= -1;
1195   }
1196
1197   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
1198
1199   # record exchange rate differences and gains/losses
1200   foreach my $accno (keys %{ $form->{fx} }) {
1201     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
1202       $form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2);
1203       if ( $form->{fx}{$accno}{$transdate} != 0 ) {
1204
1205         $query =
1206           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, tax_id, taxkey, project_id, chart_link)
1207              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
1208                  (SELECT tax_id
1209                   FROM taxkeys
1210                   WHERE chart_id= (SELECT id
1211                                    FROM chart
1212                                    WHERE accno = ?)
1213                   AND startdate <= ?
1214                   ORDER BY startdate DESC LIMIT 1),
1215                  (SELECT taxkey_id
1216                   FROM taxkeys
1217                   WHERE chart_id= (SELECT id
1218                                    FROM chart
1219                                    WHERE accno = ?)
1220                   AND startdate <= ?
1221                   ORDER BY startdate DESC LIMIT 1),
1222                  ?,
1223                  (SELECT link FROM chart WHERE accno = ?))|;
1224         @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);
1225         do_query($form, $dbh, $query, @values);
1226       }
1227     }
1228   }
1229
1230   if ($payments_only) {
1231     $query = qq|UPDATE ar SET paid = ? WHERE id = ?|;
1232     do_query($form, $dbh, $query,  $form->{paid}, conv_i($form->{id}));
1233
1234     $dbh->commit if !$provided_dbh;
1235
1236     $main::lxdebug->leave_sub();
1237     return;
1238   }
1239
1240   $amount = $form->round_amount( $netamount + $tax, 2, 1);
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->{name} = $form->{customer};
1290   $form->{name} =~ s/--\Q$form->{customer_id}\E//;
1291
1292   # add shipto
1293   if (!$form->{shipto_id}) {
1294     $form->add_shipto($dbh, $form->{id}, "AR");
1295   }
1296
1297   # save printed, emailed and queued
1298   $form->save_status($dbh);
1299
1300   Common::webdav_folder($form);
1301
1302   if ($form->{convert_from_ar_ids}) {
1303     RecordLinks->create_links('dbh'        => $dbh,
1304                               'mode'       => 'ids',
1305                               'from_table' => 'ar',
1306                               'from_ids'   => $form->{convert_from_ar_ids},
1307                               'to_table'   => 'ar',
1308                               'to_id'      => $form->{id},
1309     );
1310     delete $form->{convert_from_ar_ids};
1311   }
1312
1313   # Link this record to the records it was created from.
1314   if ($form->{convert_from_oe_ids}) {
1315     RecordLinks->create_links('dbh'        => $dbh,
1316                               'mode'       => 'ids',
1317                               'from_table' => 'oe',
1318                               'from_ids'   => $form->{convert_from_oe_ids},
1319                               'to_table'   => 'ar',
1320                               'to_id'      => $form->{id},
1321       );
1322     delete $form->{convert_from_oe_ids};
1323   }
1324
1325   my @convert_from_do_ids = map { $_ * 1 } grep { $_ } split m/\s+/, $form->{convert_from_do_ids};
1326
1327   if (scalar @convert_from_do_ids) {
1328     DO->close_orders('dbh' => $dbh,
1329                      'ids' => \@convert_from_do_ids);
1330
1331     RecordLinks->create_links('dbh'        => $dbh,
1332                               'mode'       => 'ids',
1333                               'from_table' => 'delivery_orders',
1334                               'from_ids'   => \@convert_from_do_ids,
1335                               'to_table'   => 'ar',
1336                               'to_id'      => $form->{id},
1337       );
1338   }
1339   delete $form->{convert_from_do_ids};
1340
1341   ARAP->close_orders_if_billed('dbh'     => $dbh,
1342                                'arap_id' => $form->{id},
1343                                'table'   => 'ar',);
1344
1345   # search for orphaned invoice items
1346   $query  = sprintf 'SELECT id FROM invoice WHERE trans_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_invoice_ids;
1347   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_invoice_ids);
1348   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
1349   if (scalar @orphaned_ids) {
1350     # clean up invoice items
1351     $query  = sprintf 'DELETE FROM invoice WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
1352     do_query($form, $dbh, $query, @orphaned_ids);
1353   }
1354
1355   # safety check datev export
1356   if ($::instance_conf->get_datev_check_on_sales_invoice) {
1357     my $transdate = $::form->{invdate} ? DateTime->from_lxoffice($::form->{invdate}) : undef;
1358     $transdate  ||= DateTime->today;
1359
1360     my $datev = SL::DATEV->new(
1361       exporttype => DATEV_ET_BUCHUNGEN,
1362       format     => DATEV_FORMAT_KNE,
1363       dbh        => $dbh,
1364       trans_id   => $form->{id},
1365     );
1366
1367     $datev->export;
1368
1369     if ($datev->errors) {
1370       $dbh->rollback;
1371       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
1372     }
1373   }
1374
1375   my $rc = 1;
1376   $dbh->commit if !$provided_dbh;
1377
1378   $main::lxdebug->leave_sub();
1379
1380   return $rc;
1381 }
1382
1383 sub transfer_out {
1384   $::lxdebug->enter_sub;
1385
1386   my ($self, $form, $dbh) = @_;
1387
1388   my (@errors, @transfers);
1389
1390   # do nothing, if transfer default is not requeseted at all
1391   if (!$::instance_conf->get_transfer_default) {
1392     $::lxdebug->leave_sub;
1393     return \@errors;
1394   }
1395
1396   require SL::WH;
1397
1398   foreach my $i (1 .. $form->{rowcount}) {
1399     next if !$form->{"id_$i"};
1400     my ($err, $wh_id, $bin_id) = _determine_wh_and_bin($dbh, $::instance_conf,
1401                                                        $form->{"id_$i"},
1402                                                        $form->{"qty_$i"},
1403                                                        $form->{"unit_$i"});
1404     if (!@{ $err } && $wh_id && $bin_id) {
1405       push @transfers, {
1406         'parts_id'         => $form->{"id_$i"},
1407         'qty'              => $form->{"qty_$i"},
1408         'unit'             => $form->{"unit_$i"},
1409         'transfer_type'    => 'shipped',
1410         'src_warehouse_id' => $wh_id,
1411         'src_bin_id'       => $bin_id,
1412         'project_id'       => $form->{"project_id_$i"},
1413         'invoice_id'       => $form->{"invoice_id_$i"},
1414         'comment'          => $::locale->text("Default transfer invoice"),
1415       };
1416     }
1417
1418     push @errors, @{ $err };
1419   }
1420
1421   if (!@errors) {
1422     WH->transfer(@transfers);
1423   }
1424
1425   $::lxdebug->leave_sub;
1426   return \@errors;
1427 }
1428
1429 sub _determine_wh_and_bin {
1430   $::lxdebug->enter_sub(2);
1431
1432   my ($dbh, $conf, $part_id, $qty, $unit) = @_;
1433   my @errors;
1434
1435   my $part = SL::DB::Part->new(id => $part_id)->load;
1436
1437   # ignore service if they are not configured to be transfered
1438   if ($part->is_service && !$conf->get_transfer_default_services) {
1439     $::lxdebug->leave_sub(2);
1440     return (\@errors);
1441   }
1442
1443   # test negative qty
1444   if ($qty < 0) {
1445     push @errors, $::locale->text("Cannot transfer negative quantities.");
1446     return (\@errors);
1447   }
1448
1449   # get/test default bin
1450   my ($default_wh_id, $default_bin_id);
1451   if ($conf->get_transfer_default_use_master_default_bin) {
1452     $default_wh_id  = $conf->get_warehouse_id if $conf->get_warehouse_id;
1453     $default_bin_id = $conf->get_bin_id       if $conf->get_bin_id;
1454   }
1455   my $wh_id  = $part->warehouse_id || $default_wh_id;
1456   my $bin_id = $part->bin_id       || $default_bin_id;
1457
1458   # check qty and bin
1459   if ($bin_id) {
1460     my ($max_qty, $error) = WH->get_max_qty_parts_bin(dbh      => $dbh,
1461                                                       parts_id => $part->id,
1462                                                       bin_id   => $bin_id);
1463     if ($error == 1) {
1464       push @errors, $::locale->text('Part "#1" has chargenumber or best before date set. So it cannot be transfered automaticaly.',
1465                                     $part->description);
1466     }
1467     my $form_unit_obj = SL::DB::Unit->new(name => $unit)->load;
1468     my $part_unit_qty = $form_unit_obj->convert_to($qty, $part->unit_obj);
1469     my $diff_qty      = $max_qty - $part_unit_qty;
1470     if (!@errors && $diff_qty < 0) {
1471       push @errors, $::locale->text('For part "#1" there are missing #2 #3 in the default warehouse/bin "#4/#5".',
1472                                     $part->description,
1473                                     $::form->format_amount(\%::myconfig, -1*$diff_qty),
1474                                     $part->unit_obj->name,
1475                                     SL::DB::Warehouse->new(id => $wh_id)->load->description,
1476                                     SL::DB::Bin->new(      id => $bin_id)->load->description);
1477     }
1478   } else {
1479     push @errors, $::locale->text('For part "#1" there is no default warehouse and bin defined.',
1480                                   $part->description);
1481   }
1482
1483   # transfer to special "ignore onhand" bin if requested and default bin does not work
1484   if (@errors && $conf->get_transfer_default_ignore_onhand && $conf->get_bin_id_ignore_onhand) {
1485     $wh_id  = $conf->get_warehouse_id_ignore_onhand;
1486     $bin_id = $conf->get_bin_id_ignore_onhand;
1487     if ($wh_id && $bin_id) {
1488       @errors = ();
1489     } else {
1490       push @errors, $::locale->text('For part "#1" there is no default warehouse and bin for ignoring onhand defined.',
1491                                     $part->description);
1492     }
1493   }
1494
1495   $::lxdebug->leave_sub(2);
1496   return (\@errors, $wh_id, $bin_id);
1497 }
1498
1499 sub _delete_transfers {
1500   $::lxdebug->enter_sub;
1501
1502   my ($dbh, $form, $id) = @_;
1503
1504   my $query = qq|DELETE FROM inventory WHERE invoice_id
1505                   IN (SELECT id FROM invoice WHERE trans_id = ?)|;
1506
1507   do_query($form, $dbh, $query, $id);
1508
1509   $::lxdebug->leave_sub;
1510 }
1511
1512 sub _delete_payments {
1513   $main::lxdebug->enter_sub();
1514
1515   my ($self, $form, $dbh) = @_;
1516
1517   my @delete_acc_trans_ids;
1518
1519   # Delete old payment entries from acc_trans.
1520   my $query =
1521     qq|SELECT acc_trans_id
1522        FROM acc_trans
1523        WHERE (trans_id = ?) AND fx_transaction
1524
1525        UNION
1526
1527        SELECT at.acc_trans_id
1528        FROM acc_trans at
1529        LEFT JOIN chart c ON (at.chart_id = c.id)
1530        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
1531   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
1532
1533   $query =
1534     qq|SELECT at.acc_trans_id
1535        FROM acc_trans at
1536        LEFT JOIN chart c ON (at.chart_id = c.id)
1537        WHERE (trans_id = ?)
1538          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
1539        ORDER BY at.acc_trans_id
1540        OFFSET 1|;
1541   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
1542
1543   if (@delete_acc_trans_ids) {
1544     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
1545     do_query($form, $dbh, $query);
1546   }
1547
1548   $main::lxdebug->leave_sub();
1549 }
1550
1551 sub post_payment {
1552   $main::lxdebug->enter_sub();
1553
1554   my ($self, $myconfig, $form, $locale) = @_;
1555
1556   # connect to database, turn off autocommit
1557   my $dbh = $form->get_standard_dbh;
1558
1559   my (%payments, $old_form, $row, $item, $query, %keep_vars);
1560
1561   $old_form = save_form();
1562
1563   # Delete all entries in acc_trans from prior payments.
1564   if (SL::DB::Default->get->payments_changeable != 0) {
1565     $self->_delete_payments($form, $dbh);
1566   }
1567
1568   # Save the new payments the user made before cleaning up $form.
1569   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 };
1570
1571   # Clean up $form so that old content won't tamper the results.
1572   %keep_vars = map { $_, 1 } qw(login password id);
1573   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
1574
1575   # Retrieve the invoice from the database.
1576   $self->retrieve_invoice($myconfig, $form);
1577
1578   # Set up the content of $form in the way that IS::post_invoice() expects.
1579   $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
1580
1581   for $row (1 .. scalar @{ $form->{invoice_details} }) {
1582     $item = $form->{invoice_details}->[$row - 1];
1583
1584     map { $item->{$_} = $form->format_amount($myconfig, $item->{$_}) } qw(qty sellprice discount);
1585
1586     map { $form->{"${_}_${row}"} = $item->{$_} } keys %{ $item };
1587   }
1588
1589   $form->{rowcount} = scalar @{ $form->{invoice_details} };
1590
1591   delete @{$form}{qw(invoice_details paidaccounts storno paid)};
1592
1593   # Restore the payment options from the user input.
1594   map { $form->{$_} = $payments{$_} } keys %payments;
1595
1596   # Get the AR accno (which is normally done by Form::create_links()).
1597   $query =
1598     qq|SELECT c.accno
1599        FROM acc_trans at
1600        LEFT JOIN chart c ON (at.chart_id = c.id)
1601        WHERE (trans_id = ?)
1602          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
1603        ORDER BY at.acc_trans_id
1604        LIMIT 1|;
1605
1606   ($form->{AR}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
1607
1608   # Post the new payments.
1609   $self->post_invoice($myconfig, $form, $dbh, 1);
1610
1611   restore_form($old_form);
1612
1613   my $rc = $dbh->commit();
1614
1615   $main::lxdebug->leave_sub();
1616
1617   return $rc;
1618 }
1619
1620 sub process_assembly {
1621   $main::lxdebug->enter_sub();
1622
1623   my ($dbh, $myconfig, $form, $position, $id, $totalqty) = @_;
1624
1625   my $query =
1626     qq|SELECT a.parts_id, a.qty, p.assembly, p.partnumber, p.description, p.unit,
1627          p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
1628        FROM assembly a
1629        JOIN parts p ON (a.parts_id = p.id)
1630        WHERE (a.id = ?)|;
1631   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1632
1633   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
1634
1635     my $allocated = 0;
1636
1637     $ref->{inventory_accno_id} *= 1;
1638     $ref->{expense_accno_id}   *= 1;
1639
1640     # multiply by number of assemblies
1641     $ref->{qty} *= $totalqty;
1642
1643     if ($ref->{assembly}) {
1644       &process_assembly($dbh, $myconfig, $form, $position, $ref->{parts_id}, $ref->{qty});
1645       next;
1646     } else {
1647       if ($ref->{inventory_accno_id}) {
1648         $allocated = &cogs($dbh, $myconfig, $form, $ref->{parts_id}, $ref->{qty});
1649       }
1650     }
1651
1652     # save detail record for individual assembly item in invoice table
1653     $query =
1654       qq|INSERT INTO invoice (trans_id, position, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
1655          VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1656     my @values = (conv_i($form->{id}), conv_i($position), $ref->{description},
1657                   conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
1658     do_query($form, $dbh, $query, @values);
1659
1660   }
1661
1662   $sth->finish;
1663
1664   $main::lxdebug->leave_sub();
1665 }
1666
1667 sub cogs {
1668   $main::lxdebug->enter_sub();
1669
1670   # adjust allocated in table invoice according to FIFO princicple
1671   # for a certain part with part_id $id
1672
1673   my ($dbh, $myconfig, $form, $id, $totalqty, $basefactor, $row) = @_;
1674
1675   $basefactor ||= 1;
1676
1677   $form->{taxzone_id} *=1;
1678   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
1679   my $taxzone_id = $form->{"taxzone_id"} * 1;
1680   my $query =
1681     qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice, i.price_factor,
1682          c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
1683          c2.accno AS    income_accno, c2.new_chart_id AS    income_new_chart, date($transdate) - c2.valid_from AS    income_valid,
1684          c3.accno AS   expense_accno, c3.new_chart_id AS   expense_new_chart, date($transdate) - c3.valid_from AS   expense_valid
1685        FROM invoice i, parts p
1686        LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
1687        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)
1688        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)
1689        WHERE (i.parts_id = p.id)
1690          AND (i.parts_id = ?)
1691          AND ((i.base_qty + i.allocated) < 0)
1692        ORDER BY trans_id|;
1693   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
1694
1695   my $allocated = 0;
1696   my $qty;
1697
1698 # all invoice entries of an example part:
1699
1700 # id | trans_id | base_qty | allocated | sellprice | inventory_accno | income_accno | expense_accno
1701 # ---+----------+----------+-----------+-----------+-----------------+--------------+---------------
1702 #  4 |        4 |       -5 |         5 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
1703 #  5 |        5 |        4 |        -4 |  50.00000 | 1140            | 4400         | 5400     sold   4 for 50
1704 #  6 |        6 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
1705 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
1706 #  8 |        8 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
1707
1708 # 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
1709 # and all parts have been allocated
1710
1711 # so transaction 8 only sees transaction 7 with unallocated parts and adjusts allocated for that transaction, before allocated was 0
1712 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
1713
1714 # in this example there are still 4 unsold articles
1715
1716
1717   # search all invoice entries for the part in question, adjusting "allocated"
1718   # until the total number of sold parts has been reached
1719
1720   # ORDER BY trans_id ensures FIFO
1721
1722
1723   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
1724     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
1725       $qty = $totalqty;
1726     }
1727
1728     # update allocated in invoice
1729     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
1730
1731     # total expenses and inventory
1732     # sellprice is the cost of the item
1733     my $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / ( ($ref->{price_factor} || 1) * ( $basefactor || 1 )), 2);
1734
1735     if ( $::instance_conf->get_inventory_system eq 'perpetual' ) {
1736       # Bestandsmethode: when selling parts, deduct their purchase value from the inventory account
1737       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
1738       # add to expense
1739       $form->{amount_cogs}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
1740       $form->{expense_inventory} .= " " . $ref->{expense_accno};
1741       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
1742       # deduct inventory
1743       $form->{amount_cogs}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
1744       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
1745     }
1746
1747     # add allocated
1748     $allocated -= $qty;
1749
1750     last if (($totalqty -= $qty) <= 0);
1751   }
1752
1753   $sth->finish;
1754
1755   $main::lxdebug->leave_sub();
1756
1757   return $allocated;
1758 }
1759
1760 sub reverse_invoice {
1761   $main::lxdebug->enter_sub();
1762
1763   my ($dbh, $form) = @_;
1764
1765   # reverse inventory items
1766   my $query =
1767     qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly, p.inventory_accno_id
1768        FROM invoice i
1769        JOIN parts p ON (i.parts_id = p.id)
1770        WHERE i.trans_id = ?|;
1771   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
1772
1773   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
1774
1775     if ($ref->{inventory_accno_id}) {
1776       # de-allocated purchases
1777       $query =
1778         qq|SELECT i.id, i.trans_id, i.allocated
1779            FROM invoice i
1780            WHERE (i.parts_id = ?) AND (i.allocated > 0)
1781            ORDER BY i.trans_id DESC|;
1782       my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
1783
1784       while (my $inhref = $sth2->fetchrow_hashref('NAME_lc')) {
1785         my $qty = $ref->{qty};
1786         if (($ref->{qty} - $inhref->{allocated}) > 0) {
1787           $qty = $inhref->{allocated};
1788         }
1789
1790         # update invoice
1791         $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
1792
1793         last if (($ref->{qty} -= $qty) <= 0);
1794       }
1795       $sth2->finish;
1796     }
1797   }
1798
1799   $sth->finish;
1800
1801   # delete acc_trans
1802   my @values = (conv_i($form->{id}));
1803   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
1804   do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
1805
1806   $main::lxdebug->leave_sub();
1807 }
1808
1809 sub delete_invoice {
1810   $main::lxdebug->enter_sub();
1811
1812   my ($self, $myconfig, $form) = @_;
1813
1814   # connect to database
1815   my $dbh = $form->get_standard_dbh;
1816
1817   &reverse_invoice($dbh, $form);
1818   _delete_transfers($dbh, $form, $form->{id});
1819
1820   my @values = (conv_i($form->{id}));
1821
1822   # Falls wir ein Storno haben, müssen zwei Felder in der stornierten Rechnung wieder
1823   # zurückgesetzt werden. Vgl:
1824   #  id | storno | storno_id |  paid   |  amount
1825   #----+--------+-----------+---------+-----------
1826   # 18 | f      |           | 0.00000 | 119.00000
1827   # ZU:
1828   # 18 | t      |           |  119.00000 |  119.00000
1829   #
1830   if($form->{storno}){
1831     # storno_id auslesen und korrigieren
1832     my ($invoice_id) = selectfirst_array_query($form, $dbh, qq|SELECT storno_id FROM ar WHERE id = ?|,@values);
1833     do_query($form, $dbh, qq|UPDATE ar SET storno = 'f', paid = 0 WHERE id = ?|, $invoice_id);
1834   }
1835
1836   # delete spool files
1837   my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
1838
1839   my @queries = (
1840     qq|DELETE FROM status WHERE trans_id = ?|,
1841     qq|DELETE FROM periodic_invoices WHERE ar_id = ?|,
1842     qq|DELETE FROM invoice WHERE trans_id = ?|,
1843     qq|DELETE FROM ar WHERE id = ?|,
1844   );
1845
1846   map { do_query($form, $dbh, $_, @values) } @queries;
1847
1848   my $rc = $dbh->commit;
1849
1850   if ($rc) {
1851     my $spool = $::lx_office_conf{paths}->{spool};
1852     map { unlink "$spool/$_" if -f "$spool/$_"; } @spoolfiles;
1853   }
1854
1855   $main::lxdebug->leave_sub();
1856
1857   return $rc;
1858 }
1859
1860 sub retrieve_invoice {
1861   $main::lxdebug->enter_sub();
1862
1863   my ($self, $myconfig, $form) = @_;
1864
1865   # connect to database
1866   my $dbh = $form->get_standard_dbh;
1867
1868   my ($sth, $ref, $query);
1869
1870   my $query_transdate = !$form->{id} ? ", current_date AS invdate" : '';
1871
1872   $query =
1873     qq|SELECT
1874          (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
1875          (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
1876          (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
1877          (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
1878          (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno,
1879          (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id)    AS rndgain_accno,
1880          (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id)    AS rndloss_accno
1881          ${query_transdate}
1882        FROM defaults d|;
1883
1884   $ref = selectfirst_hashref_query($form, $dbh, $query);
1885   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1886
1887   if ($form->{id}) {
1888     my $id = conv_i($form->{id});
1889
1890     # retrieve invoice
1891     #erweiterung um das entsprechende feld lieferscheinnummer (a.donumber) in der html-maske anzuzeigen 12.02.2009 jb
1892
1893     $query =
1894       qq|SELECT
1895            a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
1896            a.orddate, a.quodate, a.globalproject_id,
1897            a.transdate AS invdate, a.deliverydate, a.paid, a.storno, a.gldate,
1898            a.shippingpoint, a.shipvia, a.notes, a.intnotes, a.taxzone_id,
1899            a.duedate, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.shipto_id, a.cp_id,
1900            a.employee_id, a.salesman_id, a.payment_id,
1901            a.mtime, a.itime,
1902            a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
1903            a.transaction_description, a.donumber, a.invnumber_for_credit_note,
1904            a.marge_total, a.marge_percent, a.direct_debit, a.delivery_term_id,
1905            dc.dunning_description,
1906            e.name AS employee
1907          FROM ar a
1908          LEFT JOIN employee e ON (e.id = a.employee_id)
1909          LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id)
1910          WHERE a.id = ?|;
1911     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
1912     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
1913     $form->{mtime} = $form->{itime} if !$form->{mtime};
1914     $form->{lastmtime} = $form->{mtime};
1915
1916     $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
1917
1918     foreach my $vc (qw(customer vendor)) {
1919       next if !$form->{"delivery_${vc}_id"};
1920       ($form->{"delivery_${vc}_string"}) = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
1921     }
1922
1923     # get printed, emailed
1924     $query = qq|SELECT printed, emailed, spoolfile, formname FROM status WHERE trans_id = ?|;
1925     $sth = prepare_execute_query($form, $dbh, $query, $id);
1926
1927     while ($ref = $sth->fetchrow_hashref('NAME_lc')) {
1928       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
1929       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
1930       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
1931     }
1932     $sth->finish;
1933     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
1934
1935     my $transdate = $form->{deliverydate} ? $dbh->quote($form->{deliverydate})
1936                   : $form->{invdate}      ? $dbh->quote($form->{invdate})
1937                   :                         "current_date";
1938
1939
1940     my $taxzone_id = $form->{taxzone_id} *= 1;
1941     $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
1942
1943     # retrieve individual items
1944     $query =
1945       qq|SELECT
1946            c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
1947            c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from as income_valid,
1948            c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from AS expense_valid,
1949
1950            i.id AS invoice_id,
1951            i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice, i.discount, i.parts_id AS id, i.unit, i.deliverydate AS reqdate,
1952            i.project_id, i.serialnumber, i.pricegroup_id, i.ordnumber, i.donumber, i.transdate, i.cusordnumber, i.subtotal, i.lastcost,
1953            i.price_factor_id, i.price_factor, i.marge_price_factor, i.active_price_source, i.active_discount_source,
1954            p.partnumber, p.assembly, p.notes AS partnotes, p.inventory_accno_id AS part_inventory_accno_id, p.formel, p.listprice,
1955            pr.projectnumber, pg.partsgroup, prg.pricegroup
1956
1957          FROM invoice i
1958          LEFT JOIN parts p ON (i.parts_id = p.id)
1959          LEFT JOIN project pr ON (i.project_id = pr.id)
1960          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
1961          LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
1962
1963          LEFT JOIN chart c1 ON ((SELECT inventory_accno_id             FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
1964          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)
1965          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)
1966
1967          WHERE (i.trans_id = ?) AND NOT (i.assemblyitem = '1') ORDER BY i.position|;
1968
1969     $sth = prepare_execute_query($form, $dbh, $query, $id);
1970
1971     while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
1972       # Retrieve custom variables.
1973       my $cvars = CVar->get_custom_variables(dbh        => $dbh,
1974                                              module     => 'IC',
1975                                              sub_module => 'invoice',
1976                                              trans_id   => $ref->{invoice_id},
1977                                             );
1978       map { $ref->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
1979
1980       map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid)) if !$ref->{"part_inventory_accno_id"};
1981       delete($ref->{"part_inventory_accno_id"});
1982
1983       foreach my $type (qw(inventory income expense)) {
1984         while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
1985           my $query = qq|SELECT accno, new_chart_id, date($transdate) - valid_from FROM chart WHERE id = ?|;
1986           @$ref{ map $type.$_, qw(_accno _new_chart _valid) } = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
1987         }
1988       }
1989
1990       # get tax rates and description
1991       my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
1992       $query =
1993         qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber FROM tax t
1994            LEFT JOIN chart c ON (c.id = t.chart_id)
1995            WHERE t.id IN
1996              (SELECT tk.tax_id FROM taxkeys tk
1997               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
1998                 AND startdate <= date($transdate)
1999               ORDER BY startdate DESC LIMIT 1)
2000            ORDER BY c.accno|;
2001       my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
2002       $ref->{taxaccounts} = "";
2003       my $i=0;
2004       while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
2005
2006         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
2007           $i++;
2008           $ptr->{accno} = $i;
2009         }
2010         $ref->{taxaccounts} .= "$ptr->{accno} ";
2011
2012         if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
2013           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
2014           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
2015           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
2016           $form->{taxaccounts} .= "$ptr->{accno} ";
2017         }
2018
2019       }
2020
2021       $ref->{qty} *= -1 if $form->{type} eq "credit_note";
2022
2023       chop $ref->{taxaccounts};
2024       push @{ $form->{invoice_details} }, $ref;
2025       $stw->finish;
2026     }
2027     $sth->finish;
2028
2029     Common::webdav_folder($form);
2030   }
2031
2032   my $rc = $dbh->commit;
2033
2034   $main::lxdebug->leave_sub();
2035
2036   return $rc;
2037 }
2038
2039 sub get_customer {
2040   $main::lxdebug->enter_sub();
2041
2042   my ($self, $myconfig, $form) = @_;
2043
2044   # connect to database
2045   my $dbh = $form->get_standard_dbh;
2046
2047   my $dateformat = $myconfig->{dateformat};
2048   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2049
2050   my (@values, $ref, $query);
2051
2052   my $cid = conv_i($form->{customer_id});
2053   my $payment_id;
2054
2055   # get customer
2056   $query =
2057     qq|SELECT
2058          c.id AS customer_id, c.name AS customer, c.discount as customer_discount, c.creditlimit,
2059          c.email, c.cc, c.bcc, c.language_id, c.payment_id, c.delivery_term_id,
2060          c.street, c.zipcode, c.city, c.country,
2061          c.notes AS intnotes, c.klass as customer_klass, c.taxzone_id, c.salesman_id, cu.name AS curr,
2062          c.taxincluded_checked, c.direct_debit,
2063          b.discount AS tradediscount, b.description AS business
2064        FROM customer c
2065        LEFT JOIN business b ON (b.id = c.business_id)
2066        LEFT JOIN currencies cu ON (c.currency_id=cu.id)
2067        WHERE c.id = ?|;
2068   push @values, $cid;
2069   $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
2070
2071   delete $ref->{salesman_id} if !$ref->{salesman_id};
2072   delete $ref->{payment_id}  if $form->{payment_id};
2073
2074   map { $form->{$_} = $ref->{$_} } keys %$ref;
2075
2076   if ($form->{payment_id}) {
2077     my $reference_date = $form->{invdate} ? DateTime->from_kivitendo($form->{invdate}) : undef;
2078     $form->{duedate}   = SL::DB::PaymentTerm->new(id => $form->{payment_id})->load->calc_date(reference_date => $reference_date)->to_kivitendo;
2079   } else {
2080     $form->{duedate}   = DateTime->today_local->to_kivitendo;
2081   }
2082
2083   # use customer currency
2084   $form->{currency} = $form->{curr};
2085
2086   $query =
2087     qq|SELECT sum(amount - paid) AS dunning_amount
2088        FROM ar
2089        WHERE (paid < amount)
2090          AND (customer_id = ?)
2091          AND (dunning_config_id IS NOT NULL)|;
2092   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
2093   map { $form->{$_} = $ref->{$_} } keys %$ref;
2094
2095   $query =
2096     qq|SELECT dnn.dunning_description AS max_dunning_level
2097        FROM dunning_config dnn
2098        WHERE id IN (SELECT dunning_config_id
2099                     FROM ar
2100                     WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
2101        ORDER BY dunning_level DESC LIMIT 1|;
2102   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
2103   map { $form->{$_} = $ref->{$_} } keys %$ref;
2104
2105   $form->{creditremaining} = $form->{creditlimit};
2106   $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
2107   my ($value) = selectrow_query($form, $dbh, $query, $cid);
2108   $form->{creditremaining} -= $value;
2109
2110   $query =
2111     qq|SELECT o.amount,
2112          (SELECT e.buy FROM exchangerate e
2113           WHERE e.currency_id = o.currency_id
2114             AND e.transdate = o.transdate)
2115        FROM oe o
2116        WHERE o.customer_id = ?
2117          AND o.quotation = '0'
2118          AND o.closed = '0'|;
2119   my $sth = prepare_execute_query($form, $dbh, $query, $cid);
2120
2121   while (my ($amount, $exch) = $sth->fetchrow_array) {
2122     $exch = 1 unless $exch;
2123     $form->{creditremaining} -= $amount * $exch;
2124   }
2125   $sth->finish;
2126
2127   # setup last accounts used for this customer
2128   if (!$form->{id} && $form->{type} !~ /_(order|quotation)/) {
2129     $query =
2130       qq|SELECT c.id, c.accno, c.description, c.link, c.category
2131          FROM chart c
2132          JOIN acc_trans ac ON (ac.chart_id = c.id)
2133          JOIN ar a ON (a.id = ac.trans_id)
2134          WHERE a.customer_id = ?
2135            AND NOT (c.link LIKE '%_tax%' OR c.link LIKE '%_paid%')
2136            AND a.id IN (SELECT max(a2.id) FROM ar a2 WHERE a2.customer_id = ?)|;
2137     $sth = prepare_execute_query($form, $dbh, $query, $cid, $cid);
2138
2139     my $i = 0;
2140     while ($ref = $sth->fetchrow_hashref('NAME_lc')) {
2141       if ($ref->{category} eq 'I') {
2142         $i++;
2143         $form->{"AR_amount_$i"} = "$ref->{accno}--$ref->{description}";
2144
2145         if ($form->{initial_transdate}) {
2146           my $tax_query =
2147             qq|SELECT tk.tax_id, t.rate
2148                FROM taxkeys tk
2149                LEFT JOIN tax t ON tk.tax_id = t.id
2150                WHERE (tk.chart_id = ?) AND (startdate <= date(?))
2151                ORDER BY tk.startdate DESC
2152                LIMIT 1|;
2153           my ($tax_id, $rate) =
2154             selectrow_query($form, $dbh, $tax_query, $ref->{id},
2155                             $form->{initial_transdate});
2156           $form->{"taxchart_$i"} = "${tax_id}--${rate}";
2157         }
2158       }
2159       if ($ref->{category} eq 'A') {
2160         $form->{ARselected} = $form->{AR_1} = $ref->{accno};
2161       }
2162     }
2163     $sth->finish;
2164     $form->{rowcount} = $i if ($i && !$form->{type});
2165   }
2166
2167   $main::lxdebug->leave_sub();
2168 }
2169
2170 sub retrieve_item {
2171   $main::lxdebug->enter_sub();
2172
2173   my ($self, $myconfig, $form) = @_;
2174
2175   # connect to database
2176   my $dbh = $form->get_standard_dbh;
2177
2178   my $i = $form->{rowcount};
2179
2180   my $where = qq|NOT p.obsolete = '1'|;
2181   my @values;
2182
2183   foreach my $column (qw(p.partnumber p.description pgpartsgroup )) {
2184     my ($table, $field) = split m/\./, $column;
2185     next if !$form->{"${field}_${i}"};
2186     $where .= qq| AND lower(${column}) ILIKE ?|;
2187     push @values, '%' . $form->{"${field}_${i}"} . '%';
2188   }
2189
2190   my (%mm_by_id);
2191   if ($form->{"partnumber_$i"} && !$form->{"description_$i"}) {
2192     $where .= qq| OR (NOT p.obsolete = '1' AND p.ean = ? )|;
2193     push @values, $form->{"partnumber_$i"};
2194
2195     # also search hits in makemodels, but only cache the results by id and merge later
2196     my $mm_query = qq|
2197       SELECT parts_id, model FROM makemodel LEFT JOIN parts ON parts.id = parts_id WHERE NOT parts.obsolete AND model ILIKE ?;
2198     |;
2199     my $mm_results = selectall_hashref_query($::form, $dbh, $mm_query, '%' . $form->{"partnumber_$i"} . '%');
2200     my @mm_ids     = map { $_->{parts_id} } @$mm_results;
2201     push @{$mm_by_id{ $_->{parts_id} } ||= []}, $_ for @$mm_results;
2202
2203     if (@mm_ids) {
2204       $where .= qq| OR p.id IN (| . join(',', ('?') x @mm_ids) . qq|)|;
2205       push @values, @mm_ids;
2206     }
2207   }
2208
2209   # Search for part ID overrides all other criteria.
2210   if ($form->{"id_${i}"}) {
2211     $where  = qq|p.id = ?|;
2212     @values = ($form->{"id_${i}"});
2213   }
2214
2215   if ($form->{"description_$i"}) {
2216     $where .= qq| ORDER BY p.description|;
2217   } else {
2218     $where .= qq| ORDER BY p.partnumber|;
2219   }
2220
2221   my $transdate;
2222   if ($form->{type} eq "invoice") {
2223     $transdate =
2224       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
2225       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
2226                               "current_date";
2227   } else {
2228     $transdate =
2229       $form->{transdate}    ? $dbh->quote($form->{transdate}) :
2230                               "current_date";
2231   }
2232
2233   my $taxzone_id = $form->{taxzone_id} * 1;
2234   $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
2235
2236   my $query =
2237     qq|SELECT
2238          p.id, p.partnumber, p.description, p.sellprice,
2239          p.listprice, p.inventory_accno_id, p.lastcost,
2240          p.ean,
2241
2242          c1.accno AS inventory_accno,
2243          c1.new_chart_id AS inventory_new_chart,
2244          date($transdate) - c1.valid_from AS inventory_valid,
2245
2246          c2.accno AS income_accno,
2247          c2.new_chart_id AS income_new_chart,
2248          date($transdate)  - c2.valid_from AS income_valid,
2249
2250          c3.accno AS expense_accno,
2251          c3.new_chart_id AS expense_new_chart,
2252          date($transdate) - c3.valid_from AS expense_valid,
2253
2254          p.unit, p.assembly, p.onhand,
2255          p.notes AS partnotes, p.notes AS longdescription,
2256          p.not_discountable, p.formel, p.payment_id AS part_payment_id,
2257          p.price_factor_id, p.weight,
2258
2259          pfac.factor AS price_factor,
2260
2261          pg.partsgroup
2262
2263        FROM parts p
2264        LEFT JOIN chart c1 ON
2265          ((SELECT inventory_accno_id
2266            FROM buchungsgruppen
2267            WHERE id = p.buchungsgruppen_id) = c1.id)
2268        LEFT JOIN chart c2 ON
2269          ((SELECT tc.income_accno_id
2270            FROM taxzone_charts tc
2271            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c2.id)
2272        LEFT JOIN chart c3 ON
2273          ((SELECT tc.expense_accno_id
2274            FROM taxzone_charts tc
2275            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c3.id)
2276        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
2277        LEFT JOIN price_factors pfac ON (pfac.id = p.price_factor_id)
2278        WHERE $where|;
2279   my $sth = prepare_execute_query($form, $dbh, $query, @values);
2280
2281   my @translation_queries = ( [ qq|SELECT tr.translation, tr.longdescription
2282                                    FROM translation tr
2283                                    WHERE tr.language_id = ? AND tr.parts_id = ?| ],
2284                               [ qq|SELECT tr.translation, tr.longdescription
2285                                    FROM translation tr
2286                                    WHERE tr.language_id IN
2287                                      (SELECT id
2288                                       FROM language
2289                                       WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
2290                                      AND tr.parts_id = ?
2291                                    LIMIT 1| ] );
2292   map { push @{ $_ }, prepare_query($form, $dbh, $_->[0]) } @translation_queries;
2293
2294   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
2295
2296     if ($mm_by_id{$ref->{id}}) {
2297       $ref->{makemodels} = $mm_by_id{$ref->{id}};
2298       push @{ $ref->{matches} ||= [] }, $::locale->text('Model') . ': ' . join ', ', map { $_->{model} } @{ $mm_by_id{$ref->{id}} };
2299     }
2300
2301     if ($ref->{ean} eq $::form->{"partnumber_$i"}) {
2302       push @{ $ref->{matches} ||= [] }, $::locale->text('EAN') . ': ' . $ref->{ean};
2303     }
2304
2305     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
2306     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
2307     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
2308     if (!$ref->{inventory_accno_id}) {
2309       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
2310     }
2311     delete($ref->{inventory_accno_id});
2312
2313     foreach my $type (qw(inventory income expense)) {
2314       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
2315         my $query =
2316           qq|SELECT accno, new_chart_id, date($transdate) - valid_from
2317              FROM chart
2318              WHERE id = ?|;
2319         ($ref->{"${type}_accno"},
2320          $ref->{"${type}_new_chart"},
2321          $ref->{"${type}_valid"})
2322           = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
2323       }
2324     }
2325
2326     if ($form->{payment_id} eq "") {
2327       $form->{payment_id} = $form->{part_payment_id};
2328     }
2329
2330     # get tax rates and description
2331     my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
2332     $query =
2333       qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
2334          FROM tax t
2335          LEFT JOIN chart c ON (c.id = t.chart_id)
2336          WHERE t.id in
2337            (SELECT tk.tax_id
2338             FROM taxkeys tk
2339             WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
2340               AND startdate <= ?
2341             ORDER BY startdate DESC
2342             LIMIT 1)
2343          ORDER BY c.accno|;
2344     @values = ($accno_id, $transdate eq "current_date" ? "now" : $transdate);
2345     my $stw = $dbh->prepare($query);
2346     $stw->execute(@values) || $form->dberror($query);
2347
2348     $ref->{taxaccounts} = "";
2349     my $i = 0;
2350     while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
2351
2352       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
2353         $i++;
2354         $ptr->{accno} = $i;
2355       }
2356       $ref->{taxaccounts} .= "$ptr->{accno} ";
2357
2358       if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
2359         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
2360         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
2361         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
2362         $form->{taxaccounts} .= "$ptr->{accno} ";
2363       }
2364
2365     }
2366
2367     $stw->finish;
2368     chop $ref->{taxaccounts};
2369
2370     if ($form->{language_id}) {
2371       for my $spec (@translation_queries) {
2372         do_statement($form, $spec->[1], $spec->[0], conv_i($form->{language_id}), conv_i($ref->{id}));
2373         my ($translation, $longdescription) = $spec->[1]->fetchrow_array;
2374         next unless $translation;
2375         $ref->{description} = $translation;
2376         $ref->{longdescription} = $longdescription;
2377         last;
2378       }
2379     }
2380
2381     $ref->{onhand} *= 1;
2382
2383     push @{ $form->{item_list} }, $ref;
2384   }
2385   $sth->finish;
2386   $_->[1]->finish for @translation_queries;
2387
2388   foreach my $item (@{ $form->{item_list} }) {
2389     my $custom_variables = CVar->get_custom_variables(module   => 'IC',
2390                                                       trans_id => $item->{id},
2391                                                       dbh      => $dbh,
2392                                                      );
2393
2394     map { $item->{"ic_cvar_" . $_->{name} } = $_->{value} } @{ $custom_variables };
2395   }
2396
2397   $main::lxdebug->leave_sub();
2398 }
2399
2400 sub has_storno {
2401   $main::lxdebug->enter_sub();
2402
2403   my ($self, $myconfig, $form, $table) = @_;
2404
2405   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
2406
2407   # make sure there's no funny stuff in $table
2408   # ToDO: die when this happens and throw an error
2409   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
2410
2411   my $dbh = $form->get_standard_dbh;
2412
2413   my $query = qq|SELECT storno FROM $table WHERE storno_id = ?|;
2414   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
2415
2416   $main::lxdebug->leave_sub();
2417
2418   return $result;
2419 }
2420
2421 sub is_storno {
2422   $main::lxdebug->enter_sub();
2423
2424   my ($self, $myconfig, $form, $table, $id) = @_;
2425
2426   $main::lxdebug->leave_sub() and return 0 unless ($id);
2427
2428   # make sure there's no funny stuff in $table
2429   # ToDO: die when this happens and throw an error
2430   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
2431
2432   my $dbh = $form->get_standard_dbh;
2433
2434   my $query = qq|SELECT storno FROM $table WHERE id = ?|;
2435   my ($result) = selectrow_query($form, $dbh, $query, $id);
2436
2437   $main::lxdebug->leave_sub();
2438
2439   return $result;
2440 }
2441
2442 sub get_standard_accno_current_assets {
2443   $main::lxdebug->enter_sub();
2444
2445   my ($self, $myconfig, $form) = @_;
2446
2447   my $dbh = $form->get_standard_dbh;
2448
2449   my $query = qq| SELECT accno FROM chart WHERE id = (SELECT ar_paid_accno_id FROM defaults)|;
2450   my ($result) = selectrow_query($form, $dbh, $query);
2451
2452   $main::lxdebug->leave_sub();
2453
2454   return $result;
2455 }
2456
2457 1;