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);
 
  45 use SL::DATEV qw(:CONSTANTS);
 
  48 use SL::GenericTranslations;
 
  49 use SL::HTML::Restrict;
 
  60 use SL::Presenter::Part qw(type_abbreviation classification_abbreviation);
 
  64 use constant PCLASS_OK             =>   0;
 
  65 use constant PCLASS_NOTFORSALE     =>   1;
 
  66 use constant PCLASS_NOTFORPURCHASE =>   2;
 
  69   $main::lxdebug->enter_sub();
 
  71   # prepare invoice for printing
 
  73   my ($self, $myconfig, $form, $locale) = @_;
 
  75   $form->{duedate} ||= $form->{invdate};
 
  78   my $dbh = $form->get_standard_dbh;
 
  82   $form->{TEMPLATE_ARRAYS} = {};
 
  84   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
 
  86   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
  89   foreach my $pfac (@{ $form->{ALL_PRICE_FACTORS} }) {
 
  90     $price_factors{$pfac->{id}}  = $pfac;
 
  92     $pfac->{formatted_factor}    = $form->format_amount($myconfig, $pfac->{factor});
 
  95   # sort items by partsgroup
 
  96   for my $i (1 .. $form->{rowcount}) {
 
  98 #    if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
  99 #      $partsgroup = $form->{"partsgroup_$i"};
 
 101 #    push @partsgroup, [$i, $partsgroup];
 
 102     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
 
 108     $projects = SL::DB::Manager::Project->get_all(query => [ id => \@project_ids ]);
 
 109     %projects_by_id = map { $_->id => $_ } @$projects;
 
 112   if ($projects_by_id{$form->{"globalproject_id"}}) {
 
 113     $form->{globalprojectnumber} = $projects_by_id{$form->{"globalproject_id"}}->projectnumber;
 
 114     $form->{globalprojectdescription} = $projects_by_id{$form->{"globalproject_id"}}->description;
 
 116     for (@{ $projects_by_id{$form->{"globalproject_id"}}->cvars_by_config }) {
 
 117       $form->{"project_cvar_" . $_->config->name} = $_->value_as_text;
 
 127   # sort items by partsgroup
 
 128   for $i (1 .. $form->{rowcount}) {
 
 130     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
 131       $partsgroup = $form->{"partsgroup_$i"};
 
 133     push @partsgroup, [$i, $partsgroup];
 
 146   my $nodiscount_subtotal = 0;
 
 147   my $discount_subtotal = 0;
 
 149   my $subtotal_header = 0;
 
 152   $form->{discount} = [];
 
 154   # get some values of parts from db on store them in extra array,
 
 155   # so that they can be sorted in later
 
 156   my %prepared_template_arrays = IC->prepare_parts_for_printing(myconfig => $myconfig, form => $form);
 
 157   my @prepared_arrays          = keys %prepared_template_arrays;
 
 158   my @separate_totals          = qw(non_separate_subtotal);
 
 160   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 161   my $project_cvar_configs = CVar->get_configs(module => 'Projects');
 
 164     qw(runningnumber number description longdescription qty qty_nofmt unit bin
 
 165        deliverydate_oe ordnumber_oe donumber_do transdate_oe invnumber invdate
 
 166        partnotes serialnumber reqdate sellprice sellprice_nofmt listprice listprice_nofmt netprice netprice_nofmt
 
 167        discount discount_nofmt p_discount discount_sub discount_sub_nofmt nodiscount_sub nodiscount_sub_nofmt
 
 168        linetotal linetotal_nofmt nodiscount_linetotal nodiscount_linetotal_nofmt tax_rate projectnumber projectdescription
 
 169        price_factor price_factor_name partsgroup weight weight_nofmt lineweight lineweight_nofmt);
 
 171   push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 172   push @arrays, map { "project_cvar_$_->{name}" } @{ $project_cvar_configs };
 
 174   my @tax_arrays = qw(taxbase tax taxdescription taxrate taxnumber tax_id);
 
 176   my @payment_arrays = qw(payment paymentaccount paymentdate paymentsource paymentmemo);
 
 178   map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays, @tax_arrays, @payment_arrays, @prepared_arrays);
 
 181   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
 
 184     if ($item->[1] ne $sameitem) {
 
 185       push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'partsgroup');
 
 186       push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, qq|$item->[1]|);
 
 187       $sameitem = $item->[1];
 
 189       map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 192     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 194     if ($form->{"id_$i"} != 0) {
 
 196       # Prepare linked items for printing
 
 197       if ( $form->{"invoice_id_$i"} ) {
 
 199         require SL::DB::InvoiceItem;
 
 200         my $invoice_item = SL::DB::Manager::InvoiceItem->find_by( id => $form->{"invoice_id_$i"} );
 
 201         my $linkeditems  = $invoice_item->linked_records( direction => 'from', recursive => 1 );
 
 203         # check for (recursively) linked sales quotation items, sales order
 
 204         # items and sales delivery order items.
 
 206         # The checks for $form->{"ordnumber_$i"} and quo and do are for the old
 
 207         # behaviour, where this data was stored in its own database fields in
 
 208         # the invoice items, and there were no record links for the items.
 
 210         # If this information were to be fetched in retrieve_invoice, e.g. for showing
 
 211         # this information in the second row, then these fields will already have
 
 212         # been set and won't be calculated again. This shouldn't be done there
 
 213         # though, as each invocation creates several database calls per item, and would
 
 214         # make the interface very slow for many items. So currently these
 
 215         # requests are only made when printing the record.
 
 217         # When using the workflow an invoice item can only be (recursively) linked to at
 
 218         # most one sales quotation item and at most one delivery order item.  But it may
 
 219         # be linked back to several order items, if collective orders were involved. If
 
 220         # that is the case we will always choose the very first order item from the
 
 221         # original order, i.e. where it first appeared in an order.
 
 223         # TODO: credit note items aren't checked for a record link to their
 
 226         unless ( $form->{"ordnumber_$i"} ) {
 
 228           # $form->{"ordnumber_$i"} comes from ordnumber in invoice, if an
 
 229           # entry exists this must be from before the change from ordnumber to linked items.
 
 230           # So we just use that value and don't check for linked items.
 
 231           # In that case there won't be any links for quo or do items either
 
 233           # sales order items are fetched and sorted by id, the lowest id is first
 
 234           # It is assumed that the id always grows, so the item we want (the original) will have the lowest id
 
 235           # better solution: filter the order_item that doesn't have any links from other order_items
 
 236           #                  or maybe fetch linked_records with param save_path and order by _record_length_depth
 
 237           my @linked_orderitems = grep { $_->isa("SL::DB::OrderItem") && $_->record->type eq 'sales_order' } @{$linkeditems};
 
 238           if ( scalar @linked_orderitems ) {
 
 239             @linked_orderitems = sort { $a->id <=> $b->id } @linked_orderitems;
 
 240             my $orderitem = $linked_orderitems[0]; # 0: the original order item, -1: the last collective order item
 
 242             $form->{"ordnumber_$i"}       = $orderitem->record->record_number;
 
 243             $form->{"transdate_oe_$i"}    = $orderitem->record->transdate->to_kivitendo;
 
 244             $form->{"cusordnumber_oe_$i"} = $orderitem->record->cusordnumber;
 
 247           my @linked_quoitems = grep { $_->isa("SL::DB::OrderItem") && $_->record->type eq 'sales_quotation' } @{$linkeditems};
 
 248           if ( scalar @linked_quoitems ) {
 
 249             croak "an invoice item may only be linked back to 1 sales quotation item, something is wrong\n" unless scalar @linked_quoitems == 1;
 
 250             $form->{"quonumber_$i"}     = $linked_quoitems[0]->record->record_number;
 
 251             $form->{"transdate_quo_$i"} = $linked_quoitems[0]->record->transdate->to_kivitendo;
 
 254           my @linked_deliveryorderitems = grep { $_->isa("SL::DB::DeliveryOrderItem") && $_->record->type eq 'sales_delivery_order' } @{$linkeditems};
 
 255           if ( scalar @linked_deliveryorderitems ) {
 
 256             croak "an invoice item may only be linked back to 1 sales delivery item, something is wrong\n" unless scalar @linked_deliveryorderitems == 1;
 
 257             $form->{"donumber_$i"}     = $linked_deliveryorderitems[0]->record->record_number;
 
 258             $form->{"transdate_do_$i"} = $linked_deliveryorderitems[0]->record->transdate->to_kivitendo;
 
 264       # add number, description and qty to $form->{number},
 
 265       if ($form->{"subtotal_$i"} && !$subtotal_header) {
 
 266         $subtotal_header = $i;
 
 267         $position = int($position);
 
 270       } elsif ($subtotal_header) {
 
 272         $position = int($position);
 
 273         $position = $position.".".$subposition;
 
 275         $position = int($position);
 
 279       my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
 
 281       push(@{ $form->{TEMPLATE_ARRAYS}->{$_} },                $prepared_template_arrays{$_}[$i - 1]) for @prepared_arrays;
 
 283       push @{ $form->{TEMPLATE_ARRAYS}->{entry_type} },        'normal';
 
 284       push @{ $form->{TEMPLATE_ARRAYS}->{runningnumber} },     $position;
 
 285       push @{ $form->{TEMPLATE_ARRAYS}->{number} },            $form->{"partnumber_$i"};
 
 286       push @{ $form->{TEMPLATE_ARRAYS}->{serialnumber} },      $form->{"serialnumber_$i"};
 
 287       push @{ $form->{TEMPLATE_ARRAYS}->{bin} },               $form->{"bin_$i"};
 
 288       push @{ $form->{TEMPLATE_ARRAYS}->{partnotes} },         $form->{"partnotes_$i"};
 
 289       push @{ $form->{TEMPLATE_ARRAYS}->{description} },       $form->{"description_$i"};
 
 290       push @{ $form->{TEMPLATE_ARRAYS}->{longdescription} },   $form->{"longdescription_$i"};
 
 291       push @{ $form->{TEMPLATE_ARRAYS}->{qty} },               $form->format_amount($myconfig, $form->{"qty_$i"});
 
 292       push @{ $form->{TEMPLATE_ARRAYS}->{qty_nofmt} },         $form->{"qty_$i"};
 
 293       push @{ $form->{TEMPLATE_ARRAYS}->{unit} },              $form->{"unit_$i"};
 
 294       push @{ $form->{TEMPLATE_ARRAYS}->{deliverydate_oe} },   $form->{"reqdate_$i"};
 
 295       push @{ $form->{TEMPLATE_ARRAYS}->{sellprice} },         $form->{"sellprice_$i"};
 
 296       push @{ $form->{TEMPLATE_ARRAYS}->{sellprice_nofmt} },   $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 297       # linked item print variables
 
 298       push @{ $form->{TEMPLATE_ARRAYS}->{quonumber_quo} },     $form->{"quonumber_$i"};
 
 299       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_quo} },     $form->{"transdate_quo_$i"};
 
 300       push @{ $form->{TEMPLATE_ARRAYS}->{ordnumber_oe} },      $form->{"ordnumber_$i"};
 
 301       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_oe} },      $form->{"transdate_oe_$i"};
 
 302       push @{ $form->{TEMPLATE_ARRAYS}->{cusordnumber_oe} },   $form->{"cusordnumber_oe_$i"};
 
 303       push @{ $form->{TEMPLATE_ARRAYS}->{donumber_do} },       $form->{"donumber_$i"};
 
 304       push @{ $form->{TEMPLATE_ARRAYS}->{transdate_do} },      $form->{"transdate_do_$i"};
 
 306       push @{ $form->{TEMPLATE_ARRAYS}->{invnumber} },         $form->{"invnumber"};
 
 307       push @{ $form->{TEMPLATE_ARRAYS}->{invdate} },           $form->{"invdate"};
 
 308       push @{ $form->{TEMPLATE_ARRAYS}->{price_factor} },      $price_factor->{formatted_factor};
 
 309       push @{ $form->{TEMPLATE_ARRAYS}->{price_factor_name} }, $price_factor->{description};
 
 310       push @{ $form->{TEMPLATE_ARRAYS}->{partsgroup} },        $form->{"partsgroup_$i"};
 
 311       push @{ $form->{TEMPLATE_ARRAYS}->{reqdate} },           $form->{"reqdate_$i"};
 
 312       push @{ $form->{TEMPLATE_ARRAYS}->{listprice} },         $form->format_amount($myconfig, $form->{"listprice_$i"}, 2);
 
 313       push(@{ $form->{TEMPLATE_ARRAYS}->{listprice_nofmt} },   $form->{"listprice_$i"});
 
 315       my $sellprice     = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 316       my ($dec)         = ($sellprice =~ /\.(\d+)/);
 
 317       my $decimalplaces = max 2, length($dec);
 
 319       my $parsed_discount            = $form->parse_amount($myconfig, $form->{"discount_$i"});
 
 321       my $linetotal_exact            = $form->{"qty_$i"} * $sellprice * (100 - $parsed_discount) / 100 / $price_factor->{factor};
 
 322       my $linetotal                  = $form->round_amount($linetotal_exact, 2);
 
 324       my $nodiscount_exact_linetotal = $form->{"qty_$i"} * $sellprice                                  / $price_factor->{factor};
 
 325       my $nodiscount_linetotal       = $form->round_amount($nodiscount_exact_linetotal,2);
 
 327       my $discount                   = $nodiscount_linetotal - $linetotal; # is always rounded because $nodiscount_linetotal and $linetotal are rounded
 
 329       my $discount_round_error       = $discount + ($linetotal_exact - $nodiscount_exact_linetotal); # not used
 
 331       $form->{"netprice_$i"}   = $form->round_amount($form->{"qty_$i"} ? ($linetotal / $form->{"qty_$i"}) : 0, $decimalplaces);
 
 333       push @{ $form->{TEMPLATE_ARRAYS}->{netprice} },       ($form->{"netprice_$i"} != 0) ? $form->format_amount($myconfig, $form->{"netprice_$i"}, $decimalplaces) : '';
 
 334       push @{ $form->{TEMPLATE_ARRAYS}->{netprice_nofmt} }, ($form->{"netprice_$i"} != 0) ? $form->{"netprice_$i"} : '';
 
 336       $linetotal = ($linetotal != 0) ? $linetotal : '';
 
 338       push @{ $form->{TEMPLATE_ARRAYS}->{discount} },       ($discount != 0) ? $form->format_amount($myconfig, $discount * -1, 2) : '';
 
 339       push @{ $form->{TEMPLATE_ARRAYS}->{discount_nofmt} }, ($discount != 0) ? $discount * -1 : '';
 
 340       push @{ $form->{TEMPLATE_ARRAYS}->{p_discount} },     $form->{"discount_$i"};
 
 342       if ( $prepared_template_arrays{separate}[$i - 1]  ) {
 
 343         my $pabbr = $prepared_template_arrays{separate}[$i - 1];
 
 344         if ( ! $form->{"separate_${pabbr}_subtotal"} ) {
 
 345             push @separate_totals , "separate_${pabbr}_subtotal";
 
 346             $form->{"separate_${pabbr}_subtotal"} = 0;
 
 348         $form->{"separate_${pabbr}_subtotal"} += $linetotal;
 
 350         $form->{non_separate_subtotal} += $linetotal;
 
 353       $form->{total}            += $linetotal;
 
 354       $form->{nodiscount_total} += $nodiscount_linetotal;
 
 355       $form->{discount_total}   += $discount;
 
 357       if ($subtotal_header) {
 
 358         $discount_subtotal   += $linetotal;
 
 359         $nodiscount_subtotal += $nodiscount_linetotal;
 
 362       if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
 
 363         push @{ $form->{TEMPLATE_ARRAYS}->{discount_sub} },         $form->format_amount($myconfig, $discount_subtotal,   2);
 
 364         push @{ $form->{TEMPLATE_ARRAYS}->{discount_sub_nofmt} },   $discount_subtotal;
 
 365         push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_sub} },       $form->format_amount($myconfig, $nodiscount_subtotal, 2);
 
 366         push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_sub_nofmt} }, $nodiscount_subtotal;
 
 368         $discount_subtotal   = 0;
 
 369         $nodiscount_subtotal = 0;
 
 370         $subtotal_header     = 0;
 
 373         push @{ $form->{TEMPLATE_ARRAYS}->{$_} }, "" for qw(discount_sub nodiscount_sub discount_sub_nofmt nodiscount_sub_nofmt);
 
 376       if (!$form->{"discount_$i"}) {
 
 377         $nodiscount += $linetotal;
 
 380       push @{ $form->{TEMPLATE_ARRAYS}->{linetotal} },                  $form->format_amount($myconfig, $linetotal, 2);
 
 381       push @{ $form->{TEMPLATE_ARRAYS}->{linetotal_nofmt} },            $linetotal_exact;
 
 382       push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_linetotal} },       $form->format_amount($myconfig, $nodiscount_linetotal, 2);
 
 383       push @{ $form->{TEMPLATE_ARRAYS}->{nodiscount_linetotal_nofmt} }, $nodiscount_linetotal;
 
 385       my $project = $projects_by_id{$form->{"project_id_$i"}} || SL::DB::Project->new;
 
 387       push @{ $form->{TEMPLATE_ARRAYS}->{projectnumber} },              $project->projectnumber;
 
 388       push @{ $form->{TEMPLATE_ARRAYS}->{projectdescription} },         $project->description;
 
 390       my $lineweight = $form->{"qty_$i"} * $form->{"weight_$i"};
 
 391       $totalweight += $lineweight;
 
 392       push @{ $form->{TEMPLATE_ARRAYS}->{weight} },            $form->format_amount($myconfig, $form->{"weight_$i"}, 3);
 
 393       push @{ $form->{TEMPLATE_ARRAYS}->{weight_nofmt} },      $form->{"weight_$i"};
 
 394       push @{ $form->{TEMPLATE_ARRAYS}->{lineweight} },        $form->format_amount($myconfig, $lineweight, 3);
 
 395       push @{ $form->{TEMPLATE_ARRAYS}->{lineweight_nofmt} },  $lineweight;
 
 397       @taxaccounts = split(/ /, $form->{"taxaccounts_$i"});
 
 401       map { $taxrate += $form->{"${_}_rate"} } @taxaccounts;
 
 403       if ($form->{taxincluded}) {
 
 406         $taxamount = $linetotal * $taxrate / (1 + $taxrate);
 
 407         $taxbase = $linetotal - $taxamount;
 
 409         $taxamount = $linetotal * $taxrate;
 
 410         $taxbase   = $linetotal;
 
 413       if ($form->round_amount($taxrate, 7) == 0) {
 
 414         if ($form->{taxincluded}) {
 
 415           foreach my $accno (@taxaccounts) {
 
 416             $taxamount            = $form->round_amount($linetotal * $form->{"${accno}_rate"} / (1 + abs($form->{"${accno}_rate"})), 2);
 
 418             $taxaccounts{$accno} += $taxamount;
 
 419             $taxdiff             += $taxamount;
 
 421             $taxbase{$accno}     += $taxbase;
 
 423           $taxaccounts{ $taxaccounts[0] } += $taxdiff;
 
 425           foreach my $accno (@taxaccounts) {
 
 426             $taxaccounts{$accno} += $linetotal * $form->{"${accno}_rate"};
 
 427             $taxbase{$accno}     += $taxbase;
 
 431         foreach my $accno (@taxaccounts) {
 
 432           $taxaccounts{$accno} += $taxamount * $form->{"${accno}_rate"} / $taxrate;
 
 433           $taxbase{$accno}     += $taxbase;
 
 436       my $tax_rate = $taxrate * 100;
 
 437       push(@{ $form->{TEMPLATE_ARRAYS}->{tax_rate} }, qq|$tax_rate|);
 
 438       if ($form->{"part_type_$i"} eq 'assembly') {
 
 441         # get parts and push them onto the stack
 
 443         if ($form->{groupitems}) {
 
 445             qq|ORDER BY pg.partsgroup, a.position|;
 
 447           $sortorder = qq|ORDER BY a.position|;
 
 451           qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
 
 453              JOIN parts p ON (a.parts_id = p.id)
 
 454              LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 455              WHERE (a.bom = '1') AND (a.id = ?) $sortorder|;
 
 456         $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 458         while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
 459           if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
 
 460             map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 461             $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
 
 462             push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'assembly-item-partsgroup');
 
 463             push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $sameitem);
 
 466           map { $form->{"a_$_"} = $ref->{$_} } qw(partnumber description);
 
 468           push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'assembly-item');
 
 469           push(@{ $form->{TEMPLATE_ARRAYS}->{description} },
 
 470                $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}
 
 472                  . qq| -- $form->{"a_partnumber"}, $form->{"a_description"}|);
 
 473           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" } (@arrays, @prepared_arrays)));
 
 479       CVar->get_non_editable_ic_cvars(form               => $form,
 
 482                                       sub_module         => 'invoice',
 
 483                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
 
 485       push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} },
 
 486         CVar->format_to_template(CVar->parse($form->{"ic_cvar_$_->{name}_$i"}, $_), $_)
 
 487           for @{ $ic_cvar_configs };
 
 489       push @{ $form->{TEMPLATE_ARRAYS}->{"project_cvar_" . $_->config->name} }, $_->value_as_text for @{ $project->cvars_by_config };
 
 493   $form->{totalweight}       = $form->format_amount($myconfig, $totalweight, 3);
 
 494   $form->{totalweight_nofmt} = $totalweight;
 
 495   my $defaults = AM->get_defaults();
 
 496   $form->{weightunit}        = $defaults->{weightunit};
 
 498   foreach my $item (sort keys %taxaccounts) {
 
 499     $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2);
 
 501     push(@{ $form->{TEMPLATE_ARRAYS}->{taxbase} },        $form->format_amount($myconfig, $taxbase{$item}, 2));
 
 502     push(@{ $form->{TEMPLATE_ARRAYS}->{taxbase_nofmt} },  $taxbase{$item});
 
 503     push(@{ $form->{TEMPLATE_ARRAYS}->{tax} },            $form->format_amount($myconfig, $taxamount,      2));
 
 504     push(@{ $form->{TEMPLATE_ARRAYS}->{tax_nofmt} },      $taxamount );
 
 505     push(@{ $form->{TEMPLATE_ARRAYS}->{taxrate} },        $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));
 
 506     push(@{ $form->{TEMPLATE_ARRAYS}->{taxrate_nofmt} },  $form->{"${item}_rate"} * 100);
 
 507     push(@{ $form->{TEMPLATE_ARRAYS}->{taxnumber} },      $form->{"${item}_taxnumber"});
 
 508     push(@{ $form->{TEMPLATE_ARRAYS}->{tax_id} },         $form->{"${item}_tax_id"});
 
 510     # taxnumber (= accno) is used for grouping the amounts of the various taxes and as a prefix in form
 
 512     # This code used to assume that at most one tax entry can point to the same
 
 513     # chart_id, even though chart_id does not have a unique constraint!
 
 515     # This chart_id was then looked up via its accno, which is the key that is
 
 516     # used to group the different taxes by for a record
 
 518     # As we now also store the tax_id we can use that to look up the tax
 
 519     # instead, this is only done here to get the (translated) taxdescription.
 
 521     if ( $form->{"${item}_tax_id"} ) {
 
 522       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"};
 
 523       my $description = $tax_obj ? $tax_obj->translated_attribute('taxdescription',  $form->{language_id}, 0) : '';
 
 524       push(@{ $form->{TEMPLATE_ARRAYS}->{taxdescription} }, $description . q{ } . 100 * $form->{"${item}_rate"} . q{%});
 
 529   for my $i (1 .. $form->{paidaccounts}) {
 
 530     if ($form->{"paid_$i"}) {
 
 531       my ($accno, $description) = split(/--/, $form->{"AR_paid_$i"});
 
 533       push(@{ $form->{TEMPLATE_ARRAYS}->{payment} },        $form->{"paid_$i"});
 
 534       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentaccount} }, $description);
 
 535       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentdate} },    $form->{"datepaid_$i"});
 
 536       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentsource} },  $form->{"source_$i"});
 
 537       push(@{ $form->{TEMPLATE_ARRAYS}->{paymentmemo} },    $form->{"memo_$i"});
 
 539       $form->{paid} += $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 542   if($form->{taxincluded}) {
 
 543     $form->{subtotal}       = $form->format_amount($myconfig, $form->{total} - $tax, 2);
 
 544     $form->{subtotal_nofmt} = $form->{total} - $tax;
 
 547     $form->{subtotal}       = $form->format_amount($myconfig, $form->{total}, 2);
 
 548     $form->{subtotal_nofmt} = $form->{total};
 
 551   $form->{nodiscount_subtotal} = $form->format_amount($myconfig, $form->{nodiscount_total}, 2);
 
 552   $form->{discount_total}      = $form->format_amount($myconfig, $form->{discount_total}, 2);
 
 553   $form->{nodiscount}          = $form->format_amount($myconfig, $nodiscount, 2);
 
 554   $form->{yesdiscount}         = $form->format_amount($myconfig, $form->{nodiscount_total} - $nodiscount, 2);
 
 556   my $grossamount = ($form->{taxincluded}) ? $form->{total} : $form->{total} + $tax;
 
 557   $form->{invtotal} = $form->round_amount($grossamount, 2, 1);
 
 558   $form->{rounding} = $form->round_amount(
 
 559     $form->{invtotal} - $form->round_amount($grossamount, 2),
 
 563   $form->{rounding} = $form->format_amount($myconfig, $form->{rounding}, 2);
 
 564   $form->{total}    = $form->format_amount($myconfig, $form->{invtotal} - $form->{paid}, 2);
 
 565   $form->{invtotal} = $form->format_amount($myconfig, $form->{invtotal}, 2);
 
 566   $form->{paid}     = $form->format_amount($myconfig, $form->{paid}, 2);
 
 568   $form->set_payment_options($myconfig, $form->{invdate}, 'sales_invoice');
 
 570   $form->{department}    = SL::DB::Manager::Department->find_by(id => $form->{department_id})->description if $form->{department_id};
 
 571   $form->{delivery_term} = SL::DB::Manager::DeliveryTerm->find_by(id => $form->{delivery_term_id} || undef);
 
 572   $form->{delivery_term}->description_long($form->{delivery_term}->translated_attribute('description_long', $form->{language_id})) if $form->{delivery_term} && $form->{language_id};
 
 574   $form->{username} = $myconfig->{name};
 
 575   $form->{$_} = $form->format_amount($myconfig, $form->{$_}, 2) for @separate_totals;
 
 577   $main::lxdebug->leave_sub();
 
 580 sub customer_details {
 
 581   $main::lxdebug->enter_sub();
 
 583   my ($self, $myconfig, $form, @wanted_vars) = @_;
 
 585   # connect to database
 
 586   my $dbh = $form->get_standard_dbh;
 
 588   my $language_id = $form->{language_id};
 
 590   # get contact id, set it if nessessary
 
 593   my @values =  (conv_i($form->{customer_id}));
 
 596   if ($form->{cp_id}) {
 
 597     $where = qq| AND (cp.cp_id = ?) |;
 
 598     push(@values, conv_i($form->{cp_id}));
 
 601   # get rest for the customer
 
 603     qq|SELECT ct.*, cp.*, ct.notes as customernotes,
 
 604          ct.phone AS customerphone, ct.fax AS customerfax, ct.email AS customeremail,
 
 607        LEFT JOIN contacts cp on ct.id = cp.cp_cv_id
 
 608        LEFT JOIN currencies cu ON (ct.currency_id = cu.id)
 
 609        WHERE (ct.id = ?) $where
 
 612   my $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
 613   # we have no values, probably a invalid contact person. hotfix and first idea for issue #10
 
 615     my $customer = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id});
 
 617       $ref->{name} = $customer->name;
 
 618       $ref->{street} = $customer->street;
 
 619       $ref->{zipcode} = $customer->zipcode;
 
 620       $ref->{country} = $customer->country;
 
 621       $ref->{gln} = $customer->gln;
 
 623     my $contact = SL::DB::Manager::Contact->find_by(cp_id => $::form->{cp_id});
 
 625       $ref->{cp_name} = $contact->cp_name;
 
 626       $ref->{cp_givenname} = $contact->cp_givenname;
 
 627       $ref->{cp_gender} = $contact->cp_gender;
 
 630   # remove id,notes (double of customernotes) and taxincluded before copy back
 
 631   delete @$ref{qw(id taxincluded notes)};
 
 633   @wanted_vars = grep({ $_ } @wanted_vars);
 
 634   if (scalar(@wanted_vars) > 0) {
 
 636     map({ $h_wanted_vars{$_} = 1; } @wanted_vars);
 
 637     map({ delete($ref->{$_}) unless ($h_wanted_vars{$_}); } keys(%{$ref}));
 
 640   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 642   if ($form->{delivery_customer_id}) {
 
 644       qq|SELECT *, notes as customernotes
 
 648     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_customer_id}));
 
 650     map { $form->{"dc_$_"} = $ref->{$_} } keys %$ref;
 
 653   if ($form->{delivery_vendor_id}) {
 
 655       qq|SELECT *, notes as customernotes
 
 659     $ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{delivery_vendor_id}));
 
 661     map { $form->{"dv_$_"} = $ref->{$_} } keys %$ref;
 
 664   my $custom_variables = CVar->get_custom_variables('dbh'      => $dbh,
 
 666                                                     'trans_id' => $form->{customer_id});
 
 667   map { $form->{"vc_cvar_$_->{name}"} = $_->{value} } @{ $custom_variables };
 
 669   if ($form->{cp_id}) {
 
 670     $custom_variables = CVar->get_custom_variables(dbh      => $dbh,
 
 671                                                    module   => 'Contacts',
 
 672                                                    trans_id => $form->{cp_id});
 
 673     $form->{"cp_cvar_$_->{name}"} = $_->{value} for @{ $custom_variables };
 
 676   $form->{cp_greeting} = GenericTranslations->get('dbh'              => $dbh,
 
 677                                                   'translation_type' => 'greetings::' . ($form->{cp_gender} eq 'f' ? 'female' : 'male'),
 
 678                                                   'language_id'      => $language_id,
 
 679                                                   'allow_fallback'   => 1);
 
 682   $main::lxdebug->leave_sub();
 
 686   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
 
 687   $main::lxdebug->enter_sub();
 
 689   my $rc = SL::DB->client->with_transaction(\&_post_invoice, $self, $myconfig, $form, $provided_dbh, %params);
 
 691   $::lxdebug->leave_sub;
 
 696   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
 
 698   my $payments_only = $params{payments_only};
 
 699   my $dbh = $provided_dbh || SL::DB->client->dbh;
 
 700   my $restricter = SL::HTML::Restrict->create;
 
 702   my ($query, $sth, $null, $project_id, @values);
 
 703   my $exchangerate = 0;
 
 705   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
 
 708   if (!$form->{employee_id}) {
 
 709     $form->get_employee($dbh);
 
 712   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
 
 713   my $defaultcurrency = $form->{defaultcurrency};
 
 715   my $all_units = AM->retrieve_units($myconfig, $form);
 
 717   if (!$payments_only) {
 
 718     if ($form->{storno}) {
 
 719       _delete_transfers($dbh, $form, $form->{storno_id});
 
 722       &reverse_invoice($dbh, $form);
 
 723       _delete_transfers($dbh, $form, $form->{id});
 
 726       my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, save => 1);
 
 727       $form->{invnumber} = $trans_number->create_unique unless $trans_number->is_unique;
 
 729       $query = qq|SELECT nextval('glid')|;
 
 730       ($form->{"id"}) = selectrow_query($form, $dbh, $query);
 
 732       $query = qq|INSERT INTO ar (id, invnumber, currency_id, taxzone_id) VALUES (?, ?, (SELECT id FROM currencies WHERE name=?), ?)|;
 
 733       do_query($form, $dbh, $query, $form->{"id"}, $form->{"id"}, $form->{currency}, $form->{taxzone_id});
 
 735       if (!$form->{invnumber}) {
 
 736         my $trans_number   = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{invnumber}, id => $form->{id});
 
 737         $form->{invnumber} = $trans_number->create_unique;
 
 742   my ($netamount, $invoicediff) = (0, 0);
 
 743   my ($amount, $linetotal, $lastincomeaccno);
 
 745   if ($form->{currency} eq $defaultcurrency) {
 
 746     $form->{exchangerate} = 1;
 
 748     $exchangerate = $form->check_exchangerate($myconfig, $form->{currency}, $form->{invdate}, 'buy');
 
 751   $form->{exchangerate} =
 
 754     : $form->parse_amount($myconfig, $form->{exchangerate});
 
 756   $form->{expense_inventory} = "";
 
 760   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
 761   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 764   $form->{amount}      = {};
 
 765   $form->{amount_cogs} = {};
 
 767   my @processed_invoice_ids;
 
 769   foreach my $i (1 .. $form->{rowcount}) {
 
 770     if ($form->{type} eq "credit_note") {
 
 771       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"}) * -1;
 
 772       $form->{shipped} = 1;
 
 774       $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 779     $form->{"marge_percent_$i"} = $form->parse_amount($myconfig, $form->{"marge_percent_$i"}) * 1;
 
 780     $form->{"marge_absolut_$i"} = $form->parse_amount($myconfig, $form->{"marge_absolut_$i"}) * 1;
 
 781     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"}) * 1;
 
 783     if ($form->{storno}) {
 
 784       $form->{"qty_$i"} *= -1;
 
 787     if ($form->{"id_$i"}) {
 
 791       if (defined($baseunits{$form->{"id_$i"}})) {
 
 792         $item_unit = $baseunits{$form->{"id_$i"}};
 
 795         $query = qq|SELECT unit FROM parts WHERE id = ?|;
 
 796         ($item_unit) = selectrow_query($form, $dbh, $query, conv_i($form->{"id_$i"}));
 
 797         $baseunits{$form->{"id_$i"}} = $item_unit;
 
 800       if (defined($all_units->{$item_unit}->{factor})
 
 801           && ($all_units->{$item_unit}->{factor} ne '')
 
 802           && ($all_units->{$item_unit}->{factor} != 0)) {
 
 803         $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
 
 807       $baseqty = $form->{"qty_$i"} * $basefactor;
 
 809       my ($allocated, $taxrate) = (0, 0);
 
 813       map { $taxrate += $form->{"${_}_rate"} } split(/ /, $form->{"taxaccounts_$i"});
 
 815       # keep entered selling price
 
 817         $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 819       my ($dec) = ($fxsellprice =~ /\.(\d+)/);
 
 821       my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 823       # undo discount formatting
 
 824       $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
 
 827       $form->{"sellprice_$i"} = $fxsellprice * (1 - $form->{"discount_$i"});
 
 829       # round linetotal to 2 decimal places
 
 830       $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
 
 831       $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
 
 833       if ($form->{taxincluded}) {
 
 834         $taxamount = $linetotal * ($taxrate / (1 + $taxrate));
 
 835         $form->{"sellprice_$i"} =
 
 836           $form->{"sellprice_$i"} * (1 / (1 + $taxrate));
 
 838         $taxamount = $linetotal * $taxrate;
 
 841       $netamount += $linetotal;
 
 843       if ($taxamount != 0) {
 
 845           $form->{amount}{ $form->{id} }{$_} +=
 
 846             $taxamount * $form->{"${_}_rate"} / $taxrate
 
 847         } split(/ /, $form->{"taxaccounts_$i"});
 
 850       # add amount to income, $form->{amount}{trans_id}{accno}
 
 851       $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * $form->{exchangerate} / $price_factor;
 
 853       $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2) * $form->{exchangerate};
 
 854       $linetotal = $form->round_amount($linetotal, 2);
 
 856       # this is the difference from the inventory
 
 857       $invoicediff += ($amount - $linetotal);
 
 859       $form->{amount}{ $form->{id} }{ $form->{"income_accno_$i"} } +=
 
 862       $lastincomeaccno = $form->{"income_accno_$i"};
 
 864       # adjust and round sellprice
 
 865       $form->{"sellprice_$i"} =
 
 866         $form->round_amount($form->{"sellprice_$i"} * $form->{exchangerate},
 
 869       next if $payments_only;
 
 871       if ($form->{"inventory_accno_$i"} || $form->{"part_type_$i"} eq 'assembly') {
 
 873         if ($form->{"part_type_$i"} eq 'assembly') {
 
 874           # record assembly item as allocated
 
 875           &process_assembly($dbh, $myconfig, $form, $position, $form->{"id_$i"}, $baseqty);
 
 878           $allocated = &cogs($dbh, $myconfig, $form, $form->{"id_$i"}, $baseqty, $basefactor, $i);
 
 882       # Get pricegroup_id and save it. Unfortunately the interface
 
 883       # also uses ID "0" for signalling that none is selected, but "0"
 
 884       # must not be stored in the database. Therefore we cannot simply
 
 886       ($null, my $pricegroup_id) = split(/--/, $form->{"sellprice_pg_$i"});
 
 888       $pricegroup_id  = undef if !$pricegroup_id;
 
 890       CVar->get_non_editable_ic_cvars(form               => $form,
 
 893                                       sub_module         => 'invoice',
 
 894                                       may_converted_from => ['delivery_order_items', 'orderitems', 'invoice']);
 
 896       if (!$form->{"invoice_id_$i"}) {
 
 897         # there is no persistent id, therefore create one with all necessary constraints
 
 898         my $q_invoice_id = qq|SELECT nextval('invoiceid')|;
 
 899         my $h_invoice_id = prepare_query($form, $dbh, $q_invoice_id);
 
 900         do_statement($form, $h_invoice_id, $q_invoice_id);
 
 901         $form->{"invoice_id_$i"}  = $h_invoice_id->fetchrow_array();
 
 902         my $q_create_invoice_id = qq|INSERT INTO invoice (id, trans_id, position, parts_id) values (?, ?, ?, ?)|;
 
 903         do_query($form, $dbh, $q_create_invoice_id, conv_i($form->{"invoice_id_$i"}),
 
 904                  conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}));
 
 905         $h_invoice_id->finish();
 
 908       # save detail record in invoice table
 
 910         UPDATE invoice SET trans_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?,
 
 911                            sellprice = ?, fxsellprice = ?, discount = ?, allocated = ?, assemblyitem = ?,
 
 912                            unit = ?, deliverydate = ?, project_id = ?, serialnumber = ?, pricegroup_id = ?,
 
 913                            base_qty = ?, subtotal = ?,
 
 914                            marge_percent = ?, marge_total = ?, lastcost = ?, active_price_source = ?, active_discount_source = ?,
 
 915                            price_factor_id = ?, price_factor = (SELECT factor FROM price_factors WHERE id = ?), marge_price_factor = ?
 
 919       @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
 
 920                  $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}), $form->{"qty_$i"},
 
 921                  $form->{"sellprice_$i"}, $fxsellprice,
 
 922                  $form->{"discount_$i"}, $allocated, 'f',
 
 923                  $form->{"unit_$i"}, conv_date($form->{"reqdate_$i"}), conv_i($form->{"project_id_$i"}),
 
 924                  $form->{"serialnumber_$i"}, $pricegroup_id,
 
 925                  $baseqty, $form->{"subtotal_$i"} ? 't' : 'f',
 
 926                  $form->{"marge_percent_$i"}, $form->{"marge_absolut_$i"},
 
 927                  $form->{"lastcost_$i"},
 
 928                  $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
 
 929                  conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
 
 930                  conv_i($form->{"marge_price_factor_$i"}),
 
 931                  conv_i($form->{"invoice_id_$i"}));
 
 932       do_query($form, $dbh, $query, @values);
 
 933       push @processed_invoice_ids, $form->{"invoice_id_$i"};
 
 935       CVar->save_custom_variables(module       => 'IC',
 
 936                                   sub_module   => 'invoice',
 
 937                                   trans_id     => $form->{"invoice_id_$i"},
 
 938                                   configs      => $ic_cvar_configs,
 
 940                                   name_prefix  => 'ic_',
 
 941                                   name_postfix => "_$i",
 
 944     # link previous items with invoice items
 
 945     foreach (qw(delivery_order_items orderitems invoice)) {
 
 946       if (!$form->{useasnew} && $form->{"converted_from_${_}_id_$i"}) {
 
 947         RecordLinks->create_links('dbh'        => $dbh,
 
 950                                   'from_ids'   => $form->{"converted_from_${_}_id_$i"},
 
 951                                   'to_table'   => 'invoice',
 
 952                                   'to_id'      => $form->{"invoice_id_$i"},
 
 955       delete $form->{"converted_from_${_}_id_$i"};
 
 959   # total payments, don't move we need it here
 
 960   for my $i (1 .. $form->{paidaccounts}) {
 
 961     if ($form->{type} eq "credit_note") {
 
 962       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"}) * -1;
 
 964       $form->{"paid_$i"} = $form->parse_amount($myconfig, $form->{"paid_$i"});
 
 966     $form->{paid} += $form->{"paid_$i"};
 
 967     $form->{datepaid} = $form->{"datepaid_$i"} if ($form->{"datepaid_$i"});
 
 970   my ($tax, $diff) = (0, 0);
 
 972   $netamount = $form->round_amount($netamount, 2);
 
 974   # figure out rounding errors for total amount vs netamount + taxes
 
 975   if ($form->{taxincluded}) {
 
 977     $amount = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
 978     $diff += $amount - $netamount * $form->{exchangerate};
 
 979     $netamount = $amount;
 
 981     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
 982       $amount = $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate};
 
 983       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
 984       $tax += $form->{amount}{ $form->{id} }{$item};
 
 985       $netamount -= $form->{amount}{ $form->{id} }{$item};
 
 988     $invoicediff += $diff;
 
 989     ######## this only applies to tax included
 
 990     if ($lastincomeaccno) {
 
 991       $form->{amount}{ $form->{id} }{$lastincomeaccno} += $invoicediff;
 
 995     $amount    = $form->round_amount($netamount * $form->{exchangerate}, 2);
 
 996     $diff      = $amount - $netamount * $form->{exchangerate};
 
 997     $netamount = $amount;
 
 998     foreach my $item (split(/ /, $form->{taxaccounts})) {
 
 999       $form->{amount}{ $form->{id} }{$item} =
 
1000         $form->round_amount($form->{amount}{ $form->{id} }{$item}, 2);
 
1002         $form->round_amount(
 
1003                  $form->{amount}{ $form->{id} }{$item} * $form->{exchangerate},
 
1006         $amount - $form->{amount}{ $form->{id} }{$item} *
 
1007         $form->{exchangerate};
 
1008       $form->{amount}{ $form->{id} }{$item} = $form->round_amount($amount, 2);
 
1009       $tax += $form->{amount}{ $form->{id} }{$item};
 
1013   # Invoice Summary includes Rounding
 
1014   my $grossamount = $netamount + $tax;
 
1015   my $rounding = $form->round_amount(
 
1016     $form->round_amount($grossamount, 2, 1) - $form->round_amount($grossamount, 2),
 
1019   my $rnd_accno = $rounding == 0 ? 0
 
1020                 : $rounding > 0  ? $form->{rndgain_accno}
 
1021                 :                  $form->{rndloss_accno}
 
1023   $form->{amount}{ $form->{id} }{ $form->{AR} } = $form->round_amount($grossamount, 2, 1);
 
1024   $form->{paid} = $form->round_amount(
 
1025     $form->{paid} * $form->{exchangerate} + $diff,
 
1030   $form->{amount}{ $form->{id} }{ $form->{AR} } *= -1;
 
1032   # update exchangerate
 
1033   if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
1034     $form->update_exchangerate($dbh, $form->{currency}, $form->{invdate},
 
1035                                $form->{exchangerate}, 0);
 
1038   $project_id = conv_i($form->{"globalproject_id"});
 
1039   # entsprechend auch beim Bestimmen des Steuerschlüssels in Taxkey.pm berücksichtigen
 
1040   my $taxdate = $form->{deliverydate} ? $form->{deliverydate} : $form->{invdate};
 
1042   foreach my $trans_id (keys %{ $form->{amount_cogs} }) {
 
1043     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
 
1044       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
 
1046       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
 
1048       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
 
1050           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1051                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1052         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
 
1053         do_query($form, $dbh, $query, @values);
 
1054         $form->{amount_cogs}{$trans_id}{$accno} = 0;
 
1058     foreach my $accno (keys %{ $form->{amount_cogs}{$trans_id} }) {
 
1059       $form->{amount_cogs}{$trans_id}{$accno} = $form->round_amount($form->{amount_cogs}{$trans_id}{$accno}, 2);
 
1061       if (!$payments_only && ($form->{amount_cogs}{$trans_id}{$accno} != 0)) {
 
1063           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1064                VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1065         @values = (conv_i($trans_id), $accno, $form->{amount_cogs}{$trans_id}{$accno}, conv_date($form->{invdate}), conv_i($project_id), $accno);
 
1066         do_query($form, $dbh, $query, @values);
 
1071   foreach my $trans_id (keys %{ $form->{amount} }) {
 
1072     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
1073       next unless ($form->{expense_inventory} =~ /\Q$accno\E/);
 
1075       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
1077       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
1079           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1080              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1083                       WHERE chart_id= (SELECT id
 
1087                       ORDER BY startdate DESC LIMIT 1),
 
1090                       WHERE chart_id= (SELECT id
 
1094                       ORDER BY startdate DESC LIMIT 1),
 
1096                      (SELECT link FROM chart WHERE accno = ?))|;
 
1097         @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);
 
1098         do_query($form, $dbh, $query, @values);
 
1099         $form->{amount}{$trans_id}{$accno} = 0;
 
1103     foreach my $accno (keys %{ $form->{amount}{$trans_id} }) {
 
1104       $form->{amount}{$trans_id}{$accno} = $form->round_amount($form->{amount}{$trans_id}{$accno}, 2);
 
1106       if (!$payments_only && ($form->{amount}{$trans_id}{$accno} != 0)) {
 
1108           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1109              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1112                       WHERE chart_id= (SELECT id
 
1116                       ORDER BY startdate DESC LIMIT 1),
 
1119                       WHERE chart_id= (SELECT id
 
1123                       ORDER BY startdate DESC LIMIT 1),
 
1125                      (SELECT link FROM chart WHERE accno = ?))|;
 
1126         @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);
 
1127         do_query($form, $dbh, $query, @values);
 
1130     if (!$payments_only && ($rnd_accno != 0)) {
 
1132         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, chart_link)
 
1133              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT id FROM tax WHERE taxkey=0), 0, ?, (SELECT link FROM chart WHERE accno = ?))|;
 
1134       @values = (conv_i($trans_id), $rnd_accno, $rounding, conv_date($form->{invdate}), conv_i($project_id), $rnd_accno);
 
1135       do_query($form, $dbh, $query, @values);
 
1140   # deduct payment differences from diff
 
1141   for my $i (1 .. $form->{paidaccounts}) {
 
1142     if ($form->{"paid_$i"} != 0) {
 
1144         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
 
1145       $diff -= $amount - $form->{"paid_$i"} * $form->{exchangerate};
 
1149   my %already_cleared = %{ $params{already_cleared} // {} };
 
1151   # record payments and offsetting AR
 
1152   if (!$form->{storno}) {
 
1153     for my $i (1 .. $form->{paidaccounts}) {
 
1155       if ($form->{"acc_trans_id_$i"}
 
1157           && (SL::DB::Default->get->payments_changeable == 0)) {
 
1161       next if ($form->{"paid_$i"} == 0);
 
1163       my ($accno) = split(/--/, $form->{"AR_paid_$i"});
 
1164       $form->{"datepaid_$i"} = $form->{invdate}
 
1165       unless ($form->{"datepaid_$i"});
 
1166       $form->{datepaid} = $form->{"datepaid_$i"};
 
1170       if ($form->{currency} eq $defaultcurrency) {
 
1171         $form->{"exchangerate_$i"} = 1;
 
1173         $exchangerate              = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
1174         $form->{"exchangerate_$i"} = $exchangerate || $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
 
1178       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} + $diff, 2);
 
1180       my $new_cleared = !$form->{"acc_trans_id_$i"}                                                       ? 'f'
 
1181                       : !$already_cleared{$form->{"acc_trans_id_$i"}}                                     ? 'f'
 
1182                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{amount} != $form->{"paid_$i"} * -1 ? 'f'
 
1183                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{accno}  != $accno                  ? 'f'
 
1184                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{cleared}                           ? 't'
 
1187       if ($form->{amount}{ $form->{id} }{ $form->{AR} } != 0) {
 
1189         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, tax_id, taxkey, project_id, cleared, chart_link)
 
1190            VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?,
 
1193                     WHERE chart_id= (SELECT id
 
1197                     ORDER BY startdate DESC LIMIT 1),
 
1200                     WHERE chart_id= (SELECT id
 
1204                     ORDER BY startdate DESC LIMIT 1),
 
1206                    (SELECT link FROM chart WHERE accno = ?))|;
 
1207         @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});
 
1208         do_query($form, $dbh, $query, @values);
 
1212       $form->{"paid_$i"} *= -1;
 
1213       my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
 
1216       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, tax_id, taxkey, project_id, cleared, chart_link)
 
1217          VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?,
 
1220                   WHERE chart_id= (SELECT id
 
1224                   ORDER BY startdate DESC LIMIT 1),
 
1227                   WHERE chart_id= (SELECT id
 
1231                   ORDER BY startdate DESC LIMIT 1),
 
1233                  (SELECT link FROM chart WHERE accno = ?))|;
 
1234       @values = (conv_i($form->{"id"}), $accno, $form->{"paid_$i"}, $form->{"datepaid_$i"},
 
1235                  $gldate, $form->{"source_$i"}, $form->{"memo_$i"}, $accno, conv_date($taxdate), $accno, conv_date($taxdate), $project_id, $new_cleared, $accno);
 
1236       do_query($form, $dbh, $query, @values);
 
1238       # exchangerate difference
 
1239       $form->{fx}{$accno}{ $form->{"datepaid_$i"} } +=
 
1240         $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) + $diff;
 
1244         $form->{"paid_$i"} * $form->{exchangerate} - $form->{"paid_$i"} *
 
1245         $form->{"exchangerate_$i"};
 
1247         $form->{fx}{ $form->{fxgain_accno} }{ $form->{"datepaid_$i"} } += $amount;
 
1249         $form->{fx}{ $form->{fxloss_accno} }{ $form->{"datepaid_$i"} } += $amount;
 
1254       # update exchange rate
 
1255       if (($form->{currency} ne $defaultcurrency) && !$exchangerate) {
 
1256         $form->update_exchangerate($dbh, $form->{currency},
 
1257                                    $form->{"datepaid_$i"},
 
1258                                    $form->{"exchangerate_$i"}, 0);
 
1262   } else {                      # if (!$form->{storno})
 
1263     $form->{marge_total} *= -1;
 
1266   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
 
1268   # record exchange rate differences and gains/losses
 
1269   foreach my $accno (keys %{ $form->{fx} }) {
 
1270     foreach my $transdate (keys %{ $form->{fx}{$accno} }) {
 
1271       $form->{fx}{$accno}{$transdate} = $form->round_amount($form->{fx}{$accno}{$transdate}, 2);
 
1272       if ( $form->{fx}{$accno}{$transdate} != 0 ) {
 
1275           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, cleared, fx_transaction, tax_id, taxkey, project_id, chart_link)
 
1276              VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, '0', '1',
 
1279                   WHERE chart_id= (SELECT id
 
1283                   ORDER BY startdate DESC LIMIT 1),
 
1286                   WHERE chart_id= (SELECT id
 
1290                   ORDER BY startdate DESC LIMIT 1),
 
1292                  (SELECT link FROM chart WHERE accno = ?))|;
 
1293         @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);
 
1294         do_query($form, $dbh, $query, @values);
 
1299   if ($payments_only) {
 
1300     $query = qq|UPDATE ar SET paid = ? WHERE id = ?|;
 
1301     do_query($form, $dbh, $query,  $form->{paid}, conv_i($form->{id}));
 
1303     $form->new_lastmtime('ar');
 
1308   $amount = $form->round_amount( $netamount + $tax, 2, 1);
 
1311   #erweiterung fuer lieferscheinnummer (donumber) 12.02.09 jb
 
1313   $query = qq|UPDATE ar set
 
1314                 invnumber   = ?, ordnumber     = ?, quonumber     = ?, cusordnumber  = ?,
 
1315                 transdate   = ?, orddate       = ?, quodate       = ?, customer_id   = ?,
 
1316                 amount      = ?, netamount     = ?, paid          = ?,
 
1317                 duedate     = ?, deliverydate  = ?, invoice       = ?, shippingpoint = ?,
 
1318                 shipvia     = ?,                    notes         = ?, intnotes      = ?,
 
1319                 currency_id = (SELECT id FROM currencies WHERE name = ?),
 
1320                 department_id = ?, payment_id    = ?, taxincluded   = ?,
 
1321                 type        = ?, language_id   = ?, taxzone_id    = ?, shipto_id     = ?,
 
1322                 employee_id = ?, salesman_id   = ?, storno_id     = ?, storno        = ?,
 
1323                 cp_id       = ?, marge_total   = ?, marge_percent = ?,
 
1324                 globalproject_id               = ?, delivery_customer_id             = ?,
 
1325                 transaction_description        = ?, delivery_vendor_id               = ?,
 
1326                 donumber    = ?, invnumber_for_credit_note = ?,        direct_debit  = ?,
 
1327                 delivery_term_id = ?
 
1329   @values = (          $form->{"invnumber"},           $form->{"ordnumber"},             $form->{"quonumber"},          $form->{"cusordnumber"},
 
1330              conv_date($form->{"invdate"}),  conv_date($form->{"orddate"}),    conv_date($form->{"quodate"}),    conv_i($form->{"customer_id"}),
 
1331                        $amount,                        $netamount,                       $form->{"paid"},
 
1332              conv_date($form->{"duedate"}),  conv_date($form->{"deliverydate"}),    '1',                                $form->{"shippingpoint"},
 
1333                        $form->{"shipvia"},                                $restricter->process($form->{"notes"}),       $form->{"intnotes"},
 
1334                        $form->{"currency"},     conv_i($form->{"department_id"}), conv_i($form->{"payment_id"}),        $form->{"taxincluded"} ? 't' : 'f',
 
1335                        $form->{"type"},         conv_i($form->{"language_id"}),   conv_i($form->{"taxzone_id"}), conv_i($form->{"shipto_id"}),
 
1336                 conv_i($form->{"employee_id"}), conv_i($form->{"salesman_id"}),   conv_i($form->{storno_id}),           $form->{"storno"} ? 't' : 'f',
 
1337                 conv_i($form->{"cp_id"}),            1 * $form->{marge_total} ,      1 * $form->{marge_percent},
 
1338                 conv_i($form->{"globalproject_id"}),                              conv_i($form->{"delivery_customer_id"}),
 
1339                        $form->{transaction_description},                          conv_i($form->{"delivery_vendor_id"}),
 
1340                        $form->{"donumber"}, $form->{"invnumber_for_credit_note"},        $form->{direct_debit} ? 't' : 'f',
 
1341                 conv_i($form->{delivery_term_id}),
 
1342                 conv_i($form->{"id"}));
 
1343   do_query($form, $dbh, $query, @values);
 
1346   if ($form->{storno}) {
 
1351            intnotes = ? || intnotes
 
1353     do_query($form, $dbh, $query, "Rechnung storniert am $form->{invdate} ", conv_i($form->{"storno_id"}));
 
1354     do_query($form, $dbh, qq|UPDATE ar SET paid = amount WHERE id = ?|, conv_i($form->{"id"}));
 
1357   # maybe we are in a larger transaction and the current
 
1358   # object is not yet persistent in the db, therefore we
 
1359   # need the current dbh to get the not yet committed mtime
 
1360   $form->new_lastmtime('ar', $provided_dbh);
 
1363   if (!$form->{shipto_id}) {
 
1364     $form->add_shipto($dbh, $form->{id}, "AR");
 
1367   # save printed, emailed and queued
 
1368   $form->save_status($dbh);
 
1370   Common::webdav_folder($form);
 
1372   if ($form->{convert_from_ar_ids}) {
 
1373     RecordLinks->create_links('dbh'        => $dbh,
 
1375                               'from_table' => 'ar',
 
1376                               'from_ids'   => $form->{convert_from_ar_ids},
 
1378                               'to_id'      => $form->{id},
 
1380     delete $form->{convert_from_ar_ids};
 
1383   # Link this record to the records it was created from.
 
1384   if ($form->{convert_from_oe_ids}) {
 
1385     RecordLinks->create_links('dbh'        => $dbh,
 
1387                               'from_table' => 'oe',
 
1388                               'from_ids'   => $form->{convert_from_oe_ids},
 
1390                               'to_id'      => $form->{id},
 
1392     delete $form->{convert_from_oe_ids};
 
1395   my @convert_from_do_ids = map { $_ * 1 } grep { $_ } split m/\s+/, $form->{convert_from_do_ids};
 
1397   if (scalar @convert_from_do_ids) {
 
1398     DO->close_orders('dbh' => $dbh,
 
1399                      'ids' => \@convert_from_do_ids);
 
1401     RecordLinks->create_links('dbh'        => $dbh,
 
1403                               'from_table' => 'delivery_orders',
 
1404                               'from_ids'   => \@convert_from_do_ids,
 
1406                               'to_id'      => $form->{id},
 
1409   delete $form->{convert_from_do_ids};
 
1411   ARAP->close_orders_if_billed('dbh'     => $dbh,
 
1412                                'arap_id' => $form->{id},
 
1415   # search for orphaned invoice items
 
1416   $query  = sprintf 'SELECT id FROM invoice WHERE trans_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_invoice_ids;
 
1417   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_invoice_ids);
 
1418   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
 
1419   if (scalar @orphaned_ids) {
 
1420     # clean up invoice items
 
1421     $query  = sprintf 'DELETE FROM invoice WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
 
1422     do_query($form, $dbh, $query, @orphaned_ids);
 
1425   if ($form->{draft_id}) {
 
1426     SL::DB::Manager::Draft->delete_all(where => [ id => delete($form->{draft_id}) ]);
 
1429   # safety check datev export
 
1430   if ($::instance_conf->get_datev_check_on_sales_invoice) {
 
1432     my $datev = SL::DATEV->new(
 
1434       trans_id   => $form->{id},
 
1437     $datev->generate_datev_data;
 
1439     if ($datev->errors) {
 
1440       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
 
1448   $::lxdebug->enter_sub;
 
1450   my ($self, $form, $dbh) = @_;
 
1452   my (@errors, @transfers);
 
1454   # do nothing, if transfer default is not requested at all
 
1455   if (!$::instance_conf->get_transfer_default) {
 
1456     $::lxdebug->leave_sub;
 
1462   foreach my $i (1 .. $form->{rowcount}) {
 
1463     next if !$form->{"id_$i"};
 
1465     my ($err, $wh_id, $bin_id, $chargenumber);
 
1467     if ($::instance_conf->get_sales_serial_eq_charge) {
 
1468       next unless $form->{"serialnumber_$i"};
 
1469       my @serials = split(" ", $form->{"serialnumber_$i"});
 
1470       if (scalar @serials != $form->{"qty_$i"}) {
 
1471         push @errors, $::locale->text("Cannot transfer #1 qty with #2 serial number(s)", $form->{"qty_$i"}, scalar @serials);
 
1474       foreach my $serial (@serials) {
 
1475         ($wh_id, $bin_id, $chargenumber) = WH->get_wh_and_bin_for_charge(chargenumber => $serial);
 
1478             'parts_id'         => $form->{"id_$i"},
 
1480             'unit'             => $form->{"unit_$i"},
 
1481             'transfer_type'    => 'shipped',
 
1482             'src_warehouse_id' => $wh_id,
 
1483             'src_bin_id'       => $bin_id,
 
1484             'chargenumber'     => $chargenumber,
 
1485             'project_id'       => $form->{"project_id_$i"},
 
1486             'invoice_id'       => $form->{"invoice_id_$i"},
 
1487             'comment'          => $::locale->text("Default transfer invoice with charge number"),
 
1490       $err = []; # error handling uses @errors direct
 
1492       ($err, $wh_id, $bin_id)    = _determine_wh_and_bin($dbh, $::instance_conf,
 
1495                                                          $form->{"unit_$i"});
 
1496       if (!@{ $err } && $wh_id && $bin_id) {
 
1498           'parts_id'         => $form->{"id_$i"},
 
1499           'qty'              => $form->{"qty_$i"},
 
1500           'unit'             => $form->{"unit_$i"},
 
1501           'transfer_type'    => 'shipped',
 
1502           'src_warehouse_id' => $wh_id,
 
1503           'src_bin_id'       => $bin_id,
 
1504           'project_id'       => $form->{"project_id_$i"},
 
1505           'invoice_id'       => $form->{"invoice_id_$i"},
 
1506           'comment'          => $::locale->text("Default transfer invoice"),
 
1510     push @errors, @{ $err };
 
1511   } # end form rowcount
 
1514     WH->transfer(@transfers);
 
1517   $::lxdebug->leave_sub;
 
1521 sub _determine_wh_and_bin {
 
1522   $::lxdebug->enter_sub(2);
 
1524   my ($dbh, $conf, $part_id, $qty, $unit) = @_;
 
1527   my $part = SL::DB::Part->new(id => $part_id)->load;
 
1529   # ignore service if they are not configured to be transfered
 
1530   if ($part->is_service && !$conf->get_transfer_default_services) {
 
1531     $::lxdebug->leave_sub(2);
 
1537     push @errors, $::locale->text("Cannot transfer negative quantities.");
 
1541   # get/test default bin
 
1542   my ($default_wh_id, $default_bin_id);
 
1543   if ($conf->get_transfer_default_use_master_default_bin) {
 
1544     $default_wh_id  = $conf->get_warehouse_id if $conf->get_warehouse_id;
 
1545     $default_bin_id = $conf->get_bin_id       if $conf->get_bin_id;
 
1547   my $wh_id  = $part->warehouse_id || $default_wh_id;
 
1548   my $bin_id = $part->bin_id       || $default_bin_id;
 
1552     my ($max_qty, $error) = WH->get_max_qty_parts_bin(dbh      => $dbh,
 
1553                                                       parts_id => $part->id,
 
1556       push @errors, $::locale->text('Part "#1" has chargenumber or best before date set. So it cannot be transfered automatically.',
 
1557                                     $part->description);
 
1559     my $form_unit_obj = SL::DB::Unit->new(name => $unit)->load;
 
1560     my $part_unit_qty = $form_unit_obj->convert_to($qty, $part->unit_obj);
 
1561     my $diff_qty      = $max_qty - $part_unit_qty;
 
1562     if (!@errors && $diff_qty < 0) {
 
1563       push @errors, $::locale->text('For part "#1" there are missing #2 #3 in the default warehouse/bin "#4/#5".',
 
1565                                     $::form->format_amount(\%::myconfig, -1*$diff_qty),
 
1566                                     $part->unit_obj->name,
 
1567                                     SL::DB::Warehouse->new(id => $wh_id)->load->description,
 
1568                                     SL::DB::Bin->new(      id => $bin_id)->load->description);
 
1571     push @errors, $::locale->text('For part "#1" there is no default warehouse and bin defined.',
 
1572                                   $part->description);
 
1575   # transfer to special "ignore onhand" bin if requested and default bin does not work
 
1576   if (@errors && $conf->get_transfer_default_ignore_onhand && $conf->get_bin_id_ignore_onhand) {
 
1577     $wh_id  = $conf->get_warehouse_id_ignore_onhand;
 
1578     $bin_id = $conf->get_bin_id_ignore_onhand;
 
1579     if ($wh_id && $bin_id) {
 
1582       push @errors, $::locale->text('For part "#1" there is no default warehouse and bin for ignoring onhand defined.',
 
1583                                     $part->description);
 
1587   $::lxdebug->leave_sub(2);
 
1588   return (\@errors, $wh_id, $bin_id);
 
1591 sub _delete_transfers {
 
1592   $::lxdebug->enter_sub;
 
1594   my ($dbh, $form, $id) = @_;
 
1596   my $query = qq|DELETE FROM inventory WHERE invoice_id
 
1597                   IN (SELECT id FROM invoice WHERE trans_id = ?)|;
 
1599   do_query($form, $dbh, $query, $id);
 
1601   $::lxdebug->leave_sub;
 
1604 sub _delete_payments {
 
1605   $main::lxdebug->enter_sub();
 
1607   my ($self, $form, $dbh) = @_;
 
1609   my @delete_acc_trans_ids;
 
1611   # Delete old payment entries from acc_trans.
 
1613     qq|SELECT acc_trans_id
 
1615        WHERE (trans_id = ?) AND fx_transaction
 
1619        SELECT at.acc_trans_id
 
1621        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1622        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
 
1623   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
 
1626     qq|SELECT at.acc_trans_id
 
1628        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1629        WHERE (trans_id = ?)
 
1630          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1631        ORDER BY at.acc_trans_id
 
1633   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1635   if (@delete_acc_trans_ids) {
 
1636     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
 
1637     do_query($form, $dbh, $query);
 
1640   $main::lxdebug->leave_sub();
 
1644   my ($self, $myconfig, $form, $locale) = @_;
 
1645   $main::lxdebug->enter_sub();
 
1647   my $rc = SL::DB->client->with_transaction(\&_post_payment, $self, $myconfig, $form, $locale);
 
1649   $::lxdebug->leave_sub;
 
1654   my ($self, $myconfig, $form, $locale) = @_;
 
1656   my $dbh = SL::DB->client->dbh;
 
1658   my (%payments, $old_form, $row, $item, $query, %keep_vars);
 
1660   $old_form = save_form();
 
1663     SELECT at.acc_trans_id, at.amount, at.cleared, c.accno
 
1665     LEFT JOIN chart c ON (at.chart_id = c.id)
 
1666     WHERE (at.trans_id = ?)
 
1669   my %already_cleared = selectall_as_map($form, $dbh, $query, 'acc_trans_id', [ qw(amount cleared accno) ], $form->{id});
 
1671   # Delete all entries in acc_trans from prior payments.
 
1672   if (SL::DB::Default->get->payments_changeable != 0) {
 
1673     $self->_delete_payments($form, $dbh);
 
1676   # Save the new payments the user made before cleaning up $form.
 
1677   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 };
 
1679   # Clean up $form so that old content won't tamper the results.
 
1680   %keep_vars = map { $_, 1 } qw(login password id);
 
1681   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
 
1683   # Retrieve the invoice from the database.
 
1684   $self->retrieve_invoice($myconfig, $form);
 
1686   # Set up the content of $form in the way that IS::post_invoice() expects.
 
1687   $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
 
1689   for $row (1 .. scalar @{ $form->{invoice_details} }) {
 
1690     $item = $form->{invoice_details}->[$row - 1];
 
1692     map { $item->{$_} = $form->format_amount($myconfig, $item->{$_}) } qw(qty sellprice discount);
 
1694     map { $form->{"${_}_${row}"} = $item->{$_} } keys %{ $item };
 
1697   $form->{rowcount} = scalar @{ $form->{invoice_details} };
 
1699   delete @{$form}{qw(invoice_details paidaccounts storno paid)};
 
1701   # Restore the payment options from the user input.
 
1702   map { $form->{$_} = $payments{$_} } keys %payments;
 
1704   # Get the AR accno (which is normally done by Form::create_links()).
 
1708        LEFT JOIN chart c ON (at.chart_id = c.id)
 
1709        WHERE (trans_id = ?)
 
1710          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
1711        ORDER BY at.acc_trans_id
 
1714   ($form->{AR}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
 
1716   # Post the new payments.
 
1717   $self->post_invoice($myconfig, $form, $dbh, payments_only => 1, already_cleared => \%already_cleared);
 
1719   restore_form($old_form);
 
1724 sub process_assembly {
 
1725   $main::lxdebug->enter_sub();
 
1727   my ($dbh, $myconfig, $form, $position, $id, $totalqty) = @_;
 
1730     qq|SELECT a.parts_id, a.qty, p.part_type, p.partnumber, p.description, p.unit
 
1732        JOIN parts p ON (a.parts_id = p.id)
 
1734   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1736   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1740     $ref->{inventory_accno_id} *= 1;
 
1741     $ref->{expense_accno_id}   *= 1;
 
1743     # multiply by number of assemblies
 
1744     $ref->{qty} *= $totalqty;
 
1746     if ($ref->{assembly}) {
 
1747       &process_assembly($dbh, $myconfig, $form, $position, $ref->{parts_id}, $ref->{qty});
 
1750       if ($ref->{inventory_accno_id}) {
 
1751         $allocated = &cogs($dbh, $myconfig, $form, $ref->{parts_id}, $ref->{qty});
 
1755     # save detail record for individual assembly item in invoice table
 
1757       qq|INSERT INTO invoice (trans_id, position, description, parts_id, qty, sellprice, fxsellprice, allocated, assemblyitem, unit)
 
1758          VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1759     my @values = (conv_i($form->{id}), conv_i($position), $ref->{description},
 
1760                   conv_i($ref->{parts_id}), $ref->{qty}, 0, 0, $allocated, 't', $ref->{unit});
 
1761     do_query($form, $dbh, $query, @values);
 
1767   $main::lxdebug->leave_sub();
 
1771   $main::lxdebug->enter_sub();
 
1773   # adjust allocated in table invoice according to FIFO princicple
 
1774   # for a certain part with part_id $id
 
1776   my ($dbh, $myconfig, $form, $id, $totalqty, $basefactor, $row) = @_;
 
1780   $form->{taxzone_id} *=1;
 
1781   my $transdate  = $form->{invdate} ? $dbh->quote($form->{invdate}) : "current_date";
 
1782   my $taxzone_id = $form->{"taxzone_id"} * 1;
 
1784     qq|SELECT i.id, i.trans_id, i.base_qty, i.allocated, i.sellprice, i.price_factor,
 
1785          c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
 
1786          c2.accno AS    income_accno, c2.new_chart_id AS    income_new_chart, date($transdate) - c2.valid_from AS    income_valid,
 
1787          c3.accno AS   expense_accno, c3.new_chart_id AS   expense_new_chart, date($transdate) - c3.valid_from AS   expense_valid
 
1788        FROM invoice i, parts p
 
1789        LEFT JOIN chart c1 ON ((SELECT inventory_accno_id FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
 
1790        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)
 
1791        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)
 
1792        WHERE (i.parts_id = p.id)
 
1793          AND (i.parts_id = ?)
 
1794          AND ((i.base_qty + i.allocated) < 0)
 
1796   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id));
 
1801 # all invoice entries of an example part:
 
1803 # id | trans_id | base_qty | allocated | sellprice | inventory_accno | income_accno | expense_accno
 
1804 # ---+----------+----------+-----------+-----------+-----------------+--------------+---------------
 
1805 #  4 |        4 |       -5 |         5 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1806 #  5 |        5 |        4 |        -4 |  50.00000 | 1140            | 4400         | 5400     sold   4 for 50
 
1807 #  6 |        6 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
 
1808 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1809 #  8 |        8 |        1 |        -1 |  50.00000 | 1140            | 4400         | 5400     sold   1 for 50
 
1811 # 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
 
1812 # and all parts have been allocated
 
1814 # so transaction 8 only sees transaction 7 with unallocated parts and adjusts allocated for that transaction, before allocated was 0
 
1815 #  7 |        7 |       -5 |         1 |  20.00000 | 1140            | 4400         | 5400     bought 5 for 20
 
1817 # in this example there are still 4 unsold articles
 
1820   # search all invoice entries for the part in question, adjusting "allocated"
 
1821   # until the total number of sold parts has been reached
 
1823   # ORDER BY trans_id ensures FIFO
 
1826   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1827     if (($qty = (($ref->{base_qty} * -1) - $ref->{allocated})) > $totalqty) {
 
1831     # update allocated in invoice
 
1832     $form->update_balance($dbh, "invoice", "allocated", qq|id = $ref->{id}|, $qty);
 
1834     # total expenses and inventory
 
1835     # sellprice is the cost of the item
 
1836     my $linetotal = $form->round_amount(($ref->{sellprice} * $qty) / ( ($ref->{price_factor} || 1) * ( $basefactor || 1 )), 2);
 
1838     if ( $::instance_conf->get_inventory_system eq 'perpetual' ) {
 
1839       # Bestandsmethode: when selling parts, deduct their purchase value from the inventory account
 
1840       $ref->{expense_accno} = ($form->{"expense_accno_$row"}) ? $form->{"expense_accno_$row"} : $ref->{expense_accno};
 
1842       $form->{amount_cogs}{ $form->{id} }{ $ref->{expense_accno} } += -$linetotal;
 
1843       $form->{expense_inventory} .= " " . $ref->{expense_accno};
 
1844       $ref->{inventory_accno} = ($form->{"inventory_accno_$row"}) ? $form->{"inventory_accno_$row"} : $ref->{inventory_accno};
 
1846       $form->{amount_cogs}{ $form->{id} }{ $ref->{inventory_accno} } -= -$linetotal;
 
1847       $form->{expense_inventory} .= " " . $ref->{inventory_accno};
 
1853     last if (($totalqty -= $qty) <= 0);
 
1858   $main::lxdebug->leave_sub();
 
1863 sub reverse_invoice {
 
1864   $main::lxdebug->enter_sub();
 
1866   my ($dbh, $form) = @_;
 
1868   # reverse inventory items
 
1870     qq|SELECT i.id, i.parts_id, i.qty, i.assemblyitem, p.part_type
 
1872        JOIN parts p ON (i.parts_id = p.id)
 
1873        WHERE i.trans_id = ?|;
 
1874   my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{"id"}));
 
1876   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
1878     if ($ref->{inventory_accno_id}) {
 
1879       # de-allocated purchases
 
1881         qq|SELECT i.id, i.trans_id, i.allocated
 
1883            WHERE (i.parts_id = ?) AND (i.allocated > 0)
 
1884            ORDER BY i.trans_id DESC|;
 
1885       my $sth2 = prepare_execute_query($form, $dbh, $query, conv_i($ref->{"parts_id"}));
 
1887       while (my $inhref = $sth2->fetchrow_hashref('NAME_lc')) {
 
1888         my $qty = $ref->{qty};
 
1889         if (($ref->{qty} - $inhref->{allocated}) > 0) {
 
1890           $qty = $inhref->{allocated};
 
1894         $form->update_balance($dbh, "invoice", "allocated", qq|id = $inhref->{id}|, $qty * -1);
 
1896         last if (($ref->{qty} -= $qty) <= 0);
 
1905   my @values = (conv_i($form->{id}));
 
1906   do_query($form, $dbh, qq|DELETE FROM acc_trans WHERE trans_id = ?|, @values);
 
1908   $query = qq|DELETE FROM custom_variables
 
1909               WHERE (config_id IN (SELECT id        FROM custom_variable_configs WHERE (module = 'ShipTo')))
 
1910                 AND (trans_id  IN (SELECT shipto_id FROM shipto                  WHERE (module = 'AR') AND (trans_id = ?)))|;
 
1911   do_query($form, $dbh, $query, @values);
 
1912   do_query($form, $dbh, qq|DELETE FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|, @values);
 
1914   $main::lxdebug->leave_sub();
 
1917 sub delete_invoice {
 
1918   my ($self, $myconfig, $form) = @_;
 
1919   $main::lxdebug->enter_sub();
 
1921   my $rc = SL::DB->client->with_transaction(\&_delete_invoice, $self, $myconfig, $form);
 
1923   $::lxdebug->leave_sub;
 
1927 sub _delete_invoice {
 
1928   my ($self, $myconfig, $form) = @_;
 
1930   my $dbh = SL::DB->client->dbh;
 
1932   &reverse_invoice($dbh, $form);
 
1933   _delete_transfers($dbh, $form, $form->{id});
 
1935   my @values = (conv_i($form->{id}));
 
1937   # Falls wir ein Storno haben, müssen zwei Felder in der stornierten Rechnung wieder
 
1938   # zurückgesetzt werden. Vgl:
 
1939   #  id | storno | storno_id |  paid   |  amount
 
1940   #----+--------+-----------+---------+-----------
 
1941   # 18 | f      |           | 0.00000 | 119.00000
 
1943   # 18 | t      |           |  119.00000 |  119.00000
 
1945   if($form->{storno}){
 
1946     # storno_id auslesen und korrigieren
 
1947     my ($invoice_id) = selectfirst_array_query($form, $dbh, qq|SELECT storno_id FROM ar WHERE id = ?|,@values);
 
1948     do_query($form, $dbh, qq|UPDATE ar SET storno = 'f', paid = 0 WHERE id = ?|, $invoice_id);
 
1951   # delete spool files
 
1952   my @spoolfiles = selectall_array_query($form, $dbh, qq|SELECT spoolfile FROM status WHERE trans_id = ?|, @values);
 
1955     qq|DELETE FROM status WHERE trans_id = ?|,
 
1956     qq|DELETE FROM periodic_invoices WHERE ar_id = ?|,
 
1957     qq|DELETE FROM invoice WHERE trans_id = ?|,
 
1958     qq|DELETE FROM ar WHERE id = ?|,
 
1961   map { do_query($form, $dbh, $_, @values) } @queries;
 
1963   my $spool = $::lx_office_conf{paths}->{spool};
 
1964   map { unlink "$spool/$_" if -f "$spool/$_"; } @spoolfiles;
 
1969 sub retrieve_invoice {
 
1970   my ($self, $myconfig, $form) = @_;
 
1971   $main::lxdebug->enter_sub();
 
1973   my $rc = SL::DB->client->with_transaction(\&_retrieve_invoice, $self, $myconfig, $form);
 
1975   $::lxdebug->leave_sub;
 
1979 sub _retrieve_invoice {
 
1980   my ($self, $myconfig, $form) = @_;
 
1982   my $dbh = SL::DB->client->dbh;
 
1984   my ($sth, $ref, $query);
 
1986   my $query_transdate = !$form->{id} ? ", current_date AS invdate" : '';
 
1990          (SELECT c.accno FROM chart c WHERE d.inventory_accno_id = c.id) AS inventory_accno,
 
1991          (SELECT c.accno FROM chart c WHERE d.income_accno_id = c.id)    AS income_accno,
 
1992          (SELECT c.accno FROM chart c WHERE d.expense_accno_id = c.id)   AS expense_accno,
 
1993          (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id)    AS fxgain_accno,
 
1994          (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id)    AS fxloss_accno,
 
1995          (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id)   AS rndgain_accno,
 
1996          (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id)   AS rndloss_accno
 
2000   $ref = selectfirst_hashref_query($form, $dbh, $query);
 
2001   map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
2004     my $id = conv_i($form->{id});
 
2007     #erweiterung um das entsprechende feld lieferscheinnummer (a.donumber) in der html-maske anzuzeigen 12.02.2009 jb
 
2011            a.invnumber, a.ordnumber, a.quonumber, a.cusordnumber,
 
2012            a.orddate, a.quodate, a.globalproject_id,
 
2013            a.transdate AS invdate, a.deliverydate, a.paid, a.storno, a.storno_id, a.gldate,
 
2014            a.shippingpoint, a.shipvia, a.notes, a.intnotes, a.taxzone_id,
 
2015            a.duedate, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.shipto_id, a.cp_id,
 
2016            a.employee_id, a.salesman_id, a.payment_id,
 
2018            a.language_id, a.delivery_customer_id, a.delivery_vendor_id, a.type,
 
2019            a.transaction_description, a.donumber, a.invnumber_for_credit_note,
 
2020            a.marge_total, a.marge_percent, a.direct_debit, a.delivery_term_id,
 
2021            dc.dunning_description,
 
2024          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2025          LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id)
 
2027     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
2028     map { $form->{$_} = $ref->{$_} } keys %{ $ref };
 
2029     $form->{mtime} = $form->{itime} if !$form->{mtime};
 
2030     $form->{lastmtime} = $form->{mtime};
 
2032     $form->{exchangerate} = $form->get_exchangerate($dbh, $form->{currency}, $form->{invdate}, "buy");
 
2034     foreach my $vc (qw(customer vendor)) {
 
2035       next if !$form->{"delivery_${vc}_id"};
 
2036       ($form->{"delivery_${vc}_string"}) = selectrow_query($form, $dbh, qq|SELECT name FROM customer WHERE id = ?|, $id);
 
2040     $query = qq|SELECT * FROM shipto WHERE (trans_id = ?) AND (module = 'AR')|;
 
2041     $ref = selectfirst_hashref_query($form, $dbh, $query, $id);
 
2042     $form->{$_} = $ref->{$_} for grep { m{^shipto(?!_id$)} } keys %$ref;
 
2044     # get printed, emailed
 
2045     $query = qq|SELECT printed, emailed, spoolfile, formname FROM status WHERE trans_id = ?|;
 
2046     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
2048     while ($ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2049       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
 
2050       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
 
2051       $form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
 
2054     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
 
2056     my $transdate = $form->{deliverydate} ? $dbh->quote($form->{deliverydate})
 
2057                   : $form->{invdate}      ? $dbh->quote($form->{invdate})
 
2061     my $taxzone_id = $form->{taxzone_id} *= 1;
 
2062     $taxzone_id = SL::DB::Manager::TaxZone->get_default->id unless SL::DB::Manager::TaxZone->find_by(id => $taxzone_id);
 
2064     # retrieve individual items
 
2067            c1.accno AS inventory_accno, c1.new_chart_id AS inventory_new_chart, date($transdate) - c1.valid_from AS inventory_valid,
 
2068            c2.accno AS income_accno,    c2.new_chart_id AS income_new_chart,    date($transdate) - c2.valid_from as income_valid,
 
2069            c3.accno AS expense_accno,   c3.new_chart_id AS expense_new_chart,   date($transdate) - c3.valid_from AS expense_valid,
 
2072            i.description, i.longdescription, i.qty, i.fxsellprice AS sellprice, i.discount, i.parts_id AS id, i.unit, i.deliverydate AS reqdate,
 
2073            i.project_id, i.serialnumber, i.pricegroup_id, i.ordnumber, i.donumber, i.transdate, i.cusordnumber, i.subtotal, i.lastcost,
 
2074            i.price_factor_id, i.price_factor, i.marge_price_factor, i.active_price_source, i.active_discount_source,
 
2075            p.partnumber, p.part_type, p.notes AS partnotes, p.formel, p.listprice,
 
2076            p.classification_id,
 
2077            pr.projectnumber, pg.partsgroup, prg.pricegroup
 
2080          LEFT JOIN parts p ON (i.parts_id = p.id)
 
2081          LEFT JOIN project pr ON (i.project_id = pr.id)
 
2082          LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
2083          LEFT JOIN pricegroup prg ON (i.pricegroup_id = prg.id)
 
2085          LEFT JOIN chart c1 ON ((SELECT inventory_accno_id             FROM buchungsgruppen WHERE id = p.buchungsgruppen_id) = c1.id)
 
2086          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)
 
2087          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)
 
2089          WHERE (i.trans_id = ?) AND NOT (i.assemblyitem = '1') ORDER BY i.position|;
 
2091     $sth = prepare_execute_query($form, $dbh, $query, $id);
 
2093     while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2094       # Retrieve custom variables.
 
2095       my $cvars = CVar->get_custom_variables(dbh        => $dbh,
 
2097                                              sub_module => 'invoice',
 
2098                                              trans_id   => $ref->{invoice_id},
 
2100       map { $ref->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
 
2102       map({ delete($ref->{$_}); } qw(inventory_accno inventory_new_chart inventory_valid)) if !$ref->{"part_inventory_accno_id"};
 
2103       delete($ref->{"part_inventory_accno_id"});
 
2105       foreach my $type (qw(inventory income expense)) {
 
2106         while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
2107           my $query = qq|SELECT accno, new_chart_id, date($transdate) - valid_from FROM chart WHERE id = ?|;
 
2108           @$ref{ map $type.$_, qw(_accno _new_chart _valid) } = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
2112       # get tax rates and description
 
2113       my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
2115         qq|SELECT c.accno, t.taxdescription, t.rate, t.id as tax_id, c.accno as taxnumber
 
2117            LEFT JOIN chart c ON (c.id = t.chart_id)
 
2119              (SELECT tk.tax_id FROM taxkeys tk
 
2120               WHERE tk.chart_id = (SELECT id FROM chart WHERE accno = ?)
 
2121                 AND startdate <= date($transdate)
 
2122               ORDER BY startdate DESC LIMIT 1)
 
2124       my $stw = prepare_execute_query($form, $dbh, $query, $accno_id);
 
2125       $ref->{taxaccounts} = "";
 
2127       while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
 
2129         if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
2133         $ref->{taxaccounts} .= "$ptr->{accno} ";
 
2135         if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
 
2136           $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
2137           $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
2138           $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber}; # don't use this anymore
 
2139           $form->{"$ptr->{accno}_tax_id"}      = $ptr->{tax_id};
 
2140           $form->{taxaccounts} .= "$ptr->{accno} ";
 
2145       $ref->{qty} *= -1 if $form->{type} eq "credit_note";
 
2147       chop $ref->{taxaccounts};
 
2148       push @{ $form->{invoice_details} }, $ref;
 
2153     # Fetch shipping address.
 
2154     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'AR'|;
 
2155     $ref   = selectfirst_hashref_query($form, $dbh, $query, $form->{id});
 
2157     $form->{$_} = $ref->{$_} for grep { $_ ne 'id' } keys %$ref;
 
2159     if ($form->{shipto_id}) {
 
2160       my $cvars = CVar->get_custom_variables(
 
2163         trans_id => $form->{shipto_id},
 
2165       $form->{"shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars };
 
2168     Common::webdav_folder($form);
 
2175   $main::lxdebug->enter_sub();
 
2177   my ($self, $myconfig, $form) = @_;
 
2179   # connect to database
 
2180   my $dbh = $form->get_standard_dbh;
 
2182   my $dateformat = $myconfig->{dateformat};
 
2183   $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2185   my (@values, $ref, $query);
 
2187   my $cid = conv_i($form->{customer_id});
 
2193     $where .= 'AND c.id = ?';
 
2198          c.id AS customer_id, c.name AS customer, c.discount as customer_discount, c.creditlimit,
 
2199          c.email, c.cc, c.bcc, c.language_id, c.payment_id, c.delivery_term_id,
 
2200          c.street, c.zipcode, c.city, c.country,
 
2201          c.notes AS intnotes, c.pricegroup_id as customer_pricegroup_id, c.taxzone_id, c.salesman_id, cu.name AS curr,
 
2202          c.taxincluded_checked, c.direct_debit,
 
2203          b.discount AS tradediscount, b.description AS business
 
2205        LEFT JOIN business b ON (b.id = c.business_id)
 
2206        LEFT JOIN currencies cu ON (c.currency_id=cu.id)
 
2207        WHERE 1 = 1 $where|;
 
2208   $ref = selectfirst_hashref_query($form, $dbh, $query, @values);
 
2210   delete $ref->{salesman_id} if !$ref->{salesman_id};
 
2211   delete $ref->{payment_id}  if !$ref->{payment_id};
 
2213   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2215   if ($form->{payment_id}) {
 
2216     my $reference_date = $form->{invdate} ? DateTime->from_kivitendo($form->{invdate}) : undef;
 
2217     $form->{duedate}   = SL::DB::PaymentTerm->new(id => $form->{payment_id})->load->calc_date(reference_date => $reference_date)->to_kivitendo;
 
2219     $form->{duedate}   = DateTime->today_local->to_kivitendo;
 
2222   # use customer currency
 
2223   $form->{currency} = $form->{curr};
 
2226     qq|SELECT sum(amount - paid) AS dunning_amount
 
2228        WHERE (paid < amount)
 
2229          AND (customer_id = ?)
 
2230          AND (dunning_config_id IS NOT NULL)|;
 
2231   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
2232   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2235     qq|SELECT dnn.dunning_description AS max_dunning_level
 
2236        FROM dunning_config dnn
 
2237        WHERE id IN (SELECT dunning_config_id
 
2239                     WHERE (paid < amount) AND (customer_id = ?) AND (dunning_config_id IS NOT NULL))
 
2240        ORDER BY dunning_level DESC LIMIT 1|;
 
2241   $ref = selectfirst_hashref_query($form, $dbh, $query, $cid);
 
2242   map { $form->{$_} = $ref->{$_} } keys %$ref;
 
2244   $form->{creditremaining} = $form->{creditlimit};
 
2245   $query = qq|SELECT SUM(amount - paid) FROM ar WHERE customer_id = ?|;
 
2246   my ($value) = selectrow_query($form, $dbh, $query, $cid);
 
2247   $form->{creditremaining} -= $value;
 
2251          (SELECT e.buy FROM exchangerate e
 
2252           WHERE e.currency_id = o.currency_id
 
2253             AND e.transdate = o.transdate)
 
2255        WHERE o.customer_id = ?
 
2256          AND o.quotation = '0'
 
2257          AND o.closed = '0'|;
 
2258   my $sth = prepare_execute_query($form, $dbh, $query, $cid);
 
2260   while (my ($amount, $exch) = $sth->fetchrow_array) {
 
2261     $exch = 1 unless $exch;
 
2262     $form->{creditremaining} -= $amount * $exch;
 
2266   $main::lxdebug->leave_sub();
 
2270   $main::lxdebug->enter_sub();
 
2272   my ($self, $myconfig, $form) = @_;
 
2274   # connect to database
 
2275   my $dbh = $form->get_standard_dbh;
 
2277   my $i = $form->{rowcount};
 
2279   my $where = qq|NOT p.obsolete = '1'|;
 
2282   foreach my $column (qw(p.partnumber p.description pgpartsgroup )) {
 
2283     my ($table, $field) = split m/\./, $column;
 
2284     next if !$form->{"${field}_${i}"};
 
2285     $where .= qq| AND lower(${column}) ILIKE ?|;
 
2286     push @values, like($form->{"${field}_${i}"});
 
2290   if ($form->{"partnumber_$i"} && !$form->{"description_$i"}) {
 
2291     $where .= qq| OR (NOT p.obsolete = '1' AND p.ean = ? )|;
 
2292     push @values, $form->{"partnumber_$i"};
 
2294     # also search hits in makemodels, but only cache the results by id and merge later
 
2296       SELECT parts_id, model FROM makemodel LEFT JOIN parts ON parts.id = parts_id WHERE NOT parts.obsolete AND model ILIKE ?;
 
2298     my $mm_results = selectall_hashref_query($::form, $dbh, $mm_query, like($form->{"partnumber_$i"}));
 
2299     my @mm_ids     = map { $_->{parts_id} } @$mm_results;
 
2300     push @{$mm_by_id{ $_->{parts_id} } ||= []}, $_ for @$mm_results;
 
2303       $where .= qq| OR p.id IN (| . join(',', ('?') x @mm_ids) . qq|)|;
 
2304       push @values, @mm_ids;
 
2308   # Search for part ID overrides all other criteria.
 
2309   if ($form->{"id_${i}"}) {
 
2310     $where  = qq|p.id = ?|;
 
2311     @values = ($form->{"id_${i}"});
 
2314   if ($form->{"description_$i"}) {
 
2315     $where .= qq| ORDER BY p.description|;
 
2317     $where .= qq| ORDER BY p.partnumber|;
 
2321   if ($form->{type} eq "invoice") {
 
2323       $form->{deliverydate} ? $dbh->quote($form->{deliverydate}) :
 
2324       $form->{invdate}      ? $dbh->quote($form->{invdate}) :
 
2328       $form->{transdate}    ? $dbh->quote($form->{transdate}) :
 
2332   my $taxzone_id = $form->{taxzone_id} * 1;
 
2333   $taxzone_id = 0 if (0 > $taxzone_id) || (3 < $taxzone_id);
 
2337          p.id, p.partnumber, p.description, p.sellprice,
 
2338          p.listprice, p.part_type, p.lastcost,
 
2340          p.classification_id,
 
2342          c1.accno AS inventory_accno,
 
2343          c1.new_chart_id AS inventory_new_chart,
 
2344          date($transdate) - c1.valid_from AS inventory_valid,
 
2346          c2.accno AS income_accno,
 
2347          c2.new_chart_id AS income_new_chart,
 
2348          date($transdate)  - c2.valid_from AS income_valid,
 
2350          c3.accno AS expense_accno,
 
2351          c3.new_chart_id AS expense_new_chart,
 
2352          date($transdate) - c3.valid_from AS expense_valid,
 
2354          p.unit, p.part_type, p.onhand,
 
2355          p.notes AS partnotes, p.notes AS longdescription,
 
2356          p.not_discountable, p.formel, p.payment_id AS part_payment_id,
 
2357          p.price_factor_id, p.weight,
 
2359          pfac.factor AS price_factor,
 
2360          pt.used_for_sale AS used_for_sale,
 
2364        LEFT JOIN chart c1 ON
 
2365          ((SELECT inventory_accno_id
 
2366            FROM buchungsgruppen
 
2367            WHERE id = p.buchungsgruppen_id) = c1.id)
 
2368        LEFT JOIN chart c2 ON
 
2369          ((SELECT tc.income_accno_id
 
2370            FROM taxzone_charts tc
 
2371            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c2.id)
 
2372        LEFT JOIN chart c3 ON
 
2373          ((SELECT tc.expense_accno_id
 
2374            FROM taxzone_charts tc
 
2375            WHERE tc.buchungsgruppen_id = p.buchungsgruppen_id and tc.taxzone_id = ${taxzone_id}) = c3.id)
 
2376        LEFT JOIN partsgroup pg ON (pg.id = p.partsgroup_id)
 
2377        LEFT JOIN part_classifications pt ON (pt.id = p.classification_id)
 
2378        LEFT JOIN price_factors pfac ON (pfac.id = p.price_factor_id)
 
2380   my $sth = prepare_execute_query($form, $dbh, $query, @values);
 
2382   my @translation_queries = ( [ qq|SELECT tr.translation, tr.longdescription
 
2384                                    WHERE tr.language_id = ? AND tr.parts_id = ?| ],
 
2385                               [ qq|SELECT tr.translation, tr.longdescription
 
2387                                    WHERE tr.language_id IN
 
2390                                       WHERE article_code = (SELECT article_code FROM language WHERE id = ?))
 
2393   map { push @{ $_ }, prepare_query($form, $dbh, $_->[0]) } @translation_queries;
 
2395   my $has_wrong_pclass = PCLASS_OK;
 
2396   while (my $ref = $sth->fetchrow_hashref('NAME_lc')) {
 
2398     if ($mm_by_id{$ref->{id}}) {
 
2399       $ref->{makemodels} = $mm_by_id{$ref->{id}};
 
2400       push @{ $ref->{matches} ||= [] }, $::locale->text('Model') . ': ' . join ', ', map { $_->{model} } @{ $mm_by_id{$ref->{id}} };
 
2403     if (($::form->{"partnumber_$i"} ne '') && ($ref->{ean} eq $::form->{"partnumber_$i"})) {
 
2404       push @{ $ref->{matches} ||= [] }, $::locale->text('EAN') . ': ' . $ref->{ean};
 
2407     $ref->{type_and_classific} = type_abbreviation($ref->{part_type}) .
 
2408                                  classification_abbreviation($ref->{classification_id});
 
2409     if (! $ref->{used_for_sale} ) {
 
2410       $has_wrong_pclass = PCLASS_NOTFORSALE ;
 
2413     # In der Buchungsgruppe ist immer ein Bestandskonto verknuepft, auch wenn
 
2414     # es sich um eine Dienstleistung handelt. Bei Dienstleistungen muss das
 
2415     # Buchungskonto also aus dem Ergebnis rausgenommen werden.
 
2416     if (!$ref->{inventory_accno_id}) {
 
2417       map({ delete($ref->{"inventory_${_}"}); } qw(accno new_chart valid));
 
2419     delete($ref->{inventory_accno_id});
 
2421     foreach my $type (qw(inventory income expense)) {
 
2422       while ($ref->{"${type}_new_chart"} && ($ref->{"${type}_valid"} >=0)) {
 
2424           qq|SELECT accno, new_chart_id, date($transdate) - valid_from
 
2427         ($ref->{"${type}_accno"},
 
2428          $ref->{"${type}_new_chart"},
 
2429          $ref->{"${type}_valid"})
 
2430           = selectrow_query($form, $dbh, $query, $ref->{"${type}_new_chart"});
 
2434     if ($form->{payment_id} eq "") {
 
2435       $form->{payment_id} = $form->{part_payment_id};
 
2438     # get tax rates and description
 
2439     my $accno_id = ($form->{vc} eq "customer") ? $ref->{income_accno} : $ref->{expense_accno};
 
2441       qq|SELECT c.accno, t.taxdescription, t.id as tax_id, t.rate, c.accno as taxnumber
 
2443          LEFT JOIN chart c ON (c.id = t.chart_id)
 
2447             WHERE tk.chart_id = (SELECT id from chart WHERE accno = ?)
 
2449             ORDER BY startdate DESC
 
2452     @values = ($accno_id, $transdate eq "current_date" ? "now" : $transdate);
 
2453     my $stw = $dbh->prepare($query);
 
2454     $stw->execute(@values) || $form->dberror($query);
 
2456     $ref->{taxaccounts} = "";
 
2458     while (my $ptr = $stw->fetchrow_hashref('NAME_lc')) {
 
2460       if (($ptr->{accno} eq "") && ($ptr->{rate} == 0)) {
 
2464       $ref->{taxaccounts} .= "$ptr->{accno} ";
 
2466       if (!($form->{taxaccounts} =~ /\Q$ptr->{accno}\E/)) {
 
2467         $form->{"$ptr->{accno}_rate"}        = $ptr->{rate};
 
2468         $form->{"$ptr->{accno}_description"} = $ptr->{taxdescription};
 
2469         $form->{"$ptr->{accno}_taxnumber"}   = $ptr->{taxnumber};
 
2470         $form->{"$ptr->{accno}_tax_id"}      = $ptr->{tax_id};
 
2471         $form->{taxaccounts} .= "$ptr->{accno} ";
 
2477     chop $ref->{taxaccounts};
 
2479     if ($form->{language_id}) {
 
2480       for my $spec (@translation_queries) {
 
2481         do_statement($form, $spec->[1], $spec->[0], conv_i($form->{language_id}), conv_i($ref->{id}));
 
2482         my ($translation, $longdescription) = $spec->[1]->fetchrow_array;
 
2483         next unless $translation;
 
2484         $ref->{description} = $translation;
 
2485         $ref->{longdescription} = $longdescription;
 
2490     $ref->{onhand} *= 1;
 
2491     push @{ $form->{item_list} }, $ref;
 
2494   $_->[1]->finish for @translation_queries;
 
2496   $form->{is_wrong_pclass} = $has_wrong_pclass;
 
2497   $form->{NOTFORSALE}      = PCLASS_NOTFORSALE;
 
2498   $form->{NOTFORPURCHASE}  = PCLASS_NOTFORPURCHASE;
 
2499   foreach my $item (@{ $form->{item_list} }) {
 
2500     my $custom_variables = CVar->get_custom_variables(module   => 'IC',
 
2501                                                       trans_id => $item->{id},
 
2504     $form->{is_wrong_pclass} = PCLASS_OK; # one correct type
 
2505     map { $item->{"ic_cvar_" . $_->{name} } = $_->{value} } @{ $custom_variables };
 
2507   $main::lxdebug->leave_sub();
 
2511   $main::lxdebug->enter_sub();
 
2513   my ($self, $myconfig, $form, $table) = @_;
 
2515   $main::lxdebug->leave_sub() and return 0 unless ($form->{id});
 
2517   # make sure there's no funny stuff in $table
 
2518   # ToDO: die when this happens and throw an error
 
2519   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2521   my $dbh = $form->get_standard_dbh;
 
2523   my $query = qq|SELECT storno FROM $table WHERE storno_id = ?|;
 
2524   my ($result) = selectrow_query($form, $dbh, $query, $form->{id});
 
2526   $main::lxdebug->leave_sub();
 
2532   $main::lxdebug->enter_sub();
 
2534   my ($self, $myconfig, $form, $table, $id) = @_;
 
2536   $main::lxdebug->leave_sub() and return 0 unless ($id);
 
2538   # make sure there's no funny stuff in $table
 
2539   # ToDO: die when this happens and throw an error
 
2540   $main::lxdebug->leave_sub() and return 0 if ($table =~ /\W/);
 
2542   my $dbh = $form->get_standard_dbh;
 
2544   my $query = qq|SELECT storno FROM $table WHERE id = ?|;
 
2545   my ($result) = selectrow_query($form, $dbh, $query, $id);
 
2547   $main::lxdebug->leave_sub();
 
2552 sub get_standard_accno_current_assets {
 
2553   $main::lxdebug->enter_sub();
 
2555   my ($self, $myconfig, $form) = @_;
 
2557   my $dbh = $form->get_standard_dbh;
 
2559   my $query = qq| SELECT accno FROM chart WHERE id = (SELECT ar_paid_accno_id FROM defaults)|;
 
2560   my ($result) = selectrow_query($form, $dbh, $query);
 
2562   $main::lxdebug->leave_sub();