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