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