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., 51 Franklin Street, Fifth Floor, Boston,
 
  30 #======================================================================
 
  32 # Inventory invoicing module
 
  34 #======================================================================
 
  38 use List::Util qw(max sum0);
 
  45 use SL::DATEV qw(:CONSTANTS);
 
  48 use SL::GenericTranslations;
 
  49 use SL::HTML::Restrict;
 
  61 use SL::Presenter::Part qw(type_abbreviation classification_abbreviation);
 
  65 use constant PCLASS_OK             =>   0;
 
  66 use constant PCLASS_NOTFORSALE     =>   1;
 
  67 use constant PCLASS_NOTFORPURCHASE =>   2;
 
  70   $main::lxdebug->enter_sub();
 
  72   # prepare invoice for printing
 
  74   my ($self, $myconfig, $form, $locale) = @_;
 
  76   $form->{duedate} ||= $form->{invdate};
 
  79   my $dbh = $form->get_standard_dbh;
 
  83   $form->{TEMPLATE_ARRAYS} = {};
 
  85   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
 
  87   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
  90   foreach my $pfac (@{ $form->{ALL_PRICE_FACTORS} }) {
 
  91     $price_factors{$pfac->{id}}  = $pfac;
 
  93     $pfac->{formatted_factor}    = $form->format_amount($myconfig, $pfac->{factor});
 
  96   # sort items by partsgroup
 
  97   for my $i (1 .. $form->{rowcount}) {
 
  99 #    if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
 100 #      $partsgroup = $form->{"partsgroup_$i"};
 
 102 #    push @partsgroup, [$i, $partsgroup];
 
 103     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
 
 109     $projects = SL::DB::Manager::Project->get_all(query => [ id => \@project_ids ]);
 
 110     %projects_by_id = map { $_->id => $_ } @$projects;
 
 113   if ($projects_by_id{$form->{"globalproject_id"}}) {
 
 114     $form->{globalprojectnumber} = $projects_by_id{$form->{"globalproject_id"}}->projectnumber;
 
 115     $form->{globalprojectdescription} = $projects_by_id{$form->{"globalproject_id"}}->description;
 
 117     for (@{ $projects_by_id{$form->{"globalproject_id"}}->cvars_by_config }) {
 
 118       $form->{"project_cvar_" . $_->config->name} = $_->value_as_text;
 
 128   # sort items by partsgroup
 
 129   for $i (1 .. $form->{rowcount}) {
 
 131     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
 132       $partsgroup = $form->{"partsgroup_$i"};
 
 134     push @partsgroup, [$i, $partsgroup];
 
 147   my $nodiscount_subtotal = 0;
 
 148   my $discount_subtotal = 0;
 
 150   my $subtotal_header = 0;
 
 153   $form->{discount} = [];
 
 155   # get some values of parts from db on store them in extra array,
 
 156   # so that they can be sorted in later
 
 157   my %prepared_template_arrays = IC->prepare_parts_for_printing(myconfig => $myconfig, form => $form);
 
 158   my @prepared_arrays          = keys %prepared_template_arrays;
 
 159   my @separate_totals          = qw(non_separate_subtotal);
 
 161   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 162   my $project_cvar_configs = CVar->get_configs(module => 'Projects');
 
 165     qw(runningnumber number description longdescription qty qty_nofmt unit bin
 
 166        deliverydate_oe ordnumber_oe donumber_do transdate_oe invnumber invdate
 
 167        partnotes serialnumber reqdate sellprice sellprice_nofmt listprice listprice_nofmt netprice netprice_nofmt
 
 168        discount discount_nofmt p_discount discount_sub discount_sub_nofmt nodiscount_sub nodiscount_sub_nofmt
 
 169        linetotal linetotal_nofmt nodiscount_linetotal nodiscount_linetotal_nofmt tax_rate projectnumber projectdescription
 
 170        price_factor price_factor_name partsgroup weight weight_nofmt lineweight lineweight_nofmt);
 
 172   push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 173   push @arrays, map { "project_cvar_$_->{name}" } @{ $project_cvar_configs };
 
 175   my @tax_arrays = qw(taxbase tax taxdescription taxrate taxnumber tax_id);
 
 177   my @payment_arrays = qw(payment paymentaccount paymentdate paymentsource paymentmemo);
 
 179   my @invoices_for_advance_payment_arrays = qw(iap_invnumber iap_transdate ifip_amount iap_taxamount);
 
 181   map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays, @tax_arrays, @payment_arrays, @prepared_arrays, @invoices_for_advance_payment_arrays);
 
 184   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
 
 187     if ($item->[1] ne $sameitem) {
 
 188       push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'partsgroup');
 
 189       push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, qq|$item->[1]|);
 
 190       $sameitem = $item->[1];
 
 192       map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 195     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 197     if ($form->{"id_$i"} != 0) {
 
 199       # Prepare linked items for printing
 
 200       if ( $form->{"invoice_id_$i"} ) {
 
 202         require SL::DB::InvoiceItem;
 
 203         my $invoice_item = SL::DB::Manager::InvoiceItem->find_by( id => $form->{"invoice_id_$i"} );
 
 204         my $linkeditems  = $invoice_item->linked_records( direction => 'from', recursive => 1 );
 
 206         # check for (recursively) linked sales quotation items, sales order
 
 207         # items and sales delivery order items.
 
 209         # The checks for $form->{"ordnumber_$i"} and quo and do are for the old
 
 210         # behaviour, where this data was stored in its own database fields in
 
 211         # the invoice items, and there were no record links for the items.
 
 213         # If this information were to be fetched in retrieve_invoice, e.g. for showing
 
 214         # this information in the second row, then these fields will already have
 
 215         # been set and won't be calculated again. This shouldn't be done there
 
 216         # though, as each invocation creates several database calls per item, and would
 
 217         # make the interface very slow for many items. So currently these
 
 218         # requests are only made when printing the record.
 
 220         # When using the workflow an invoice item can only be (recursively) linked to at
 
 221         # most one sales quotation item and at most one delivery order item.  But it may
 
 222         # be linked back to several order items, if collective orders were involved. If
 
 223         # that is the case we will always choose the very first order item from the
 
 224         # original order, i.e. where it first appeared in an order.
 
 226         # TODO: credit note items aren't checked for a record link to their
 
 229         unless ( $form->{"ordnumber_$i"} ) {
 
 231           # $form->{"ordnumber_$i"} comes from ordnumber in invoice, if an
 
 232           # entry exists this must be from before the change from ordnumber to linked items.
 
 233           # So we just use that value and don't check for linked items.
 
 234           # In that case there won't be any links for quo or do items either
 
 236           # sales order items are fetched and sorted by id, the lowest id is first
 
 237           # It is assumed that the id always grows, so the item we want (the original) will have the lowest id
 
 238           # better solution: filter the order_item that doesn't have any links from other order_items
 
 239           #                  or maybe fetch linked_records with param save_path and order by _record_length_depth
 
 240           my @linked_orderitems = grep { $_->isa("SL::DB::OrderItem") && $_->record->type eq 'sales_order' } @{$linkeditems};
 
 241           if ( scalar @linked_orderitems ) {
 
 242             @linked_orderitems = sort { $a->id <=> $b->id } @linked_orderitems;
 
 243             my $orderitem = $linked_orderitems[0]; # 0: the original order item, -1: the last collective order item
 
 245             $form->{"ordnumber_$i"}       = $orderitem->record->record_number;
 
 246             $form->{"transdate_oe_$i"}    = $orderitem->record->transdate->to_kivitendo;
 
 247             $form->{"cusordnumber_oe_$i"} = $orderitem->record->cusordnumber;
 
 250           my @linked_quoitems = grep { $_->isa("SL::DB::OrderItem") && $_->record->type eq 'sales_quotation' } @{$linkeditems};
 
 251           if ( scalar @linked_quoitems ) {
 
 252             croak "an invoice item may only be linked back to 1 sales quotation item, something is wrong\n" unless scalar @linked_quoitems == 1;
 
 253             $form->{"quonumber_$i"}     = $linked_quoitems[0]->record->record_number;
 
 254             $form->{"transdate_quo_$i"} = $linked_quoitems[0]->record->transdate->to_kivitendo;
 
 257           my @linked_deliveryorderitems = grep { $_->isa("SL::DB::DeliveryOrderItem") && $_->record->type eq 'sales_delivery_order' } @{$linkeditems};
 
 258           if ( scalar @linked_deliveryorderitems ) {
 
 259             croak "an invoice item may only be linked back to 1 sales delivery item, something is wrong\n" unless scalar @linked_deliveryorderitems == 1;
 
 260             $form->{"donumber_$i"}     = $linked_deliveryorderitems[0]->record->record_number;
 
 261             $form->{"transdate_do_$i"} = $linked_deliveryorderitems[0]->record->transdate->to_kivitendo;
 
 267       # add number, description and qty to $form->{number},
 
 268       if ($form->{"subtotal_$i"} && !$subtotal_header) {
 
 269         $subtotal_header = $i;
 
 270         $position = int($position);
 
 273       } elsif ($subtotal_header) {
 
 275         $position = int($position);
 
 276         $position = $position.".".$subposition;
 
 278         $position = int($position);
 
 282       my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
 
 284       push(@{ $form->{TEMPLATE_ARRAYS}->{$_} },                $prepared_template_arrays{$_}[$i - 1]) for @prepared_arrays;
 
 286       push @{ $form->{TEMPLATE_ARRAYS}->{entry_type} },        'normal';
 
 287       push @{ $form->{TEMPLATE_ARRAYS}->{runningnumber} },     $position;
 
 288       push @{ $form->{TEMPLATE_ARRAYS}->{number} },            $form->{"partnumber_$i"};
 
 289       push @{ $form->{TEMPLATE_ARRAYS}->{serialnumber} },      $form->{"serialnumber_$i"};
 
 290       push @{ $form->{TEMPLATE_ARRAYS}->{bin} },               $form->{"bin_$i"};
 
 291       push @{ $form->{TEMPLATE_ARRAYS}->{partnotes} },         $form->{"partnotes_$i"};
 
 292       push @{ $form->{TEMPLATE_ARRAYS}->{description} },       $form->{"description_$i"};
 
 293       push @{ $form->{TEMPLATE_ARRAYS}->{longdescription} },   $form->{"longdescription_$i"};
 
 294       push @{ $form->{TEMPLATE_ARRAYS}->{qty} },               $form->format_amount($myconfig, $form->{"qty_$i"});
 
 295       push @{ $form->{TEMPLATE_ARRAYS}->{qty_nofmt} },         $form->{"qty_$i"};
 
 296       push @{ $form->{TEMPLATE_ARRAYS}->{unit} },              $form->{"unit_$i"};
 
 297       push @{ $form->{TEMPLATE_ARRAYS}->{deliverydate_oe} },   $form->{"reqdate_$i"};
 
 298       push @{ $form->{TEMPLATE_ARRAYS}->{sellprice} },         $form->{"sellprice_$i"};
 
 299       push @{ $form->{TEMPLATE_ARRAYS}->{sellprice_nofmt} },   $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 300       # linked item print variables
 
 301       push @{ $form->{TEMPLATE_ARRAYS}->{quonumber_quo} },     $form->{"quonumber_$i"};
 
 302       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_quo} },     $form->{"transdate_quo_$i"};
 
 303       push @{ $form->{TEMPLATE_ARRAYS}->{ordnumber_oe} },      $form->{"ordnumber_$i"};
 
 304       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_oe} },      $form->{"transdate_oe_$i"};
 
 305       push @{ $form->{TEMPLATE_ARRAYS}->{cusordnumber_oe} },   $form->{"cusordnumber_oe_$i"};
 
 306       push @{ $form->{TEMPLATE_ARRAYS}->{donumber_do} },       $form->{"donumber_$i"};
 
 307       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_do} },      $form->{"transdate_do_$i"};
 
 309       push @{ $form->{TEMPLATE_ARRAYS}->{invnumber} },         $form->{"invnumber"};
 
 310       push @{ $form->{TEMPLATE_ARRAYS}->{invdate} },           $form->{"invdate"};
 
 311       push @{ $form->{TEMPLATE_ARRAYS}->{price_factor} },      $price_factor->{formatted_factor};
 
 312       push @{ $form->{TEMPLATE_ARRAYS}->{price_factor_name} }, $price_factor->{description};
 
 313       push @{ $form->{TEMPLATE_ARRAYS}->{partsgroup} },        $form->{"partsgroup_$i"};
 
 314       push @{ $form->{TEMPLATE_ARRAYS}->{reqdate} },           $form->{"reqdate_$i"};
 
 315       push @{ $form->{TEMPLATE_ARRAYS}->{listprice} },         $form->format_amount($myconfig, $form->{"listprice_$i"}, 2);
 
 316       push(@{ $form->{TEMPLATE_ARRAYS}->{listprice_nofmt} },   $form->{"listprice_$i"});
 
 318       my $sellprice     = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 319       my ($dec)         = ($sellprice =~ /\.(\d+)/);
 
 320       my $decimalplaces = max 2, length($dec);
 
 322       my $parsed_discount            = $form->parse_amount($myconfig, $form->{"discount_$i"});
 
 324       my $linetotal_exact            = $form->{"qty_$i"} * $sellprice * (100 - $parsed_discount) / 100 / $price_factor->{factor};
 
 325       my $linetotal                  = $form->round_amount($linetotal_exact, 2);
 
 327       my $nodiscount_exact_linetotal = $form->{"qty_$i"} * $sellprice                                  / $price_factor->{factor};
 
 328       my $nodiscount_linetotal       = $form->round_amount($nodiscount_exact_linetotal,2);
 
 330       my $discount                   = $nodiscount_linetotal - $linetotal; # is always rounded because $nodiscount_linetotal and $linetotal are rounded
 
 332       my $discount_round_error       = $discount + ($linetotal_exact - $nodiscount_exact_linetotal); # not used
 
 334       $form->{"netprice_$i"}   = $form->round_amount($form->{"qty_$i"} ? ($linetotal / $form->{"qty_$i"}) : 0, $decimalplaces);
 
 336       push @{ $form->{TEMPLATE_ARRAYS}->{netprice} },       ($form->{"netprice_$i"} != 0) ? $form->format_amount($myconfig, $form->{"netprice_$i"}, $decimalplaces) : '';
 
 337       push @{ $form->{TEMPLATE_ARRAYS}->{netprice_nofmt} }, ($form->{"netprice_$i"} != 0) ? $form->{"netprice_$i"} : '';
 
 339       $linetotal = ($linetotal != 0) ? $linetotal : '';
 
 341       push @{ $form->{TEMPLATE_ARRAYS}->{discount} },       ($discount != 0) ? $form->format_amount($myconfig, $discount * -1, 2) : '';
 
 342       push @{ $form->{TEMPLATE_ARRAYS}->{discount_nofmt} }, ($discount != 0) ? $discount * -1 : '';
 
 343       push @{ $form->{TEMPLATE_ARRAYS}->{p_discount} },     $form->{"discount_$i"};
 
 345       if ( $prepared_template_arrays{separate}[$i - 1]  ) {
 
 346         my $pabbr = $prepared_template_arrays{separate}[$i - 1];
 
 347         if ( ! $form->{"separate_${pabbr}_subtotal"} ) {
 
 348             push @separate_totals , "separate_${pabbr}_subtotal";
 
 349             $form->{"separate_${pabbr}_subtotal"} = 0;
 
 351         $form->{"separate_${pabbr}_subtotal"} += $linetotal;
 
 353         $form->{non_separate_subtotal} += $linetotal;
 
 356       $form->{total}            += $linetotal;
 
 357       $form->{nodiscount_total} += $nodiscount_linetotal;
 
 358       $form->{discount_total}   += $discount;
 
 360       if ($subtotal_header) {
 
 361         $discount_subtotal   += $linetotal;
 
 362         $nodiscount_subtotal += $nodiscount_linetotal;
 
 365       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
 
 366         push @{ $form->{TEMPLATE_ARRAYS}->{discount_sub} },         $form->format_amount($myconfig, $discount_subtotal,   2);
 
 367         push @{ $form->{TEMPLATE_ARRAYS}->{discount_sub_nofmt} },   $discount_subtotal;
 
 368         push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_sub} },       $form->format_amount($myconfig, $nodiscount_subtotal, 2);
 
 369         push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_sub_nofmt} }, $nodiscount_subtotal;
 
 371         $discount_subtotal   = 0;
 
 372         $nodiscount_subtotal = 0;
 
 373         $subtotal_header     = 0;
 
 376         push @{ $form->{TEMPLATE_ARRAYS}->{$_} }, "" for qw(discount_sub nodiscount_sub discount_sub_nofmt nodiscount_sub_nofmt);
 
 379       if (!$form->{"discount_$i"}) {
 
 380         $nodiscount += $linetotal;
 
 383       push @{ $form->{TEMPLATE_ARRAYS}->{linetotal} },                  $form->format_amount($myconfig, $linetotal, 2);
 
 384       push @{ $form->{TEMPLATE_ARRAYS}->{linetotal_nofmt} },            $linetotal_exact;
 
 385       push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_linetotal} },       $form->format_amount($myconfig, $nodiscount_linetotal, 2);
 
 386       push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_linetotal_nofmt} }, $nodiscount_linetotal;
 
 388       my $project = $projects_by_id{$form->{"project_id_$i"}} || SL::DB::Project->new;
 
 390       push @{ $form->{TEMPLATE_ARRAYS}->{projectnumber} },              $project->projectnumber;
 
 391       push @{ $form->{TEMPLATE_ARRAYS}->{projectdescription} },         $project->description;
 
 393       my $lineweight = $form->{"qty_$i"} * $form->{"weight_$i"};
 
 394       $totalweight += $lineweight;
 
 395       push @{ $form->{TEMPLATE_ARRAYS}->{weight} },            $form->format_amount($myconfig, $form->{"weight_$i"}, 3);
 
 396       push @{ $form->{TEMPLATE_ARRAYS}->{weight_nofmt} },      $form->{"weight_$i"};
 
 397       push @{ $form->{TEMPLATE_ARRAYS}->{lineweight} },        $form->format_amount($myconfig, $lineweight, 3);
 
 398       push @{ $form->{TEMPLATE_ARRAYS}->{lineweight_nofmt} },  $lineweight;
 
 400       @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
 
 404       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
 
 406       if ($form->{taxincluded}) {
 
 409         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
 410         $taxbase = $linetotal - $taxamount;
 
 412         $taxamount = $linetotal * $taxrate;
 
 413         $taxbase   = $linetotal;
 
 416       if ($form->round_amount($taxrate, 7) == 0) {
 
 417         if ($form->{taxincluded}) {
 
 418           foreach my $accno (@taxaccounts) {
 
 419             $taxamount            = $form->round_amount($linetotal * $form->{"${accno}_rate"} / (1 + abs($form->{"${accno}_rate"})), 2);
 
 421             $taxaccounts{$accno} += $taxamount;
 
 422             $taxdiff             += $taxamount;
 
 424             $taxbase{$accno}     += $taxbase;
 
 426           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
 
 428           foreach my $accno (@taxaccounts) {
 
 429             $taxaccounts{$accno} += $linetotal * $form->{"${accno}_rate"};
 
 430             $taxbase{$accno}     += $taxbase;
 
 434         foreach my $accno (@taxaccounts) {
 
 435           $taxaccounts{$accno} += $taxamount * $form->{"${accno}_rate"} / $taxrate;
 
 436           $taxbase{$accno}     += $taxbase;
 
 439       my $tax_rate = $taxrate * 100;
 
 440       push(@{ $form->{TEMPLATE_ARRAYS}->{tax_rate} }, qq|$tax_rate|);
 
 441       if ($form->{"part_type_$i"} eq 'assembly') {
 
 444         # get parts and push them onto the stack
 
 446         if ($form->{groupitems}) {
 
 448             qq|ORDER BY pg.partsgroup, a.position|;
 
 450           $sortorder = qq|ORDER BY a.position|;
 
 454           qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
 
 456              JOIN parts p ON (a.parts_id = p.id)
 
 457              LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 458              WHERE (a.bom = '1') AND (a.id = ?) $sortorder|;
 
 459         $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 461         while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
 462           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
 
 463             map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 464             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
 
 465             push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'assembly-item-partsgroup');
 
 466             push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $sameitem);
 
 469           map { $form->{"a_$_"} = $ref->{$_} } qw(partnumber description);
 
 471           push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'assembly-item');
 
 472           push(@{ $form->{TEMPLATE_ARRAYS}->{description} },
 
 473                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
 
 475                  . qq| -- $form->{"a_partnumber"}, $form->{"a_description"}|);
 
 476           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 482       CVar->get_non_editable_ic_cvars(form               => $form,
 
 485                                       sub_module         => 'invoice',
 
 486                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
 
 488       push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} },
 
 489         CVar->format_to_template(CVar->parse($form->{"ic_cvar_$_->{name}_$i"}, $_), $_)
 
 490           for @{ $ic_cvar_configs };
 
 492       push @{ $form->{TEMPLATE_ARRAYS}->{"project_cvar_" . $_->config->name} }, $_->value_as_text for @{ $project->cvars_by_config };
 
 496   $form->{totalweight}       = $form->format_amount($myconfig, $totalweight, 3);
 
 497   $form->{totalweight_nofmt} = $totalweight;
 
 498   my $defaults = AM->get_defaults();
 
 499   $form->{weightunit}        = $defaults->{weightunit};
 
 501   foreach my $item (sort keys %taxaccounts) {
 
 502     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
 
 504     push(@{ $form->{TEMPLATE_ARRAYS}->{taxbase} },        $form->format_amount($myconfig, $taxbase{$item}, 2));
 
 505     push(@{ $form->{TEMPLATE_ARRAYS}->{taxbase_nofmt} },  $taxbase{$item});
 
 506     push(@{ $form->{TEMPLATE_ARRAYS}->{tax} },            $form->format_amount($myconfig, $taxamount,      2));
 
 507     push(@{ $form->{TEMPLATE_ARRAYS}->{tax_nofmt} },      $taxamount );
 
 508     push(@{ $form->{TEMPLATE_ARRAYS}->{taxrate} },        $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
 
 509     push(@{ $form->{TEMPLATE_ARRAYS}->{taxrate_nofmt} },  $form->{"${item}_rate"} * 100);
 
 510     push(@{ $form->{TEMPLATE_ARRAYS}->{taxnumber} },      $form->{"${item}_taxnumber"});
 
 511     push(@{ $form->{TEMPLATE_ARRAYS}->{tax_id} },         $form->{"${item}_tax_id"});
 
 513     # taxnumber (= accno) is used for grouping the amounts of the various taxes and as a prefix in form
 
 515     # This code used to assume that at most one tax entry can point to the same
 
 516     # chart_id, even though chart_id does not have a unique constraint!
 
 518     # This chart_id was then looked up via its accno, which is the key that is
 
 519     # used to group the different taxes by for a record
 
 521     # As we now also store the tax_id we can use that to look up the tax
 
 522     # instead, this is only done here to get the (translated) taxdescription.
 
 524     if ( $form->{"${item}_tax_id"} ) {
 
 525       my $tax_obj = SL::DB::Manager::Tax->find_by(id => $form->{"${item}_tax_id"}) or die "Can't find tax with id " . $form->{"${item}_tax_id"};
 
 526       my $description = $tax_obj ? $tax_obj->translated_attribute('taxdescription',  $form->{language_id}, 0) : '';
 
 527       push(@{ $form->{TEMPLATE_ARRAYS}->{taxdescription} }, $description . q{ } . 100 * $form->{"${item}_rate"} . q{%});
 
 532   for my $i (1 .. $form->{paidaccounts}) {
 
 533     if ($form->{"paid_$i"}) {
 
 534       my ($accno, $description) = split(/--/, $form->{"AR_paid_$i"});
 
 536       push(@{ $form->{TEMPLATE_ARRAYS}->{payment} },        $form->{"paid_$i"});
 
 537       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentaccount} }, $description);
 
 538       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentdate} },    $form->{"datepaid_$i"});
 
 539       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentsource} },  $form->{"source_$i"});
 
 540       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentmemo} },    $form->{"memo_$i"});
 
 542       $form->{paid} += $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 545   if($form->{taxincluded}) {
 
 546     $form->{subtotal}       = $form->format_amount($myconfig, $form->{total} - $tax, 2);
 
 547     $form->{subtotal_nofmt} = $form->{total} - $tax;
 
 550     $form->{subtotal}       = $form->format_amount($myconfig, $form->{total}, 2);
 
 551     $form->{subtotal_nofmt} = $form->{total};
 
 554   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
 
 555   $form->{discount_total}      = $form->format_amount($myconfig, $form->{discount_total}, 2);
 
 556   $form->{nodiscount}          = $form->format_amount($myconfig, $nodiscount, 2);
 
 557   $form->{yesdiscount}         = $form->format_amount($myconfig, $form->{nodiscount_total} - $nodiscount, 2);
 
 559   my $grossamount = ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax;
 
 560   $form->{invtotal} = $form->round_amount($grossamount, 2, 1);
 
 561   $form->{rounding} = $form->round_amount(
 
 562     $form->{invtotal} - $form->round_amount($grossamount, 2),
 
 566   $form->{rounding} = $form->format_amount($myconfig, $form->{rounding}, 2);
 
 567   $form->{total}    = $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2);
 
 568   $form->{invtotal} = $form->format_amount($myconfig, $form->{invtotal}, 2);
 
 569   $form->{paid}     = $form->format_amount($myconfig, $form->{paid}, 2);
 
 571   $form->set_payment_options($myconfig, $form->{invdate}, 'sales_invoice');
 
 573   $form->{department}    = SL::DB::Manager::Department->find_by(id => $form->{department_id})->description if $form->{department_id};
 
 574   $form->{delivery_term} = SL::DB::Manager::DeliveryTerm->find_by(id => $form->{delivery_term_id} || undef);
 
 575   $form->{delivery_term}->description_long($form->{delivery_term}->translated_attribute('description_long', $form->{language_id})) if $form->{delivery_term} && $form->{language_id};
 
 577   $form->{username} = $myconfig->{name};
 
 578   $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) for @separate_totals;
 
 580   foreach my $invoice_for_advance_payment (@{$self->_get_invoices_for_advance_payment($form->{convert_from_ar_ids} || $form->{id})}) {
 
 581     my %pat       = $invoice_for_advance_payment->calculate_prices_and_taxes;
 
 582     my $taxamount = sum0 values %{ $pat{taxes_by_tax_id} };
 
 584     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_$_"} },              $invoice_for_advance_payment->$_) for qw(invnumber transdate);
 
 585     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_amount_nofmt"} },    $invoice_for_advance_payment->amount);
 
 586     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_amount"} },          $invoice_for_advance_payment->amount_as_number);
 
 587     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_taxamount_nofmt"} }, $taxamount);
 
 588     push(@{ $form->{TEMPLATE_ARRAYS}->{"iap_taxamount"} },       $form->format_amount($myconfig, $taxamount, 2));
 
 590     $form->{iap_amount_nofmt}    += $invoice_for_advance_payment->amount;
 
 591     $form->{iap_taxamount_nofmt} += $taxamount;
 
 592     $form->{iap_existing}         = 1;
 
 594   $form->{iap_amount}    = $form->format_amount($myconfig, $form->{iap_amount_nofmt},    2);
 
 595   $form->{iap_taxamount} = $form->format_amount($myconfig, $form->{iap_taxamount_nofmt}, 2);
 
 597   $main::lxdebug->leave_sub();
 
 600 sub customer_details {
 
 601   $main::lxdebug->enter_sub();
 
 603   my ($self, $myconfig, $form, @wanted_vars) = @_;
 
 605   # connect to database
 
 606   my $dbh = $form->get_standard_dbh;
 
 608   my $language_id = $form->{language_id};
 
 610   # get contact id, set it if nessessary
 
 613   my @values =  (conv_i($form->{customer_id}));
 
 616   if ($form->{cp_id}) {
 
 617     $where = qq| AND (cp.cp_id = ?) |;
 
 618     push(@values, conv_i($form->{cp_id}));
 
 621   # get rest for the customer
 
 623     qq|SELECT ct.*, cp.*, ct.notes as customernotes,
 
 624          ct.phone AS customerphone, ct.fax AS customerfax, ct.email AS customeremail,
 
 627        LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
 
 628        LEFT JOIN currencies cu ON (ct.currency_id = cu.id)
 
 629        WHERE (ct.id = ?) $where
 
 632   my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
 633   # we have no values, probably a invalid contact person. hotfix and first idea for issue #10
 
 635     my $customer = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id});
 
 637       $ref->{name} = $customer->name;
 
 638       $ref->{street} = $customer->street;
 
 639       $ref->{zipcode} = $customer->zipcode;
 
 640       $ref->{country} = $customer->country;
 
 641       $ref->{gln} = $customer->gln;
 
 643     my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id});
 
 645       $ref->{cp_name} = $contact->cp_name;
 
 646       $ref->{cp_givenname} = $contact->cp_givenname;
 
 647       $ref->{cp_gender} = $contact->cp_gender;
 
 650   # remove id,notes (double of customernotes) and taxincluded before copy back
 
 651   delete @$ref{qw(id taxincluded notes)};
 
 653   @wanted_vars = grep({ $_ } @wanted_vars);
 
 654   if (scalar(@wanted_vars) > 0) {
 
 656     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
 
 657     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
 
 660   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 662   if ($form->{delivery_customer_id}) {
 
 664       qq|SELECT *, notes as customernotes
 
 668     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_customer_id}));
 
 670     map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
 
 673   if ($form->{delivery_vendor_id}) {
 
 675       qq|SELECT *, notes as customernotes
 
 679     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_vendor_id}));
 
 681     map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
 
 684   my $custom_variables = CVar->get_custom_variables('dbh'      => $dbh,
 
 686                                                     'trans_id' => $form->{customer_id});
 
 687   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
 
 689   if ($form->{cp_id}) {
 
 690     $custom_variables = CVar->get_custom_variables(dbh      => $dbh,
 
 691                                                    module   => 'Contacts',
 
 692                                                    trans_id => $form->{cp_id});
 
 693     $form->{"cp_cvar_$_->{name}"} = $_->{value} for @{ $custom_variables };
 
 696   $form->{cp_greeting} = GenericTranslations->get('dbh'              => $dbh,
 
 697                                                   'translation_type' => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
 
 698                                                   'language_id'      => $language_id,
 
 699                                                   'allow_fallback'   => 1);
 
 702   $main::lxdebug->leave_sub();
 
 706   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
 
 707   $main::lxdebug->enter_sub();
 
 709   my $rc = SL::DB->client->with_transaction(\&_post_invoice, $self, $myconfig, $form, $provided_dbh, %params);
 
 711   $::lxdebug->leave_sub;
 
 716   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
 
 718   my $payments_only = $params{payments_only};
 
 719   my $dbh = $provided_dbh || SL::DB->client->dbh;
 
 720   my $restricter = SL::HTML::Restrict->create;
 
 722   my ($query, $sth, $null, $project_id, @values);
 
 723   my $exchangerate = 0;
 
 725   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
 
 728   if (!$form->{employee_id}) {
 
 729     $form->get_employee($dbh);
 
 732   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
 
 733   my $defaultcurrency = $form->{defaultcurrency};
 
 735   my $all_units = AM->retrieve_units($myconfig, $form);
 
 737   my $already_booked = !!$form->{id};
 
 739   if (!$payments_only) {
 
 740     if ($form->{storno}) {
 
 741       _delete_transfers($dbh, $form, $form->{storno_id});
 
 744       &reverse_invoice($dbh, $form);
 
 745       _delete_transfers($dbh, $form, $form->{id});
 
 748       my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, save => 1);
 
 749       $form->{invnumber} = $trans_number->create_unique unless $trans_number->is_unique;
 
 751       $query = qq|SELECT nextval('glid')|;
 
 752       ($form->{"id"}) = selectrow_query($form, $dbh, $query);
 
 754       $query = qq|INSERT INTO ar (id, invnumber, currency_id, taxzone_id) VALUES (?, ?, (SELECT id FROM currencies WHERE name=?), ?)|;
 
 755       do_query($form, $dbh, $query, $form->{"id"}, $form->{"id"}, $form->{currency}, $form->{taxzone_id});
 
 757       if (!$form->{invnumber}) {
 
 758         my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, id => $form->{id});
 
 759         $form->{invnumber} = $trans_number->create_unique;
 
 764   my ($netamount, $invoicediff) = (0, 0);
 
 765   my ($amount, $linetotal, $lastincomeaccno);
 
 767   if ($form->{currency} eq $defaultcurrency) {
 
 768     $form->{exchangerate} = 1;
 
 770     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{invdate}, 'buy');
 
 773   $form->{exchangerate} =
 
 776     : $form->parse_amount($myconfig, $form->{exchangerate});
 
 778   $form->{expense_inventory} = "";
 
 782   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
 783   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 786   $form->{amount}      = {};
 
 787   $form->{amount_cogs} = {};
 
 789   my @processed_invoice_ids;
 
 791   foreach my $i (1 .. $form->{rowcount}) {
 
 792     if ($form->{type} eq "credit_note") {
 
 793       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
 
 794       $form->{shipped} = 1;
 
 796       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 801     $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
 
 802     $form->{"marge_absolut_$i"} = $form->parse_amount($myconfig, $form->{"marge_absolut_$i"}) * 1;
 
 803     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"}) * 1;
 
 805     if ($form->{storno}) {
 
 806       $form->{"qty_$i"} *= -1;
 
 809     if ($form->{"id_$i"}) {
 
 813       if (defined($baseunits{$form->{"id_$i"}})) {
 
 814         $item_unit = $baseunits{$form->{"id_$i"}};
 
 817         $query = qq|SELECT unit FROM parts WHERE id = ?|;
 
 818         ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 819         $baseunits{$form->{"id_$i"}} = $item_unit;
 
 822       if (defined($all_units->{$item_unit}->{factor})
 
 823           && ($all_units->{$item_unit}->{factor} ne '')
 
 824           && ($all_units->{$item_unit}->{factor} != 0)) {
 
 825         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
 
 829       $baseqty = $form->{"qty_$i"} * $basefactor;
 
 831       my ($allocated, $taxrate) = (0, 0);
 
 835       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
 
 837       # keep entered selling price
 
 839         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 841       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
 
 843       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 845       # undo discount formatting
 
 846       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
 
 849       $form->{"sellprice_$i"} = $fxsellprice * (1 - $form->{"discount_$i"});
 
 851       # round linetotal to 2 decimal places
 
 852       $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
 
 853       $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
 
 855       if ($form->{taxincluded}) {
 
 856         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
 
 857         $form->{"sellprice_$i"} =
 
 858           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
 
 860         $taxamount = $linetotal * $taxrate;
 
 863       $netamount += $linetotal;
 
 865       if ($taxamount != 0) {
 
 867           $form->{amount}{ $form->{id} }{$_} +=
 
 868             $taxamount * $form->{"${_}_rate"} / $taxrate
 
 869         } split(/ /, $form->{"taxaccounts_$i"});
 
 872       # add amount to income, $form->{amount}{trans_id}{accno}
 
 873       $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor;
 
 875       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate};
 
 876       $linetotal = $form->round_amount($linetotal, 2);
 
 878       # this is the difference from the inventory
 
 879       $invoicediff += ($amount - $linetotal);
 
 881       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
 
 884       $lastincomeaccno = $form->{"income_accno_$i"};
 
 886       # adjust and round sellprice
 
 887       $form->{"sellprice_$i"} =
 
 888         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
 
 891       next if $payments_only;
 
 893       if ($form->{"inventory_accno_$i"} || $form->{"part_type_$i"} eq 'assembly') {
 
 895         if ($form->{"part_type_$i"} eq 'assembly') {
 
 896           # record assembly item as allocated
 
 897           &process_assembly($dbh, $myconfig, $form, $position, $form->{"id_$i"}, $baseqty);
 
 900           $allocated = &cogs($dbh, $myconfig, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
 
 904       # Get pricegroup_id and save it. Unfortunately the interface
 
 905       # also uses ID "0" for signalling that none is selected, but "0"
 
 906       # must not be stored in the database. Therefore we cannot simply
 
 908       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
 
 910       $pricegroup_id  = undef if !$pricegroup_id;
 
 912       CVar->get_non_editable_ic_cvars(form               => $form,
 
 915                                       sub_module         => 'invoice',
 
 916                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
 
 918       if (!$form->{"invoice_id_$i"}) {
 
 919         # there is no persistent id, therefore create one with all necessary constraints
 
 920         my $q_invoice_id = qq|SELECT nextval('invoiceid')|;
 
 921         my $h_invoice_id = prepare_query($form, $dbh, $q_invoice_id);
 
 922         do_statement($form, $h_invoice_id, $q_invoice_id);
 
 923         $form->{"invoice_id_$i"}  = $h_invoice_id->fetchrow_array();
 
 924         my $q_create_invoice_id = qq|INSERT INTO invoice (id, trans_id, position, parts_id) values (?, ?, ?, ?)|;
 
 925         do_query($form, $dbh, $q_create_invoice_id, conv_i($form->{"invoice_id_$i"}),
 
 926                  conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}));
 
 927         $h_invoice_id->finish();
 
 930       # save detail record in invoice table
 
 932         UPDATE invoice SET trans_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?,
 
 933                            sellprice = ?, fxsellprice = ?, discount = ?, allocated = ?, assemblyitem = ?,
 
 934                            unit = ?, deliverydate = ?, project_id = ?, serialnumber = ?, pricegroup_id = ?,
 
 935                            base_qty = ?, subtotal = ?,
 
 936                            marge_percent = ?, marge_total = ?, lastcost = ?, active_price_source = ?, active_discount_source = ?,
 
 937                            price_factor_id = ?, price_factor = (SELECT factor FROM price_factors WHERE id = ?), marge_price_factor = ?
 
 941       @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
 
 942                  $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}), $form->{"qty_$i"},
 
 943                  $form->{"sellprice_$i"}, $fxsellprice,
 
 944                  $form->{"discount_$i"}, $allocated, 'f',
 
 945                  $form->{"unit_$i"}, conv_date($form->{"reqdate_$i"}), conv_i($form->{"project_id_$i"}),
 
 946                  $form->{"serialnumber_$i"}, $pricegroup_id,
 
 947                  $baseqty, $form->{"subtotal_$i"} ? 't' : 'f',
 
 948                  $form->{"marge_percent_$i"}, $form->{"marge_absolut_$i"},
 
 949                  $form->{"lastcost_$i"},
 
 950                  $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
 
 951                  conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
 
 952                  conv_i($form->{"marge_price_factor_$i"}),
 
 953                  conv_i($form->{"invoice_id_$i"}));
 
 954       do_query($form, $dbh, $query, @values);
 
 955       push @processed_invoice_ids, $form->{"invoice_id_$i"};
 
 957       CVar->save_custom_variables(module       => 'IC',
 
 958                                   sub_module   => 'invoice',
 
 959                                   trans_id     => $form->{"invoice_id_$i"},
 
 960                                   configs      => $ic_cvar_configs,
 
 962                                   name_prefix  => 'ic_',
 
 963                                   name_postfix => "_$i",
 
 966     # link previous items with invoice items
 
 967     foreach (qw(delivery_order_items orderitems invoice)) {
 
 968       if (!$form->{useasnew} && $form->{"converted_from_${_}_id_$i"}) {
 
 969         RecordLinks->create_links('dbh'        => $dbh,
 
 972                                   'from_ids'   => $form->{"converted_from_${_}_id_$i"},
 
 973                                   'to_table'   => 'invoice',
 
 974                                   'to_id'      => $form->{"invoice_id_$i"},
 
 977       delete $form->{"converted_from_${_}_id_$i"};
 
 981   # total payments, don't move we need it here
 
 982   for my $i (1 .. $form->{paidaccounts}) {
 
 983     if ($form->{type} eq "credit_note") {
 
 984       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
 
 986       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 988     $form->{paid} += $form->{"paid_$i"};
 
 989     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
 
 992   my ($tax, $diff) = (0, 0);
 
 994   $netamount = $form->round_amount($netamount, 2);
 
 996   # figure out rounding errors for total amount vs netamount + taxes
 
 997   if ($form->{taxincluded}) {
 
 999     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
1000     $diff += $amount - $netamount * $form->{exchangerate};
 
1001     $netamount = $amount;
 
1003     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
1004       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
 
1005       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
1006       $tax += $form->{amount}{ $form->{id} }{$item};
 
1007       $netamount -= $form->{amount}{ $form->{id} }{$item};
 
1010     $invoicediff += $diff;
 
1011     ######## this only applies to tax included
 
1012     if ($lastincomeaccno) {
 
1013       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
 
1017     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
1018     $diff      = $amount - $netamount * $form->{exchangerate};
 
1019     $netamount = $amount;
 
1020     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
1021       $form->{amount}{ $form->{id} }{$item} =
 
1022         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
 
1024         $form->round_amount(
 
1025                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
 
1028         $amount - $form->{amount}{ $form->{id} }{$item} *
 
1029         $form->{exchangerate};
 
1030       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
1031       $tax += $form->{amount}{ $form->{id} }{$item};
 
1035   # Invoice Summary includes Rounding
 
1036   my $grossamount = $netamount + $tax;
 
1037   my $rounding = $form->round_amount(
 
1038     $form->round_amount($grossamount, 2, 1) - $form->round_amount($grossamount, 2),
 
1041   my $rnd_accno = $rounding == 0 ? 0
 
1042                 : $rounding > 0  ? $form->{rndgain_accno}
 
1043                 :                  $form->{rndloss_accno}
 
1045   $form->{amount}{ $form->{id} }{ $form->{AR} } = $form->round_amount($grossamount, 2, 1);
 
1046   $form->{paid} = $form->round_amount(
 
1047     $form->{paid} * $form->{exchangerate} + $diff,
 
1052   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
 
1054   # update exchangerate
 
1055   if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
1056     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
 
1057                                $form->{exchangerate}, 0);
 
1060   $project_id = conv_i($form->{"globalproject_id"});
 
1061   # entsprechend auch beim Bestimmen des Steuerschlüssels in Taxkey.pm berücksichtigen
 
1062   my $taxdate = $form->{tax_point} ||$form->{deliverydate} || $form->{invdate};
 
1064   if (!$already_booked && $form->{type} eq 'final_invoice') {
 
1065     my $invoices_for_advance_payment = $self->_get_invoices_for_advance_payment($form->{convert_from_ar_ids} || $form->{id});
 
1066     if (scalar @$invoices_for_advance_payment > 0) {
 
1067       # reverse booking for invoices for advance payment
 
1068       my $clearing_chart = SL::DB::Chart->new(id => $::instance_conf->get_advance_payment_clearing_chart_id)->load;
 
1069       die "No Clearing Chart for Advance Payment" unless ref $clearing_chart eq 'SL::DB::Chart';
 
1070       foreach my $invoice_for_advance_payment (@$invoices_for_advance_payment) {
 
1072         # --> is implemented below (bookings are marked in memo field)
 
1074         # TODO: helper table acc_trans_advance_payment
 
1075         # trans_id for final invoice connects to acc_trans_id here
 
1076         # my $booking = SL::DB::AccTrans->new( ...)
 
1077         # --> helper table not nessessary because of mark in memo field
 
1079         # TODO: If final_invoice change (delete storno) delete all connectin acc_trans entries, if
 
1080         # period is not closed
 
1081         # --> no problem because gldate of reverse booking is date of final invoice
 
1082         #     if deletion of final invoice is allowed, reverting bookings in invoices
 
1083         #     for advance payment are allowed, too.
 
1084         # $booking->id, $self->id in helper table
 
1085         $form->{amount}->{$invoice_for_advance_payment->id}->{$clearing_chart->accno} = -1 * $invoice_for_advance_payment->netamount;
 
1086         $form->{memo}  ->{$invoice_for_advance_payment->id}->{$clearing_chart->accno} = 'reverse booking by final invoice';
 
1088         $form->{amount}->{$invoice_for_advance_payment->id}->{$form->{AR}} = $invoice_for_advance_payment->netamount;
 
1089         $form->{memo}  ->{$invoice_for_advance_payment->id}->{$form->{AR}} = 'reverse booking by final invoice';
 
1093   if ($form->{type} eq 'invoice_for_advance_payment') {
 
1094     # sanity and decomplex, allow only one tax rate
 
1095     my $clearing_chart = SL::DB::Chart->new(id => $::instance_conf->get_advance_payment_clearing_chart_id)->load;
 
1096     die "No Clearing Chart for Advance Payment" unless ref $clearing_chart eq 'SL::DB::Chart';
 
1098     my @current_taxaccounts = (split(/ /, $form->{taxaccounts}));
 
1099     die 'Wrong Call, cannot post invoice for advance payment with more than one tax' if (scalar @current_taxaccounts > 1);
 
1101     my @trans_ids = keys %{ $form->{amount} };
 
1102     if (scalar @trans_ids > 1) {
 
1103       require Data::Dumper;
 
1104       die "Invalid state for advance payment more than one trans_id " . Dumper($form->{amount});
 
1107     # get gross and move to clearing chart - delete everything else
 
1109     my $gross = $form->{amount}{$trans_ids[0]}{$form->{AR}};
 
1111     undef $form->{amount}{$trans_ids[0]};
 
1113     $form->{amount}{$trans_ids[0]}{$form->{AR}}            = $gross;
 
1114     $form->{amount}{$trans_ids[0]}{$clearing_chart->accno} = $gross * -1;
 
1115     # 4. no cogs, hopefully not commonly used at all
 
1116     undef $form->{amount_cogs};
 
1119   foreach my $trans_id (keys %{ $form->{amount_cogs} }) {
 
1120     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
 
1121       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
 
1123       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
 
1125       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
 
1127           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1128                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1129         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
 
1130         do_query($form, $dbh, $query, @values);
 
1131         $form->{amount_cogs}{$trans_id}{$accno} = 0;
 
1135     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
 
1136       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
 
1138       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
 
1140           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1141                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1142         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
 
1143         do_query($form, $dbh, $query, @values);
 
1148   foreach my $trans_id (keys %{ $form->{amount} }) {
 
1149     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
1150       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
 
1152       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
1154       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
1156           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link, memo)
 
1157              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1160                       WHERE chart_id= (SELECT id
 
1164                       ORDER BY startdate DESC LIMIT 1),
 
1167                       WHERE chart_id= (SELECT id
 
1171                       ORDER BY startdate DESC LIMIT 1),
 
1173                      (SELECT link FROM chart WHERE accno = ?),
 
1175         @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, $form->{memo}{$trans_id}{$accno});
 
1176         do_query($form, $dbh, $query, @values);
 
1177         $form->{amount}{$trans_id}{$accno} = 0;
 
1181     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
1182       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
1184       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
1186           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link, memo)
 
1187              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1190                       WHERE chart_id= (SELECT id
 
1194                       ORDER BY startdate DESC LIMIT 1),
 
1197                       WHERE chart_id= (SELECT id
 
1201                       ORDER BY startdate DESC LIMIT 1),
 
1203                      (SELECT link FROM chart WHERE accno = ?),
 
1205         @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,$form->{memo}{$trans_id}{$accno});
 
1206         do_query($form, $dbh, $query, @values);
 
1209     if (!$payments_only && ($rnd_accno != 0)) {
 
1211         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1212              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1213       @values = (conv_i($trans_id), $rnd_accno, $rounding, conv_date($form->{invdate}), conv_i($project_id), $rnd_accno);
 
1214       do_query($form, $dbh, $query, @values);
 
1219   # deduct payment differences from diff
 
1220   for my $i (1 .. $form->{paidaccounts}) {
 
1221     if ($form->{"paid_$i"} != 0) {
 
1223         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
 
1224       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
 
1228   my %already_cleared = %{ $params{already_cleared} // {} };
 
1230   # record payments and offsetting AR
 
1231   if (!$form->{storno}) {
 
1232     for my $i (1 .. $form->{paidaccounts}) {
 
1234       if ($form->{"acc_trans_id_$i"}
 
1236           && (SL::DB::Default->get->payments_changeable == 0)) {
 
1240       next if ($form->{"paid_$i"} == 0);
 
1242       my ($accno) = split(/--/, $form->{"AR_paid_$i"});
 
1243       $form->{"datepaid_$i"} = $form->{invdate}
 
1244       unless ($form->{"datepaid_$i"});
 
1245       $form->{datepaid} = $form->{"datepaid_$i"};
 
1249       if ($form->{currency} eq $defaultcurrency) {
 
1250         $form->{"exchangerate_$i"} = 1;
 
1252         $exchangerate              = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
1253         $form->{"exchangerate_$i"} = $exchangerate || $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
 
1257       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
 
1259       my $new_cleared = !$form->{"acc_trans_id_$i"}                                                       ? 'f'
 
1260                       : !$already_cleared{$form->{"acc_trans_id_$i"}}                                     ? 'f'
 
1261                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{amount} != $form->{"paid_$i"} * -1 ? 'f'
 
1262                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{accno}  != $accno                  ? 'f'
 
1263                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{cleared}                           ? 't'
 
1266       if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
 
1268         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, cleared, chart_link)
 
1269            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1272                     WHERE chart_id= (SELECT id
 
1276                     ORDER BY startdate DESC LIMIT 1),
 
1279                     WHERE chart_id= (SELECT id
 
1283                     ORDER BY startdate DESC LIMIT 1),
 
1285                    (SELECT link FROM chart WHERE accno = ?))|;
 
1286         @values = (conv_i($form->{"id"}), $form->{AR}, $amount, $form->{"datepaid_$i"}, $form->{AR}, conv_date($taxdate), $form->{AR}, conv_date($taxdate), $project_id, $new_cleared, $form->{AR});
 
1287         do_query($form, $dbh, $query, @values);
 
1291       $form->{"paid_$i"} *= -1;
 
1292       my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
 
1295       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, tax_id, taxkey, project_id, cleared, chart_link)
 
1296          VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
 
1299                   WHERE chart_id= (SELECT id
 
1303                   ORDER BY startdate DESC LIMIT 1),
 
1306                   WHERE chart_id= (SELECT id
 
1310                   ORDER BY startdate DESC LIMIT 1),
 
1312                  (SELECT link FROM chart WHERE accno = ?))|;
 
1313       @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
 
1314                  $gldate, $form->{"source_$i"}, $form->{"memo_$i"}, $accno, conv_date($taxdate), $accno, conv_date($taxdate), $project_id, $new_cleared, $accno);
 
1315       do_query($form, $dbh, $query, @values);
 
1317       # exchangerate difference
 
1318       $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
 
1319         $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
 
1323         $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
 
1324         $form->{"exchangerate_$i"};
 
1326         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } += $amount;
 
1328         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } += $amount;
 
1333       # update exchange rate
 
1334       if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
1335         $form->update_exchangerate($dbh, $form->{currency},
 
1336                                    $form->{"datepaid_$i"},
 
1337                                    $form->{"exchangerate_$i"}, 0);
 
1341   } else {                      # if (!$form->{storno})
 
1342     $form->{marge_total} *= -1;
 
1345   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
 
1347   # record exchange rate differences and gains/losses
 
1348   foreach my $accno (keys %{ $form->{fx} }) {
 
1349     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
 
1350       $form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2);
 
1351       if ( $form->{fx}{$accno}{$transdate} != 0 ) {
 
1354           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, tax_id, taxkey, project_id, chart_link)
 
1355              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
 
1358                   WHERE chart_id= (SELECT id
 
1362                   ORDER BY startdate DESC LIMIT 1),
 
1365                   WHERE chart_id= (SELECT id
 
1369                   ORDER BY startdate DESC LIMIT 1),
 
1371                  (SELECT link FROM chart WHERE accno = ?))|;
 
1372         @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);
 
1373         do_query($form, $dbh, $query, @values);
 
1378   if ($payments_only) {
 
1379     $query = qq|UPDATE ar SET paid = ? WHERE id = ?|;
 
1380     do_query($form, $dbh, $query,  $form->{paid}, conv_i($form->{id}));
 
1382     $form->new_lastmtime('ar');
 
1387   $amount = $form->round_amount( $netamount + $tax, 2, 1);
 
1390   #erweiterung fuer lieferscheinnummer (donumber) 12.02.09 jb
 
1392   $query = qq|UPDATE ar set
 
1393                 invnumber   = ?, ordnumber     = ?, quonumber     = ?, cusordnumber  = ?,
 
1394                 transdate   = ?, orddate       = ?, quodate       = ?, tax_point     = ?, customer_id   = ?,
 
1395                 amount      = ?, netamount     = ?, paid          = ?,
 
1396                 duedate     = ?, deliverydate  = ?, invoice       = ?, shippingpoint = ?,
 
1397                 shipvia     = ?,                    notes         = ?, intnotes      = ?,
 
1398                 currency_id = (SELECT id FROM currencies WHERE name = ?),
 
1399                 department_id = ?, payment_id    = ?, taxincluded   = ?,
 
1400                 type        = ?, language_id   = ?, taxzone_id    = ?, shipto_id     = ?, billing_address_id = ?,
 
1401                 employee_id = ?, salesman_id   = ?, storno_id     = ?, storno        = ?,
 
1402                 cp_id       = ?, marge_total   = ?, marge_percent = ?,
 
1403                 globalproject_id               = ?, delivery_customer_id             = ?,
 
1404                 transaction_description        = ?, delivery_vendor_id               = ?,
 
1405                 donumber    = ?, invnumber_for_credit_note = ?,        direct_debit  = ?,
 
1406                 delivery_term_id = ?
 
1408   @values = (          $form->{"invnumber"},           $form->{"ordnumber"},             $form->{"quonumber"},          $form->{"cusordnumber"},
 
1409              conv_date($form->{"invdate"}),  conv_date($form->{"orddate"}),    conv_date($form->{"quodate"}), conv_date($form->{tax_point}), conv_i($form->{"customer_id"}),
 
1410                        $amount,                        $netamount,                       $form->{"paid"},
 
1411              conv_date($form->{"duedate"}),  conv_date($form->{"deliverydate"}),    '1',                                $form->{"shippingpoint"},
 
1412                        $form->{"shipvia"},                                $restricter->process($form->{"notes"}),       $form->{"intnotes"},
 
1413                        $form->{"currency"},     conv_i($form->{"department_id"}), conv_i($form->{"payment_id"}),        $form->{"taxincluded"} ? 't' : 'f',
 
1414                        $form->{"type"},         conv_i($form->{"language_id"}),   conv_i($form->{"taxzone_id"}), conv_i($form->{"shipto_id"}), conv_i($form->{billing_address_id}),
 
1415                 conv_i($form->{"employee_id"}), conv_i($form->{"salesman_id"}),   conv_i($form->{storno_id}),           $form->{"storno"} ? 't' : 'f',
 
1416                 conv_i($form->{"cp_id"}),            1 * $form->{marge_total} ,      1 * $form->{marge_percent},
 
1417                 conv_i($form->{"globalproject_id"}),                              conv_i($form->{"delivery_customer_id"}),
 
1418                        $form->{transaction_description},                          conv_i($form->{"delivery_vendor_id"}),
 
1419                        $form->{"donumber"}, $form->{"invnumber_for_credit_note"},        $form->{direct_debit} ? 't' : 'f',
 
1420                 conv_i($form->{delivery_term_id}),
 
1421                 conv_i($form->{"id"}));
 
1422   do_query($form, $dbh, $query, @values);
 
1425   if ($form->{storno}) {
 
1430            intnotes = ? || intnotes
 
1432     do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{"storno_id"}));
 
1433     do_query($form, $dbh, qq|UPDATE ar SET paid = amount WHERE id = ?|, conv_i($form->{"id"}));
 
1436   # maybe we are in a larger transaction and the current
 
1437   # object is not yet persistent in the db, therefore we
 
1438   # need the current dbh to get the not yet committed mtime
 
1439   $form->new_lastmtime('ar', $provided_dbh);
 
1442   if (!$form->{shipto_id}) {
 
1443     $form->add_shipto($dbh, $form->{id}, "AR");
 
1446   # save printed, emailed and queued
 
1447   $form->save_status($dbh);
 
1449   Common::webdav_folder($form);
 
1451   if ($form->{convert_from_ar_ids}) {
 
1452     RecordLinks->create_links('dbh'        => $dbh,
 
1454                               'from_table' => 'ar',
 
1455                               'from_ids'   => $form->{convert_from_ar_ids},
 
1457                               'to_id'      => $form->{id},
 
1459     delete $form->{convert_from_ar_ids};
 
1462   # Link this record to the records it was created from.
 
1463   if ($form->{convert_from_oe_ids}) {
 
1464     RecordLinks->create_links('dbh'        => $dbh,
 
1466                               'from_table' => 'oe',
 
1467                               'from_ids'   => $form->{convert_from_oe_ids},
 
1469                               'to_id'      => $form->{id},
 
1471     delete $form->{convert_from_oe_ids};
 
1474   my @convert_from_do_ids = map { $_ * 1 } grep { $_ } split m/\s+/, $form->{convert_from_do_ids};
 
1476   if (scalar @convert_from_do_ids) {
 
1477     DO->close_orders('dbh' => $dbh,
 
1478                      'ids' => \@convert_from_do_ids);
 
1480     RecordLinks->create_links('dbh'        => $dbh,
 
1482                               'from_table' => 'delivery_orders',
 
1483                               'from_ids'   => \@convert_from_do_ids,
 
1485                               'to_id'      => $form->{id},
 
1488   delete $form->{convert_from_do_ids};
 
1490   ARAP->close_orders_if_billed('dbh'     => $dbh,
 
1491                                'arap_id' => $form->{id},
 
1494   # search for orphaned invoice items
 
1495   $query  = sprintf 'SELECT id FROM invoice WHERE trans_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_invoice_ids;
 
1496   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_invoice_ids);
 
1497   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
 
1498   if (scalar @orphaned_ids) {
 
1499     # clean up invoice items
 
1500     $query  = sprintf 'DELETE FROM invoice WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
 
1501     do_query($form, $dbh, $query, @orphaned_ids);
 
1504   if ($form->{draft_id}) {
 
1505     SL::DB::Manager::Draft->delete_all(where => [ id => delete($form->{draft_id}) ]);
 
1508   # safety check datev export
 
1509   if ($::instance_conf->get_datev_check_on_sales_invoice) {
 
1511     my $datev = SL::DATEV->new(
 
1513       trans_id   => $form->{id},
 
1516     $datev->generate_datev_data;
 
1518     if ($datev->errors) {
 
1519       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
 
1523   # update shop status
 
1524   my $invoice = SL::DB::Invoice->new( id => $form->{id} )->load;
 
1525   my @linked_shop_orders = $invoice->linked_records(
 
1526     from      => 'ShopOrder',
 
1527     via       => ['DeliveryOrder','Order',],
 
1530     my $shop_order = $linked_shop_orders[0][0];
 
1531   if ( $shop_order ) {
 
1533     my $shop_config = SL::DB::Manager::Shop->get_first( query => [ id => $shop_order->shop_id ] );
 
1534     my $shop = SL::Shop->new( config => $shop_config );
 
1535     $shop->connector->set_orderstatus($shop_order->shop_trans_id, "completed");
 
1541 sub _get_invoices_for_advance_payment {
 
1542   my ($self, $id) = @_;
 
1546   my $invoice_obj      = SL::DB::Invoice->new(id => $id*1)->load;
 
1547   my $links            = $invoice_obj->linked_records(direction => 'from', from => ['Invoice'], recursive => 1);
 
1548   my @related_invoices = grep {'SL::DB::Invoice' eq ref $_ && "invoice_for_advance_payment" eq $_->type} @$links;
 
1550   push @related_invoices, $invoice_obj if "invoice_for_advance_payment" eq $invoice_obj->type;
 
1552   return \@related_invoices;
 
1557   $::lxdebug->enter_sub;
 
1559   my ($self, $form, $dbh) = @_;
 
1561   my (@errors, @transfers);
 
1563   # do nothing, if transfer default is not requested at all
 
1564   if (!$::instance_conf->get_transfer_default) {
 
1565     $::lxdebug->leave_sub;
 
1571   foreach my $i (1 .. $form->{rowcount}) {
 
1572     next if !$form->{"id_$i"};
 
1574     my ($err, $qty, $wh_id, $bin_id, $chargenumber);
 
1576     if ($::instance_conf->get_sales_serial_eq_charge && $form->{"serialnumber_$i"}) {
 
1577       my @serials = split(" ", $form->{"serialnumber_$i"});
 
1578       if (scalar @serials != $form->{"qty_$i"}) {
 
1579         push @errors, $::locale->text("Cannot transfer #1 qty with #2 serial number(s)", $form->{"qty_$i"}, scalar @serials);
 
1582       foreach my $serial (@serials) {
 
1583         ($qty, $wh_id, $bin_id, $chargenumber) = WH->get_wh_and_bin_for_charge(chargenumber => $serial);
 
1585           push @errors, $::locale->text("Not enough in stock for the serial number #1", $serial);
 
1589             'parts_id'         => $form->{"id_$i"},
 
1591             'unit'             => $form->{"unit_$i"},
 
1592             'transfer_type'    => 'shipped',
 
1593             'src_warehouse_id' => $wh_id,
 
1594             'src_bin_id'       => $bin_id,
 
1595             'chargenumber'     => $chargenumber,
 
1596             'project_id'       => $form->{"project_id_$i"},
 
1597             'invoice_id'       => $form->{"invoice_id_$i"},
 
1598             'comment'          => $::locale->text("Default transfer invoice with charge number"),
 
1601       $err = []; # error handling uses @errors direct
 
1603       ($err, $wh_id, $bin_id)    = _determine_wh_and_bin($dbh, $::instance_conf,
 
1606                                                          $form->{"unit_$i"});
 
1607       if (!@{ $err } && $wh_id && $bin_id) {
 
1609           'parts_id'         => $form->{"id_$i"},
 
1610           'qty'              => $form->{"qty_$i"},
 
1611           'unit'             => $form->{"unit_$i"},
 
1612           'transfer_type'    => 'shipped',
 
1613           'src_warehouse_id' => $wh_id,
 
1614           'src_bin_id'       => $bin_id,
 
1615           'project_id'       => $form->{"project_id_$i"},
 
1616           'invoice_id'       => $form->{"invoice_id_$i"},
 
1617           'comment'          => $::locale->text("Default transfer invoice"),
 
1621     push @errors, @{ $err };
 
1622   } # end form rowcount
 
1625     WH->transfer(@transfers);
 
1628   $::lxdebug->leave_sub;
 
1632 sub _determine_wh_and_bin {
 
1633   $::lxdebug->enter_sub(2);
 
1635   my ($dbh, $conf, $part_id, $qty, $unit) = @_;
 
1638   my $part = SL::DB::Part->new(id => $part_id)->load;
 
1640   # ignore service if they are not configured to be transfered
 
1641   if ($part->is_service && !$conf->get_transfer_default_services) {
 
1642     $::lxdebug->leave_sub(2);
 
1648     push @errors, $::locale->text("Cannot transfer negative quantities.");
 
1652   # get/test default bin
 
1653   my ($default_wh_id, $default_bin_id);
 
1654   if ($conf->get_transfer_default_use_master_default_bin) {
 
1655     $default_wh_id  = $conf->get_warehouse_id if $conf->get_warehouse_id;
 
1656     $default_bin_id = $conf->get_bin_id       if $conf->get_bin_id;
 
1658   my $wh_id  = $part->warehouse_id || $default_wh_id;
 
1659   my $bin_id = $part->bin_id       || $default_bin_id;
 
1663     my ($max_qty, $error) = WH->get_max_qty_parts_bin(dbh      => $dbh,
 
1664                                                       parts_id => $part->id,
 
1667       push @errors, $::locale->text('Part "#1" has chargenumber or best before date set. So it cannot be transfered automatically.',
 
1668                                     $part->description);
 
1670     my $form_unit_obj = SL::DB::Unit->new(name => $unit)->load;
 
1671     my $part_unit_qty = $form_unit_obj->convert_to($qty, $part->unit_obj);
 
1672     my $diff_qty      = $max_qty - $part_unit_qty;
 
1673     if (!@errors && $diff_qty < 0) {
 
1674       push @errors, $::locale->text('For part "#1" there are missing #2 #3 in the default warehouse/bin "#4/#5".',
 
1676                                     $::form->format_amount(\%::myconfig, -1*$diff_qty),
 
1677                                     $part->unit_obj->name,
 
1678                                     SL::DB::Warehouse->new(id => $wh_id)->load->description,
 
1679                                     SL::DB::Bin->new(      id => $bin_id)->load->description);
 
1682     push @errors, $::locale->text('For part "#1" there is no default warehouse and bin defined.',
 
1683                                   $part->description);
 
1686   # transfer to special "ignore onhand" bin if requested and default bin does not work
 
1687   if (@errors && $conf->get_transfer_default_ignore_onhand && $conf->get_bin_id_ignore_onhand) {
 
1688     $wh_id  = $conf->get_warehouse_id_ignore_onhand;
 
1689     $bin_id = $conf->get_bin_id_ignore_onhand;
 
1690     if ($wh_id && $bin_id) {
 
1693       push @errors, $::locale->text('For part "#1" there is no default warehouse and bin for ignoring onhand defined.',
 
1694                                     $part->description);
 
1698   $::lxdebug->leave_sub(2);
 
1699   return (\@errors, $wh_id, $bin_id);
 
1702 sub _delete_transfers {
 
1703   $::lxdebug->enter_sub;
 
1705   my ($dbh, $form, $id) = @_;
 
1707   my $query = qq|DELETE FROM inventory WHERE invoice_id
 
1708                   IN (SELECT id FROM invoice WHERE trans_id = ?)|;
 
1710   do_query($form, $dbh, $query, $id);
 
1712   $::lxdebug->leave_sub;
 
1715 sub _delete_payments {
 
1716   $main::lxdebug->enter_sub();
 
1718   my ($self, $form, $dbh) = @_;
 
1720   my @delete_acc_trans_ids;
 
1722   # Delete old payment entries from acc_trans.
 
1724     qq|SELECT acc_trans_id
 
1726        WHERE (trans_id = ?) AND fx_transaction
 
1730        SELECT at.acc_trans_id
 
1732        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1733        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
 
1734   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
 
1737     qq|SELECT at.acc_trans_id
 
1739        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1740        WHERE (trans_id = ?)
 
1741          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1742        ORDER BY at.acc_trans_id
 
1744   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1746   if (@delete_acc_trans_ids) {
 
1747     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
 
1748     do_query($form, $dbh, $query);
 
1751   $main::lxdebug->leave_sub();
 
1755   my ($self, $myconfig, $form, $locale) = @_;
 
1756   $main::lxdebug->enter_sub();
 
1758   my $rc = SL::DB->client->with_transaction(\&_post_payment, $self, $myconfig, $form, $locale);
 
1760   $::lxdebug->leave_sub;
 
1765   my ($self, $myconfig, $form, $locale) = @_;
 
1767   my $dbh = SL::DB->client->dbh;
 
1769   my (%payments, $old_form, $row, $item, $query, %keep_vars);
 
1771   $old_form = save_form();
 
1774     SELECT at.acc_trans_id, at.amount, at.cleared, c.accno
 
1776     LEFT JOIN chart c ON (at.chart_id = c.id)
 
1777     WHERE (at.trans_id = ?)
 
1780   my %already_cleared = selectall_as_map($form, $dbh, $query, 'acc_trans_id', [ qw(amount cleared accno) ], $form->{id});
 
1782   # Delete all entries in acc_trans from prior payments.
 
1783   if (SL::DB::Default->get->payments_changeable != 0) {
 
1784     $self->_delete_payments($form, $dbh);
 
1787   # Save the new payments the user made before cleaning up $form.
 
1788   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 };
 
1790   # Clean up $form so that old content won't tamper the results.
 
1791   %keep_vars = map { $_, 1 } qw(login password id);
 
1792   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
 
1794   # Retrieve the invoice from the database.
 
1795   $self->retrieve_invoice($myconfig, $form);
 
1797   # Set up the content of $form in the way that IS::post_invoice() expects.
 
1798   $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
 
1800   for $row (1 .. scalar @{ $form->{invoice_details} }) {
 
1801     $item = $form->{invoice_details}->[$row - 1];
 
1803     map { $item->{$_} = $form->format_amount($myconfig, $item->{$_}) } qw(qty sellprice discount);
 
1805     map { $form->{"${_}_${row}"} = $item->{$_} } keys %{ $item };
 
1808   $form->{rowcount} = scalar @{ $form->{invoice_details} };
 
1810   delete @{$form}{qw(invoice_details paidaccounts storno paid)};
 
1812   # Restore the payment options from the user input.
 
1813   map { $form->{$_} = $payments{$_} } keys %payments;
 
1815   # Get the AR accno (which is normally done by Form::create_links()).
 
1819        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1820        WHERE (trans_id = ?)
 
1821          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1822        ORDER BY at.acc_trans_id
 
1825   ($form->{AR}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1827   # Post the new payments.
 
1828   $self->post_invoice($myconfig, $form, $dbh, payments_only => 1, already_cleared => \%already_cleared);
 
1830   restore_form($old_form);
 
1835 sub process_assembly {
 
1836   $main::lxdebug->enter_sub();
 
1838   my ($dbh, $myconfig, $form, $position, $id, $totalqty) = @_;
 
1841     qq|SELECT a.parts_id, a.qty, p.part_type, p.partnumber, p.description, p.unit
 
1843        JOIN parts p ON (a.parts_id = p.id)
 
1845   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1847   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1851     $ref->{inventory_accno_id} *= 1;
 
1852     $ref->{expense_accno_id}   *= 1;
 
1854     # multiply by number of assemblies
 
1855     $ref->{qty} *= $totalqty;
 
1857     if ($ref->{assembly}) {
 
1858       &process_assembly($dbh, $myconfig, $form, $position, $ref->{parts_id}, $ref->{qty});
 
1861       if ($ref->{inventory_accno_id}) {
 
1862         $allocated = &cogs($dbh, $myconfig, $form, $ref->{parts_id}, $ref->{qty});
 
1866     # save detail record for individual assembly item in invoice table
 
1868       qq|INSERT INTO invoice (trans_id, position, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
 
1869          VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1870     my @values = (conv_i($form->{id}), conv_i($position), $ref->{description},
 
1871                   conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
 
1872     do_query($form, $dbh, $query, @values);
 
1878   $main::lxdebug->leave_sub();
 
1882   $main::lxdebug->enter_sub();
 
1884   # adjust allocated in table invoice according to FIFO princicple
 
1885   # for a certain part with part_id $id
 
1887   my ($dbh, $myconfig, $form, $id, $totalqty, $basefactor, $row) = @_;
 
1891   $form->{taxzone_id} *=1;
 
1892   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
 
1893   my $taxzone_id = $form->{"taxzone_id"} * 1;
 
1895     qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice, i.price_factor,
 
1896          c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
 
1897          c2.accno AS    income_accno, c2.new_chart_id AS    income_new_chart, date($transdate) - c2.valid_from AS    income_valid,
 
1898          c3.accno AS   expense_accno, c3.new_chart_id AS   expense_new_chart, date($transdate) - c3.valid_from AS   expense_valid
 
1899        FROM invoice i, parts p
 
1900        LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
 
1901        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)
 
1902        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)
 
1903        WHERE (i.parts_id = p.id)
 
1904          AND (i.parts_id = ?)
 
1905          AND ((i.base_qty + i.allocated) < 0)
 
1907   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1912 # all invoice entries of an example part:
 
1914 # id | trans_id | base_qty | allocated | sellprice | inventory_accno | income_accno | expense_accno
 
1915 # ---+----------+----------+-----------+-----------+-----------------+--------------+---------------
 
1916 #  4 |        4 |       -5 |         5 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1917 #  5 |        5 |        4 |        -4 |  50.00000 | 1140            | 4400         | 5400     sold   4 for 50
 
1918 #  6 |        6 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
 
1919 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1920 #  8 |        8 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
 
1922 # 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
 
1923 # and all parts have been allocated
 
1925 # so transaction 8 only sees transaction 7 with unallocated parts and adjusts allocated for that transaction, before allocated was 0
 
1926 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1928 # in this example there are still 4 unsold articles
 
1931   # search all invoice entries for the part in question, adjusting "allocated"
 
1932   # until the total number of sold parts has been reached
 
1934   # ORDER BY trans_id ensures FIFO
 
1937   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1938     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
 
1942     # update allocated in invoice
 
1943     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
 
1945     # total expenses and inventory
 
1946     # sellprice is the cost of the item
 
1947     my $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / ( ($ref->{price_factor} || 1) * ( $basefactor || 1 )), 2);
 
1949     if ( $::instance_conf->get_inventory_system eq 'perpetual' ) {
 
1950       # Bestandsmethode: when selling parts, deduct their purchase value from the inventory account
 
1951       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
 
1953       $form->{amount_cogs}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
 
1954       $form->{expense_inventory} .= " " . $ref->{expense_accno};
 
1955       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
 
1957       $form->{amount_cogs}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
 
1958       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
 
1964     last if (($totalqty -= $qty) <= 0);
 
1969   $main::lxdebug->leave_sub();
 
1974 sub reverse_invoice {
 
1975   $main::lxdebug->enter_sub();
 
1977   my ($dbh, $form) = @_;
 
1979   # reverse inventory items
 
1981     qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.part_type
 
1983        JOIN parts p ON (i.parts_id = p.id)
 
1984        WHERE i.trans_id = ?|;
 
1985   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
 
1987   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1989     if ($ref->{inventory_accno_id}) {
 
1990       # de-allocated purchases
 
1992         qq|SELECT i.id, i.trans_id, i.allocated
 
1994            WHERE (i.parts_id = ?) AND (i.allocated > 0)
 
1995            ORDER BY i.trans_id DESC|;
 
1996       my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
 
1998       while (my $inhref = $sth2->fetchrow_hashref('NAME_lc')) {
 
1999         my $qty = $ref->{qty};
 
2000         if (($ref->{qty} - $inhref->{allocated}) > 0) {
 
2001           $qty = $inhref->{allocated};
 
2005         $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
 
2007         last if (($ref->{qty} -= $qty) <= 0);
 
2016   my @values = (conv_i($form->{id}));
 
2017   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
 
2019   $query = qq|DELETE FROM custom_variables
 
2020               WHERE (config_id IN (SELECT id        FROM custom_variable_configs WHERE (module = 'ShipTo')))
 
2021                 AND (trans_id  IN (SELECT shipto_id FROM shipto                  WHERE (module = 'AR') AND (trans_id = ?)))|;
 
2022   do_query($form, $dbh, $query, @values);
 
2023   do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
 
2025   $main::lxdebug->leave_sub();
 
2028 sub delete_invoice {
 
2029   my ($self, $myconfig, $form) = @_;
 
2030   $main::lxdebug->enter_sub();
 
2032   my $rc = SL::DB->client->with_transaction(\&_delete_invoice, $self, $myconfig, $form);
 
2034   $::lxdebug->leave_sub;
 
2038 sub _delete_invoice {
 
2039   my ($self, $myconfig, $form) = @_;
 
2041   my $dbh = SL::DB->client->dbh;
 
2043   &reverse_invoice($dbh, $form);
 
2044   _delete_transfers($dbh, $form, $form->{id});
 
2046   my @values = (conv_i($form->{id}));
 
2048   # Falls wir ein Storno haben, müssen zwei Felder in der stornierten Rechnung wieder
 
2049   # zurückgesetzt werden. Vgl:
 
2050   #  id | storno | storno_id |  paid   |  amount
 
2051   #----+--------+-----------+---------+-----------
 
2052   # 18 | f      |           | 0.00000 | 119.00000
 
2054   # 18 | t      |           |  119.00000 |  119.00000
 
2056   if($form->{storno}){
 
2057     # storno_id auslesen und korrigieren
 
2058     my ($invoice_id) = selectfirst_array_query($form, $dbh, qq|SELECT storno_id FROM ar WHERE id = ?|,@values);
 
2059     do_query($form, $dbh, qq|UPDATE ar SET storno = 'f', paid = 0 WHERE id = ?|, $invoice_id);
 
2062   # if we delete a final invoice, the reverse bookings for the clearing account in the invoice for advance payment
 
2063   # must be deleted as well
 
2064   my $invoices_for_advance_payment = $self->_get_invoices_for_advance_payment($form->{convert_from_ar_ids} || $form->{id});
 
2066   # Todo: allow only if invoice for advance payment is not paid.
 
2067   # die if any { $_->paid } for @$invoices_for_advance_payment;
 
2068   my @trans_ids_to_consider        = map { $_->id } @$invoices_for_advance_payment;
 
2069   if (scalar @trans_ids_to_consider) {
 
2070     my $query = sprintf 'DELETE FROM acc_trans WHERE memo LIKE ? AND trans_id IN (%s)', join ', ', ("?") x scalar @trans_ids_to_consider;
 
2071     do_query($form, $dbh, $query, 'reverse booking by final invoice', @trans_ids_to_consider);
 
2074   # delete spool files
 
2075   my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
 
2078     qq|DELETE FROM status WHERE trans_id = ?|,
 
2079     qq|DELETE FROM periodic_invoices WHERE ar_id = ?|,
 
2080     qq|DELETE FROM invoice WHERE trans_id = ?|,
 
2081     qq|DELETE FROM ar WHERE id = ?|,
 
2084   map { do_query($form, $dbh, $_, @values) } @queries;
 
2086   my $spool = $::lx_office_conf{paths}->{spool};
 
2087   map { unlink "$spool/$_" if -f "$spool/$_"; } @spoolfiles;
 
2092 sub retrieve_invoice {
 
2093   my ($self, $myconfig, $form) = @_;
 
2094   $main::lxdebug->enter_sub();
 
2096   my $rc = SL::DB->client->with_transaction(\&_retrieve_invoice, $self, $myconfig, $form);
 
2098   $::lxdebug->leave_sub;
 
2102 sub _retrieve_invoice {
 
2103   my ($self, $myconfig, $form) = @_;
 
2105   my $dbh = SL::DB->client->dbh;
 
2107   my ($sth, $ref, $query);
 
2109   my $query_transdate = !$form->{id} ? ", current_date AS invdate" : '';
 
2113          (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
 
2114          (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
 
2115          (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
 
2116          (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
 
2117          (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno,
 
2118          (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id)   AS rndgain_accno,
 
2119          (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id)   AS rndloss_accno
 
2123   $ref = selectfirst_hashref_query($form, $dbh, $query);
 
2124   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
2127     my $id = conv_i($form->{id});
 
2130     #erweiterung um das entsprechende feld lieferscheinnummer (a.donumber) in der html-maske anzuzeigen 12.02.2009 jb
 
2134            a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
 
2135            a.orddate, a.quodate, a.globalproject_id,
 
2136            a.transdate AS invdate, a.deliverydate, a.tax_point, a.paid, a.storno, a.storno_id, a.gldate,
 
2137            a.shippingpoint, a.shipvia, a.notes, a.intnotes, a.taxzone_id,
 
2138            a.duedate, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.shipto_id, a.cp_id,
 
2139            a.billing_address_id,
 
2140            a.employee_id, a.salesman_id, a.payment_id,
 
2142            a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
 
2143            a.transaction_description, a.donumber, a.invnumber_for_credit_note,
 
2144            a.marge_total, a.marge_percent, a.direct_debit, a.delivery_term_id,
 
2145            dc.dunning_description,
 
2148          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2149          LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id)
 
2151     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
2152     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
2153     $form->{mtime} = $form->{itime} if !$form->{mtime};
 
2154     $form->{lastmtime} = $form->{mtime};
 
2156     $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
 
2158     foreach my $vc (qw(customer vendor)) {
 
2159       next if !$form->{"delivery_${vc}_id"};
 
2160       ($form->{"delivery_${vc}_string"}) = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
 
2164     $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|;
 
2165     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
2166     $form->{$_} = $ref->{$_} for grep { m{^shipto(?!_id$)} } keys %$ref;
 
2168     # get printed, emailed
 
2169     $query = qq|SELECT printed, emailed, spoolfile, formname FROM status WHERE trans_id = ?|;
 
2170     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
2172     while ($ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2173       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
 
2174       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
 
2175       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
 
2178     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
 
2180     my $transdate = $form->{tax_point}    ? $dbh->quote($form->{tax_point})
 
2181                   : $form->{deliverydate} ? $dbh->quote($form->{deliverydate})
 
2182                   : $form->{invdate}      ? $dbh->quote($form->{invdate})
 
2186     my $taxzone_id = $form->{taxzone_id} *= 1;
 
2187     $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
 
2189     # retrieve individual items
 
2192            c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
 
2193            c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from as income_valid,
 
2194            c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from AS expense_valid,
 
2197            i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice, i.discount, i.parts_id AS id, i.unit, i.deliverydate AS reqdate,
 
2198            i.project_id, i.serialnumber, i.pricegroup_id, i.ordnumber, i.donumber, i.transdate, i.cusordnumber, i.subtotal, i.lastcost,
 
2199            i.price_factor_id, i.price_factor, i.marge_price_factor, i.active_price_source, i.active_discount_source,
 
2200            p.partnumber, p.part_type, p.notes AS partnotes, p.formel, p.listprice,
 
2201            p.classification_id,
 
2202            pr.projectnumber, pg.partsgroup, prg.pricegroup
 
2205          LEFT JOIN parts p ON (i.parts_id = p.id)
 
2206          LEFT JOIN project pr ON (i.project_id = pr.id)
 
2207          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
2208          LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
 
2210          LEFT JOIN chart c1 ON ((SELECT inventory_accno_id             FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
 
2211          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)
 
2212          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)
 
2214          WHERE (i.trans_id = ?) AND NOT (i.assemblyitem = '1') ORDER BY i.position|;
 
2216     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
2218     while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2219       # Retrieve custom variables.
 
2220       my $cvars = CVar->get_custom_variables(dbh        => $dbh,
 
2222                                              sub_module => 'invoice',
 
2223                                              trans_id   => $ref->{invoice_id},
 
2225       map { $ref->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
 
2227       map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid)) if !$ref->{"part_inventory_accno_id"};
 
2228       delete($ref->{"part_inventory_accno_id"});
 
2230       foreach my $type (qw(inventory income expense)) {
 
2231         while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
2232           my $query = qq|SELECT accno, new_chart_id, date($transdate) - valid_from FROM chart WHERE id = ?|;
 
2233           @$ref{ map $type.$_, qw(_accno _new_chart _valid) } = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
2237       # get tax rates and description
 
2238       my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
2240         qq|SELECT c.accno, t.taxdescription, t.rate, t.id as tax_id, c.accno as taxnumber
 
2242            LEFT JOIN chart c ON (c.id = t.chart_id)
 
2244              (SELECT tk.tax_id FROM taxkeys tk
 
2245               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
 
2246                 AND startdate <= date($transdate)
 
2247               ORDER BY startdate DESC LIMIT 1)
 
2249       my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
 
2250       $ref->{taxaccounts} = "";
 
2252       while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
 
2254         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
2258         $ref->{taxaccounts} .= "$ptr->{accno} ";
 
2260         if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
 
2261           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
2262           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
2263           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber}; # don't use this anymore
 
2264           $form->{"$ptr->{accno}_tax_id"}      = $ptr->{tax_id};
 
2265           $form->{taxaccounts} .= "$ptr->{accno} ";
 
2270       $ref->{qty} *= -1 if $form->{type} eq "credit_note";
 
2272       chop $ref->{taxaccounts};
 
2273       push @{ $form->{invoice_details} }, $ref;
 
2278     # Fetch shipping address.
 
2279     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'AR'|;
 
2280     $ref   = selectfirst_hashref_query($form, $dbh, $query, $form->{id});
 
2282     $form->{$_} = $ref->{$_} for grep { $_ ne 'id' } keys %$ref;
 
2284     if ($form->{shipto_id}) {
 
2285       my $cvars = CVar->get_custom_variables(
 
2288         trans_id => $form->{shipto_id},
 
2290       $form->{"shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars };
 
2293     Common::webdav_folder($form);
 
2300   $main::lxdebug->enter_sub();
 
2302   my ($self, $myconfig, $form) = @_;
 
2304   # connect to database
 
2305   my $dbh = $form->get_standard_dbh;
 
2307   my $dateformat = $myconfig->{dateformat};
 
2308   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2310   my (@values, $ref, $query);
 
2312   my $cid = conv_i($form->{customer_id});
 
2318     $where .= 'AND c.id = ?';
 
2323          c.id AS customer_id, c.name AS customer, c.discount as customer_discount, c.creditlimit,
 
2324          c.email, c.cc, c.bcc, c.language_id, c.payment_id, c.delivery_term_id,
 
2325          c.street, c.zipcode, c.city, c.country,
 
2326          c.notes AS intnotes, c.pricegroup_id as customer_pricegroup_id, c.taxzone_id, c.salesman_id, cu.name AS curr,
 
2327          c.taxincluded_checked, c.direct_debit,
 
2329           FROM additional_billing_addresses aba
 
2330           WHERE aba.default_address
 
2331           LIMIT 1) AS default_billing_address_id,
 
2332          b.discount AS tradediscount, b.description AS business
 
2334        LEFT JOIN business b ON (b.id = c.business_id)
 
2335        LEFT JOIN currencies cu ON (c.currency_id=cu.id)
 
2336        WHERE 1 = 1 $where|;
 
2337   $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
2339   delete $ref->{salesman_id} if !$ref->{salesman_id};
 
2340   delete $ref->{payment_id}  if !$ref->{payment_id};
 
2342   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2344   if ($form->{payment_id}) {
 
2345     my $reference_date = $form->{invdate} ? DateTime->from_kivitendo($form->{invdate}) : undef;
 
2346     $form->{duedate}   = SL::DB::PaymentTerm->new(id => $form->{payment_id})->load->calc_date(reference_date => $reference_date)->to_kivitendo;
 
2348     $form->{duedate}   = DateTime->today_local->to_kivitendo;
 
2351   # use customer currency
 
2352   $form->{currency} = $form->{curr};
 
2355     qq|SELECT sum(amount - paid) AS dunning_amount
 
2357        WHERE (paid < amount)
 
2358          AND (customer_id = ?)
 
2359          AND (dunning_config_id IS NOT NULL)|;
 
2360   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
2361   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2364     qq|SELECT dnn.dunning_description AS max_dunning_level
 
2365        FROM dunning_config dnn
 
2366        WHERE id IN (SELECT dunning_config_id
 
2368                     WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
 
2369        ORDER BY dunning_level DESC LIMIT 1|;
 
2370   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
2371   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2373   $form->{creditremaining} = $form->{creditlimit};
 
2374   $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
 
2375   my ($value) = selectrow_query($form, $dbh, $query, $cid);
 
2376   $form->{creditremaining} -= $value;
 
2380          (SELECT e.buy FROM exchangerate e
 
2381           WHERE e.currency_id = o.currency_id
 
2382             AND e.transdate = o.transdate)
 
2384        WHERE o.customer_id = ?
 
2385          AND o.quotation = '0'
 
2386          AND o.closed = '0'|;
 
2387   my $sth = prepare_execute_query($form, $dbh, $query, $cid);
 
2389   while (my ($amount, $exch) = $sth->fetchrow_array) {
 
2390     $exch = 1 unless $exch;
 
2391     $form->{creditremaining} -= $amount * $exch;
 
2395   $main::lxdebug->leave_sub();
 
2399   $main::lxdebug->enter_sub();
 
2401   my ($self, $myconfig, $form) = @_;
 
2403   # connect to database
 
2404   my $dbh = $form->get_standard_dbh;
 
2406   my $i = $form->{rowcount};
 
2408   my $where = qq|NOT p.obsolete = '1'|;
 
2411   foreach my $column (qw(p.partnumber p.description pgpartsgroup )) {
 
2412     my ($table, $field) = split m/\./, $column;
 
2413     next if !$form->{"${field}_${i}"};
 
2414     $where .= qq| AND lower(${column}) ILIKE ?|;
 
2415     push @values, like($form->{"${field}_${i}"});
 
2419   if ($form->{"partnumber_$i"} && !$form->{"description_$i"}) {
 
2420     $where .= qq| OR (NOT p.obsolete = '1' AND p.ean = ? )|;
 
2421     push @values, $form->{"partnumber_$i"};
 
2423     # also search hits in makemodels, but only cache the results by id and merge later
 
2425       SELECT parts_id, model FROM makemodel LEFT JOIN parts ON parts.id = parts_id WHERE NOT parts.obsolete AND model ILIKE ?;
 
2427     my $mm_results = selectall_hashref_query($::form, $dbh, $mm_query, like($form->{"partnumber_$i"}));
 
2428     my @mm_ids     = map { $_->{parts_id} } @$mm_results;
 
2429     push @{$mm_by_id{ $_->{parts_id} } ||= []}, $_ for @$mm_results;
 
2432       $where .= qq| OR p.id IN (| . join(',', ('?') x @mm_ids) . qq|)|;
 
2433       push @values, @mm_ids;
 
2437   # Search for part ID overrides all other criteria.
 
2438   if ($form->{"id_${i}"}) {
 
2439     $where  = qq|p.id = ?|;
 
2440     @values = ($form->{"id_${i}"});
 
2443   if ($form->{"description_$i"}) {
 
2444     $where .= qq| ORDER BY p.description|;
 
2446     $where .= qq| ORDER BY p.partnumber|;
 
2450   if ($form->{type} eq "invoice") {
 
2452       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
 
2453       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
 
2457       $form->{transdate}    ? $dbh->quote($form->{transdate}) :
 
2461   my $taxzone_id = $form->{taxzone_id} * 1;
 
2462   $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
 
2466          p.id, p.partnumber, p.description, p.sellprice,
 
2467          p.listprice, p.part_type, p.lastcost,
 
2469          p.classification_id,
 
2471          c1.accno AS inventory_accno,
 
2472          c1.new_chart_id AS inventory_new_chart,
 
2473          date($transdate) - c1.valid_from AS inventory_valid,
 
2475          c2.accno AS income_accno,
 
2476          c2.new_chart_id AS income_new_chart,
 
2477          date($transdate)  - c2.valid_from AS income_valid,
 
2479          c3.accno AS expense_accno,
 
2480          c3.new_chart_id AS expense_new_chart,
 
2481          date($transdate) - c3.valid_from AS expense_valid,
 
2483          p.unit, p.part_type, p.onhand,
 
2484          p.notes AS partnotes, p.notes AS longdescription,
 
2485          p.not_discountable, p.formel, p.payment_id AS part_payment_id,
 
2486          p.price_factor_id, p.weight,
 
2488          pfac.factor AS price_factor,
 
2489          pt.used_for_sale AS used_for_sale,
 
2493        LEFT JOIN chart c1 ON
 
2494          ((SELECT inventory_accno_id
 
2495            FROM buchungsgruppen
 
2496            WHERE id = p.buchungsgruppen_id) = c1.id)
 
2497        LEFT JOIN chart c2 ON
 
2498          ((SELECT tc.income_accno_id
 
2499            FROM taxzone_charts tc
 
2500            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c2.id)
 
2501        LEFT JOIN chart c3 ON
 
2502          ((SELECT tc.expense_accno_id
 
2503            FROM taxzone_charts tc
 
2504            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c3.id)
 
2505        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
 
2506        LEFT JOIN part_classifications pt ON (pt.id = p.classification_id)
 
2507        LEFT JOIN price_factors pfac ON (pfac.id = p.price_factor_id)
 
2509   my $sth = prepare_execute_query($form, $dbh, $query, @values);
 
2511   my @translation_queries = ( [ qq|SELECT tr.translation, tr.longdescription
 
2513                                    WHERE tr.language_id = ? AND tr.parts_id = ?| ],
 
2514                               [ qq|SELECT tr.translation, tr.longdescription
 
2516                                    WHERE tr.language_id IN
 
2519                                       WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
 
2522   map { push @{ $_ }, prepare_query($form, $dbh, $_->[0]) } @translation_queries;
 
2524   my $has_wrong_pclass = PCLASS_OK;
 
2525   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2527     if ($mm_by_id{$ref->{id}}) {
 
2528       $ref->{makemodels} = $mm_by_id{$ref->{id}};
 
2529       push @{ $ref->{matches} ||= [] }, $::locale->text('Model') . ': ' . join ', ', map { $_->{model} } @{ $mm_by_id{$ref->{id}} };
 
2532     if (($::form->{"partnumber_$i"} ne '') && ($ref->{ean} eq $::form->{"partnumber_$i"})) {
 
2533       push @{ $ref->{matches} ||= [] }, $::locale->text('EAN') . ': ' . $ref->{ean};
 
2536     $ref->{type_and_classific} = type_abbreviation($ref->{part_type}) .
 
2537                                  classification_abbreviation($ref->{classification_id});
 
2538     if (! $ref->{used_for_sale} ) {
 
2539       $has_wrong_pclass = PCLASS_NOTFORSALE ;
 
2542     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
 
2543     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
 
2544     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
 
2545     if (!$ref->{inventory_accno_id}) {
 
2546       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
 
2548     delete($ref->{inventory_accno_id});
 
2550     foreach my $type (qw(inventory income expense)) {
 
2551       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
2553           qq|SELECT accno, new_chart_id, date($transdate) - valid_from
 
2556         ($ref->{"${type}_accno"},
 
2557          $ref->{"${type}_new_chart"},
 
2558          $ref->{"${type}_valid"})
 
2559           = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
2563     if ($form->{payment_id} eq "") {
 
2564       $form->{payment_id} = $form->{part_payment_id};
 
2567     # get tax rates and description
 
2568     my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
2570       qq|SELECT c.accno, t.taxdescription, t.id as tax_id, t.rate, c.accno as taxnumber
 
2572          LEFT JOIN chart c ON (c.id = t.chart_id)
 
2576             WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
 
2578             ORDER BY startdate DESC
 
2581     @values = ($accno_id, $transdate eq "current_date" ? "now" : $transdate);
 
2582     my $stw = $dbh->prepare($query);
 
2583     $stw->execute(@values) || $form->dberror($query);
 
2585     $ref->{taxaccounts} = "";
 
2587     while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
 
2589       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
2593       $ref->{taxaccounts} .= "$ptr->{accno} ";
 
2595       if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
 
2596         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
2597         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
2598         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
2599         $form->{"$ptr->{accno}_tax_id"}      = $ptr->{tax_id};
 
2600         $form->{taxaccounts} .= "$ptr->{accno} ";
 
2606     chop $ref->{taxaccounts};
 
2608     if ($form->{language_id}) {
 
2609       for my $spec (@translation_queries) {
 
2610         do_statement($form, $spec->[1], $spec->[0], conv_i($form->{language_id}), conv_i($ref->{id}));
 
2611         my ($translation, $longdescription) = $spec->[1]->fetchrow_array;
 
2612         next unless $translation;
 
2613         $ref->{description} = $translation;
 
2614         $ref->{longdescription} = $longdescription;
 
2619     $ref->{onhand} *= 1;
 
2620     push @{ $form->{item_list} }, $ref;
 
2623   $_->[1]->finish for @translation_queries;
 
2625   $form->{is_wrong_pclass} = $has_wrong_pclass;
 
2626   $form->{NOTFORSALE}      = PCLASS_NOTFORSALE;
 
2627   $form->{NOTFORPURCHASE}  = PCLASS_NOTFORPURCHASE;
 
2628   foreach my $item (@{ $form->{item_list} }) {
 
2629     my $custom_variables = CVar->get_custom_variables(module   => 'IC',
 
2630                                                       trans_id => $item->{id},
 
2633     $form->{is_wrong_pclass} = PCLASS_OK; # one correct type
 
2634     map { $item->{"ic_cvar_" . $_->{name} } = $_->{value} } @{ $custom_variables };
 
2636   $main::lxdebug->leave_sub();
 
2640   $main::lxdebug->enter_sub();
 
2642   my ($self, $myconfig, $form, $table) = @_;
 
2644   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
 
2646   # make sure there's no funny stuff in $table
 
2647   # ToDO: die when this happens and throw an error
 
2648   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2650   my $dbh = $form->get_standard_dbh;
 
2652   my $query = qq|SELECT storno FROM $table WHERE storno_id = ?|;
 
2653   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
 
2655   $main::lxdebug->leave_sub();
 
2661   $main::lxdebug->enter_sub();
 
2663   my ($self, $myconfig, $form, $table, $id) = @_;
 
2665   $main::lxdebug->leave_sub() and return 0 unless ($id);
 
2667   # make sure there's no funny stuff in $table
 
2668   # ToDO: die when this happens and throw an error
 
2669   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2671   my $dbh = $form->get_standard_dbh;
 
2673   my $query = qq|SELECT storno FROM $table WHERE id = ?|;
 
2674   my ($result) = selectrow_query($form, $dbh, $query, $id);
 
2676   $main::lxdebug->leave_sub();
 
2681 sub get_standard_accno_current_assets {
 
2682   $main::lxdebug->enter_sub();
 
2684   my ($self, $myconfig, $form) = @_;
 
2686   my $dbh = $form->get_standard_dbh;
 
2688   my $query = qq| SELECT accno FROM chart WHERE id = (SELECT ar_paid_accno_id FROM defaults)|;
 
2689   my ($result) = selectrow_query($form, $dbh, $query);
 
2691   $main::lxdebug->leave_sub();