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