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