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