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