1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (C) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  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.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #======================================================================
 
  31 # Inventory invoicing module
 
  33 #======================================================================
 
  37 use List::Util qw(max);
 
  44 use SL::DATEV qw(:CONSTANTS);
 
  47 use SL::GenericTranslations;
 
  48 use SL::HTML::Restrict;
 
  62   $main::lxdebug->enter_sub();
 
  64   # prepare invoice for printing
 
  66   my ($self, $myconfig, $form, $locale) = @_;
 
  68   $form->{duedate} ||= $form->{invdate};
 
  71   my $dbh = $form->get_standard_dbh;
 
  75   $form->{TEMPLATE_ARRAYS} = {};
 
  77   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
 
  79   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
  82   foreach my $pfac (@{ $form->{ALL_PRICE_FACTORS} }) {
 
  83     $price_factors{$pfac->{id}}  = $pfac;
 
  85     $pfac->{formatted_factor}    = $form->format_amount($myconfig, $pfac->{factor});
 
  88   # sort items by partsgroup
 
  89   for my $i (1 .. $form->{rowcount}) {
 
  91 #    if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
  92 #      $partsgroup = $form->{"partsgroup_$i"};
 
  94 #    push @partsgroup, [$i, $partsgroup];
 
  95     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
 
 101     $projects = SL::DB::Manager::Project->get_all(query => [ id => \@project_ids ]);
 
 102     %projects_by_id = map { $_->id => $_ } @$projects;
 
 105   if ($projects_by_id{$form->{"globalproject_id"}}) {
 
 106     $form->{globalprojectnumber} = $projects_by_id{$form->{"globalproject_id"}}->projectnumber;
 
 107     $form->{globalprojectdescription} = $projects_by_id{$form->{"globalproject_id"}}->description;
 
 109     for (@{ $projects_by_id{$form->{"globalproject_id"}}->cvars_by_config }) {
 
 110       $form->{"project_cvar_" . $_->config->name} = $_->value_as_text;
 
 120   # sort items by partsgroup
 
 121   for $i (1 .. $form->{rowcount}) {
 
 123     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
 124       $partsgroup = $form->{"partsgroup_$i"};
 
 126     push @partsgroup, [$i, $partsgroup];
 
 139   my $nodiscount_subtotal = 0;
 
 140   my $discount_subtotal = 0;
 
 142   my $subtotal_header = 0;
 
 145   $form->{discount} = [];
 
 147   # get some values of parts from db on store them in extra array,
 
 148   # so that they can be sorted in later
 
 149   my %prepared_template_arrays = IC->prepare_parts_for_printing(myconfig => $myconfig, form => $form);
 
 150   my @prepared_arrays          = keys %prepared_template_arrays;
 
 152   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 153   my $project_cvar_configs = CVar->get_configs(module => 'Projects');
 
 156     qw(runningnumber number description longdescription qty qty_nofmt unit bin
 
 157        deliverydate_oe ordnumber_oe donumber_do transdate_oe invnumber invdate
 
 158        partnotes serialnumber reqdate sellprice sellprice_nofmt listprice listprice_nofmt netprice netprice_nofmt
 
 159        discount discount_nofmt p_discount discount_sub discount_sub_nofmt nodiscount_sub nodiscount_sub_nofmt
 
 160        linetotal linetotal_nofmt nodiscount_linetotal nodiscount_linetotal_nofmt tax_rate projectnumber projectdescription
 
 161        price_factor price_factor_name partsgroup weight weight_nofmt lineweight lineweight_nofmt);
 
 163   push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 164   push @arrays, map { "project_cvar_$_->{name}" } @{ $project_cvar_configs };
 
 166   my @tax_arrays = qw(taxbase tax taxdescription taxrate taxnumber);
 
 168   my @payment_arrays = qw(payment paymentaccount paymentdate paymentsource paymentmemo);
 
 170   map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays, @tax_arrays, @payment_arrays, @prepared_arrays);
 
 173   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
 
 176     if ($item->[1] ne $sameitem) {
 
 177       push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'partsgroup');
 
 178       push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, qq|$item->[1]|);
 
 179       $sameitem = $item->[1];
 
 181       map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 184     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 186     if ($form->{"id_$i"} != 0) {
 
 188       # Prepare linked items for printing
 
 189       if ( $form->{"invoice_id_$i"} ) {
 
 191         require SL::DB::InvoiceItem;
 
 192         my $invoice_item = SL::DB::Manager::InvoiceItem->find_by( id => $form->{"invoice_id_$i"} );
 
 193         my $linkeditems  = $invoice_item->linked_records( direction => 'from', recursive => 1 );
 
 195         # check for (recursively) linked sales quotation items, sales order
 
 196         # items and sales delivery order items.
 
 198         # The checks for $form->{"ordnumber_$i"} and quo and do are for the old
 
 199         # behaviour, where this data was stored in its own database fields in
 
 200         # the invoice items, and there were no record links for the items.
 
 202         # If this information were to be fetched in retrieve_invoice, e.g. for showing
 
 203         # this information in the second row, then these fields will already have
 
 204         # been set and won't be calculated again. This shouldn't be done there
 
 205         # though, as each invocation creates several database calls per item, and would
 
 206         # make the interface very slow for many items. So currently these
 
 207         # requests are only made when printing the record.
 
 209         # When using the workflow an invoice item can only be (recursively) linked to at
 
 210         # most one sales quotation item and at most one delivery order item.  But it may
 
 211         # be linked back to several order items, if collective orders were involved. If
 
 212         # that is the case we will always choose the very first order item from the
 
 213         # original order, i.e. where it first appeared in an order.
 
 215         # TODO: credit note items aren't checked for a record link to their
 
 218         unless ( $form->{"ordnumber_$i"} ) {
 
 220           # $form->{"ordnumber_$i"} comes from ordnumber in invoice, if an
 
 221           # entry exists this must be from before the change from ordnumber to linked items.
 
 222           # So we just use that value and don't check for linked items.
 
 223           # In that case there won't be any links for quo or do items either
 
 225           # sales order items are fetched and sorted by id, the lowest id is first
 
 226           # It is assumed that the id always grows, so the item we want (the original) will have the lowest id
 
 227           # better solution: filter the order_item that doesn't have any links from other order_items
 
 228           #                  or maybe fetch linked_records with param save_path and order by _record_length_depth
 
 229           my @linked_orderitems = grep { $_->isa("SL::DB::OrderItem") && $_->record->type eq 'sales_order' } @{$linkeditems};
 
 230           if ( scalar @linked_orderitems ) {
 
 231             @linked_orderitems = sort { $a->id <=> $b->id } @linked_orderitems;
 
 232             my $orderitem = $linked_orderitems[0]; # 0: the original order item, -1: the last collective order item
 
 234             $form->{"ordnumber_$i"}       = $orderitem->record->record_number;
 
 235             $form->{"transdate_oe_$i"}    = $orderitem->record->transdate->to_kivitendo;
 
 236             $form->{"cusordnumber_oe_$i"} = $orderitem->record->cusordnumber;
 
 239           my @linked_quoitems = grep { $_->isa("SL::DB::OrderItem") && $_->record->type eq 'sales_quotation' } @{$linkeditems};
 
 240           if ( scalar @linked_quoitems ) {
 
 241             croak "an invoice item may only be linked back to 1 sales quotation item, something is wrong\n" unless scalar @linked_quoitems == 1;
 
 242             $form->{"quonumber_$i"}     = $linked_quoitems[0]->record->record_number;
 
 243             $form->{"transdate_quo_$i"} = $linked_quoitems[0]->record->transdate->to_kivitendo;
 
 246           my @linked_deliveryorderitems = grep { $_->isa("SL::DB::DeliveryOrderItem") && $_->record->type eq 'sales_delivery_order' } @{$linkeditems};
 
 247           if ( scalar @linked_deliveryorderitems ) {
 
 248             croak "an invoice item may only be linked back to 1 sales delivery item, something is wrong\n" unless scalar @linked_deliveryorderitems == 1;
 
 249             $form->{"donumber_$i"}     = $linked_deliveryorderitems[0]->record->record_number;
 
 250             $form->{"transdate_do_$i"} = $linked_deliveryorderitems[0]->record->transdate->to_kivitendo;
 
 256       # add number, description and qty to $form->{number},
 
 257       if ($form->{"subtotal_$i"} && !$subtotal_header) {
 
 258         $subtotal_header = $i;
 
 259         $position = int($position);
 
 262       } elsif ($subtotal_header) {
 
 264         $position = int($position);
 
 265         $position = $position.".".$subposition;
 
 267         $position = int($position);
 
 271       my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
 
 273       push(@{ $form->{TEMPLATE_ARRAYS}->{$_} },                $prepared_template_arrays{$_}[$i - 1]) for @prepared_arrays;
 
 275       push @{ $form->{TEMPLATE_ARRAYS}->{entry_type} },        'normal';
 
 276       push @{ $form->{TEMPLATE_ARRAYS}->{runningnumber} },     $position;
 
 277       push @{ $form->{TEMPLATE_ARRAYS}->{number} },            $form->{"partnumber_$i"};
 
 278       push @{ $form->{TEMPLATE_ARRAYS}->{serialnumber} },      $form->{"serialnumber_$i"};
 
 279       push @{ $form->{TEMPLATE_ARRAYS}->{bin} },               $form->{"bin_$i"};
 
 280       push @{ $form->{TEMPLATE_ARRAYS}->{partnotes} },         $form->{"partnotes_$i"};
 
 281       push @{ $form->{TEMPLATE_ARRAYS}->{description} },       $form->{"description_$i"};
 
 282       push @{ $form->{TEMPLATE_ARRAYS}->{longdescription} },   $form->{"longdescription_$i"};
 
 283       push @{ $form->{TEMPLATE_ARRAYS}->{qty} },               $form->format_amount($myconfig, $form->{"qty_$i"});
 
 284       push @{ $form->{TEMPLATE_ARRAYS}->{qty_nofmt} },         $form->{"qty_$i"};
 
 285       push @{ $form->{TEMPLATE_ARRAYS}->{unit} },              $form->{"unit_$i"};
 
 286       push @{ $form->{TEMPLATE_ARRAYS}->{deliverydate_oe} },   $form->{"reqdate_$i"};
 
 287       push @{ $form->{TEMPLATE_ARRAYS}->{sellprice} },         $form->{"sellprice_$i"};
 
 288       push @{ $form->{TEMPLATE_ARRAYS}->{sellprice_nofmt} },   $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 289       # linked item print variables
 
 290       push @{ $form->{TEMPLATE_ARRAYS}->{quonumber_quo} },     $form->{"quonumber_$i"};
 
 291       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_quo} },     $form->{"transdate_quo_$i"};
 
 292       push @{ $form->{TEMPLATE_ARRAYS}->{ordnumber_oe} },      $form->{"ordnumber_$i"};
 
 293       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_oe} },      $form->{"transdate_oe_$i"};
 
 294       push @{ $form->{TEMPLATE_ARRAYS}->{cusordnumber_oe} },   $form->{"cusordnumber_oe_$i"};
 
 295       push @{ $form->{TEMPLATE_ARRAYS}->{donumber_do} },       $form->{"donumber_$i"};
 
 296       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_do} },      $form->{"transdate_do_$i"};
 
 298       push @{ $form->{TEMPLATE_ARRAYS}->{invnumber} },         $form->{"invnumber"};
 
 299       push @{ $form->{TEMPLATE_ARRAYS}->{invdate} },           $form->{"invdate"};
 
 300       push @{ $form->{TEMPLATE_ARRAYS}->{price_factor} },      $price_factor->{formatted_factor};
 
 301       push @{ $form->{TEMPLATE_ARRAYS}->{price_factor_name} }, $price_factor->{description};
 
 302       push @{ $form->{TEMPLATE_ARRAYS}->{partsgroup} },        $form->{"partsgroup_$i"};
 
 303       push @{ $form->{TEMPLATE_ARRAYS}->{reqdate} },           $form->{"reqdate_$i"};
 
 304       push @{ $form->{TEMPLATE_ARRAYS}->{listprice} },         $form->format_amount($myconfig, $form->{"listprice_$i"}, 2);
 
 305       push(@{ $form->{TEMPLATE_ARRAYS}->{listprice_nofmt} },   $form->{"listprice_$i"});
 
 307       my $sellprice     = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 308       my ($dec)         = ($sellprice =~ /\.(\d+)/);
 
 309       my $decimalplaces = max 2, length($dec);
 
 311       my $parsed_discount            = $form->parse_amount($myconfig, $form->{"discount_$i"});
 
 313       my $linetotal_exact            = $form->{"qty_$i"} * $sellprice * (100 - $parsed_discount) / 100 / $price_factor->{factor};
 
 314       my $linetotal                  = $form->round_amount($linetotal_exact, 2);
 
 316       my $nodiscount_exact_linetotal = $form->{"qty_$i"} * $sellprice                                  / $price_factor->{factor};
 
 317       my $nodiscount_linetotal       = $form->round_amount($nodiscount_exact_linetotal,2);
 
 319       my $discount                   = $nodiscount_linetotal - $linetotal; # is always rounded because $nodiscount_linetotal and $linetotal are rounded
 
 321       my $discount_round_error       = $discount + ($linetotal_exact - $nodiscount_exact_linetotal); # not used
 
 323       $form->{"netprice_$i"}   = $form->round_amount($form->{"qty_$i"} ? ($linetotal / $form->{"qty_$i"}) : 0, $decimalplaces);
 
 325       push @{ $form->{TEMPLATE_ARRAYS}->{netprice} },       ($form->{"netprice_$i"} != 0) ? $form->format_amount($myconfig, $form->{"netprice_$i"}, $decimalplaces) : '';
 
 326       push @{ $form->{TEMPLATE_ARRAYS}->{netprice_nofmt} }, ($form->{"netprice_$i"} != 0) ? $form->{"netprice_$i"} : '';
 
 328       $linetotal = ($linetotal != 0) ? $linetotal : '';
 
 330       push @{ $form->{TEMPLATE_ARRAYS}->{discount} },       ($discount != 0) ? $form->format_amount($myconfig, $discount * -1, 2) : '';
 
 331       push @{ $form->{TEMPLATE_ARRAYS}->{discount_nofmt} }, ($discount != 0) ? $discount * -1 : '';
 
 332       push @{ $form->{TEMPLATE_ARRAYS}->{p_discount} },     $form->{"discount_$i"};
 
 334       $form->{total}            += $linetotal;
 
 335       $form->{nodiscount_total} += $nodiscount_linetotal;
 
 336       $form->{discount_total}   += $discount;
 
 338       if ($subtotal_header) {
 
 339         $discount_subtotal   += $linetotal;
 
 340         $nodiscount_subtotal += $nodiscount_linetotal;
 
 343       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
 
 344         push @{ $form->{TEMPLATE_ARRAYS}->{discount_sub} },         $form->format_amount($myconfig, $discount_subtotal,   2);
 
 345         push @{ $form->{TEMPLATE_ARRAYS}->{discount_sub_nofmt} },   $discount_subtotal;
 
 346         push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_sub} },       $form->format_amount($myconfig, $nodiscount_subtotal, 2);
 
 347         push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_sub_nofmt} }, $nodiscount_subtotal;
 
 349         $discount_subtotal   = 0;
 
 350         $nodiscount_subtotal = 0;
 
 351         $subtotal_header     = 0;
 
 354         push @{ $form->{TEMPLATE_ARRAYS}->{$_} }, "" for qw(discount_sub nodiscount_sub discount_sub_nofmt nodiscount_sub_nofmt);
 
 357       if (!$form->{"discount_$i"}) {
 
 358         $nodiscount += $linetotal;
 
 361       push @{ $form->{TEMPLATE_ARRAYS}->{linetotal} },                  $form->format_amount($myconfig, $linetotal, 2);
 
 362       push @{ $form->{TEMPLATE_ARRAYS}->{linetotal_nofmt} },            $linetotal_exact;
 
 363       push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_linetotal} },       $form->format_amount($myconfig, $nodiscount_linetotal, 2);
 
 364       push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_linetotal_nofmt} }, $nodiscount_linetotal;
 
 366       my $project = $projects_by_id{$form->{"project_id_$i"}} || SL::DB::Project->new;
 
 368       push @{ $form->{TEMPLATE_ARRAYS}->{projectnumber} },              $project->projectnumber;
 
 369       push @{ $form->{TEMPLATE_ARRAYS}->{projectdescription} },         $project->description;
 
 371       my $lineweight = $form->{"qty_$i"} * $form->{"weight_$i"};
 
 372       $totalweight += $lineweight;
 
 373       push @{ $form->{TEMPLATE_ARRAYS}->{weight} },            $form->format_amount($myconfig, $form->{"weight_$i"}, 3);
 
 374       push @{ $form->{TEMPLATE_ARRAYS}->{weight_nofmt} },      $form->{"weight_$i"};
 
 375       push @{ $form->{TEMPLATE_ARRAYS}->{lineweight} },        $form->format_amount($myconfig, $lineweight, 3);
 
 376       push @{ $form->{TEMPLATE_ARRAYS}->{lineweight_nofmt} },  $lineweight;
 
 378       @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
 
 382       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
 
 384       if ($form->{taxincluded}) {
 
 387         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
 388         $taxbase = $linetotal - $taxamount;
 
 390         $taxamount = $linetotal * $taxrate;
 
 391         $taxbase   = $linetotal;
 
 394       if ($form->round_amount($taxrate, 7) == 0) {
 
 395         if ($form->{taxincluded}) {
 
 396           foreach my $accno (@taxaccounts) {
 
 397             $taxamount            = $form->round_amount($linetotal * $form->{"${accno}_rate"} / (1 + abs($form->{"${accno}_rate"})), 2);
 
 399             $taxaccounts{$accno} += $taxamount;
 
 400             $taxdiff             += $taxamount;
 
 402             $taxbase{$accno}     += $taxbase;
 
 404           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
 
 406           foreach my $accno (@taxaccounts) {
 
 407             $taxaccounts{$accno} += $linetotal * $form->{"${accno}_rate"};
 
 408             $taxbase{$accno}     += $taxbase;
 
 412         foreach my $accno (@taxaccounts) {
 
 413           $taxaccounts{$accno} += $taxamount * $form->{"${accno}_rate"} / $taxrate;
 
 414           $taxbase{$accno}     += $taxbase;
 
 417       my $tax_rate = $taxrate * 100;
 
 418       push(@{ $form->{TEMPLATE_ARRAYS}->{tax_rate} }, qq|$tax_rate|);
 
 419       if ($form->{"assembly_$i"}) {
 
 422         # get parts and push them onto the stack
 
 424         if ($form->{groupitems}) {
 
 426             qq|ORDER BY pg.partsgroup, a.oid|;
 
 428           $sortorder = qq|ORDER BY a.oid|;
 
 432           qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
 
 434              JOIN parts p ON (a.parts_id = p.id)
 
 435              LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 436              WHERE (a.bom = '1') AND (a.id = ?) $sortorder|;
 
 437         $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 439         while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
 440           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
 
 441             map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 442             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
 
 443             push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'assembly-item-partsgroup');
 
 444             push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $sameitem);
 
 447           map { $form->{"a_$_"} = $ref->{$_} } qw(partnumber description);
 
 449           push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'assembly-item');
 
 450           push(@{ $form->{TEMPLATE_ARRAYS}->{description} },
 
 451                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
 
 453                  . qq| -- $form->{"a_partnumber"}, $form->{"a_description"}|);
 
 454           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 460       CVar->get_non_editable_ic_cvars(form               => $form,
 
 463                                       sub_module         => 'invoice',
 
 464                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
 
 466       push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} },
 
 467         CVar->format_to_template(CVar->parse($form->{"ic_cvar_$_->{name}_$i"}, $_), $_)
 
 468           for @{ $ic_cvar_configs };
 
 470       push @{ $form->{TEMPLATE_ARRAYS}->{"project_cvar_" . $_->config->name} }, $_->value_as_text for @{ $project->cvars_by_config };
 
 474   $form->{totalweight}       = $form->format_amount($myconfig, $totalweight, 3);
 
 475   $form->{totalweight_nofmt} = $totalweight;
 
 476   my $defaults = AM->get_defaults();
 
 477   $form->{weightunit}        = $defaults->{weightunit};
 
 479   foreach my $item (sort keys %taxaccounts) {
 
 480     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
 
 482     push(@{ $form->{TEMPLATE_ARRAYS}->{taxbase} },        $form->format_amount($myconfig, $taxbase{$item}, 2));
 
 483     push(@{ $form->{TEMPLATE_ARRAYS}->{taxbase_nofmt} },  $taxbase{$item});
 
 484     push(@{ $form->{TEMPLATE_ARRAYS}->{tax} },            $form->format_amount($myconfig, $taxamount,      2));
 
 485     push(@{ $form->{TEMPLATE_ARRAYS}->{tax_nofmt} },      $taxamount );
 
 486     push(@{ $form->{TEMPLATE_ARRAYS}->{taxrate} },        $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
 
 487     push(@{ $form->{TEMPLATE_ARRAYS}->{taxrate_nofmt} },  $form->{"${item}_rate"} * 100);
 
 488     push(@{ $form->{TEMPLATE_ARRAYS}->{taxnumber} },      $form->{"${item}_taxnumber"});
 
 490     my $tax_obj     = SL::DB::Manager::Tax->find_by(taxnumber => $form->{"${item}_taxnumber"});
 
 491     my $description = $tax_obj ? $tax_obj->translated_attribute('taxdescription',  $form->{language_id}, 0) : '';
 
 492     push(@{ $form->{TEMPLATE_ARRAYS}->{taxdescription} }, $description . q{ } . 100 * $form->{"${item}_rate"} . q{%});
 
 495   for my $i (1 .. $form->{paidaccounts}) {
 
 496     if ($form->{"paid_$i"}) {
 
 497       my ($accno, $description) = split(/--/, $form->{"AR_paid_$i"});
 
 499       push(@{ $form->{TEMPLATE_ARRAYS}->{payment} },        $form->{"paid_$i"});
 
 500       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentaccount} }, $description);
 
 501       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentdate} },    $form->{"datepaid_$i"});
 
 502       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentsource} },  $form->{"source_$i"});
 
 503       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentmemo} },    $form->{"memo_$i"});
 
 505       $form->{paid} += $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 508   if($form->{taxincluded}) {
 
 509     $form->{subtotal}       = $form->format_amount($myconfig, $form->{total} - $tax, 2);
 
 510     $form->{subtotal_nofmt} = $form->{total} - $tax;
 
 513     $form->{subtotal}       = $form->format_amount($myconfig, $form->{total}, 2);
 
 514     $form->{subtotal_nofmt} = $form->{total};
 
 517   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
 
 518   $form->{discount_total}      = $form->format_amount($myconfig, $form->{discount_total}, 2);
 
 519   $form->{nodiscount}          = $form->format_amount($myconfig, $nodiscount, 2);
 
 520   $form->{yesdiscount}         = $form->format_amount($myconfig, $form->{nodiscount_total} - $nodiscount, 2);
 
 522   $form->{invtotal} = ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax;
 
 523   $form->{total}    = $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2);
 
 525   $form->{invtotal} = $form->format_amount($myconfig, $form->{invtotal}, 2);
 
 526   $form->{paid}     = $form->format_amount($myconfig, $form->{paid}, 2);
 
 528   $form->set_payment_options($myconfig, $form->{invdate});
 
 530   $form->{delivery_term} = SL::DB::Manager::DeliveryTerm->find_by(id => $form->{delivery_term_id} || undef);
 
 531   $form->{delivery_term}->description_long($form->{delivery_term}->translated_attribute('description_long', $form->{language_id})) if $form->{delivery_term} && $form->{language_id};
 
 532   $form->{department}    = SL::DB::Manager::Department->find_by(id => $form->{department_id})->description if $form->{department_id};
 
 534   $form->{username} = $myconfig->{name};
 
 536   $main::lxdebug->leave_sub();
 
 539 sub project_description {
 
 540   $main::lxdebug->enter_sub();
 
 542   my ($self, $dbh, $id) = @_;
 
 543   my $form = \%main::form;
 
 545   my $query = qq|SELECT description FROM project WHERE id = ?|;
 
 546   my ($description) = selectrow_query($form, $dbh, $query, conv_i($id));
 
 548   $main::lxdebug->leave_sub();
 
 553 sub customer_details {
 
 554   $main::lxdebug->enter_sub();
 
 556   my ($self, $myconfig, $form, @wanted_vars) = @_;
 
 558   # connect to database
 
 559   my $dbh = $form->get_standard_dbh;
 
 561   my $language_id = $form->{language_id};
 
 563   # get contact id, set it if nessessary
 
 566   my @values =  (conv_i($form->{customer_id}));
 
 569   if ($form->{cp_id}) {
 
 570     $where = qq| AND (cp.cp_id = ?) |;
 
 571     push(@values, conv_i($form->{cp_id}));
 
 574   # get rest for the customer
 
 576     qq|SELECT ct.*, cp.*, ct.notes as customernotes,
 
 577          ct.phone AS customerphone, ct.fax AS customerfax, ct.email AS customeremail,
 
 580        LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
 
 581        LEFT JOIN currencies cu ON (ct.currency_id = cu.id)
 
 582        WHERE (ct.id = ?) $where
 
 585   my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
 586   # we have no values, probably a invalid contact person. hotfix and first idea for issue #10
 
 588     my $customer = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id});
 
 590       $ref->{name} = $customer->name;
 
 591       $ref->{street} = $customer->street;
 
 592       $ref->{zipcode} = $customer->zipcode;
 
 593       $ref->{country} = $customer->country;
 
 594       $ref->{gln} = $customer->gln;
 
 596     my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id});
 
 598       $ref->{cp_name} = $contact->cp_name;
 
 599       $ref->{cp_givenname} = $contact->cp_givenname;
 
 600       $ref->{cp_gender} = $contact->cp_gender;
 
 603   # remove id and taxincluded before copy back
 
 604   delete @$ref{qw(id taxincluded)};
 
 606   @wanted_vars = grep({ $_ } @wanted_vars);
 
 607   if (scalar(@wanted_vars) > 0) {
 
 609     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
 
 610     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
 
 613   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 615   if ($form->{delivery_customer_id}) {
 
 617       qq|SELECT *, notes as customernotes
 
 621     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_customer_id}));
 
 623     map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
 
 626   if ($form->{delivery_vendor_id}) {
 
 628       qq|SELECT *, notes as customernotes
 
 632     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_vendor_id}));
 
 634     map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
 
 637   my $custom_variables = CVar->get_custom_variables('dbh'      => $dbh,
 
 639                                                     'trans_id' => $form->{customer_id});
 
 640   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
 
 642   $form->{cp_greeting} = GenericTranslations->get('dbh'              => $dbh,
 
 643                                                   'translation_type' => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
 
 644                                                   'language_id'      => $language_id,
 
 645                                                   'allow_fallback'   => 1);
 
 648   $main::lxdebug->leave_sub();
 
 652   $main::lxdebug->enter_sub();
 
 654   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
 
 656   # connect to database, turn off autocommit
 
 657   my $dbh = $provided_dbh ? $provided_dbh : $form->get_standard_dbh;
 
 658   my $restricter = SL::HTML::Restrict->create;
 
 660   my ($query, $sth, $null, $project_id, @values);
 
 661   my $exchangerate = 0;
 
 663   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
 
 666   if (!$form->{employee_id}) {
 
 667     $form->get_employee($dbh);
 
 670   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
 
 671   my $defaultcurrency = $form->{defaultcurrency};
 
 673   my $all_units = AM->retrieve_units($myconfig, $form);
 
 675   if (!$payments_only) {
 
 676     if ($form->{storno}) {
 
 677       _delete_transfers($dbh, $form, $form->{storno_id});
 
 680       &reverse_invoice($dbh, $form);
 
 681       _delete_transfers($dbh, $form, $form->{id});
 
 684       my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, save => 1);
 
 685       $form->{invnumber} = $trans_number->create_unique unless $trans_number->is_unique;
 
 687       $query = qq|SELECT nextval('glid')|;
 
 688       ($form->{"id"}) = selectrow_query($form, $dbh, $query);
 
 690       $query = qq|INSERT INTO ar (id, invnumber, currency_id, taxzone_id) VALUES (?, ?, (SELECT id FROM currencies WHERE name=?), ?)|;
 
 691       do_query($form, $dbh, $query, $form->{"id"}, $form->{"id"}, $form->{currency}, $form->{taxzone_id});
 
 693       if (!$form->{invnumber}) {
 
 694         my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, id => $form->{id});
 
 695         $form->{invnumber} = $trans_number->create_unique;
 
 700   my ($netamount, $invoicediff) = (0, 0);
 
 701   my ($amount, $linetotal, $lastincomeaccno);
 
 703   if ($form->{currency} eq $defaultcurrency) {
 
 704     $form->{exchangerate} = 1;
 
 706     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{invdate}, 'buy');
 
 709   $form->{exchangerate} =
 
 712     : $form->parse_amount($myconfig, $form->{exchangerate});
 
 714   $form->{expense_inventory} = "";
 
 718   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
 719   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 722   $form->{amount}      = {};
 
 723   $form->{amount_cogs} = {};
 
 725   my @processed_invoice_ids;
 
 727   foreach my $i (1 .. $form->{rowcount}) {
 
 728     if ($form->{type} eq "credit_note") {
 
 729       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
 
 730       $form->{shipped} = 1;
 
 732       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 737     $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
 
 738     $form->{"marge_absolut_$i"} = $form->parse_amount($myconfig, $form->{"marge_absolut_$i"}) * 1;
 
 739     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"}) * 1;
 
 741     if ($form->{storno}) {
 
 742       $form->{"qty_$i"} *= -1;
 
 745     if ($form->{"id_$i"}) {
 
 749       if (defined($baseunits{$form->{"id_$i"}})) {
 
 750         $item_unit = $baseunits{$form->{"id_$i"}};
 
 753         $query = qq|SELECT unit FROM parts WHERE id = ?|;
 
 754         ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 755         $baseunits{$form->{"id_$i"}} = $item_unit;
 
 758       if (defined($all_units->{$item_unit}->{factor})
 
 759           && ($all_units->{$item_unit}->{factor} ne '')
 
 760           && ($all_units->{$item_unit}->{factor} != 0)) {
 
 761         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
 
 765       $baseqty = $form->{"qty_$i"} * $basefactor;
 
 767       my ($allocated, $taxrate) = (0, 0);
 
 771       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
 
 773       # keep entered selling price
 
 775         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 777       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
 
 779       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 781       # undo discount formatting
 
 782       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
 
 785       $form->{"sellprice_$i"} = $fxsellprice * (1 - $form->{"discount_$i"});
 
 787       # round linetotal to 2 decimal places
 
 788       $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
 
 789       $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
 
 791       if ($form->{taxincluded}) {
 
 792         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
 
 793         $form->{"sellprice_$i"} =
 
 794           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
 
 796         $taxamount = $linetotal * $taxrate;
 
 799       $netamount += $linetotal;
 
 801       if ($taxamount != 0) {
 
 803           $form->{amount}{ $form->{id} }{$_} +=
 
 804             $taxamount * $form->{"${_}_rate"} / $taxrate
 
 805         } split(/ /, $form->{"taxaccounts_$i"});
 
 808       # add amount to income, $form->{amount}{trans_id}{accno}
 
 809       $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor;
 
 811       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate};
 
 812       $linetotal = $form->round_amount($linetotal, 2);
 
 814       # this is the difference from the inventory
 
 815       $invoicediff += ($amount - $linetotal);
 
 817       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
 
 820       $lastincomeaccno = $form->{"income_accno_$i"};
 
 822       # adjust and round sellprice
 
 823       $form->{"sellprice_$i"} =
 
 824         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
 
 827       next if $payments_only;
 
 829       if ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"}) {
 
 831         if ($form->{"assembly_$i"}) {
 
 832           # record assembly item as allocated
 
 833           &process_assembly($dbh, $myconfig, $form, $position, $form->{"id_$i"}, $baseqty);
 
 836           $allocated = &cogs($dbh, $myconfig, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
 
 840       # Get pricegroup_id and save it. Unfortunately the interface
 
 841       # also uses ID "0" for signalling that none is selected, but "0"
 
 842       # must not be stored in the database. Therefore we cannot simply
 
 844       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
 
 846       $pricegroup_id  = undef if !$pricegroup_id;
 
 848       CVar->get_non_editable_ic_cvars(form               => $form,
 
 851                                       sub_module         => 'invoice',
 
 852                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
 
 854       if (!$form->{"invoice_id_$i"}) {
 
 855         # there is no persistent id, therefore create one with all necessary constraints
 
 856         my $q_invoice_id = qq|SELECT nextval('invoiceid')|;
 
 857         my $h_invoice_id = prepare_query($form, $dbh, $q_invoice_id);
 
 858         do_statement($form, $h_invoice_id, $q_invoice_id);
 
 859         $form->{"invoice_id_$i"}  = $h_invoice_id->fetchrow_array();
 
 860         my $q_create_invoice_id = qq|INSERT INTO invoice (id, trans_id, position, parts_id) values (?, ?, ?, ?)|;
 
 861         do_query($form, $dbh, $q_create_invoice_id, conv_i($form->{"invoice_id_$i"}),
 
 862                  conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}));
 
 863         $h_invoice_id->finish();
 
 866       # save detail record in invoice table
 
 868         UPDATE invoice SET trans_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?,
 
 869                            sellprice = ?, fxsellprice = ?, discount = ?, allocated = ?, assemblyitem = ?,
 
 870                            unit = ?, deliverydate = ?, project_id = ?, serialnumber = ?, pricegroup_id = ?,
 
 871                            base_qty = ?, subtotal = ?,
 
 872                            marge_percent = ?, marge_total = ?, lastcost = ?, active_price_source = ?, active_discount_source = ?,
 
 873                            price_factor_id = ?, price_factor = (SELECT factor FROM price_factors WHERE id = ?), marge_price_factor = ?
 
 877       @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
 
 878                  $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}), $form->{"qty_$i"},
 
 879                  $form->{"sellprice_$i"}, $fxsellprice,
 
 880                  $form->{"discount_$i"}, $allocated, 'f',
 
 881                  $form->{"unit_$i"}, conv_date($form->{"reqdate_$i"}), conv_i($form->{"project_id_$i"}),
 
 882                  $form->{"serialnumber_$i"}, $pricegroup_id,
 
 883                  $baseqty, $form->{"subtotal_$i"} ? 't' : 'f',
 
 884                  $form->{"marge_percent_$i"}, $form->{"marge_absolut_$i"},
 
 885                  $form->{"lastcost_$i"},
 
 886                  $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
 
 887                  conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
 
 888                  conv_i($form->{"marge_price_factor_$i"}),
 
 889                  conv_i($form->{"invoice_id_$i"}));
 
 890       do_query($form, $dbh, $query, @values);
 
 891       push @processed_invoice_ids, $form->{"invoice_id_$i"};
 
 893       CVar->save_custom_variables(module       => 'IC',
 
 894                                   sub_module   => 'invoice',
 
 895                                   trans_id     => $form->{"invoice_id_$i"},
 
 896                                   configs      => $ic_cvar_configs,
 
 898                                   name_prefix  => 'ic_',
 
 899                                   name_postfix => "_$i",
 
 902     # link previous items with invoice items
 
 903     foreach (qw(delivery_order_items orderitems invoice)) {
 
 904       if (!$form->{useasnew} && $form->{"converted_from_${_}_id_$i"}) {
 
 905         RecordLinks->create_links('dbh'        => $dbh,
 
 908                                   'from_ids'   => $form->{"converted_from_${_}_id_$i"},
 
 909                                   'to_table'   => 'invoice',
 
 910                                   'to_id'      => $form->{"invoice_id_$i"},
 
 913       delete $form->{"converted_from_${_}_id_$i"};
 
 917   # total payments, don't move we need it here
 
 918   for my $i (1 .. $form->{paidaccounts}) {
 
 919     if ($form->{type} eq "credit_note") {
 
 920       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
 
 922       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 924     $form->{paid} += $form->{"paid_$i"};
 
 925     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
 
 928   my ($tax, $diff) = (0, 0);
 
 930   $netamount = $form->round_amount($netamount, 2);
 
 932   # figure out rounding errors for total amount vs netamount + taxes
 
 933   if ($form->{taxincluded}) {
 
 935     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
 936     $diff += $amount - $netamount * $form->{exchangerate};
 
 937     $netamount = $amount;
 
 939     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
 940       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
 
 941       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
 942       $tax += $form->{amount}{ $form->{id} }{$item};
 
 943       $netamount -= $form->{amount}{ $form->{id} }{$item};
 
 946     $invoicediff += $diff;
 
 947     ######## this only applies to tax included
 
 948     if ($lastincomeaccno) {
 
 949       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
 
 953     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
 954     $diff      = $amount - $netamount * $form->{exchangerate};
 
 955     $netamount = $amount;
 
 956     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
 957       $form->{amount}{ $form->{id} }{$item} =
 
 958         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
 
 961                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
 
 964         $amount - $form->{amount}{ $form->{id} }{$item} *
 
 965         $form->{exchangerate};
 
 966       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
 967       $tax += $form->{amount}{ $form->{id} }{$item};
 
 971   # Invoice Summary includes Rounding
 
 972   my $grossamount = $netamount + $tax;
 
 973   my $rounding = $form->round_amount(
 
 974     $form->round_amount($grossamount, 2, 1) - $form->round_amount($grossamount, 2),
 
 977   my $rnd_accno = $rounding == 0 ? 0
 
 978                 : $rounding > 0  ? $form->{rndgain_accno}
 
 979                 :                  $form->{rndloss_accno}
 
 981   $form->{amount}{ $form->{id} }{ $form->{AR} } = $form->round_amount($grossamount, 2, 1);
 
 982   $form->{paid} = $form->round_amount(
 
 983     $form->{paid} * $form->{exchangerate} + $diff,
 
 988   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
 
 990   # update exchangerate
 
 991   if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
 992     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
 
 993                                $form->{exchangerate}, 0);
 
 996   $project_id = conv_i($form->{"globalproject_id"});
 
 997   # entsprechend auch beim Bestimmen des Steuerschlüssels in Taxkey.pm berücksichtigen
 
 998   my $taxdate = $form->{deliverydate} ? $form->{deliverydate} : $form->{invdate};
 
1000   foreach my $trans_id (keys %{ $form->{amount_cogs} }) {
 
1001     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
 
1002       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
 
1004       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
 
1006       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
 
1008           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1009                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1010         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
 
1011         do_query($form, $dbh, $query, @values);
 
1012         $form->{amount_cogs}{$trans_id}{$accno} = 0;
 
1016     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
 
1017       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
 
1019       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
 
1021           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1022                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1023         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
 
1024         do_query($form, $dbh, $query, @values);
 
1029   foreach my $trans_id (keys %{ $form->{amount} }) {
 
1030     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
1031       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
 
1033       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
1035       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
1037           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1038              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1041                       WHERE chart_id= (SELECT id
 
1045                       ORDER BY startdate DESC LIMIT 1),
 
1048                       WHERE chart_id= (SELECT id
 
1052                       ORDER BY startdate DESC LIMIT 1),
 
1054                      (SELECT link FROM chart WHERE accno = ?))|;
 
1055         @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);
 
1056         do_query($form, $dbh, $query, @values);
 
1057         $form->{amount}{$trans_id}{$accno} = 0;
 
1061     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
1062       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
1064       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
1066           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1067              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1070                       WHERE chart_id= (SELECT id
 
1074                       ORDER BY startdate DESC LIMIT 1),
 
1077                       WHERE chart_id= (SELECT id
 
1081                       ORDER BY startdate DESC LIMIT 1),
 
1083                      (SELECT link FROM chart WHERE accno = ?))|;
 
1084         @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);
 
1085         do_query($form, $dbh, $query, @values);
 
1088     if (!$payments_only && ($rnd_accno != 0)) {
 
1090         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1091              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1092       @values = (conv_i($trans_id), $rnd_accno, $rounding, conv_date($form->{invdate}), conv_i($project_id), $rnd_accno);
 
1093       do_query($form, $dbh, $query, @values);
 
1098   # deduct payment differences from diff
 
1099   for my $i (1 .. $form->{paidaccounts}) {
 
1100     if ($form->{"paid_$i"} != 0) {
 
1102         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
 
1103       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
 
1107   # record payments and offsetting AR
 
1108   if (!$form->{storno}) {
 
1109     for my $i (1 .. $form->{paidaccounts}) {
 
1111       if ($form->{"acc_trans_id_$i"}
 
1113           && (SL::DB::Default->get->payments_changeable == 0)) {
 
1117       next if ($form->{"paid_$i"} == 0);
 
1119       my ($accno) = split(/--/, $form->{"AR_paid_$i"});
 
1120       $form->{"datepaid_$i"} = $form->{invdate}
 
1121       unless ($form->{"datepaid_$i"});
 
1122       $form->{datepaid} = $form->{"datepaid_$i"};
 
1126       if ($form->{currency} eq $defaultcurrency) {
 
1127         $form->{"exchangerate_$i"} = 1;
 
1129         $exchangerate              = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
1130         $form->{"exchangerate_$i"} = $exchangerate || $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
 
1134       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
 
1136       if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
 
1138         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1139            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1142                     WHERE chart_id= (SELECT id
 
1146                     ORDER BY startdate DESC LIMIT 1),
 
1149                     WHERE chart_id= (SELECT id
 
1153                     ORDER BY startdate DESC LIMIT 1),
 
1155                    (SELECT link FROM chart WHERE accno = ?))|;
 
1156         @values = (conv_i($form->{"id"}), $form->{AR}, $amount, $form->{"datepaid_$i"}, $form->{AR}, conv_date($taxdate), $form->{AR}, conv_date($taxdate), $project_id, $form->{AR});
 
1157         do_query($form, $dbh, $query, @values);
 
1161       $form->{"paid_$i"} *= -1;
 
1162       my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
 
1165       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, tax_id, taxkey, project_id, chart_link)
 
1166          VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
 
1169                   WHERE chart_id= (SELECT id
 
1173                   ORDER BY startdate DESC LIMIT 1),
 
1176                   WHERE chart_id= (SELECT id
 
1180                   ORDER BY startdate DESC LIMIT 1),
 
1182                  (SELECT link FROM chart WHERE accno = ?))|;
 
1183       @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
 
1184                  $gldate, $form->{"source_$i"}, $form->{"memo_$i"}, $accno, conv_date($taxdate), $accno, conv_date($taxdate), $project_id, $accno);
 
1185       do_query($form, $dbh, $query, @values);
 
1187       # exchangerate difference
 
1188       $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
 
1189         $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
 
1193         $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
 
1194         $form->{"exchangerate_$i"};
 
1196         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } += $amount;
 
1198         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } += $amount;
 
1203       # update exchange rate
 
1204       if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
1205         $form->update_exchangerate($dbh, $form->{currency},
 
1206                                    $form->{"datepaid_$i"},
 
1207                                    $form->{"exchangerate_$i"}, 0);
 
1211   } else {                      # if (!$form->{storno})
 
1212     $form->{marge_total} *= -1;
 
1215   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
 
1217   # record exchange rate differences and gains/losses
 
1218   foreach my $accno (keys %{ $form->{fx} }) {
 
1219     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
 
1220       $form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2);
 
1221       if ( $form->{fx}{$accno}{$transdate} != 0 ) {
 
1224           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, tax_id, taxkey, project_id, chart_link)
 
1225              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
 
1228                   WHERE chart_id= (SELECT id
 
1232                   ORDER BY startdate DESC LIMIT 1),
 
1235                   WHERE chart_id= (SELECT id
 
1239                   ORDER BY startdate DESC LIMIT 1),
 
1241                  (SELECT link FROM chart WHERE accno = ?))|;
 
1242         @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);
 
1243         do_query($form, $dbh, $query, @values);
 
1248   if ($payments_only) {
 
1249     $query = qq|UPDATE ar SET paid = ? WHERE id = ?|;
 
1250     do_query($form, $dbh, $query,  $form->{paid}, conv_i($form->{id}));
 
1252     $form->new_lastmtime('ar');
 
1254     $dbh->commit if !$provided_dbh;
 
1256     $main::lxdebug->leave_sub();
 
1260   $amount = $form->round_amount( $netamount + $tax, 2, 1);
 
1263   #erweiterung fuer lieferscheinnummer (donumber) 12.02.09 jb
 
1265   $query = qq|UPDATE ar set
 
1266                 invnumber   = ?, ordnumber     = ?, quonumber     = ?, cusordnumber  = ?,
 
1267                 transdate   = ?, orddate       = ?, quodate       = ?, customer_id   = ?,
 
1268                 amount      = ?, netamount     = ?, paid          = ?,
 
1269                 duedate     = ?, deliverydate  = ?, invoice       = ?, shippingpoint = ?,
 
1270                 shipvia     = ?,                    notes         = ?, intnotes      = ?,
 
1271                 currency_id = (SELECT id FROM currencies WHERE name = ?),
 
1272                 department_id = ?, payment_id    = ?, taxincluded   = ?,
 
1273                 type        = ?, language_id   = ?, taxzone_id    = ?, shipto_id     = ?,
 
1274                 employee_id = ?, salesman_id   = ?, storno_id     = ?, storno        = ?,
 
1275                 cp_id       = ?, marge_total   = ?, marge_percent = ?,
 
1276                 globalproject_id               = ?, delivery_customer_id             = ?,
 
1277                 transaction_description        = ?, delivery_vendor_id               = ?,
 
1278                 donumber    = ?, invnumber_for_credit_note = ?,        direct_debit  = ?,
 
1279                 delivery_term_id = ?
 
1281   @values = (          $form->{"invnumber"},           $form->{"ordnumber"},             $form->{"quonumber"},          $form->{"cusordnumber"},
 
1282              conv_date($form->{"invdate"}),  conv_date($form->{"orddate"}),    conv_date($form->{"quodate"}),    conv_i($form->{"customer_id"}),
 
1283                        $amount,                        $netamount,                       $form->{"paid"},
 
1284              conv_date($form->{"duedate"}),  conv_date($form->{"deliverydate"}),    '1',                                $form->{"shippingpoint"},
 
1285                        $form->{"shipvia"},                                $restricter->process($form->{"notes"}),       $form->{"intnotes"},
 
1286                        $form->{"currency"},     conv_i($form->{"department_id"}), conv_i($form->{"payment_id"}),        $form->{"taxincluded"} ? 't' : 'f',
 
1287                        $form->{"type"},         conv_i($form->{"language_id"}),   conv_i($form->{"taxzone_id"}), conv_i($form->{"shipto_id"}),
 
1288                 conv_i($form->{"employee_id"}), conv_i($form->{"salesman_id"}),   conv_i($form->{storno_id}),           $form->{"storno"} ? 't' : 'f',
 
1289                 conv_i($form->{"cp_id"}),            1 * $form->{marge_total} ,      1 * $form->{marge_percent},
 
1290                 conv_i($form->{"globalproject_id"}),                              conv_i($form->{"delivery_customer_id"}),
 
1291                        $form->{transaction_description},                          conv_i($form->{"delivery_vendor_id"}),
 
1292                        $form->{"donumber"}, $form->{"invnumber_for_credit_note"},        $form->{direct_debit} ? 't' : 'f',
 
1293                 conv_i($form->{delivery_term_id}),
 
1294                 conv_i($form->{"id"}));
 
1295   do_query($form, $dbh, $query, @values);
 
1298   if ($form->{storno}) {
 
1303            intnotes = ? || intnotes
 
1305     do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{"storno_id"}));
 
1306     do_query($form, $dbh, qq|UPDATE ar SET paid = amount WHERE id = ?|, conv_i($form->{"id"}));
 
1309   $form->new_lastmtime('ar');
 
1311   $form->{name} = $form->{customer};
 
1312   $form->{name} =~ s/--\Q$form->{customer_id}\E//;
 
1315   if (!$form->{shipto_id}) {
 
1316     $form->add_shipto($dbh, $form->{id}, "AR");
 
1319   # save printed, emailed and queued
 
1320   $form->save_status($dbh);
 
1322   Common::webdav_folder($form);
 
1324   if ($form->{convert_from_ar_ids}) {
 
1325     RecordLinks->create_links('dbh'        => $dbh,
 
1327                               'from_table' => 'ar',
 
1328                               'from_ids'   => $form->{convert_from_ar_ids},
 
1330                               'to_id'      => $form->{id},
 
1332     delete $form->{convert_from_ar_ids};
 
1335   # Link this record to the records it was created from.
 
1336   if ($form->{convert_from_oe_ids}) {
 
1337     RecordLinks->create_links('dbh'        => $dbh,
 
1339                               'from_table' => 'oe',
 
1340                               'from_ids'   => $form->{convert_from_oe_ids},
 
1342                               'to_id'      => $form->{id},
 
1344     delete $form->{convert_from_oe_ids};
 
1347   my @convert_from_do_ids = map { $_ * 1 } grep { $_ } split m/\s+/, $form->{convert_from_do_ids};
 
1349   if (scalar @convert_from_do_ids) {
 
1350     DO->close_orders('dbh' => $dbh,
 
1351                      'ids' => \@convert_from_do_ids);
 
1353     RecordLinks->create_links('dbh'        => $dbh,
 
1355                               'from_table' => 'delivery_orders',
 
1356                               'from_ids'   => \@convert_from_do_ids,
 
1358                               'to_id'      => $form->{id},
 
1361   delete $form->{convert_from_do_ids};
 
1363   ARAP->close_orders_if_billed('dbh'     => $dbh,
 
1364                                'arap_id' => $form->{id},
 
1367   # search for orphaned invoice items
 
1368   $query  = sprintf 'SELECT id FROM invoice WHERE trans_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_invoice_ids;
 
1369   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_invoice_ids);
 
1370   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
 
1371   if (scalar @orphaned_ids) {
 
1372     # clean up invoice items
 
1373     $query  = sprintf 'DELETE FROM invoice WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
 
1374     do_query($form, $dbh, $query, @orphaned_ids);
 
1377   # safety check datev export
 
1378   if ($::instance_conf->get_datev_check_on_sales_invoice) {
 
1379     my $transdate = $::form->{invdate} ? DateTime->from_lxoffice($::form->{invdate}) : undef;
 
1380     $transdate  ||= DateTime->today;
 
1382     my $datev = SL::DATEV->new(
 
1383       exporttype => DATEV_ET_BUCHUNGEN,
 
1384       format     => DATEV_FORMAT_KNE,
 
1386       trans_id   => $form->{id},
 
1391     if ($datev->errors) {
 
1393       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
 
1398   $dbh->commit if !$provided_dbh;
 
1400   $main::lxdebug->leave_sub();
 
1406   $::lxdebug->enter_sub;
 
1408   my ($self, $form, $dbh) = @_;
 
1410   my (@errors, @transfers);
 
1412   # do nothing, if transfer default is not requeseted at all
 
1413   if (!$::instance_conf->get_transfer_default) {
 
1414     $::lxdebug->leave_sub;
 
1420   foreach my $i (1 .. $form->{rowcount}) {
 
1421     next if !$form->{"id_$i"};
 
1422     my ($err, $wh_id, $bin_id) = _determine_wh_and_bin($dbh, $::instance_conf,
 
1425                                                        $form->{"unit_$i"});
 
1426     if (!@{ $err } && $wh_id && $bin_id) {
 
1428         'parts_id'         => $form->{"id_$i"},
 
1429         'qty'              => $form->{"qty_$i"},
 
1430         'unit'             => $form->{"unit_$i"},
 
1431         'transfer_type'    => 'shipped',
 
1432         'src_warehouse_id' => $wh_id,
 
1433         'src_bin_id'       => $bin_id,
 
1434         'project_id'       => $form->{"project_id_$i"},
 
1435         'invoice_id'       => $form->{"invoice_id_$i"},
 
1436         'comment'          => $::locale->text("Default transfer invoice"),
 
1440     push @errors, @{ $err };
 
1444     WH->transfer(@transfers);
 
1447   $::lxdebug->leave_sub;
 
1451 sub _determine_wh_and_bin {
 
1452   $::lxdebug->enter_sub(2);
 
1454   my ($dbh, $conf, $part_id, $qty, $unit) = @_;
 
1457   my $part = SL::DB::Part->new(id => $part_id)->load;
 
1459   # ignore service if they are not configured to be transfered
 
1460   if ($part->is_service && !$conf->get_transfer_default_services) {
 
1461     $::lxdebug->leave_sub(2);
 
1467     push @errors, $::locale->text("Cannot transfer negative quantities.");
 
1471   # get/test default bin
 
1472   my ($default_wh_id, $default_bin_id);
 
1473   if ($conf->get_transfer_default_use_master_default_bin) {
 
1474     $default_wh_id  = $conf->get_warehouse_id if $conf->get_warehouse_id;
 
1475     $default_bin_id = $conf->get_bin_id       if $conf->get_bin_id;
 
1477   my $wh_id  = $part->warehouse_id || $default_wh_id;
 
1478   my $bin_id = $part->bin_id       || $default_bin_id;
 
1482     my ($max_qty, $error) = WH->get_max_qty_parts_bin(dbh      => $dbh,
 
1483                                                       parts_id => $part->id,
 
1486       push @errors, $::locale->text('Part "#1" has chargenumber or best before date set. So it cannot be transfered automatically.',
 
1487                                     $part->description);
 
1489     my $form_unit_obj = SL::DB::Unit->new(name => $unit)->load;
 
1490     my $part_unit_qty = $form_unit_obj->convert_to($qty, $part->unit_obj);
 
1491     my $diff_qty      = $max_qty - $part_unit_qty;
 
1492     if (!@errors && $diff_qty < 0) {
 
1493       push @errors, $::locale->text('For part "#1" there are missing #2 #3 in the default warehouse/bin "#4/#5".',
 
1495                                     $::form->format_amount(\%::myconfig, -1*$diff_qty),
 
1496                                     $part->unit_obj->name,
 
1497                                     SL::DB::Warehouse->new(id => $wh_id)->load->description,
 
1498                                     SL::DB::Bin->new(      id => $bin_id)->load->description);
 
1501     push @errors, $::locale->text('For part "#1" there is no default warehouse and bin defined.',
 
1502                                   $part->description);
 
1505   # transfer to special "ignore onhand" bin if requested and default bin does not work
 
1506   if (@errors && $conf->get_transfer_default_ignore_onhand && $conf->get_bin_id_ignore_onhand) {
 
1507     $wh_id  = $conf->get_warehouse_id_ignore_onhand;
 
1508     $bin_id = $conf->get_bin_id_ignore_onhand;
 
1509     if ($wh_id && $bin_id) {
 
1512       push @errors, $::locale->text('For part "#1" there is no default warehouse and bin for ignoring onhand defined.',
 
1513                                     $part->description);
 
1517   $::lxdebug->leave_sub(2);
 
1518   return (\@errors, $wh_id, $bin_id);
 
1521 sub _delete_transfers {
 
1522   $::lxdebug->enter_sub;
 
1524   my ($dbh, $form, $id) = @_;
 
1526   my $query = qq|DELETE FROM inventory WHERE invoice_id
 
1527                   IN (SELECT id FROM invoice WHERE trans_id = ?)|;
 
1529   do_query($form, $dbh, $query, $id);
 
1531   $::lxdebug->leave_sub;
 
1534 sub _delete_payments {
 
1535   $main::lxdebug->enter_sub();
 
1537   my ($self, $form, $dbh) = @_;
 
1539   my @delete_acc_trans_ids;
 
1541   # Delete old payment entries from acc_trans.
 
1543     qq|SELECT acc_trans_id
 
1545        WHERE (trans_id = ?) AND fx_transaction
 
1549        SELECT at.acc_trans_id
 
1551        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1552        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
 
1553   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
 
1556     qq|SELECT at.acc_trans_id
 
1558        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1559        WHERE (trans_id = ?)
 
1560          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1561        ORDER BY at.acc_trans_id
 
1563   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1565   if (@delete_acc_trans_ids) {
 
1566     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
 
1567     do_query($form, $dbh, $query);
 
1570   $main::lxdebug->leave_sub();
 
1574   $main::lxdebug->enter_sub();
 
1576   my ($self, $myconfig, $form, $locale) = @_;
 
1578   # connect to database, turn off autocommit
 
1579   my $dbh = $form->get_standard_dbh;
 
1581   my (%payments, $old_form, $row, $item, $query, %keep_vars);
 
1583   $old_form = save_form();
 
1585   # Delete all entries in acc_trans from prior payments.
 
1586   if (SL::DB::Default->get->payments_changeable != 0) {
 
1587     $self->_delete_payments($form, $dbh);
 
1590   # Save the new payments the user made before cleaning up $form.
 
1591   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 };
 
1593   # Clean up $form so that old content won't tamper the results.
 
1594   %keep_vars = map { $_, 1 } qw(login password id);
 
1595   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
 
1597   # Retrieve the invoice from the database.
 
1598   $self->retrieve_invoice($myconfig, $form);
 
1600   # Set up the content of $form in the way that IS::post_invoice() expects.
 
1601   $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
 
1603   for $row (1 .. scalar @{ $form->{invoice_details} }) {
 
1604     $item = $form->{invoice_details}->[$row - 1];
 
1606     map { $item->{$_} = $form->format_amount($myconfig, $item->{$_}) } qw(qty sellprice discount);
 
1608     map { $form->{"${_}_${row}"} = $item->{$_} } keys %{ $item };
 
1611   $form->{rowcount} = scalar @{ $form->{invoice_details} };
 
1613   delete @{$form}{qw(invoice_details paidaccounts storno paid)};
 
1615   # Restore the payment options from the user input.
 
1616   map { $form->{$_} = $payments{$_} } keys %payments;
 
1618   # Get the AR accno (which is normally done by Form::create_links()).
 
1622        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1623        WHERE (trans_id = ?)
 
1624          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1625        ORDER BY at.acc_trans_id
 
1628   ($form->{AR}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1630   # Post the new payments.
 
1631   $self->post_invoice($myconfig, $form, $dbh, 1);
 
1633   restore_form($old_form);
 
1635   my $rc = $dbh->commit();
 
1637   $main::lxdebug->leave_sub();
 
1642 sub process_assembly {
 
1643   $main::lxdebug->enter_sub();
 
1645   my ($dbh, $myconfig, $form, $position, $id, $totalqty) = @_;
 
1648     qq|SELECT a.parts_id, a.qty, p.assembly, p.partnumber, p.description, p.unit,
 
1649          p.inventory_accno_id, p.income_accno_id, p.expense_accno_id
 
1651        JOIN parts p ON (a.parts_id = p.id)
 
1653   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1655   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1659     $ref->{inventory_accno_id} *= 1;
 
1660     $ref->{expense_accno_id}   *= 1;
 
1662     # multiply by number of assemblies
 
1663     $ref->{qty} *= $totalqty;
 
1665     if ($ref->{assembly}) {
 
1666       &process_assembly($dbh, $myconfig, $form, $position, $ref->{parts_id}, $ref->{qty});
 
1669       if ($ref->{inventory_accno_id}) {
 
1670         $allocated = &cogs($dbh, $myconfig, $form, $ref->{parts_id}, $ref->{qty});
 
1674     # save detail record for individual assembly item in invoice table
 
1676       qq|INSERT INTO invoice (trans_id, position, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
 
1677          VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1678     my @values = (conv_i($form->{id}), conv_i($position), $ref->{description},
 
1679                   conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
 
1680     do_query($form, $dbh, $query, @values);
 
1686   $main::lxdebug->leave_sub();
 
1690   $main::lxdebug->enter_sub();
 
1692   # adjust allocated in table invoice according to FIFO princicple
 
1693   # for a certain part with part_id $id
 
1695   my ($dbh, $myconfig, $form, $id, $totalqty, $basefactor, $row) = @_;
 
1699   $form->{taxzone_id} *=1;
 
1700   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
 
1701   my $taxzone_id = $form->{"taxzone_id"} * 1;
 
1703     qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice, i.price_factor,
 
1704          c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
 
1705          c2.accno AS    income_accno, c2.new_chart_id AS    income_new_chart, date($transdate) - c2.valid_from AS    income_valid,
 
1706          c3.accno AS   expense_accno, c3.new_chart_id AS   expense_new_chart, date($transdate) - c3.valid_from AS   expense_valid
 
1707        FROM invoice i, parts p
 
1708        LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
 
1709        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)
 
1710        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)
 
1711        WHERE (i.parts_id = p.id)
 
1712          AND (i.parts_id = ?)
 
1713          AND ((i.base_qty + i.allocated) < 0)
 
1715   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1720 # all invoice entries of an example part:
 
1722 # id | trans_id | base_qty | allocated | sellprice | inventory_accno | income_accno | expense_accno
 
1723 # ---+----------+----------+-----------+-----------+-----------------+--------------+---------------
 
1724 #  4 |        4 |       -5 |         5 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1725 #  5 |        5 |        4 |        -4 |  50.00000 | 1140            | 4400         | 5400     sold   4 for 50
 
1726 #  6 |        6 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
 
1727 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1728 #  8 |        8 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
 
1730 # 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
 
1731 # and all parts have been allocated
 
1733 # so transaction 8 only sees transaction 7 with unallocated parts and adjusts allocated for that transaction, before allocated was 0
 
1734 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1736 # in this example there are still 4 unsold articles
 
1739   # search all invoice entries for the part in question, adjusting "allocated"
 
1740   # until the total number of sold parts has been reached
 
1742   # ORDER BY trans_id ensures FIFO
 
1745   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1746     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
 
1750     # update allocated in invoice
 
1751     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
 
1753     # total expenses and inventory
 
1754     # sellprice is the cost of the item
 
1755     my $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / ( ($ref->{price_factor} || 1) * ( $basefactor || 1 )), 2);
 
1757     if ( $::instance_conf->get_inventory_system eq 'perpetual' ) {
 
1758       # Bestandsmethode: when selling parts, deduct their purchase value from the inventory account
 
1759       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
 
1761       $form->{amount_cogs}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
 
1762       $form->{expense_inventory} .= " " . $ref->{expense_accno};
 
1763       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
 
1765       $form->{amount_cogs}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
 
1766       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
 
1772     last if (($totalqty -= $qty) <= 0);
 
1777   $main::lxdebug->leave_sub();
 
1782 sub reverse_invoice {
 
1783   $main::lxdebug->enter_sub();
 
1785   my ($dbh, $form) = @_;
 
1787   # reverse inventory items
 
1789     qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.assembly, p.inventory_accno_id
 
1791        JOIN parts p ON (i.parts_id = p.id)
 
1792        WHERE i.trans_id = ?|;
 
1793   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
 
1795   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1797     if ($ref->{inventory_accno_id}) {
 
1798       # de-allocated purchases
 
1800         qq|SELECT i.id, i.trans_id, i.allocated
 
1802            WHERE (i.parts_id = ?) AND (i.allocated > 0)
 
1803            ORDER BY i.trans_id DESC|;
 
1804       my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
 
1806       while (my $inhref = $sth2->fetchrow_hashref('NAME_lc')) {
 
1807         my $qty = $ref->{qty};
 
1808         if (($ref->{qty} - $inhref->{allocated}) > 0) {
 
1809           $qty = $inhref->{allocated};
 
1813         $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
 
1815         last if (($ref->{qty} -= $qty) <= 0);
 
1824   my @values = (conv_i($form->{id}));
 
1825   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
 
1827   $query = qq|DELETE FROM custom_variables
 
1828               WHERE (config_id IN (SELECT id        FROM custom_variable_configs WHERE (module = 'ShipTo')))
 
1829                 AND (trans_id  IN (SELECT shipto_id FROM shipto                  WHERE (module = 'AR') AND (trans_id = ?)))|;
 
1830   do_query($form, $dbh, $query, @values);
 
1831   do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
 
1833   $main::lxdebug->leave_sub();
 
1836 sub delete_invoice {
 
1837   $main::lxdebug->enter_sub();
 
1839   my ($self, $myconfig, $form) = @_;
 
1841   # connect to database
 
1842   my $dbh = $form->get_standard_dbh;
 
1844   &reverse_invoice($dbh, $form);
 
1845   _delete_transfers($dbh, $form, $form->{id});
 
1847   my @values = (conv_i($form->{id}));
 
1849   # Falls wir ein Storno haben, müssen zwei Felder in der stornierten Rechnung wieder
 
1850   # zurückgesetzt werden. Vgl:
 
1851   #  id | storno | storno_id |  paid   |  amount
 
1852   #----+--------+-----------+---------+-----------
 
1853   # 18 | f      |           | 0.00000 | 119.00000
 
1855   # 18 | t      |           |  119.00000 |  119.00000
 
1857   if($form->{storno}){
 
1858     # storno_id auslesen und korrigieren
 
1859     my ($invoice_id) = selectfirst_array_query($form, $dbh, qq|SELECT storno_id FROM ar WHERE id = ?|,@values);
 
1860     do_query($form, $dbh, qq|UPDATE ar SET storno = 'f', paid = 0 WHERE id = ?|, $invoice_id);
 
1863   # delete spool files
 
1864   my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
 
1867     qq|DELETE FROM status WHERE trans_id = ?|,
 
1868     qq|DELETE FROM periodic_invoices WHERE ar_id = ?|,
 
1869     qq|DELETE FROM invoice WHERE trans_id = ?|,
 
1870     qq|DELETE FROM ar WHERE id = ?|,
 
1873   map { do_query($form, $dbh, $_, @values) } @queries;
 
1875   my $rc = $dbh->commit;
 
1878     my $spool = $::lx_office_conf{paths}->{spool};
 
1879     map { unlink "$spool/$_" if -f "$spool/$_"; } @spoolfiles;
 
1882   $main::lxdebug->leave_sub();
 
1887 sub retrieve_invoice {
 
1888   $main::lxdebug->enter_sub();
 
1890   my ($self, $myconfig, $form) = @_;
 
1892   # connect to database
 
1893   my $dbh = $form->get_standard_dbh;
 
1895   my ($sth, $ref, $query);
 
1897   my $query_transdate = !$form->{id} ? ", current_date AS invdate" : '';
 
1901          (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
 
1902          (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
 
1903          (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
 
1904          (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
 
1905          (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno,
 
1906          (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id)   AS rndgain_accno,
 
1907          (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id)   AS rndloss_accno
 
1911   $ref = selectfirst_hashref_query($form, $dbh, $query);
 
1912   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1915     my $id = conv_i($form->{id});
 
1918     #erweiterung um das entsprechende feld lieferscheinnummer (a.donumber) in der html-maske anzuzeigen 12.02.2009 jb
 
1922            a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
 
1923            a.orddate, a.quodate, a.globalproject_id,
 
1924            a.transdate AS invdate, a.deliverydate, a.paid, a.storno, a.storno_id, a.gldate,
 
1925            a.shippingpoint, a.shipvia, a.notes, a.intnotes, a.taxzone_id,
 
1926            a.duedate, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.shipto_id, a.cp_id,
 
1927            a.employee_id, a.salesman_id, a.payment_id,
 
1929            a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
 
1930            a.transaction_description, a.donumber, a.invnumber_for_credit_note,
 
1931            a.marge_total, a.marge_percent, a.direct_debit, a.delivery_term_id,
 
1932            dc.dunning_description,
 
1935          LEFT JOIN employee e ON (e.id = a.employee_id)
 
1936          LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id)
 
1938     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
1939     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
1940     $form->{mtime} = $form->{itime} if !$form->{mtime};
 
1941     $form->{lastmtime} = $form->{mtime};
 
1943     $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
 
1945     foreach my $vc (qw(customer vendor)) {
 
1946       next if !$form->{"delivery_${vc}_id"};
 
1947       ($form->{"delivery_${vc}_string"}) = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
 
1951     $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|;
 
1952     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
1954     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1956     # get printed, emailed
 
1957     $query = qq|SELECT printed, emailed, spoolfile, formname FROM status WHERE trans_id = ?|;
 
1958     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
1960     while ($ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1961       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
 
1962       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
 
1963       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
 
1966     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
 
1968     my $transdate = $form->{deliverydate} ? $dbh->quote($form->{deliverydate})
 
1969                   : $form->{invdate}      ? $dbh->quote($form->{invdate})
 
1973     my $taxzone_id = $form->{taxzone_id} *= 1;
 
1974     $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
 
1976     # retrieve individual items
 
1979            c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
 
1980            c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from as income_valid,
 
1981            c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from AS expense_valid,
 
1984            i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice, i.discount, i.parts_id AS id, i.unit, i.deliverydate AS reqdate,
 
1985            i.project_id, i.serialnumber, i.pricegroup_id, i.ordnumber, i.donumber, i.transdate, i.cusordnumber, i.subtotal, i.lastcost,
 
1986            i.price_factor_id, i.price_factor, i.marge_price_factor, i.active_price_source, i.active_discount_source,
 
1987            p.partnumber, p.assembly, p.notes AS partnotes, p.inventory_accno_id AS part_inventory_accno_id, p.formel, p.listprice,
 
1988            pr.projectnumber, pg.partsgroup, prg.pricegroup
 
1991          LEFT JOIN parts p ON (i.parts_id = p.id)
 
1992          LEFT JOIN project pr ON (i.project_id = pr.id)
 
1993          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
1994          LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
 
1996          LEFT JOIN chart c1 ON ((SELECT inventory_accno_id             FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
 
1997          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)
 
1998          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)
 
2000          WHERE (i.trans_id = ?) AND NOT (i.assemblyitem = '1') ORDER BY i.position|;
 
2002     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
2004     while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2005       # Retrieve custom variables.
 
2006       my $cvars = CVar->get_custom_variables(dbh        => $dbh,
 
2008                                              sub_module => 'invoice',
 
2009                                              trans_id   => $ref->{invoice_id},
 
2011       map { $ref->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
 
2013       map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid)) if !$ref->{"part_inventory_accno_id"};
 
2014       delete($ref->{"part_inventory_accno_id"});
 
2016       foreach my $type (qw(inventory income expense)) {
 
2017         while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
2018           my $query = qq|SELECT accno, new_chart_id, date($transdate) - valid_from FROM chart WHERE id = ?|;
 
2019           @$ref{ map $type.$_, qw(_accno _new_chart _valid) } = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
2023       # get tax rates and description
 
2024       my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
2026         qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber FROM tax t
 
2027            LEFT JOIN chart c ON (c.id = t.chart_id)
 
2029              (SELECT tk.tax_id FROM taxkeys tk
 
2030               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
 
2031                 AND startdate <= date($transdate)
 
2032               ORDER BY startdate DESC LIMIT 1)
 
2034       my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
 
2035       $ref->{taxaccounts} = "";
 
2037       while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
 
2039         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
2043         $ref->{taxaccounts} .= "$ptr->{accno} ";
 
2045         if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
 
2046           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
2047           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
2048           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
2049           $form->{taxaccounts} .= "$ptr->{accno} ";
 
2054       $ref->{qty} *= -1 if $form->{type} eq "credit_note";
 
2056       chop $ref->{taxaccounts};
 
2057       push @{ $form->{invoice_details} }, $ref;
 
2062     # Fetch shipping address.
 
2063     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'AR'|;
 
2064     $ref   = selectfirst_hashref_query($form, $dbh, $query, $form->{id});
 
2066     $form->{$_} = $ref->{$_} for grep { $_ ne 'id' } keys %$ref;
 
2068     if ($form->{shipto_id}) {
 
2069       my $cvars = CVar->get_custom_variables(
 
2072         trans_id => $form->{shipto_id},
 
2074       $form->{"shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars };
 
2077     Common::webdav_folder($form);
 
2080   my $rc = $dbh->commit;
 
2082   $main::lxdebug->leave_sub();
 
2088   $main::lxdebug->enter_sub();
 
2090   my ($self, $myconfig, $form) = @_;
 
2092   # connect to database
 
2093   my $dbh = $form->get_standard_dbh;
 
2095   my $dateformat = $myconfig->{dateformat};
 
2096   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2098   my (@values, $ref, $query);
 
2100   my $cid = conv_i($form->{customer_id});
 
2106          c.id AS customer_id, c.name AS customer, c.discount as customer_discount, c.creditlimit,
 
2107          c.email, c.cc, c.bcc, c.language_id, c.payment_id, c.delivery_term_id,
 
2108          c.street, c.zipcode, c.city, c.country,
 
2109          c.notes AS intnotes, c.klass as customer_klass, c.taxzone_id, c.salesman_id, cu.name AS curr,
 
2110          c.taxincluded_checked, c.direct_debit,
 
2111          b.discount AS tradediscount, b.description AS business
 
2113        LEFT JOIN business b ON (b.id = c.business_id)
 
2114        LEFT JOIN currencies cu ON (c.currency_id=cu.id)
 
2117   $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
2119   delete $ref->{salesman_id} if !$ref->{salesman_id};
 
2120   delete $ref->{payment_id}  if $form->{payment_id};
 
2122   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2124   if ($form->{payment_id}) {
 
2125     my $reference_date = $form->{invdate} ? DateTime->from_kivitendo($form->{invdate}) : undef;
 
2126     $form->{duedate}   = SL::DB::PaymentTerm->new(id => $form->{payment_id})->load->calc_date(reference_date => $reference_date)->to_kivitendo;
 
2128     $form->{duedate}   = DateTime->today_local->to_kivitendo;
 
2131   # use customer currency
 
2132   $form->{currency} = $form->{curr};
 
2135     qq|SELECT sum(amount - paid) AS dunning_amount
 
2137        WHERE (paid < amount)
 
2138          AND (customer_id = ?)
 
2139          AND (dunning_config_id IS NOT NULL)|;
 
2140   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
2141   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2144     qq|SELECT dnn.dunning_description AS max_dunning_level
 
2145        FROM dunning_config dnn
 
2146        WHERE id IN (SELECT dunning_config_id
 
2148                     WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
 
2149        ORDER BY dunning_level DESC LIMIT 1|;
 
2150   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
2151   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2153   $form->{creditremaining} = $form->{creditlimit};
 
2154   $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
 
2155   my ($value) = selectrow_query($form, $dbh, $query, $cid);
 
2156   $form->{creditremaining} -= $value;
 
2160          (SELECT e.buy FROM exchangerate e
 
2161           WHERE e.currency_id = o.currency_id
 
2162             AND e.transdate = o.transdate)
 
2164        WHERE o.customer_id = ?
 
2165          AND o.quotation = '0'
 
2166          AND o.closed = '0'|;
 
2167   my $sth = prepare_execute_query($form, $dbh, $query, $cid);
 
2169   while (my ($amount, $exch) = $sth->fetchrow_array) {
 
2170     $exch = 1 unless $exch;
 
2171     $form->{creditremaining} -= $amount * $exch;
 
2175   # setup last accounts used for this customer
 
2176   if (!$form->{id} && $form->{type} !~ /_(order|quotation)/) {
 
2178       qq|SELECT c.id, c.accno, c.description, c.link, c.category
 
2180          JOIN acc_trans ac ON (ac.chart_id = c.id)
 
2181          JOIN ar a ON (a.id = ac.trans_id)
 
2182          WHERE a.customer_id = ?
 
2183            AND NOT (c.link LIKE '%_tax%' OR c.link LIKE '%_paid%')
 
2184            AND a.id IN (SELECT max(a2.id) FROM ar a2 WHERE a2.customer_id = ?)|;
 
2185     $sth = prepare_execute_query($form, $dbh, $query, $cid, $cid);
 
2188     while ($ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2189       if ($ref->{category} eq 'I') {
 
2191         $form->{"AR_amount_$i"} = "$ref->{accno}--$ref->{description}";
 
2193         if ($form->{initial_transdate}) {
 
2195             qq|SELECT tk.tax_id, t.rate
 
2197                LEFT JOIN tax t ON tk.tax_id = t.id
 
2198                WHERE (tk.chart_id = ?) AND (startdate <= date(?))
 
2199                ORDER BY tk.startdate DESC
 
2201           my ($tax_id, $rate) =
 
2202             selectrow_query($form, $dbh, $tax_query, $ref->{id},
 
2203                             $form->{initial_transdate});
 
2204           $form->{"taxchart_$i"} = "${tax_id}--${rate}";
 
2207       if ($ref->{category} eq 'A') {
 
2208         $form->{ARselected} = $form->{AR_1} = $ref->{accno};
 
2212     $form->{rowcount} = $i if ($i && !$form->{type});
 
2215   $main::lxdebug->leave_sub();
 
2219   $main::lxdebug->enter_sub();
 
2221   my ($self, $myconfig, $form) = @_;
 
2223   # connect to database
 
2224   my $dbh = $form->get_standard_dbh;
 
2226   my $i = $form->{rowcount};
 
2228   my $where = qq|NOT p.obsolete = '1'|;
 
2231   foreach my $column (qw(p.partnumber p.description pgpartsgroup )) {
 
2232     my ($table, $field) = split m/\./, $column;
 
2233     next if !$form->{"${field}_${i}"};
 
2234     $where .= qq| AND lower(${column}) ILIKE ?|;
 
2235     push @values, like($form->{"${field}_${i}"});
 
2239   if ($form->{"partnumber_$i"} && !$form->{"description_$i"}) {
 
2240     $where .= qq| OR (NOT p.obsolete = '1' AND p.ean = ? )|;
 
2241     push @values, $form->{"partnumber_$i"};
 
2243     # also search hits in makemodels, but only cache the results by id and merge later
 
2245       SELECT parts_id, model FROM makemodel LEFT JOIN parts ON parts.id = parts_id WHERE NOT parts.obsolete AND model ILIKE ?;
 
2247     my $mm_results = selectall_hashref_query($::form, $dbh, $mm_query, like($form->{"partnumber_$i"}));
 
2248     my @mm_ids     = map { $_->{parts_id} } @$mm_results;
 
2249     push @{$mm_by_id{ $_->{parts_id} } ||= []}, $_ for @$mm_results;
 
2252       $where .= qq| OR p.id IN (| . join(',', ('?') x @mm_ids) . qq|)|;
 
2253       push @values, @mm_ids;
 
2257   # Search for part ID overrides all other criteria.
 
2258   if ($form->{"id_${i}"}) {
 
2259     $where  = qq|p.id = ?|;
 
2260     @values = ($form->{"id_${i}"});
 
2263   if ($form->{"description_$i"}) {
 
2264     $where .= qq| ORDER BY p.description|;
 
2266     $where .= qq| ORDER BY p.partnumber|;
 
2270   if ($form->{type} eq "invoice") {
 
2272       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
 
2273       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
 
2277       $form->{transdate}    ? $dbh->quote($form->{transdate}) :
 
2281   my $taxzone_id = $form->{taxzone_id} * 1;
 
2282   $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
 
2286          p.id, p.partnumber, p.description, p.sellprice,
 
2287          p.listprice, p.inventory_accno_id, p.lastcost,
 
2290          c1.accno AS inventory_accno,
 
2291          c1.new_chart_id AS inventory_new_chart,
 
2292          date($transdate) - c1.valid_from AS inventory_valid,
 
2294          c2.accno AS income_accno,
 
2295          c2.new_chart_id AS income_new_chart,
 
2296          date($transdate)  - c2.valid_from AS income_valid,
 
2298          c3.accno AS expense_accno,
 
2299          c3.new_chart_id AS expense_new_chart,
 
2300          date($transdate) - c3.valid_from AS expense_valid,
 
2302          p.unit, p.assembly, p.onhand,
 
2303          p.notes AS partnotes, p.notes AS longdescription,
 
2304          p.not_discountable, p.formel, p.payment_id AS part_payment_id,
 
2305          p.price_factor_id, p.weight,
 
2307          pfac.factor AS price_factor,
 
2312        LEFT JOIN chart c1 ON
 
2313          ((SELECT inventory_accno_id
 
2314            FROM buchungsgruppen
 
2315            WHERE id = p.buchungsgruppen_id) = c1.id)
 
2316        LEFT JOIN chart c2 ON
 
2317          ((SELECT tc.income_accno_id
 
2318            FROM taxzone_charts tc
 
2319            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c2.id)
 
2320        LEFT JOIN chart c3 ON
 
2321          ((SELECT tc.expense_accno_id
 
2322            FROM taxzone_charts tc
 
2323            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c3.id)
 
2324        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
 
2325        LEFT JOIN price_factors pfac ON (pfac.id = p.price_factor_id)
 
2327   my $sth = prepare_execute_query($form, $dbh, $query, @values);
 
2329   my @translation_queries = ( [ qq|SELECT tr.translation, tr.longdescription
 
2331                                    WHERE tr.language_id = ? AND tr.parts_id = ?| ],
 
2332                               [ qq|SELECT tr.translation, tr.longdescription
 
2334                                    WHERE tr.language_id IN
 
2337                                       WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
 
2340   map { push @{ $_ }, prepare_query($form, $dbh, $_->[0]) } @translation_queries;
 
2342   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2344     if ($mm_by_id{$ref->{id}}) {
 
2345       $ref->{makemodels} = $mm_by_id{$ref->{id}};
 
2346       push @{ $ref->{matches} ||= [] }, $::locale->text('Model') . ': ' . join ', ', map { $_->{model} } @{ $mm_by_id{$ref->{id}} };
 
2349     if (($::form->{"partnumber_$i"} ne '') && ($ref->{ean} eq $::form->{"partnumber_$i"})) {
 
2350       push @{ $ref->{matches} ||= [] }, $::locale->text('EAN') . ': ' . $ref->{ean};
 
2353     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
 
2354     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
 
2355     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
 
2356     if (!$ref->{inventory_accno_id}) {
 
2357       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
 
2359     delete($ref->{inventory_accno_id});
 
2361     foreach my $type (qw(inventory income expense)) {
 
2362       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
2364           qq|SELECT accno, new_chart_id, date($transdate) - valid_from
 
2367         ($ref->{"${type}_accno"},
 
2368          $ref->{"${type}_new_chart"},
 
2369          $ref->{"${type}_valid"})
 
2370           = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
2374     if ($form->{payment_id} eq "") {
 
2375       $form->{payment_id} = $form->{part_payment_id};
 
2378     # get tax rates and description
 
2379     my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
2381       qq|SELECT c.accno, t.taxdescription, t.rate, t.taxnumber
 
2383          LEFT JOIN chart c ON (c.id = t.chart_id)
 
2387             WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
 
2389             ORDER BY startdate DESC
 
2392     @values = ($accno_id, $transdate eq "current_date" ? "now" : $transdate);
 
2393     my $stw = $dbh->prepare($query);
 
2394     $stw->execute(@values) || $form->dberror($query);
 
2396     $ref->{taxaccounts} = "";
 
2398     while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
 
2400       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
2404       $ref->{taxaccounts} .= "$ptr->{accno} ";
 
2406       if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
 
2407         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
2408         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
2409         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
2410         $form->{taxaccounts} .= "$ptr->{accno} ";
 
2416     chop $ref->{taxaccounts};
 
2418     if ($form->{language_id}) {
 
2419       for my $spec (@translation_queries) {
 
2420         do_statement($form, $spec->[1], $spec->[0], conv_i($form->{language_id}), conv_i($ref->{id}));
 
2421         my ($translation, $longdescription) = $spec->[1]->fetchrow_array;
 
2422         next unless $translation;
 
2423         $ref->{description} = $translation;
 
2424         $ref->{longdescription} = $longdescription;
 
2429     $ref->{onhand} *= 1;
 
2431     push @{ $form->{item_list} }, $ref;
 
2434   $_->[1]->finish for @translation_queries;
 
2436   foreach my $item (@{ $form->{item_list} }) {
 
2437     my $custom_variables = CVar->get_custom_variables(module   => 'IC',
 
2438                                                       trans_id => $item->{id},
 
2442     map { $item->{"ic_cvar_" . $_->{name} } = $_->{value} } @{ $custom_variables };
 
2445   $main::lxdebug->leave_sub();
 
2449   $main::lxdebug->enter_sub();
 
2451   my ($self, $myconfig, $form, $table) = @_;
 
2453   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
 
2455   # make sure there's no funny stuff in $table
 
2456   # ToDO: die when this happens and throw an error
 
2457   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2459   my $dbh = $form->get_standard_dbh;
 
2461   my $query = qq|SELECT storno FROM $table WHERE storno_id = ?|;
 
2462   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
 
2464   $main::lxdebug->leave_sub();
 
2470   $main::lxdebug->enter_sub();
 
2472   my ($self, $myconfig, $form, $table, $id) = @_;
 
2474   $main::lxdebug->leave_sub() and return 0 unless ($id);
 
2476   # make sure there's no funny stuff in $table
 
2477   # ToDO: die when this happens and throw an error
 
2478   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2480   my $dbh = $form->get_standard_dbh;
 
2482   my $query = qq|SELECT storno FROM $table WHERE id = ?|;
 
2483   my ($result) = selectrow_query($form, $dbh, $query, $id);
 
2485   $main::lxdebug->leave_sub();
 
2490 sub get_standard_accno_current_assets {
 
2491   $main::lxdebug->enter_sub();
 
2493   my ($self, $myconfig, $form) = @_;
 
2495   my $dbh = $form->get_standard_dbh;
 
2497   my $query = qq| SELECT accno FROM chart WHERE id = (SELECT ar_paid_accno_id FROM defaults)|;
 
2498   my ($result) = selectrow_query($form, $dbh, $query);
 
2500   $main::lxdebug->leave_sub();