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