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