1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   6 #############################################################################
 
   7 # Changelog: Wann - Wer - Was
 
   8 # Veraendert 2005-01-05 - Marco Welter <mawe@linux-studio.de> - Neue Optik
 
   9 # 08.11.2008 - information@richardson-bueren.de jb  - Backport von Revision 7339 xplace - E-Mail-Vorlage automatisch auswählen
 
  10 # 02.02.2009 - information@richardson-bueren.de jb - Backport von Revision 8535 xplace - Erweiterung der Waren bei Lieferantenauftrag um den Eintrag Mindestlagerbestand. Offen: Auswahlliste auf Lieferantenaufträge einschränken -> Erledigt 2.2.09 Prüfung wie das Skript heisst (oe.pl) -> das ist nur die halbe Miete, nochmal mb fragen -> mb gefragt und es gibt die variable is_purchase
 
  11 #############################################################################
 
  12 # SQL-Ledger, Accounting
 
  13 # Copyright (c) 1998-2002
 
  15 #  Author: Dieter Simader
 
  16 #   Email: dsimader@sql-ledger.org
 
  17 #     Web: http://www.sql-ledger.org
 
  20 # This program is free software; you can redistribute it and/or modify
 
  21 # it under the terms of the GNU General Public License as published by
 
  22 # the Free Software Foundation; either version 2 of the License, or
 
  23 # (at your option) any later version.
 
  25 # This program is distributed in the hope that it will be useful,
 
  26 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  27 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  28 # GNU General Public License for more details.
 
  29 # You should have received a copy of the GNU General Public License
 
  30 # along with this program; if not, write to the Free Software
 
  31 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
  34 #######################################################################
 
  36 # common routines used in is, ir, oe
 
  38 #######################################################################
 
  42 use List::MoreUtils qw(any uniq apply);
 
  43 use List::Util qw(min max first);
 
  48 use SL::Controller::Base;
 
  50 use SL::Locale::String qw(t8);
 
  61 use SL::Helper::CreatePDF;
 
  62 use SL::Helper::Flash;
 
  64 require "bin/mozilla/common.pl";
 
  68 # any custom scripts for this one
 
  69 if (-f "bin/mozilla/custom_io.pl") {
 
  70   eval { require "bin/mozilla/custom_io.pl"; };
 
  72 if (-f "bin/mozilla/$::myconfig{login}_io.pl") {
 
  73   eval { require "bin/mozilla/$::myconfig{login}_io.pl"; };
 
  80 # this is for our long dates
 
  81 # $locale->text('January')
 
  82 # $locale->text('February')
 
  83 # $locale->text('March')
 
  84 # $locale->text('April')
 
  85 # $locale->text('May ')
 
  86 # $locale->text('June')
 
  87 # $locale->text('July')
 
  88 # $locale->text('August')
 
  89 # $locale->text('September')
 
  90 # $locale->text('October')
 
  91 # $locale->text('November')
 
  92 # $locale->text('December')
 
  94 # this is for our short month
 
  95 # $locale->text('Jan')
 
  96 # $locale->text('Feb')
 
  97 # $locale->text('Mar')
 
  98 # $locale->text('Apr')
 
  99 # $locale->text('May')
 
 100 # $locale->text('Jun')
 
 101 # $locale->text('Jul')
 
 102 # $locale->text('Aug')
 
 103 # $locale->text('Sep')
 
 104 # $locale->text('Oct')
 
 105 # $locale->text('Nov')
 
 106 # $locale->text('Dec')
 
 112   $main::auth->assert('part_service_assembly_edit   | vendor_invoice_edit       | sales_order_edit    | invoice_edit |' .
 
 113                 'request_quotation_edit       | sales_quotation_edit      | purchase_order_edit | ' .
 
 114                 'purchase_delivery_order_edit | sales_delivery_order_edit | part_service_assembly_details');
 
 117 ########################################
 
 118 # Eintrag fuer Version 2.2.0 geaendert #
 
 119 # neue Optik im Rechnungsformular      #
 
 120 ########################################
 
 122   $main::lxdebug->enter_sub();
 
 126   my $form     = $main::form;
 
 127   my %myconfig = %main::myconfig;
 
 128   my $locale   = $main::locale;
 
 129   my $cgi      = $::request->{cgi};
 
 133   my ($stock_in_out, $stock_in_out_title);
 
 135   my $defaults = AM->get_defaults();
 
 136   $form->{show_weight} = $defaults->{show_weight};
 
 137   $form->{weightunit} = $defaults->{weightunit};
 
 139   my $is_purchase        = (first { $_ eq $form->{type} } qw(request_quotation purchase_order purchase_delivery_order)) || ($form->{script} eq 'ir.pl');
 
 140   my $show_min_order_qty =  first { $_ eq $form->{type} } qw(request_quotation purchase_order);
 
 141   my $is_delivery_order  = $form->{type} =~ /_delivery_order$/;
 
 142   my $is_quotation       = $form->{type} =~ /_quotation$/;
 
 143   my $is_invoice         = $form->{type} =~ /invoice/;
 
 144   my $is_credit_note     = $form->{type} =~ /credit_note/;
 
 145   my $is_s_p_order       = (first { $_ eq $form->{type} } qw(sales_order purchase_order));
 
 146   my $show_ship_missing  = $is_s_p_order && $::instance_conf->get_sales_purchase_order_ship_missing_column;
 
 147   my $show_marge         = (!$is_purchase || $is_invoice || $is_credit_note) && !$is_delivery_order;
 
 149   if ($is_delivery_order) {
 
 150     if ($form->{type} eq 'sales_delivery_order') {
 
 151       $stock_in_out_title = $locale->text('Release From Stock');
 
 152       $stock_in_out       = 'out';
 
 154       $stock_in_out_title = $locale->text('Transfer To Stock');
 
 155       $stock_in_out       = 'in';
 
 158     retrieve_partunits();
 
 162   my @header_sort = qw(
 
 163     runningnumber partnumber type_and_classific description ship ship_missing qty price_factor
 
 164     unit weight price_source sellprice discount linetotal
 
 168     serialnr projectnr reqdate subtotal marge listprice lastcost onhand
 
 171     runningnumber => { width => 5,     value => $locale->text('No.'),                  display => 1, },
 
 172     partnumber    => { width => 8,     value => $locale->text('Number'),               display => 1, },
 
 174                   => { width => 2,     value => $locale->text('Type'),                 display => 1, },
 
 175     description   => { width => 30,    value => $locale->text('Part Description'),     display => 1, },
 
 176     ship          => { width => 5,     value => $locale->text('Delivered'),            display => $is_s_p_order, },
 
 177     ship_missing  => { width => 5,     value => $locale->text('Not delivered'),        display => $show_ship_missing, },
 
 178     qty           => { width => 5,     value => $locale->text('Qty'),                  display => 1, },
 
 179     price_factor  => { width => 5,     value => $locale->text('Price Factor'),         display => !$is_delivery_order, },
 
 180     unit          => { width => 5,     value => $locale->text('Unit'),                 display => 1, },
 
 181     weight        => { width => 5,     value => $locale->text('Weight'),               display => $defaults->{show_weight}, },
 
 182     serialnr      => { width => 10,    value => $locale->text('Serial No.'),           display => !$is_quotation },
 
 183     projectnr     => { width => 10,    value => $locale->text('Project'),              display => 1, },
 
 184     price_source  => { width => 5,     value => $locale->text('Price Source'),         display => !$is_delivery_order, },
 
 185     sellprice     => { width => 15,    value => $locale->text('Price'),                display => !$is_delivery_order, },
 
 186     discount      => { width => 5,     value => $locale->text('Discount'),             display => !$is_delivery_order, },
 
 187     linetotal     => { width => 10,    value => $locale->text('Extended'),             display => !$is_delivery_order, },
 
 188     bin           => { width => 10,    value => $locale->text('Bin'),                  display => 0, },
 
 189     stock_in_out  => { width => 10,    value => $stock_in_out_title,                   display => $is_delivery_order, },
 
 190     reqdate       => {                 value => $locale->text('Reqdate'),              display => $is_s_p_order || $is_delivery_order || $is_invoice, },
 
 191     subtotal      => {                 value => $locale->text('Subtotal'),             display => 1, },
 
 192     marge         => {                 value => $locale->text('Ertrag'),               display => $show_marge, },
 
 193     listprice     => {                 value => $locale->text('LP'),                   display => $show_marge, },
 
 194     lastcost      => {                 value => $locale->text('EK'),                   display => $show_marge, },
 
 195     onhand        => {                 value => $locale->text('On Hand'),              display => 1, },
 
 197   my @HEADER = map { $column_def{$_} } @header_sort;
 
 200   my $all_units       = AM->retrieve_units(\%myconfig, $form);
 
 202   my %price_factors   = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 205   $form->{invsubtotal} = 0;
 
 206   map { $form->{"${_}_base"} = 0 } (split(/ /, $form->{taxaccounts}));
 
 209   $myconfig{show_form_details} = 1                            unless (defined($myconfig{show_form_details}));
 
 210   $form->{show_details}        = $myconfig{show_form_details} unless (defined($form->{show_details}));
 
 213   # translations, unused commented out
 
 214   my $deliverydate  = $locale->text('Required by');
 
 217   my %align  = map { $_ => 'right' } qw(qty ship right discount linetotal stock_in_out weight ship_missing);
 
 218   my %nowrap = map { $_ => 1 }       qw(description unit);
 
 220   $form->{marge_total}           = 0;
 
 221   $form->{sellprice_total}       = 0;
 
 222   $form->{lastcost_total}        = 0;
 
 223   $form->{totalweight}           = 0;
 
 224   my %projectnumber_labels = ();
 
 225   my @projectnumber_values = ("");
 
 227   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 228     push(@projectnumber_values, $item->{"id"});
 
 229     $projectnumber_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 232   _update_part_information();
 
 233   _update_ship() if ($is_s_p_order);
 
 234   _update_custom_variables();
 
 238   my $record = _make_record();
 
 242   for my $i (1 .. $numrows) {
 
 243     my %column_data = ();
 
 245     my $record_item = $record->id && $record->items ? $record->items->[$i-1] : _make_record_item($i);
 
 248     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) }
 
 249       qw(qty discount sellprice lastcost price_new price_old)
 
 250         unless ($form->{simple_save});
 
 252     if ($form->{"prices_$i"} && ($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"})) {
 
 253       $form->{"sellprice_$i"} = $form->{"price_new_$i"};
 
 257     $form->{"unit_old_$i"}      ||= $form->{"unit_$i"};
 
 258     $form->{"selected_unit_$i"} ||= $form->{"unit_$i"};
 
 260     if (   !$all_units->{$form->{"selected_unit_$i"}}                                            # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 261         || !AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units)) { # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 262       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};                 # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 265     $form->{"sellprice_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units) || 1;
 
 266     $form->{"lastcost_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units) || 1;
 
 267     $form->{"unit_old_$i"}   = $form->{"selected_unit_$i"};
 
 269     my $this_unit = $form->{"unit_$i"};
 
 270     $this_unit    = $form->{"selected_unit_$i"} if AM->convert_unit($this_unit, $form->{"selected_unit_$i"}, $all_units);
 
 272     if (0 < scalar @{ $form->{ALL_PRICE_FACTORS} }) {
 
 273       my @values = ('', map { $_->{id}                      } @{ $form->{ALL_PRICE_FACTORS} });
 
 274       my %labels =      map { $_->{id} => $_->{description} } @{ $form->{ALL_PRICE_FACTORS} };
 
 276       $column_data{price_factor} =
 
 277         NTI($cgi->popup_menu('-name'    => "price_factor_id_$i",
 
 278                              '-default' => $form->{"price_factor_id_$i"},
 
 279                              '-values'  => \@values,
 
 280                              '-labels'  => \%labels,
 
 281                              '-style'   => 'width:90px'));
 
 283       $column_data{price_factor} = ' ';
 
 285     $form->{"weight_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"partunit_$i"}, $all_units) || 1;
 
 287     $column_data{"unit"} = AM->unit_select_html($all_units, "unit_$i", $this_unit, $form->{"id_$i"} ? $form->{"unit_$i"} : undef);
 
 290 #count the max of decimalplaces of sellprice and lastcost, so the same number of decimalplaces
 
 291 #is shown for lastcost and sellprice.
 
 292     my $decimalplaces = ($form->{"sellprice_$i"} =~ /\.(\d+)/) ? max 2, length $1 : 2;
 
 293     $decimalplaces = ($form->{"lastcost_$i"} =~ /\.(\d+)/) ? max $decimalplaces, length $1 : $decimalplaces;
 
 295     my $price_factor   = $price_factors{$form->{"price_factor_id_$i"}} || 1;
 
 296     my $discount       = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} *        $form->{"discount_$i"}  / 100 / $price_factor, 2);
 
 297     my $linetotal      = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} * (100 - $form->{"discount_$i"}) / 100 / $price_factor, 2);
 
 298     my $rows            = $form->numtextrows($form->{"description_$i"}, 30, 6);
 
 300     # quick delete single row
 
 301     $column_data{runningnumber}  = q|<a onclick= "$('#partnumber_| . $i . q|').val(''); $('#update_button').click();">| .
 
 302                                    q|<img height="10px" width="10px" src="image/cross.png" alt="| . $locale->text('Remove') . q|"></a> |;
 
 303     $column_data{runningnumber} .= $cgi->textfield(-name => "runningnumber_$i", -id => "runningnumber_$i", -size => 5,  -value => $i);    # HuT
 
 306     $column_data{partnumber}    = $cgi->textfield(-name => "partnumber_$i",    -id => "partnumber_$i",    -size => 12, -value => $form->{"partnumber_$i"});
 
 307     $column_data{type_and_classific} = $::request->presenter->type_abbreviation($form->{"part_type_$i"}).
 
 308                                        $::request->presenter->classification_abbreviation($form->{"classification_id_$i"}) if $form->{"id_$i"};
 
 309     $column_data{description} = (($rows > 1) # if description is too large, use a textbox instead
 
 310                                 ? $cgi->textarea( -name => "description_$i", -id => "description_$i", -default => $form->{"description_$i"}, -rows => $rows, -columns => 30)
 
 311                                 : $cgi->textfield(-name => "description_$i", -id => "description_$i",   -value => $form->{"description_$i"}, -size => 30))
 
 312                                 . $cgi->button(-value => $locale->text('L'), -onClick => "kivi.SalesPurchase.edit_longdescription($i)");
 
 314     my $qty_dec = ($form->{"qty_$i"} =~ /\.(\d+)/) ? length $1 : 2;
 
 316     $column_data{qty}  = $cgi->textfield(-name => "qty_$i", -size => 5, -value => $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec));
 
 317     $column_data{qty} .= $cgi->button(-onclick => "calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)", -value => $locale->text('*/'))
 
 318                        . $cgi->hidden(-name => "formel_$i", -value => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"})
 
 319       if $form->{"formel_$i"};
 
 321     $column_data{ship} = '';
 
 322     if ($form->{"id_$i"}) {
 
 323       my $ship_qty        = $form->{"ship_$i"} * 1;
 
 324       $ship_qty          *= $all_units->{$form->{"partunit_$i"}}->{factor};
 
 325       $ship_qty          /= ( $all_units->{$form->{"unit_$i"}}->{factor} || 1 );
 
 327       $column_data{ship}  = $form->format_amount(\%myconfig, $form->round_amount($ship_qty, 2) * 1) . ' ' . $form->{"unit_$i"}
 
 328       . $cgi->hidden(-name => "ship_$i", -value => $form->format_amount(\%myconfig, $form->{"ship_$i"}, $qty_dec));
 
 330       my $ship_missing_qty    = $form->{"qty_$i"} - $ship_qty;
 
 331       my $ship_missing_amount = $form->round_amount($ship_missing_qty * $form->{"sellprice_$i"} * (100 - $form->{"discount_$i"}) / 100 / $price_factor, 2);
 
 333       $column_data{ship_missing} = $form->format_amount(\%myconfig, $ship_missing_qty) . ' ' . $form->{"unit_$i"} . '; ' . $form->format_amount(\%myconfig, $ship_missing_amount, $decimalplaces);
 
 336     my $sellprice_value = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 337     my $discount_value  = $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
 338     my $edit_prices     = $main::auth->assert('edit_prices', 1) && !$::form->{"active_price_source_$i"};
 
 339     my $edit_discounts  = $main::auth->assert('edit_prices', 1) && !$::form->{"active_discount_source_$i"};
 
 340     $column_data{sellprice}   = (!$edit_prices)
 
 341                                 ? $cgi->hidden(   -name => "sellprice_$i", -id => "sellprice_$i", -value => $sellprice_value) . $sellprice_value
 
 342                                 : $cgi->textfield(-name => "sellprice_$i", -id => "sellprice_$i", -size => 10, -onBlur => "check_right_number_format(this)", -value => $sellprice_value);
 
 343     $column_data{discount}    = (!$edit_discounts)
 
 344                                   ? $cgi->hidden(   -name => "discount_$i", -id => "discount_$i", -value => $discount_value) . $discount_value . ' %'
 
 345                                   : $cgi->textfield(-name => "discount_$i", -id => "discount_$i", -size => 3, -value => $discount_value);
 
 346     $column_data{linetotal}   = $form->format_amount(\%myconfig, $linetotal, 2);
 
 347     $column_data{bin}         = $form->{"bin_$i"};
 
 349     $column_data{weight}      = $form->format_amount(\%myconfig, $form->{"qty_$i"} * $form->{"weight_$i"}, 3) . ' ' . $defaults->{weightunit} if $defaults->{show_weight};
 
 351     if ($form->{"id_${i}"} && !$is_delivery_order) {
 
 352       my $price_source  = SL::PriceSource->new(record_item => $record_item, record => $record);
 
 353       my $price         = $price_source->price_from_source($::form->{"active_price_source_$i"});
 
 354       my $discount      = $price_source->discount_from_source($::form->{"active_discount_source_$i"});
 
 355       my $best_price    = $price_source->best_price;
 
 356       my $best_discount = $price_source->best_discount;
 
 357       $column_data{price_source} .= $cgi->button(-value => $price->source_description, -onClick => "kivi.io.price_chooser($i)");
 
 358       if ($price->source) {
 
 359         $column_data{price_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $price->invalid, title => $price->invalid }) if $price->invalid;
 
 360         $column_data{price_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $price->missing, title => $price->missing }) if $price->missing;
 
 361         if (!$price->missing && !$price->invalid) {
 
 362           $column_data{price_source} .= ' ' . $cgi->img({src => 'image/up.png',   alt => t8('This price has since gone up'),      title => t8('This price has since gone up' )     }) if $price->price - $record_item->sellprice > 0.01;
 
 363           $column_data{price_source} .= ' ' . $cgi->img({src => 'image/down.png', alt => t8('This price has since gone down'),    title => t8('This price has since gone down')    }) if $price->price - $record_item->sellprice < -0.01;
 
 364           $column_data{price_source} .= ' ' . $cgi->img({src => 'image/ok.png',   alt => t8('There is a better price available'), title => t8('There is a better price available') }) if $best_price && $price->source ne $price_source->best_price->source;
 
 367       if ($discount->source) {
 
 368         $column_data{discount_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $discount->invalid, title => $discount->invalid }) if $discount->invalid;
 
 369         $column_data{discount_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $discount->missing, title => $discount->missing }) if $discount->missing;
 
 370         if (!$discount->missing && !$discount->invalid) {
 
 371           $column_data{price_source} .= ' ' . $cgi->img({src => 'image/up.png',   alt => t8('This discount has since gone up'),      title => t8('This discount has since gone up')      }) if $discount->discount * 100 - $record_item->discount > 0.01;
 
 372           $column_data{price_source} .= ' ' . $cgi->img({src => 'image/down.png', alt => t8('This discount has since gone down'),    title => t8('This discount has since gone down')    }) if $discount->discount * 100 - $record_item->discount < -0.01;
 
 373           $column_data{price_source} .= ' ' . $cgi->img({src => 'image/ok.png',   alt => t8('There is a better discount available'), title => t8('There is a better discount available') }) if $best_discount && $discount->source ne $price_source->best_discount->source;
 
 378     if ($is_delivery_order) {
 
 379       $column_data{stock_in_out} =  calculate_stock_in_out($i);
 
 382     $column_data{serialnr}  = qq|<input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">|;
 
 383     $column_data{projectnr} = NTI($cgi->popup_menu(
 
 384       '-name' => "project_id_$i",
 
 385       '-values' => \@projectnumber_values,
 
 386       '-labels' => \%projectnumber_labels,
 
 387       '-default' => $form->{"project_id_$i"}
 
 389     $column_data{reqdate}   = qq|<input name="reqdate_$i" size="11" onchange="check_right_date_format(this)" value="$form->{"reqdate_$i"}">|;
 
 390     $column_data{subtotal}  = sprintf qq|<input type="checkbox" name="subtotal_$i" value="1" %s>|, $form->{"subtotal_$i"} ? 'checked' : '';
 
 392 # begin marge calculations
 
 393     $form->{"lastcost_$i"}     *= 1;
 
 394     $form->{"marge_percent_$i"} = 0;
 
 398     if ( $form->{taxincluded} and $form->{"qty_$i"} * 1  and $form->{$form->{"taxaccounts_$i"} . "_rate"} * 1) {
 
 399       # if we use taxincluded we need to calculate the marge from the net_value
 
 400       # all the marge calculations are based on linetotal which we need to
 
 401       # convert to net first
 
 403       # there is no direct form value for the tax_rate of the item, but
 
 404       # form->{taxaccounts_$i} gives the tax account (e.g. 3806) and 3806_rate
 
 405       # gives the tax percentage (e.g. 0.19)
 
 406       $real_sellprice = $linetotal / (1 + $form->{$form->{"taxaccounts_$i"} . "_rate"});
 
 408       $real_sellprice            = $linetotal;
 
 410     my $real_lastcost            = $form->round_amount($form->{"lastcost_$i"} * $form->{"qty_$i"} / $price_factor, 2);
 
 411     my $marge_percent_warn       = $myconfig{marge_percent_warn} * 1 || 15;
 
 412     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
 
 414     if ($real_sellprice * 1 && ($form->{"qty_$i"} * 1)) {
 
 415       $form->{"marge_percent_$i"} = ($real_sellprice - $real_lastcost) * 100 / $real_sellprice;
 
 416       $marge_color                = 'color="#ff0000"' if $form->{"id_$i"} && $form->{"marge_percent_$i"} < $marge_percent_warn;
 
 419     $form->{"marge_absolut_$i"}  = ($real_sellprice - $real_lastcost) * $marge_adjust_credit_note;
 
 420     $form->{"marge_total"}      += $form->{"marge_absolut_$i"};
 
 421     $form->{"lastcost_total"}   += $real_lastcost;
 
 422     $form->{"sellprice_total"}  += $real_sellprice;
 
 424     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_absolut marge_percent);
 
 426     $column_data{marge} = sprintf qq|<font %s>%s  %s%%</font>|,
 
 427       $marge_color, $form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"};
 
 428     $column_data{listprice} = $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2);
 
 429     $column_data{lastcost}  = sprintf qq|<input size="5" name="lastcost_$i" value="%s">|, $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
 
 430 # / marge calculations ending
 
 432 # Calculate total weight
 
 433     $totalweight += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
 436     if ($form->{"id_$i"}) {
 
 437       my $part         = IC->get_basic_part_info(id => $form->{"id_$i"});
 
 438       my $onhand_color = $part->{onhand} < $part->{rop} ? 'color="#ff0000"' : '';
 
 439       $column_data{onhand} = sprintf "<font %s>%s %s</font>",
 
 441                       $form->format_amount(\%myconfig, $part->{onhand}, 2),
 
 446     my @ROW1 = map { { value => $column_data{$_}, align => $align{$_}, nowrap => $nowrap{$_} } } grep { $column_def{$_}{display} } @header_sort;
 
 447     my @ROW2 = map { { value => sprintf "<b>%s</b> %s", $column_def{$_}{value}, $column_data{$_} } } grep { $column_def{$_}{display} } @row2_sort;
 
 450     # add hidden ids for persistent (item|invoice)_ids and previous (converted_from*) ids
 
 452       push @hidden_vars, qw(orderitems_id converted_from_orderitems_id);
 
 455       push @hidden_vars, qw(orderitems_id converted_from_orderitems_id converted_from_invoice_id);
 
 458       push @hidden_vars, qw(invoice_id converted_from_orderitems_id converted_from_delivery_order_items_id converted_from_invoice_id);
 
 460     if ($::form->{type} =~ /credit_note/) {
 
 461       push @hidden_vars, qw(invoice_id converted_from_invoice_id);
 
 463    if ($is_delivery_order) {
 
 464       map { $form->{"${_}_${i}"} = $form->format_amount(\%myconfig, $form->{"${_}_${i}"}) } qw(sellprice discount lastcost);
 
 465       push @hidden_vars, grep { defined $form->{"${_}_${i}"} } qw(sellprice discount not_discountable price_factor_id lastcost);
 
 466       push @hidden_vars, "stock_${stock_in_out}_sum_qty", "stock_${stock_in_out}";
 
 467       push @hidden_vars, qw(delivery_order_items_id converted_from_orderitems_id converted_from_delivery_order_items_id);
 
 470     my @HIDDENS = map { value => $_}, (
 
 471           $cgi->hidden("-name" => "unit_old_$i", "-value" => $form->{"selected_unit_$i"}),
 
 472           $cgi->hidden("-name" => "price_new_$i", "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"})),
 
 473           map { ($cgi->hidden("-name" => $_, "-id" => $_, "-value" => $form->{$_})); } map { $_."_$i" }
 
 474             (qw(bo price_old id inventory_accno bin partsgroup partnotes active_price_source active_discount_source
 
 475                 income_accno expense_accno listprice assembly taxaccounts ordnumber donumber transdate cusordnumber
 
 476                 longdescription basefactor marge_absolut marge_percent marge_price_factor weight), @hidden_vars)
 
 479     map { $form->{"${_}_base"} += $linetotal } (split(/ /, $form->{"taxaccounts_$i"}));
 
 481     $form->{invsubtotal} += $linetotal;
 
 483     # Benutzerdefinierte Variablen für Waren/Dienstleistungen/Erzeugnisse
 
 484     _render_custom_variables_inputs(ROW2 => \@ROW2, row => $i, part_id => $form->{"id_$i"});
 
 486     my $colspan = scalar @ROW1;
 
 487     push @ROWS, { ROW1 => \@ROW1, ROW2 => \@ROW2, HIDDENS => \@HIDDENS, colspan => $colspan, error => $form->{"row_error_$i"}, obj => $record_item };
 
 490   $form->{totalweight} = $totalweight;
 
 492   print $form->parse_html_template('oe/sales_order', { ROWS   => \@ROWS,
 
 496   if (abs($form->{sellprice_total} * 1) >= 0.01) {
 
 497     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
 
 500   $main::lxdebug->leave_sub();
 
 504   $main::lxdebug->enter_sub();
 
 507   my $mode            = $params{mode}            || croak "Missing parameter 'mode'";
 
 508   my $pre_entered_qty = $params{pre_entered_qty} || 1;
 
 511   my $previous_form = $::auth->save_form_in_session(form => $::form);
 
 512   $::form->{title}  = $::myconfig{item_multiselect} ?
 
 513       $::locale->text('Set count for one or more of the items to select them'):
 
 514       $::locale->text('Select from one of the items below');
 
 517   my @item_list = map {
 
 518     # maybe there is a better backend function or way to calc
 
 519     $_->{display_sellprice} = ($_->{price_factor}) ? $_->{sellprice} / $_->{price_factor} : $_->{sellprice};
 
 521   } @{ $::form->{item_list} };
 
 523   # delete action variable
 
 524   delete @{$::form}{qw(action item_list)};
 
 526   print $::form->parse_html_template('io/select_item', { PREVIOUS_FORM   => $previous_form,
 
 528                                                          ITEM_LIST       => \@item_list,
 
 529                                                          IS_ASSEMBLY     => $mode eq 'IC',
 
 530                                                          IS_PURCHASE     => $mode eq 'IS',
 
 531                                                          PRE_ENTERED_QTY => $pre_entered_qty, });
 
 533   $main::lxdebug->leave_sub();
 
 538   # this function is used for adding parts to records (mode = IR/IS)
 
 539   # and to assemblies (mode = IC)
 
 541   $main::lxdebug->enter_sub();
 
 543   my $form     = $main::form;
 
 544   my %myconfig = %main::myconfig;
 
 548   $::auth->restore_form_from_session($form->{select_item_previous_form} || croak('Missing previous form ID'), form => $form);
 
 550   my $mode     = delete($form->{select_item_mode}) || croak 'Missing item selection mode';
 
 551   my $row_key  = $mode eq 'IC' ? 'assembly_rows' : 'rowcount';
 
 552   my $curr_row = $form->{ $row_key };
 
 556   if ($myconfig{item_multiselect}) {
 
 557     foreach (grep(/^select_qty_/, keys(%{ $form }))) {
 
 558       next unless $form->{$_};
 
 559       $_ =~ /^select_qty_(\d+)/;
 
 560       $form->{"id_${row}"}  = $1;
 
 561       $form->{"qty_${row}"} = $form->{$_};
 
 565     $form->{"id_${row}"} = delete($form->{select_item_id}) || croak 'Missing item selection ID';
 
 569   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 570     qw(sellprice weight);
 
 572   if ( $mode eq 'IC' ) {
 
 574     # the qty variables of the existing assembly items are all still formatted, so we parse them here
 
 575     # including the qty of the just added part
 
 576     $form->{"qty_$_"} = $form->parse_amount(\%myconfig, $form->{"qty_$_"}) for (1 .. $row - 1);
 
 578     if ($myconfig{item_multiselect}) {
 
 579       # other modes and multiselection:
 
 580       # parse all newly entered qtys
 
 581       $form->{"qty_$_"} = $form->parse_amount(\%myconfig, $form->{"qty_$_"}) for ($curr_row .. $row - 1);
 
 585   for my $i ($curr_row .. $row - 1) {
 
 586     $form->{ $row_key } = $i;
 
 588     my $id = $form->{"id_${i}"};
 
 590     delete $form->{item_list};
 
 593       IS->retrieve_item(\%myconfig, \%$form);
 
 594     } elsif ($mode eq 'IR') {
 
 595       IR->retrieve_item(\%myconfig, \%$form);
 
 596     } elsif ($mode eq 'IC') {
 
 597       IC->assembly_item(\%myconfig, \%$form);
 
 599       croak "Invalid item selection mode '${mode}'";
 
 602     my $new_item = $form->{item_list}->[0] || croak "No item found for mode '${mode}' and ID '${id}'";
 
 604     # if there was a price entered, override it
 
 606     unless ( $mode eq 'IC' ) {
 
 607       $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 611         qw(id partnumber description sellprice listprice inventory_accno
 
 612            income_accno expense_accno bin unit weight part_type taxaccounts
 
 613            partsgroup formel longdescription not_discountable partnotes lastcost
 
 614            price_factor_id price_factor);
 
 616     my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 617     push @new_fields, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 619     map { $form->{"${_}_$i"} = $new_item->{$_} } @new_fields;
 
 621     if (my $record = _make_record()) {
 
 622       my $price_source = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
 
 623       my $best_price   = $price_source->best_price;
 
 626         $::form->{"sellprice_$i"}           = $best_price->price;
 
 627         $::form->{"active_price_source_$i"} = $best_price->source;
 
 630       my $best_discount = $price_source->best_discount;
 
 632       if ($best_discount) {
 
 633         $::form->{"discount_$i"}               = $best_discount->discount;
 
 634         $::form->{"active_discount_source_$i"} = $best_discount->source;
 
 638     $form->{"marge_price_factor_$i"} = $new_item->{price_factor};
 
 640     if ($form->{"part_payment_id_$i"} ne "") {
 
 641       $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 644     my ($dec)         = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 646     my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 649       $form->{"sellprice_$i"} = $sellprice;
 
 652       # if there is an exchange rate adjust sellprice
 
 653       if (($form->{exchangerate} * 1) != 0) {
 
 654         $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 655         $form->{"sellprice_$i"} =
 
 656             $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 660     # at this stage qty of newly added part needs to be have been parsed
 
 661     $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 663     if ($form->{"not_discountable_$i"}) {
 
 664       $form->{"discount_$i"} = 0;
 
 668         $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"}) * $form->{"qty_$i"};
 
 669     map { $form->{"${_}_base"} += $amount }                         (split / /, $form->{"taxaccounts_$i"});
 
 670     map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{"taxaccounts_$i"} if !$form->{taxincluded};
 
 672     $form->{creditremaining} -= $amount;
 
 673     $form->{"runningnumber_$i"} = $i;
 
 678           $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 679     } qw(sellprice lastcost qty) if $form->{part_type} ne 'assembly';
 
 680     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0) if $form->{part_type} ne 'assembly';
 
 682     delete $form->{nextsub};
 
 688   $main::lxdebug->leave_sub();
 
 692   $main::lxdebug->enter_sub();
 
 694   my $form     = $main::form;
 
 695   my %myconfig = %main::myconfig;
 
 699   my $price_key = ($form->{type} =~ m/request_quotation|purchase_order/) || ($form->{script} eq 'ir.pl') ? 'lastcost' : 'sellprice';
 
 702   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 703   $form->{callback}     = $form->escape("$form->{script}?action=display_form", 1);
 
 705   # save all form variables except action in the session and keep the key in the previousform variable
 
 706   my $previousform = $::auth->save_form_in_session(skip_keys => [ qw(action) ]);
 
 709   push @HIDDENS,      { 'name' => 'previousform', 'value' => $previousform };
 
 710   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} },                       qw(rowcount vc);
 
 711   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{"${_}_$form->{rowcount}"} }, qw(partnumber description unit);
 
 712   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
 
 713   push @HIDDENS,      { 'name' => $price_key,     'value' => $form->parse_amount(\%myconfig, $form->{"sellprice_$form->{rowcount}"}) };
 
 714   push @HIDDENS,      { 'name' => 'notes',        'value' => $form->{"longdescription_$form->{rowcount}"} };
 
 717   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
 
 719   $main::lxdebug->leave_sub();
 
 723   $main::lxdebug->enter_sub();
 
 725   my $form     = $main::form;
 
 726   my %myconfig = %main::myconfig;
 
 733   # remove any makes or model rows
 
 734   if ($form->{part_type} eq 'assembly') {
 
 736     # fuer assemblies auskommentiert. seiteneffekte? ;-) wird die woanders benoetigt?
 
 737     #$form->{sellprice} = 0;
 
 739     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 740       qw(sellprice rop stock);
 
 742     my @flds = qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup lastcost);
 
 744     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 745       if ($form->{"qty_$i"}) {
 
 749         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 751         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 753         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 755         # fuer assemblies auskommentiert. siehe oben
 
 756         #    $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"} / ($form->{"price_factor_$i"} || 1));
 
 757         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"} / ($form->{"price_factor_$i"} || 1));
 
 761     # kann das hier auch weg? s.o. jb
 
 762     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 764     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 765     $form->{assembly_rows} = $count;
 
 767   } elsif ($form->{part_type} !~ m{^(?:part|service)$}) {
 
 768     remove_emptied_rows(1);
 
 770     $form->{creditremaining} -= &invoicetotal;
 
 775   $main::lxdebug->leave_sub();
 
 778 sub remove_emptied_rows {
 
 779   my $dont_add_empty = shift;
 
 782   return unless $form->{rowcount};
 
 784   my @flds = qw(id partnumber description qty ship sellprice unit
 
 785                 discount inventory_accno income_accno expense_accno listprice
 
 786                 taxaccounts bin assembly weight projectnumber project_id
 
 787                 oldprojectnumber runningnumber serialnumber partsgroup payment_id
 
 788                 not_discountable shop ve gv buchungsgruppen_id language_values
 
 789                 price_old price_new unit_old ordnumber donumber
 
 790                 transdate longdescription basefactor marge_total marge_percent
 
 791                 marge_price_factor lastcost price_factor_id partnotes
 
 792                 stock_out stock_in has_sernumber reqdate orderitems_id
 
 793                 active_price_source active_discount_source delivery_order_items_id
 
 794                 invoice_id converted_from_orderitems_id
 
 795                 converted_from_delivery_order_items_id converted_from_invoice_id);
 
 797   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 798   push @flds, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 801   for my $i (1 .. $form->{rowcount} - 1) {
 
 802     next unless $form->{"partnumber_$i"};
 
 804     push @new_rows, { map { $_ => $form->{"${_}_$i" } } @flds };
 
 807   my $new_rowcount = scalar @new_rows;
 
 808   $form->redo_rows(\@flds, \@new_rows, $new_rowcount, $form->{rowcount});
 
 809   $form->{rowcount} = $new_rowcount + ($dont_add_empty ? 0 : 1);
 
 813   $main::lxdebug->enter_sub();
 
 815   my $form     = $main::form;
 
 816   my %myconfig = %main::myconfig;
 
 820   $form->{oldinvtotal} = 0;
 
 822   # add all parts and deduct paid
 
 823   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
 825   my ($amount, $sellprice, $discount, $qty);
 
 827   for my $i (1 .. $form->{rowcount}) {
 
 828     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 829     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
 830     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 832     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 834     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
 835     map { $form->{"${_}_base"} += $amount }
 
 836       (split (/ /, $form->{"taxaccounts_$i"}));
 
 837     $form->{oldinvtotal} += $amount;
 
 840   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
 841     split(/ /, $form->{taxaccounts})
 
 842     if !$form->{taxincluded};
 
 844   $form->{oldtotalpaid} = 0;
 
 845   for my $i (1 .. $form->{paidaccounts}) {
 
 846     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
 849   $main::lxdebug->leave_sub();
 
 852   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 856   $main::lxdebug->enter_sub();
 
 858   my $form     = $main::form;
 
 859   my $locale   = $main::locale;
 
 863   # check if items are valid
 
 864   if ($form->{rowcount} == 1) {
 
 865     flash('warning', $::locale->text('The action you\'ve chosen has not been executed because the document does not contain any item yet.'));
 
 867     $::dispatcher->end_request;
 
 870   for my $i (1 .. $form->{rowcount} - 1) {
 
 871     $form->isblank("partnumber_$i",
 
 872                    $locale->text('Number missing in Row') . " $i");
 
 875   $main::lxdebug->leave_sub();
 
 879   $main::lxdebug->enter_sub();
 
 881   my $form     = $main::form;
 
 882   my %myconfig = %main::myconfig;
 
 883   my $locale   = $main::locale;
 
 887   if ($form->{second_run}) {
 
 888     $form->{print_and_post} = 0;
 
 890   $form->{ordnumber} = $form->{invnumber};
 
 892   $form->{old_employee_id} = $form->{employee_id};
 
 893   $form->{old_salesman_id} = $form->{salesman_id};
 
 895   delete $form->{$_} foreach (qw(printed emailed queued));
 
 897   # When creating a new sales order from a saved sales invoice, reset id,
 
 898   # ordnumber, transdate and deliverydate as we are creating a new order. This
 
 899   # workflow is probably mainly used as a template mechanism for creating new
 
 900   # orders from existing invoices, so we probably don't want to link the items.
 
 901   # Is this order function called anywhere else?
 
 902   # The worksflows in oe already call sales_order and purchase_order in oe, not
 
 903   # this general function which now only seems to be called from saved sales
 
 905   # Why is ordnumber set to invnumber above, does this ever make sense?
 
 907   if ( $form->{script} eq 'is.pl' && $form->{type} eq 'invoice' ) {
 
 908     delete $form->{$_} foreach (qw(ordnumber id transdate deliverydate));
 
 912   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
 913     $form->{title} = $locale->text('Add Purchase Order');
 
 914     $form->{vc}    = 'vendor';
 
 915     $form->{type}  = 'purchase_order';
 
 918   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
 919     $form->{title} = $locale->text('Add Sales Order');
 
 920     $form->{vc}    = 'customer';
 
 921     $form->{type}  = 'sales_order';
 
 924   $form->{script} = 'oe.pl';
 
 930   require "bin/mozilla/$form->{script}";
 
 931   my $script = $form->{"script"};
 
 934   $locale = Locale->new($::lx_office_conf{system}->{language}, $script);
 
 936   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
 
 938   my $currency = $form->{currency};
 
 942   $form->{currency}     = $currency;
 
 943   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 944   $form->{exchangerate} = $form->{forex} || '';
 
 946   for my $i (1 .. $form->{rowcount}) {
 
 947     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"})
 
 948             if ($form->{"${_}_${i}"}) }
 
 949         qw(ship qty sellprice basefactor discount));
 
 950     $form->{"converted_from_invoice_id_$i"} = delete $form->{"invoice_id_$i"};
 
 956   $main::lxdebug->leave_sub();
 
 960   $main::lxdebug->enter_sub();
 
 962   my $form     = $main::form;
 
 963   my %myconfig = %main::myconfig;
 
 964   my $locale   = $main::locale;
 
 968   # we are coming from *_order and convert to quotation
 
 969   # it seems that quotation is only called if we have a existing order
 
 970   if ($form->{type} =~  /(sales|purchase)_order/) {
 
 971     $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
 
 973   if ($form->{second_run}) {
 
 974     $form->{print_and_post} = 0;
 
 976   delete $form->{$_} foreach (qw(printed emailed queued));
 
 979   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
 980     $form->{title} = $locale->text('Add Request for Quotation');
 
 981     $form->{vc}    = 'vendor';
 
 982     $form->{type}  = 'request_quotation';
 
 985   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
 986     $form->{title} = $locale->text('Add Quotation');
 
 987     $form->{vc}    = 'customer';
 
 988     $form->{type}  = 'sales_quotation';
 
 994   $form->{script} = 'oe.pl';
 
 998   require "bin/mozilla/$form->{script}";
 
1000   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
 
1002   my $currency = $form->{currency};
 
1006   $form->{currency}     = $currency;
 
1007   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
1008   $form->{exchangerate} = $form->{forex} || '';
 
1010   for my $i (1 .. $form->{rowcount}) {
 
1011     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
1012                                                      $form->{"${_}_${i}"})
 
1013             if ($form->{"${_}_${i}"}) }
 
1014         qw(ship qty sellprice basefactor discount lastcost));
 
1020   $main::lxdebug->leave_sub();
 
1023 sub request_for_quotation {
 
1028   $main::lxdebug->enter_sub();
 
1030   my $form     = $main::form;
 
1031   my %myconfig = %main::myconfig;
 
1032   my $locale   = $main::locale;
 
1036   if ($form->{second_run}) {
 
1037     $form->{print_and_post} = 0;
 
1038     $form->{resubmit}       = 0;
 
1041   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
 
1043   if ($form->{"cp_id"}) {
 
1044     CT->get_contact(\%myconfig, $form);
 
1045     $form->{"email"} = $form->{"cp_email"} if $form->{"cp_email"};
 
1048   $form->{language} = $form->get_template_language(\%myconfig);
 
1049   $form->{language} = "_" . $form->{language} if $form->{language};
 
1051   my $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
 
1053   $form->{oldmedia} = $form->{media};
 
1054   $form->{media}    = "email";
 
1056   my $global_bcc = AM->get_defaults()->{global_bcc};
 
1058   $form->{bcc} = join ', ', grep $_, $form->{bcc}, $global_bcc;
 
1060   my $attachment_filename = $form->generate_attachment_filename();
 
1061   my $subject             = $form->{subject} || $form->generate_email_subject();
 
1065   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
 
1066   @dont_hide_key_list = qw(action email cc bcc subject message sendmode format header override login password);
 
1067   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
 
1068   @hidden_keys = sort grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
 
1070   my (@files, @vc_files, @part_files, $has_document);
 
1072   if ($::instance_conf->get_doc_storage) {
 
1073     @files = SL::File->get_all_versions(object_id => $form->{id}, object_type => $form->{type}, file_type => 'document');
 
1074     $has_document = 1 if scalar(@files) > 0;
 
1075     @files = SL::File->get_all(object_id => $form->{id}, object_type => $form->{type}, file_type => 'attachment');
 
1076     @vc_files = SL::File->get_all(object_id => $form->{"$form->{vc}_id"}, object_type => $form->{vc})
 
1077       if $form->{vc} && $form->{"$form->{vc}_id"};
 
1079     my %part_id_map = map { $_->{id} => $_ } grep { $_->{id} } map {
 
1081         'id'       => $form->{"id_$_"},
 
1082         'partname' => $form->{"partnumber_$_"}
 
1084     } (1 .. $form->{rowcount});
 
1086     foreach my $partid (keys %part_id_map) {
 
1087       my @pfiles = SL::File->get_all(object_id => $partid, object_type => 'part');
 
1088       push @part_files, map { $_->{partname} = $part_id_map{$partid}->{partname}; $_ } @pfiles;
 
1092   print $form->parse_html_template('generic/edit_email',
 
1094                                      a_filename    => $attachment_filename,
 
1095                                      subject       => $subject,
 
1096                                      has_document  => $has_document,
 
1097                                      print_options => print_options('inline' => 1),
 
1098                                      action        => 'send_email',
 
1100                                      VC_FILES      => \@vc_files,
 
1101                                      PART_FILES    => \@part_files,
 
1102                                      HIDDEN        => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
 
1103                                      SHOW_BCC      => $::auth->assert('email_bcc', 'may fail') });
 
1105   $main::lxdebug->leave_sub();
 
1109   $main::lxdebug->enter_sub();
 
1111   my $form     = $main::form;
 
1112   my %myconfig = %main::myconfig;
 
1116   my $callback = $form->{script} . "?action=edit";
 
1117   map({ $callback .= "\&${_}=" . E($form->{$_}); } qw(type id));
 
1118   if ( $form->{action_oldfile} || $form->{action_nofile} ) {
 
1119     if (!$form->{email} || $form->{email} =~ /^\s*$/) {
 
1120       flash('error', $::locale->text('E-mail address missing!'));
 
1123       $form->send_email(\%myconfig,'pdf');
 
1127     print_form("return");
 
1128     $form->{addition} = "SCREENED";
 
1129     $form->save_history;
 
1130     $form->{addition} = "MAILED";
 
1133   flash_later('info' , $::locale->text('E-Mail is sent to #1', $form->{email})) if !$form->{emailerr};
 
1134   flash_later('error', $::locale->text($form->{emailerr})) if $form->{emailerr};
 
1136   delete $form->{emailerr};
 
1138   Common->save_email_status(\%myconfig, $form);
 
1139   ##TODO andere SAVE HISTORY
 
1141   $form->{callback} = $callback;
 
1144   $main::lxdebug->leave_sub();
 
1148   $::lxdebug->enter_sub();
 
1154   my $inline = delete $options{inline};
 
1156   require SL::Helper::PrintOptions;
 
1157   my $print_options = SL::Helper::PrintOptions->get_print_options(
 
1159     myconfig => \%::myconfig,
 
1160     locale   => $::locale,
 
1161     options  => \%options);
 
1164     $::lxdebug->leave_sub();
 
1165     return $print_options;
 
1168   print $print_options;
 
1169   $::lxdebug->leave_sub();
 
1174   $main::lxdebug->enter_sub();
 
1176   my $form     = $main::form;
 
1177   my $locale   = $main::locale;
 
1181   if ($form->{print_nextsub}) {
 
1182     call_sub($form->{print_nextsub});
 
1183     $main::lxdebug->leave_sub();
 
1187   # if this goes to the printer pass through
 
1189   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1190     $form->error($locale->text('Select postscript or PDF!'))
 
1191       if ($form->{format} !~ /(postscript|pdf)/);
 
1193     $old_form = Form->new;
 
1194     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1197   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1198     if ($form->{formname} eq "proforma") {
 
1199       $form->{proforma} = 1;
 
1201     $form->{print_and_save} = 1;
 
1202     my $formname = $form->{formname};
 
1204     $form->{formname} = $formname;
 
1206     $::lxdebug->leave_sub();
 
1207     $::dispatcher->end_request;
 
1210   &print_form($old_form);
 
1212   $main::lxdebug->leave_sub();
 
1216   $main::lxdebug->enter_sub();
 
1218   my $form     = $main::form;
 
1219   my %myconfig = %main::myconfig;
 
1220   my $locale   = $main::locale;
 
1224   my $defaults = SL::DB::Default->get;
 
1225   $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
 
1226   $form->{templates} = $defaults->templates;
 
1228   my ($old_form, %params) = @_;
 
1232   my $numberfld = "invnumber";
 
1236     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1238   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1239   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1241   if ($form->{formname} eq "invoice") {
 
1242     $form->{label} = $locale->text('Invoice');
 
1244   if ($form->{formname} eq 'sales_order') {
 
1247     $form->{"${inv}date"} = $form->{transdate};
 
1248     $form->{label}        = $locale->text('Confirmation');
 
1249     $numberfld            = "sonumber";
 
1253   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1256     $form->{"${inv}date"} = $form->{invdate};
 
1257     $form->{label}        = $locale->text('Proforma Invoice');
 
1258     $numberfld            = "sonumber";
 
1262   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1265     $form->{"${inv}date"} = $form->{transdate};
 
1266     $form->{"invdate"}    = $form->{transdate};
 
1267     $form->{invnumber}    = $form->{ordnumber};
 
1268     $form->{label}        = $locale->text('Proforma Invoice');
 
1269     $numberfld            = "sonumber";
 
1273   if ($form->{formname} eq 'purchase_order') {
 
1276     $form->{"${inv}date"} = $form->{transdate};
 
1277     $form->{label}        = $locale->text('Purchase Order');
 
1278     $numberfld            = "ponumber";
 
1281   if ($form->{formname} eq 'bin_list') {
 
1284     $form->{"${inv}date"} = $form->{transdate};
 
1285     $form->{label}        = $locale->text('Bin List');
 
1288   if ($form->{formname} eq 'sales_quotation') {
 
1291     $form->{"${inv}date"} = $form->{transdate};
 
1292     $form->{label}        = $locale->text('Quotation');
 
1293     $numberfld            = "sqnumber";
 
1297   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1300     $form->{"${inv}date"} = $form->{transdate};
 
1301     $form->{"invdate"}    = $form->{transdate};
 
1302     $form->{label}        = $locale->text('Proforma Invoice');
 
1303     $numberfld            = "sqnumber";
 
1307   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'ic_supply') ) {
 
1310     $form->{"${inv}date"} = $form->{transdate};
 
1311     $form->{"invdate"}    = $form->{transdate};
 
1312     $form->{invnumber}    = $form->{ordnumber};
 
1313     $form->{label}        = $locale->text('Intra-Community supply');
 
1314     $numberfld            = "sonumber";
 
1318   if ($form->{formname} eq 'request_quotation') {
 
1321     $form->{"${inv}date"} = $form->{transdate};
 
1322     $form->{label}        = $locale->text('RFQ');
 
1323     $numberfld            = "rfqnumber";
 
1327   if ($form->{type} =~ /_delivery_order$/) {
 
1330     $form->{"${inv}date"} = $form->{transdate};
 
1331     $numberfld            = $form->{type} =~ /^sales/ ? 'sdonumber' : 'pdonumber';
 
1332     $form->{label}        = $form->{formname} eq 'pick_list' ? $locale->text('Pick List') : $locale->text('Delivery Order');
 
1334   if ($form->{type} =~ /letter/) {
 
1337     $form->{label}        = $locale->text('Letter');
 
1340   $form->{TEMPLATE_DRIVER_OPTIONS} = { };
 
1341   if (any { $form->{type} eq $_ } qw(sales_quotation sales_order sales_delivery_order invoice request_quotation purchase_order purchase_delivery_order credit_note)) {
 
1342     $form->{TEMPLATE_DRIVER_OPTIONS}->{variable_content_types} = $form->get_variable_content_types();
 
1345   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1346     if ($form->{media} eq 'email');
 
1347   $form->isblank("${inv}date",
 
1348            $locale->text($form->{label})
 
1350            . $locale->text(' Date missing!'));
 
1352   # $locale->text('Invoice Number missing!')
 
1353   # $locale->text('Invoice Date missing!')
 
1354   # $locale->text('Order Number missing!')
 
1355   # $locale->text('Order Date missing!')
 
1356   # $locale->text('Quotation Number missing!')
 
1357   # $locale->text('Quotation Date missing!')
 
1359   $form->{what_done} = $form->{formname};
 
1363   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1364   my ($saved_email, $saved_cc, $saved_bcc) =
 
1365     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1367   my $language_saved = $form->{language_id};
 
1368   my $payment_id_saved = $form->{payment_id};
 
1369   my $delivery_term_id_saved = $form->{delivery_term_id};
 
1370   my $salesman_id_saved = $form->{salesman_id};
 
1371   my $cp_id_saved = $form->{cp_id};
 
1372   my $taxzone_id_saved = $form->{taxzone_id};
 
1373   my $currency_saved = $form->{currency};
 
1375   call_sub("$form->{vc}_details") if ($form->{vc});
 
1377   $form->{language_id} = $language_saved;
 
1378   $form->{payment_id} = $payment_id_saved;
 
1379   $form->{delivery_term_id} = $delivery_term_id_saved;
 
1380   $form->{taxzone_id} = $taxzone_id_saved;
 
1381   $form->{currency} = $currency_saved;
 
1383   $form->{"email"} = $saved_email if ($saved_email);
 
1384   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1385   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1387   if (!$cp_id_saved) {
 
1388     # No contact was selected. Delete all contact variables because
 
1389     # IS->customer_details() and IR->vendor_details() get the default
 
1391     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1394   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
1395   if ($form->{"language_id"}) {
 
1396     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
1397       AM->get_language_details(\%myconfig, $form, $form->{language_id});
 
1399     $output_dateformat = $myconfig{"dateformat"};
 
1400     $output_numberformat = $myconfig{"numberformat"};
 
1401     $output_longdates = 1;
 
1404   # Store the output number format so that the template modules know
 
1405   # how to parse the amounts back if requested.
 
1406   $myconfig{output_numberformat} = $output_numberformat || $myconfig{numberformat};
 
1408   ($form->{employee}) = split /--/, $form->{employee};
 
1410   # create the form variables
 
1411   if ($form->{type} =~ /_delivery_order$/) {
 
1412     DO->order_details(\%myconfig, \%$form);
 
1414     OE->order_details(\%myconfig, \%$form);
 
1415   } elsif ($form->{type} eq 'letter') {
 
1416     # right now, no details are needed
 
1417     # but i do not want to break the bad default (invoice)
 
1419     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1422   $form->get_employee_data('prefix' => 'employee', 'id' => $form->{employee_id});
 
1423   $form->get_employee_data('prefix' => 'salesman', 'id' => $salesman_id_saved);
 
1425   if ($form->{shipto_id}) {
 
1426     $form->get_shipto(\%myconfig);
 
1429   $form->{notes} =~ s/^\s+//g;
 
1431   delete $form->{printer_command};
 
1433   $form->{language} = $form->get_template_language(\%myconfig);
 
1436   if ($form->{media} ne 'email') {
 
1437     $printer_code = $form->get_printer_code(\%myconfig);
 
1438     if ($printer_code ne "") {
 
1439       $printer_code = "_" . $printer_code;
 
1443   if ($form->{language} ne "") {
 
1444     my $template_arrays = $form->{TEMPLATE_ARRAYS} || $form;
 
1445     map { $template_arrays->{unit}->[$_] = AM->translate_units($form, $form->{language}, $template_arrays->{unit}->[$_], $template_arrays->{qty}->[$_]); } (0..scalar(@{ $template_arrays->{unit} }) - 1);
 
1447     $form->{language} = "_" . $form->{language};
 
1451   format_dates($output_dateformat, $output_longdates,
 
1452                qw(invdate orddate quodate pldate duedate reqdate transdate
 
1453                   shippingdate deliverydate validitydate paymentdate
 
1454                   datepaid transdate_oe transdate_do transdate_quo deliverydate_oe dodate
 
1455                   employee_startdate employee_enddate
 
1457                grep({ /^datepaid_\d+$/ ||
 
1458                         /^transdate_oe_\d+$/ ||
 
1459                         /^transdate_do_\d+$/ ||
 
1460                         /^transdate_quo_\d+$/ ||
 
1461                         /^deliverydate_oe_\d+$/ ||
 
1463                         /^deliverydate_\d+$/ ||
 
1467   reformat_numbers($output_numberformat, 2,
 
1468                    qw(invtotal ordtotal quototal subtotal linetotal
 
1469                       listprice sellprice netprice discount
 
1470                       tax taxbase total paid payment),
 
1471                    grep({ /^(?:linetotal|nodiscount_linetotal|listprice|sellprice|netprice|taxbase|discount|p_discount|discount_sub|nodiscount_sub|paid|subtotal|total|tax)_\d+$/ } keys(%{$form})));
 
1473   reformat_numbers($output_numberformat, undef,
 
1474                    qw(qty price_factor),
 
1478   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
1480   if (scalar @{ $cvar_date_fields }) {
 
1481     format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
1484   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
1485     reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
1488   my $extension = 'html';
 
1489   if ($form->{format} eq 'postscript') {
 
1490     $form->{postscript}   = 1;
 
1493   } elsif ($form->{"format"} =~ /pdf/) {
 
1495     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
1497   } elsif ($form->{"format"} =~ /opendocument/) {
 
1498     $form->{opendocument} = 1;
 
1500   } elsif ($form->{"format"} =~ /excel/) {
 
1505   # search for the template
 
1506   my ($template_file, @template_files) = SL::Helper::CreatePDF->find_template(
 
1507     name        => $form->{formname},
 
1508     email       => $form->{media} eq 'email',
 
1509     language_id => $form->{language_id},
 
1510     printer_id  => $form->{printer_id},
 
1511     extension   => $extension,
 
1514   if (!defined $template_file) {
 
1515     $::form->error($::locale->text('Cannot find matching template for this print request. Please contact your template maintainer. I tried these: #1.', join ', ', map { "'$_'"} @template_files));
 
1518   $form->{IN} = $template_file;
 
1520   delete $form->{OUT};
 
1522   if ($form->{media} eq 'printer') {
 
1523     $form->{OUT}      = $form->{printer_command};
 
1524     $form->{OUT_MODE} = '|-';
 
1525     $form->{printed} .= " $form->{formname}";
 
1526     $form->{printed}  =~ s/^ //;
 
1528   my $printed = $form->{printed};
 
1530   if ($form->{media} eq 'email') {
 
1531     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1532       unless $form->{subject};
 
1534     $form->{emailed} .= " $form->{formname}";
 
1535     $form->{emailed} =~ s/^ //;
 
1536     $form->{addition} = "MAILED";
 
1538   my $emailed = $form->{emailed};
 
1540   if ($form->{media} eq 'queue') {
 
1541     my %queued = map { s|.*[/\\]||; $_ } split / /, $form->{queued};
 
1544     my $suffix = ($form->{postscript}) ? '.ps' : '.pdf';
 
1545     if ($filename = $queued{ $form->{formname} }) {
 
1546       unlink $::lx_office_conf{paths}->{spool} . "/$filename";
 
1547       delete $queued{ $form->{formname} };
 
1549       $form->{queued}    =  join ' ', %queued;
 
1550       $filename          =~ s/\..*$//g;
 
1551       $filename         .=  $suffix;
 
1552       $form->{OUT}       =  $::lx_office_conf{paths}->{spool} . "/$filename";
 
1553       $form->{OUT_MODE}  =  '>';
 
1557       ($temp_fh, $filename) = File::Temp::tempfile(
 
1558         'kivitendo-spoolXXXXXX',
 
1559         SUFFIX => "$suffix",
 
1560         DIR    => $::lx_office_conf{paths}->{spool},
 
1564       $form->{OUT} = "$filename";
 
1565       # use >> for OUT_MODE because file is already created by File::Temp
 
1566       $form->{OUT_MODE} = '>>';
 
1567       # strip directory so that only filename is stored in table status
 
1568       ($filename) = $filename =~ /^$::lx_office_conf{paths}->{spool}\/(.*)/;
 
1572     $form->{queued} .= " $form->{formname} $filename";
 
1573     $form->{queued} =~ s/^ //;
 
1575   my $queued = $form->{queued};
 
1577 # saving the history
 
1578   if(!exists $form->{addition}) {
 
1579     $form->{snumbers} = "${inv}number" . "_" . $form->{"${inv}number"};
 
1580     if($form->{media} =~ /printer/) {
 
1581       $form->{addition} = "PRINTED";
 
1583     elsif($form->{media} =~ /email/) {
 
1584       $form->{addition} = "MAILED";
 
1586     elsif($form->{media} =~ /queue/) {
 
1587       $form->{addition} = "QUEUED";
 
1589     elsif($form->{media} =~ /screen/) {
 
1590       $form->{addition} = "SCREENED";
 
1592     $form->save_history;
 
1594   # /saving the history
 
1596   # prepare meta information for template introspection
 
1597   $form->{template_meta} = {
 
1598     formname  => $form->{formname},
 
1599     language  => SL::DB::Manager::Language->find_by_or_create(id => $form->{language_id} || undef),
 
1600     format    => $form->{format},
 
1601     media     => $form->{media},
 
1602     extension => $extension,
 
1603     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $form->{printer_id} || undef),
 
1604     today     => DateTime->today,
 
1607   $form->parse_template(\%myconfig);
 
1609   $form->{callback} = "";
 
1611   if ($form->{media} eq 'email') {
 
1612     $form->{message} = $locale->text('sent') unless $form->{message};
 
1614   my $message = $form->{message};
 
1616   # if we got back here restore the previous form
 
1617   if ($form->{media} =~ /(printer|email|queue)/) {
 
1619     $form->update_status(\%myconfig)
 
1620       if ($form->{media} eq 'queue' && $form->{id});
 
1622     return $main::lxdebug->leave_sub() if ($old_form eq "return");
 
1626       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1628       # restore and display form
 
1629       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1631       $form->{queued}  = $queued;
 
1632       $form->{printed} = $printed;
 
1633       $form->{emailed} = $emailed;
 
1634       $form->{message} = $message;
 
1636       $form->{rowcount}--;
 
1637       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1638         qw(exchangerate creditlimit creditremaining);
 
1640       for my $i (1 .. $form->{paidaccounts}) {
 
1642           $form->{"${_}_$i"} =
 
1643             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1644         } qw(paid exchangerate);
 
1647       call_sub($display_form);
 
1648       $::dispatcher->end_request;
 
1652       ($form->{media} eq 'printer')
 
1653       ? $locale->text('sent to printer')
 
1654       : $locale->text('emailed to') . " $form->{email}";
 
1656     if (!$params{no_redirect}) {
 
1657       $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1660   if ($form->{printing}) {
 
1661    call_sub($display_form);
 
1662    $::dispatcher->end_request;
 
1665   $main::lxdebug->leave_sub();
 
1668 sub customer_details {
 
1669   $main::lxdebug->enter_sub();
 
1671   my $form     = $main::form;
 
1672   my %myconfig = %main::myconfig;
 
1674   IS->customer_details(\%myconfig, \%$form, @_);
 
1676   $main::lxdebug->leave_sub();
 
1679 sub vendor_details {
 
1680   $main::lxdebug->enter_sub();
 
1682   my $form     = $main::form;
 
1683   my %myconfig = %main::myconfig;
 
1685   IR->vendor_details(\%myconfig, \%$form, @_);
 
1687   $main::lxdebug->leave_sub();
 
1691   $main::lxdebug->enter_sub();
 
1693   my $form     = $main::form;
 
1697   $form->{postasnew} = 1;
 
1698   map { delete $form->{$_} } qw(printed emailed queued);
 
1702   $main::lxdebug->leave_sub();
 
1706   $main::lxdebug->enter_sub();
 
1710   $::form->{print_and_post} = 0 if $::form->{second_run};
 
1712   map { $::form->{$_} = $::form->parse_amount(\%::myconfig, $::form->{$_}) } qw(exchangerate creditlimit creditremaining);
 
1714   # get details for customer/vendor
 
1715   call_sub($::form->{vc} . "_details", qw(name department_1 department_2 street zipcode city country gln contact email phone fax), $::form->{vc} . "number");
 
1716   $::form->{rowcount}--;
 
1718   my $cvars         = SL::DB::Shipto->new->cvars_by_config;
 
1719   my @shipto_vars   = qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptogln
 
1720                          shiptocontact shiptocp_gender shiptophone shiptofax shiptoemail
 
1721                          shiptodepartment_1 shiptodepartment_2);
 
1722   my $previous_form = $::auth->save_form_in_session(skip_keys => [ @shipto_vars, qw(header shipto_id), map { "shiptocvar_" . $_->config->name } @{ $cvars } ]);
 
1723   $::form->{title}  = $::locale->text('Ship to');
 
1726   my $vc_obj = ($::form->{vc} eq 'customer' ? "SL::DB::Customer" : "SL::DB::Vendor")->new(id => $::form->{$::form->{vc} . "_id"})->load;
 
1728   $_->value($::form->{"shiptocvar_" . $_->config->name}) for @{ $cvars };
 
1730   print $::form->parse_html_template('io/ship_to', { previousform => $previous_form,
 
1731                                                      nextsub      => $::form->{display_form} || 'display_form',
 
1736   $main::lxdebug->leave_sub();
 
1739 sub ship_to_entered {
 
1740   $::auth->restore_form_from_session(delete $::form->{previousform});
 
1741   call_sub($::form->{nextsub});
 
1744 sub relink_accounts {
 
1745   $main::lxdebug->enter_sub();
 
1747   my $form     = $main::form;
 
1748   my %myconfig = %main::myconfig;
 
1752   $form->{"taxaccounts"} =~ s/\s*$//;
 
1753   $form->{"taxaccounts"} =~ s/^\s*//;
 
1754   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
1755     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
1757   $form->{"taxaccounts"} = "";
 
1759   IC->retrieve_accounts(\%myconfig, $form, map { $_ => $form->{"id_$_"} } 1 .. $form->{rowcount});
 
1761   $main::lxdebug->leave_sub();
 
1764 sub get_payment_terms_for_invoice {
 
1765   my $terms = $::form->{payment_id}  ? SL::DB::PaymentTerm->new(id => $::form->{payment_id}) ->load
 
1766             : $::form->{customer_id} ? SL::DB::Customer   ->new(id => $::form->{customer_id})->load->payment
 
1767             : $::form->{vendor_id}   ? SL::DB::Vendor     ->new(id => $::form->{vendor_id})  ->load->payment
 
1776   my $js      = SL::ClientJS->new(controller => SL::Controller::Base->new);
 
1777   my $terms   = get_payment_terms_for_invoice();
 
1778   my $invdate = $::form->{invdate} eq 'undefined' ? DateTime->today_local : DateTime->from_kivitendo($::form->{invdate});
 
1779   my $duedate = $terms ? $terms->calc_date(reference_date => $invdate, due_date => $::form->{duedate})->to_kivitendo : ($::form->{duedate} || $invdate->to_kivitendo);
 
1781   if ($terms && $terms->auto_calculation) {
 
1782     $js->hide('#duedate_container')
 
1783        ->show('#duedate_fixed')
 
1784        ->html('#duedate_fixed', $duedate);
 
1787     $js->show('#duedate_container')
 
1788        ->hide('#duedate_fixed');
 
1791   $js->val('#duedate', $duedate)
 
1795 sub _update_part_information {
 
1796   $main::lxdebug->enter_sub();
 
1798   my $form     = $main::form;
 
1800   my %part_information = IC->get_basic_part_info('id' => [ grep { $_ } map { $form->{"id_${_}"} } (1..$form->{rowcount}) ]);
 
1802   $form->{PART_INFORMATION} = \%part_information;
 
1804   foreach my $i (1..$form->{rowcount}) {
 
1805     next unless ($form->{"id_${i}"});
 
1807     my $info                        = $form->{PART_INFORMATION}->{$form->{"id_${i}"}} || { };
 
1808     $form->{"partunit_${i}"}        = $info->{unit};
 
1809     $form->{"weight_$i"}            = $info->{weight};
 
1810     $form->{"part_type_$i"}         = $info->{part_type};
 
1811     $form->{"classification_id_$i"} = $info->{classification_id};
 
1814   $main::lxdebug->leave_sub();
 
1818   $main::lxdebug->enter_sub();
 
1820   my $form     = $main::form;
 
1821   my %myconfig = %main::myconfig;
 
1823   if (!$form->{ordnumber} || !$form->{id}) {
 
1824     map { $form->{"ship_$_"} = 0 } (1..$form->{rowcount});
 
1825     $main::lxdebug->leave_sub();
 
1829   my $all_units = AM->retrieve_all_units();
 
1831   my %ship = DO->get_shipped_qty('oe_id' => $form->{id});
 
1833   foreach my $i (1..$form->{rowcount}) {
 
1834     next unless ($form->{"id_${i}"});
 
1836     $form->{"ship_$i"} = 0;
 
1838     my $ship_entry = $ship{$i};
 
1840     next if (!$ship_entry || ($ship_entry->{qty_ordered} <= 0));
 
1842     my $rowqty = $ship_entry->{qty_ordered} - $ship_entry->{qty_notdelivered};
 
1843     $rowqty   *= $all_units->{$form->{"unit_$i"}}->{factor} /
 
1844                  $all_units->{$form->{"partunit_$i"}}->{factor} if !$form->{simple_save};
 
1845     $form->{"ship_$i"}  = $rowqty;
 
1848   $main::lxdebug->leave_sub();
 
1851 sub _update_custom_variables {
 
1852   $main::lxdebug->enter_sub();
 
1854   my $form     = $main::form;
 
1856   $form->{CVAR_CONFIGS}         = { } unless ref $form->{CVAR_CONFIGS} eq 'HASH';
 
1857   $form->{CVAR_CONFIGS}->{IC} ||= CVar->get_configs(module => 'IC');
 
1859   $main::lxdebug->leave_sub();
 
1862 sub _render_custom_variables_inputs {
 
1863   $main::lxdebug->enter_sub(2);
 
1865   my $form     = $main::form;
 
1869   if (!$form->{CVAR_CONFIGS}->{IC}) {
 
1870     $main::lxdebug->leave_sub();
 
1874   my $valid = CVar->custom_variables_validity_by_trans_id(trans_id => $params{part_id});
 
1876   # get partsgroup_id from part
 
1878   if ($params{part_id}) {
 
1879     $partsgroup_id = SL::DB::Part->new(id => $params{part_id})->load->partsgroup_id;
 
1882   my $num_visible_cvars = 0;
 
1883   foreach my $cvar (@{ $form->{CVAR_CONFIGS}->{IC} }) {
 
1884     $cvar->{valid} = $params{part_id} && $valid->($cvar->{id});
 
1886     # set partsgroup filter
 
1887     my $partsgroup_filtered = 0;
 
1888     if ($cvar->{flag_partsgroup_filter}) {
 
1889       if (!$partsgroup_id || (!grep {$partsgroup_id == $_} @{ $cvar->{partsgroups} })) {
 
1890         $partsgroup_filtered = 1;
 
1894     my $hide_non_editable = 1;
 
1897     my $description = '';
 
1898     if (( ($cvar->{flag_editable} || !$hide_non_editable) && $cvar->{valid}) && !$partsgroup_filtered) {
 
1899       $num_visible_cvars++;
 
1900       $description = $cvar->{description} . ' ';
 
1904     my $form_key = "ic_cvar_" . $cvar->{name} . "_$params{row}";
 
1906     push @{ $params{ROW2} }, {
 
1907       line_break     => $show && !(($num_visible_cvars - 1) % ($::myconfig{form_cvars_nr_cols}*1 || 3)),
 
1908       description    => $description,
 
1911          hide_non_editable => $hide_non_editable,
 
1913          name_prefix       => 'ic_',
 
1914          name_postfix      => "_$params{row}",
 
1915          valid             => $cvar->{valid},
 
1916          value             => CVar->parse($::form->{$form_key}, $cvar),
 
1917          partsgroup_filtered => $partsgroup_filtered,
 
1922   $main::lxdebug->leave_sub(2);
 
1925 sub _remove_billed_or_delivered_rows {
 
1928   croak "Missing parameter 'quantities'" if !$params{quantities};
 
1930   my @fields = map { s/_1$//; $_ } grep { m/_1$/ } keys %{ $::form };
 
1933   my $make_key = sub {
 
1935     return $::form->{"id_${row}"} unless $::form->{"serialnumber_${row}"};
 
1936     my $key = $::form->{"id_${row}"} . ':' . $::form->{"serialnumber_${row}"};
 
1937     return exists $params{quantities}->{$key} ? $key : $::form->{"id_${row}"};
 
1940   my $removed_rows = 0;
 
1942   while ($row < $::form->{rowcount}) {
 
1944     next unless $::form->{"id_$row"};
 
1946     my $parts_id                      = $::form->{"id_$row"};
 
1947     my $base_qty                      = $::form->parse_amount(\%::myconfig, $::form->{"qty_$row"}) * SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor;
 
1949     my $key                           = $make_key->($row);
 
1950     my $sub_qty                       = min($base_qty, $params{quantities}->{$key});
 
1951     $params{quantities}->{$key}      -= $sub_qty;
 
1953     if (!$sub_qty || ($sub_qty != $base_qty)) {
 
1954       $::form->{"qty_${row}"} = $::form->format_amount(\%::myconfig, ($base_qty - $sub_qty) / SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor);
 
1955       push @new_rows, { map { $_ => $::form->{"${_}_${row}"} } @fields };
 
1962   $::form->redo_rows(\@fields, \@new_rows, scalar(@new_rows), $::form->{rowcount});
 
1963   $::form->{rowcount} -= $removed_rows;
 
1966 # TODO: both of these are makeshift so that price sources can operate on rdbo objects. if
 
1967 # this ever gets rewritten in controller style, throw this out
 
1968 sub _make_record_item {
 
1972     sales_order             => 'OrderItem',
 
1973     purchase_order          => 'OrderItem',
 
1974     sales_quotation         => 'OrderItem',
 
1975     request_quotation       => 'OrderItem',
 
1976     invoice                 => 'InvoiceItem',
 
1977     credit_note             => 'InvoiceItem',
 
1978     purchase_invoice        => 'InvoiceItem',
 
1979     purchase_delivery_order => 'DeliveryOrderItem',
 
1980     sales_delivery_order    => 'DeliveryOrderItem',
 
1981   }->{$::form->{type}};
 
1983   return unless $class;
 
1985   $class = 'SL::DB::' . $class;
 
1987   eval "require $class";
 
1989   my $obj = $::form->{"orderitems_id_$row"}
 
1990           ? $class->meta->convention_manager->auto_manager_class_name->find_by(id => $::form->{"orderitems_id_$row"})
 
1993   for my $method (apply { s/_$row$// } grep { /_$row$/ } keys %$::form) {
 
1994     if ($obj->meta->column($method)) {
 
1995       if ($obj->meta->column($method)->isa('Rose::DB::Object::Metadata::Column::Date')) {
 
1996         $obj->${\"$method\_as_date"}($::form->{"$method\_$row"});
 
1997       } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::(?:Numeric|Float|DoublePrecsion)$/) {
 
1998         $obj->${\"$method\_as_number"}($::form->{"$method\_$row"});
 
1999       } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::Boolean$/) {
 
2000         $obj->$method(!!$::form->{$method});
 
2002         $obj->$method($::form->{"$method\_$row"});
 
2005       $obj->{__additional_form_attributes}{$method} = $::form->{"$method\_$row"};
 
2009   if ($::form->{"id_$row"}) {
 
2010     $obj->part(SL::DB::Part->load_cached($::form->{"id_$row"}));
 
2018     sales_order             => 'Order',
 
2019     purchase_order          => 'Order',
 
2020     sales_quotation         => 'Order',
 
2021     request_quotation       => 'Order',
 
2022     purchase_delivery_order => 'DeliveryOrder',
 
2023     sales_delivery_order    => 'DeliveryOrder',
 
2024   }->{$::form->{type}};
 
2026   if ($::form->{type} =~ /invoice|credit_note/) {
 
2027     $class = $::form->{vc} eq 'customer' ? 'Invoice'
 
2028            : $::form->{vc} eq 'vendor'   ? 'PurchaseInvoice'
 
2029            : do { die 'unknown invoice type' };
 
2032   return unless $class;
 
2034   $class = 'SL::DB::' . $class;
 
2036   eval "require $class";
 
2038   my $obj = $::form->{id}
 
2039           ? $class->meta->convention_manager->auto_manager_class_name->find_by(id => $::form->{id})
 
2042   for my $method (keys %$::form) {
 
2043     next unless $obj->can($method);
 
2044     next unless $obj->meta->column($method);
 
2046     if ($obj->meta->column($method)->isa('Rose::DB::Object::Metadata::Column::Date')) {
 
2047       $obj->${\"$method\_as_date"}($::form->{$method});
 
2048     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::(?:Numeric|Float|DoublePrecsion)$/) {
 
2049       $obj->${\"$method\_as_number"}($::form->{$method});
 
2050     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::Boolean$/) {
 
2051       $obj->$method(!!$::form->{$method});
 
2053       $obj->$method($::form->{$method});
 
2058   for my $i (1 .. $::form->{rowcount}) {
 
2059     next unless $::form->{"id_$i"};
 
2060     push @items, _make_record_item($i);
 
2063   $obj->items(@items) if @items;
 
2064   $obj->is_sales(!!$obj->customer_id) if $class eq 'SL::DB::DeliveryOrder';