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);
 
  44 use List::UtilsBy qw(sort_by uniq_by);
 
  49 use SL::Controller::Base;
 
  51 use SL::Locale::String qw(t8);
 
  63 use SL::Helper::CreatePDF;
 
  64 use SL::Helper::Flash;
 
  65 use SL::Helper::PrintOptions;
 
  67 require "bin/mozilla/common.pl";
 
  71 # any custom scripts for this one
 
  72 if (-f "bin/mozilla/custom_io.pl") {
 
  73   eval { require "bin/mozilla/custom_io.pl"; };
 
  75 if (-f "bin/mozilla/$::myconfig{login}_io.pl") {
 
  76   eval { require "bin/mozilla/$::myconfig{login}_io.pl"; };
 
  83 # this is for our long dates
 
  84 # $locale->text('January')
 
  85 # $locale->text('February')
 
  86 # $locale->text('March')
 
  87 # $locale->text('April')
 
  88 # $locale->text('May ')
 
  89 # $locale->text('June')
 
  90 # $locale->text('July')
 
  91 # $locale->text('August')
 
  92 # $locale->text('September')
 
  93 # $locale->text('October')
 
  94 # $locale->text('November')
 
  95 # $locale->text('December')
 
  97 # this is for our short month
 
  98 # $locale->text('Jan')
 
  99 # $locale->text('Feb')
 
 100 # $locale->text('Mar')
 
 101 # $locale->text('Apr')
 
 102 # $locale->text('May')
 
 103 # $locale->text('Jun')
 
 104 # $locale->text('Jul')
 
 105 # $locale->text('Aug')
 
 106 # $locale->text('Sep')
 
 107 # $locale->text('Oct')
 
 108 # $locale->text('Nov')
 
 109 # $locale->text('Dec')
 
 115   $main::auth->assert('part_service_assembly_edit   | vendor_invoice_edit       | sales_order_edit    | invoice_edit |' .
 
 116                 'request_quotation_edit       | sales_quotation_edit      | purchase_order_edit | ' .
 
 117                 'purchase_delivery_order_edit | sales_delivery_order_edit | part_service_assembly_details');
 
 120 ########################################
 
 121 # Eintrag fuer Version 2.2.0 geaendert #
 
 122 # neue Optik im Rechnungsformular      #
 
 123 ########################################
 
 125   $main::lxdebug->enter_sub();
 
 129   my $form     = $main::form;
 
 130   my %myconfig = %main::myconfig;
 
 131   my $locale   = $main::locale;
 
 132   my $cgi      = $::request->{cgi};
 
 136   my ($stock_in_out, $stock_in_out_title);
 
 138   my $defaults = AM->get_defaults();
 
 139   $form->{show_weight} = $defaults->{show_weight};
 
 140   $form->{weightunit} = $defaults->{weightunit};
 
 142   my $is_purchase        = (first { $_ eq $form->{type} } qw(request_quotation purchase_order purchase_delivery_order)) || ($form->{script} eq 'ir.pl');
 
 143   my $show_min_order_qty =  first { $_ eq $form->{type} } qw(request_quotation purchase_order);
 
 144   my $is_delivery_order  = $form->{type} =~ /_delivery_order$/;
 
 145   my $is_quotation       = $form->{type} =~ /_quotation$/;
 
 146   my $is_invoice         = $form->{type} =~ /invoice/;
 
 147   my $is_credit_note     = $form->{type} =~ /credit_note/;
 
 148   my $is_s_p_order       = (first { $_ eq $form->{type} } qw(sales_order purchase_order));
 
 149   my $show_ship_missing  = $is_s_p_order && $::instance_conf->get_sales_purchase_order_ship_missing_column;
 
 150   my $show_marge         = (!$is_purchase || $is_invoice || $is_credit_note) && !$is_delivery_order;
 
 152   if ($is_delivery_order) {
 
 153     if ($form->{type} eq 'sales_delivery_order') {
 
 154       $stock_in_out_title = $locale->text('Release From Stock');
 
 155       $stock_in_out       = 'out';
 
 157       $stock_in_out_title = $locale->text('Transfer To Stock');
 
 158       $stock_in_out       = 'in';
 
 161     retrieve_partunits();
 
 165   my @header_sort = qw(
 
 166     runningnumber partnumber type_and_classific description ship ship_missing qty price_factor
 
 167     unit weight price_source sellprice discount linetotal
 
 171     serialnr projectnr reqdate subtotal marge listprice lastcost onhand
 
 174     runningnumber => { width => 5,     value => $locale->text('No.'),                  display => 1, },
 
 175     partnumber    => { width => 8,     value => $locale->text('Number'),               display => 1, },
 
 177                   => { width => 2,     value => $locale->text('Type'),                 display => 1, },
 
 178     description   => { width => 30,    value => $locale->text('Part Description'),     display => 1, },
 
 179     ship          => { width => 5,     value => $locale->text('Delivered'),            display => $is_s_p_order, },
 
 180     ship_missing  => { width => 5,     value => $locale->text('Not delivered'),        display => $show_ship_missing, },
 
 181     qty           => { width => 5,     value => $locale->text('Qty'),                  display => 1, },
 
 182     price_factor  => { width => 5,     value => $locale->text('Price Factor'),         display => !$is_delivery_order, },
 
 183     unit          => { width => 5,     value => $locale->text('Unit'),                 display => 1, },
 
 184     weight        => { width => 5,     value => $locale->text('Weight'),               display => $defaults->{show_weight}, },
 
 185     serialnr      => { width => 10,    value => $locale->text('Serial No.'),           display => !$is_quotation },
 
 186     projectnr     => { width => 10,    value => $locale->text('Project'),              display => 1, },
 
 187     price_source  => { width => 5,     value => $locale->text('Price Source'),         display => !$is_delivery_order, },
 
 188     sellprice     => { width => 15,    value => $locale->text('Price'),                display => !$is_delivery_order, },
 
 189     discount      => { width => 5,     value => $locale->text('Discount'),             display => !$is_delivery_order, },
 
 190     linetotal     => { width => 10,    value => $locale->text('Extended'),             display => !$is_delivery_order, },
 
 191     bin           => { width => 10,    value => $locale->text('Bin'),                  display => 0, },
 
 192     stock_in_out  => { width => 10,    value => $stock_in_out_title,                   display => $is_delivery_order, },
 
 193     reqdate       => {                 value => $locale->text('Reqdate'),              display => $is_s_p_order || $is_delivery_order || $is_invoice, },
 
 194     subtotal      => {                 value => $locale->text('Subtotal'),             display => 1, },
 
 195     marge         => {                 value => $locale->text('Ertrag'),               display => $show_marge, },
 
 196     listprice     => {                 value => $locale->text('LP'),                   display => $show_marge, },
 
 197     lastcost      => {                 value => $locale->text('EK'),                   display => $show_marge, },
 
 198     onhand        => {                 value => $locale->text('On Hand'),              display => 1, },
 
 200   my @HEADER = map { $column_def{$_} } @header_sort;
 
 203   my $all_units       = AM->retrieve_units(\%myconfig, $form);
 
 205   my %price_factors   = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 208   $form->{invsubtotal} = 0;
 
 209   map { $form->{"${_}_base"} = 0 } (split(/ /, $form->{taxaccounts}));
 
 212   $myconfig{show_form_details} = 1                            unless (defined($myconfig{show_form_details}));
 
 213   $form->{show_details}        = $myconfig{show_form_details} unless (defined($form->{show_details}));
 
 216   # translations, unused commented out
 
 217   my $deliverydate  = $locale->text('Required by');
 
 220   my %align  = map { $_ => 'right' } qw(qty ship right discount linetotal stock_in_out weight ship_missing);
 
 221   my %nowrap = map { $_ => 1 }       qw(description unit);
 
 223   $form->{marge_total}           = 0;
 
 224   $form->{sellprice_total}       = 0;
 
 225   $form->{lastcost_total}        = 0;
 
 226   $form->{totalweight}           = 0;
 
 227   my %projectnumber_labels = ();
 
 228   my @projectnumber_values = ("");
 
 230   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 231     push(@projectnumber_values, $item->{"id"});
 
 232     $projectnumber_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 235   _update_part_information();
 
 236   _update_ship() if ($is_s_p_order);
 
 237   _update_custom_variables();
 
 241   my $record = _make_record();
 
 245   for my $i (1 .. $numrows) {
 
 246     my %column_data = ();
 
 248     my $record_item = $record->id && $record->items ? $record->items->[$i-1] : _make_record_item($i);
 
 251     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) }
 
 252       qw(qty discount sellprice lastcost price_new price_old)
 
 253         unless ($form->{simple_save});
 
 255     if ($form->{"prices_$i"} && ($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"})) {
 
 256       $form->{"sellprice_$i"} = $form->{"price_new_$i"};
 
 260     $form->{"unit_old_$i"}      ||= $form->{"unit_$i"};
 
 261     $form->{"selected_unit_$i"} ||= $form->{"unit_$i"};
 
 263     if (   !$all_units->{$form->{"selected_unit_$i"}}                                            # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 264         || !AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units)) { # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 265       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};                 # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 268     $form->{"sellprice_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units) || 1;
 
 269     $form->{"lastcost_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units) || 1;
 
 270     $form->{"unit_old_$i"}   = $form->{"selected_unit_$i"};
 
 272     my $this_unit = $form->{"unit_$i"};
 
 273     $this_unit    = $form->{"selected_unit_$i"} if AM->convert_unit($this_unit, $form->{"selected_unit_$i"}, $all_units);
 
 275     if (0 < scalar @{ $form->{ALL_PRICE_FACTORS} }) {
 
 276       my @values = ('', map { $_->{id}                      } @{ $form->{ALL_PRICE_FACTORS} });
 
 277       my %labels =      map { $_->{id} => $_->{description} } @{ $form->{ALL_PRICE_FACTORS} };
 
 279       $column_data{price_factor} =
 
 280         NTI($cgi->popup_menu('-name'    => "price_factor_id_$i",
 
 281                              '-default' => $form->{"price_factor_id_$i"},
 
 282                              '-values'  => \@values,
 
 283                              '-labels'  => \%labels,
 
 284                              '-style'   => 'width:90px'));
 
 286       $column_data{price_factor} = ' ';
 
 288     $form->{"weight_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"partunit_$i"}, $all_units) || 1;
 
 290     $column_data{"unit"} = AM->unit_select_html($all_units, "unit_$i", $this_unit, $form->{"id_$i"} ? $form->{"unit_$i"} : undef);
 
 293 #count the max of decimalplaces of sellprice and lastcost, so the same number of decimalplaces
 
 294 #is shown for lastcost and sellprice.
 
 295     my $decimalplaces = ($form->{"sellprice_$i"} =~ /\.(\d+)/) ? max 2, length $1 : 2;
 
 296     $decimalplaces = ($form->{"lastcost_$i"} =~ /\.(\d+)/) ? max $decimalplaces, length $1 : $decimalplaces;
 
 298     my $price_factor   = $price_factors{$form->{"price_factor_id_$i"}} || 1;
 
 299     my $discount       = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} *        $form->{"discount_$i"}  / 100 / $price_factor, 2);
 
 300     my $linetotal      = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} * (100 - $form->{"discount_$i"}) / 100 / $price_factor, 2);
 
 301     my $rows            = $form->numtextrows($form->{"description_$i"}, 30, 6);
 
 303     # quick delete single row
 
 304     $column_data{runningnumber}  = q|<a onclick= "$('#partnumber_| . $i . q|').val(''); $('#update_button').click();">| .
 
 305                                    q|<img height="10px" width="10px" src="image/cross.png" alt="| . $locale->text('Remove') . q|"></a> |;
 
 306     $column_data{runningnumber} .= $cgi->textfield(-name => "runningnumber_$i", -id => "runningnumber_$i", -size => 5,  -value => $i);    # HuT
 
 309     $column_data{partnumber}    = $cgi->textfield(-name => "partnumber_$i",    -id => "partnumber_$i",    -size => 12, -value => $form->{"partnumber_$i"});
 
 310     $column_data{type_and_classific} = $::request->presenter->type_abbreviation($form->{"part_type_$i"}).
 
 311                                        $::request->presenter->classification_abbreviation($form->{"classification_id_$i"}) if $form->{"id_$i"};
 
 312     $column_data{description} = (($rows > 1) # if description is too large, use a textbox instead
 
 313                                 ? $cgi->textarea( -name => "description_$i", -id => "description_$i", -default => $form->{"description_$i"}, -rows => $rows, -columns => 30)
 
 314                                 : $cgi->textfield(-name => "description_$i", -id => "description_$i",   -value => $form->{"description_$i"}, -size => 30))
 
 315                                 . $cgi->button(-value => $locale->text('L'), -onClick => "kivi.SalesPurchase.edit_longdescription($i)");
 
 317     my $qty_dec = ($form->{"qty_$i"} =~ /\.(\d+)/) ? length $1 : 2;
 
 319     $column_data{qty}  = $cgi->textfield(-name => "qty_$i", -size => 5, -value => $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec));
 
 320     $column_data{qty} .= $cgi->button(-onclick => "calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)", -value => $locale->text('*/'))
 
 321                        . $cgi->hidden(-name => "formel_$i", -value => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"})
 
 322       if $form->{"formel_$i"};
 
 324     $column_data{ship} = '';
 
 325     if ($form->{"id_$i"}) {
 
 326       my $ship_qty        = $form->{"ship_$i"} * 1;
 
 327       $ship_qty          *= $all_units->{$form->{"partunit_$i"}}->{factor};
 
 328       $ship_qty          /= ( $all_units->{$form->{"unit_$i"}}->{factor} || 1 );
 
 330       $column_data{ship}  = $form->format_amount(\%myconfig, $form->round_amount($ship_qty, 2) * 1) . ' ' . $form->{"unit_$i"}
 
 331       . $cgi->hidden(-name => "ship_$i", -value => $form->format_amount(\%myconfig, $form->{"ship_$i"}, $qty_dec));
 
 333       my $ship_missing_qty    = $form->{"qty_$i"} - $ship_qty;
 
 334       my $ship_missing_amount = $form->round_amount($ship_missing_qty * $form->{"sellprice_$i"} * (100 - $form->{"discount_$i"}) / 100 / $price_factor, 2);
 
 336       $column_data{ship_missing} = $form->format_amount(\%myconfig, $ship_missing_qty) . ' ' . $form->{"unit_$i"} . '; ' . $form->format_amount(\%myconfig, $ship_missing_amount, $decimalplaces);
 
 339     my $sellprice_value = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 340     my $discount_value  = $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
 341     my $edit_prices     = $main::auth->assert('edit_prices', 1) && !$::form->{"active_price_source_$i"};
 
 342     my $edit_discounts  = $main::auth->assert('edit_prices', 1) && !$::form->{"active_discount_source_$i"};
 
 343     $column_data{sellprice}   = (!$edit_prices)
 
 344                                 ? $cgi->hidden(   -name => "sellprice_$i", -id => "sellprice_$i", -value => $sellprice_value) . $sellprice_value
 
 345                                 : $cgi->textfield(-name => "sellprice_$i", -id => "sellprice_$i", -size => 10, -onBlur => "check_right_number_format(this)", -value => $sellprice_value);
 
 346     $column_data{discount}    = (!$edit_discounts)
 
 347                                   ? $cgi->hidden(   -name => "discount_$i", -id => "discount_$i", -value => $discount_value) . $discount_value . ' %'
 
 348                                   : $cgi->textfield(-name => "discount_$i", -id => "discount_$i", -size => 3, -value => $discount_value);
 
 349     $column_data{linetotal}   = $form->format_amount(\%myconfig, $linetotal, 2);
 
 350     $column_data{bin}         = $form->{"bin_$i"};
 
 352     $column_data{weight}      = $form->format_amount(\%myconfig, $form->{"qty_$i"} * $form->{"weight_$i"}, 3) . ' ' . $defaults->{weightunit} if $defaults->{show_weight};
 
 354     if ($form->{"id_${i}"} && !$is_delivery_order) {
 
 355       my $price_source  = SL::PriceSource->new(record_item => $record_item, record => $record);
 
 356       my $price         = $price_source->price_from_source($::form->{"active_price_source_$i"});
 
 357       my $discount      = $price_source->discount_from_source($::form->{"active_discount_source_$i"});
 
 358       my $best_price    = $price_source->best_price;
 
 359       my $best_discount = $price_source->best_discount;
 
 360       $column_data{price_source} .= $cgi->button(-value => $price->source_description, -onClick => "kivi.io.price_chooser($i)");
 
 361       if ($price->source) {
 
 362         $column_data{price_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $price->invalid, title => $price->invalid }) if $price->invalid;
 
 363         $column_data{price_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $price->missing, title => $price->missing }) if $price->missing;
 
 364         if (!$price->missing && !$price->invalid) {
 
 365           $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;
 
 366           $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;
 
 367           $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;
 
 370       if ($discount->source) {
 
 371         $column_data{discount_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $discount->invalid, title => $discount->invalid }) if $discount->invalid;
 
 372         $column_data{discount_source} .= ' ' . $cgi->img({src => 'image/flag-red.png', alt => $discount->missing, title => $discount->missing }) if $discount->missing;
 
 373         if (!$discount->missing && !$discount->invalid) {
 
 374           $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;
 
 375           $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;
 
 376           $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;
 
 381     if ($is_delivery_order) {
 
 382       $column_data{stock_in_out} =  calculate_stock_in_out($i);
 
 385     $column_data{serialnr}  = qq|<input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">|;
 
 386     $column_data{projectnr} = NTI($cgi->popup_menu(
 
 387       '-name' => "project_id_$i",
 
 388       '-values' => \@projectnumber_values,
 
 389       '-labels' => \%projectnumber_labels,
 
 390       '-default' => $form->{"project_id_$i"}
 
 392     $column_data{reqdate}   = qq|<input name="reqdate_$i" size="11" onchange="check_right_date_format(this)" value="$form->{"reqdate_$i"}">|;
 
 393     $column_data{subtotal}  = sprintf qq|<input type="checkbox" name="subtotal_$i" value="1" %s>|, $form->{"subtotal_$i"} ? 'checked' : '';
 
 395 # begin marge calculations
 
 396     $form->{"lastcost_$i"}     *= 1;
 
 397     $form->{"marge_percent_$i"} = 0;
 
 401     if ( $form->{taxincluded} and $form->{"qty_$i"} * 1  and $form->{$form->{"taxaccounts_$i"} . "_rate"} * 1) {
 
 402       # if we use taxincluded we need to calculate the marge from the net_value
 
 403       # all the marge calculations are based on linetotal which we need to
 
 404       # convert to net first
 
 406       # there is no direct form value for the tax_rate of the item, but
 
 407       # form->{taxaccounts_$i} gives the tax account (e.g. 3806) and 3806_rate
 
 408       # gives the tax percentage (e.g. 0.19)
 
 409       $real_sellprice = $linetotal / (1 + $form->{$form->{"taxaccounts_$i"} . "_rate"});
 
 411       $real_sellprice            = $linetotal;
 
 413     my $real_lastcost            = $form->round_amount($form->{"lastcost_$i"} * $form->{"qty_$i"} / $price_factor, 2);
 
 414     my $marge_percent_warn       = $myconfig{marge_percent_warn} * 1 || 15;
 
 415     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
 
 417     if ($real_sellprice * 1 && ($form->{"qty_$i"} * 1)) {
 
 418       $form->{"marge_percent_$i"} = ($real_sellprice - $real_lastcost) * 100 / $real_sellprice;
 
 419       $marge_color                = 'color="#ff0000"' if $form->{"id_$i"} && $form->{"marge_percent_$i"} < $marge_percent_warn;
 
 422     $form->{"marge_absolut_$i"}  = ($real_sellprice - $real_lastcost) * $marge_adjust_credit_note;
 
 423     $form->{"marge_total"}      += $form->{"marge_absolut_$i"};
 
 424     $form->{"lastcost_total"}   += $real_lastcost;
 
 425     $form->{"sellprice_total"}  += $real_sellprice;
 
 427     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_absolut marge_percent);
 
 429     $column_data{marge} = sprintf qq|<font %s>%s  %s%%</font>|,
 
 430       $marge_color, $form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"};
 
 431     $column_data{listprice} = $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2);
 
 432     $column_data{lastcost}  = sprintf qq|<input size="5" name="lastcost_$i" value="%s">|, $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
 
 433 # / marge calculations ending
 
 435 # Calculate total weight
 
 436     $totalweight += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
 439     if ($form->{"id_$i"}) {
 
 440       my $part         = IC->get_basic_part_info(id => $form->{"id_$i"});
 
 441       my $onhand_color = $part->{onhand} < $part->{rop} ? 'color="#ff0000"' : '';
 
 442       $column_data{onhand} = sprintf "<font %s>%s %s</font>",
 
 444                       $form->format_amount(\%myconfig, $part->{onhand}, 2),
 
 449     my @ROW1 = map { { value => $column_data{$_}, align => $align{$_}, nowrap => $nowrap{$_} } } grep { $column_def{$_}{display} } @header_sort;
 
 450     my @ROW2 = map { { value => sprintf "<b>%s</b> %s", $column_def{$_}{value}, $column_data{$_} } } grep { $column_def{$_}{display} } @row2_sort;
 
 453     # add hidden ids for persistent (item|invoice)_ids and previous (converted_from*) ids
 
 455       push @hidden_vars, qw(orderitems_id converted_from_orderitems_id);
 
 458       push @hidden_vars, qw(orderitems_id converted_from_orderitems_id converted_from_invoice_id);
 
 461       push @hidden_vars, qw(invoice_id converted_from_orderitems_id converted_from_delivery_order_items_id converted_from_invoice_id);
 
 463     if ($::form->{type} =~ /credit_note/) {
 
 464       push @hidden_vars, qw(invoice_id converted_from_invoice_id);
 
 466    if ($is_delivery_order) {
 
 467       map { $form->{"${_}_${i}"} = $form->format_amount(\%myconfig, $form->{"${_}_${i}"}) } qw(sellprice discount lastcost);
 
 468       push @hidden_vars, grep { defined $form->{"${_}_${i}"} } qw(sellprice discount not_discountable price_factor_id lastcost);
 
 469       push @hidden_vars, "stock_${stock_in_out}_sum_qty", "stock_${stock_in_out}";
 
 470       push @hidden_vars, qw(delivery_order_items_id converted_from_orderitems_id converted_from_delivery_order_items_id);
 
 473     my @HIDDENS = map { value => $_}, (
 
 474           $cgi->hidden("-name" => "unit_old_$i", "-value" => $form->{"selected_unit_$i"}),
 
 475           $cgi->hidden("-name" => "price_new_$i", "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"})),
 
 476           map { ($cgi->hidden("-name" => $_, "-id" => $_, "-value" => $form->{$_})); } map { $_."_$i" }
 
 477             (qw(bo price_old id inventory_accno bin partsgroup partnotes active_price_source active_discount_source
 
 478                 income_accno expense_accno listprice assembly taxaccounts ordnumber donumber transdate cusordnumber
 
 479                 longdescription basefactor marge_absolut marge_percent marge_price_factor weight), @hidden_vars)
 
 482     map { $form->{"${_}_base"} += $linetotal } (split(/ /, $form->{"taxaccounts_$i"}));
 
 484     $form->{invsubtotal} += $linetotal;
 
 486     # Benutzerdefinierte Variablen für Waren/Dienstleistungen/Erzeugnisse
 
 487     _render_custom_variables_inputs(ROW2 => \@ROW2, row => $i, part_id => $form->{"id_$i"});
 
 489     my $colspan = scalar @ROW1;
 
 490     push @ROWS, { ROW1 => \@ROW1, ROW2 => \@ROW2, HIDDENS => \@HIDDENS, colspan => $colspan, error => $form->{"row_error_$i"}, obj => $record_item };
 
 493   $form->{totalweight} = $totalweight;
 
 495   print $form->parse_html_template('oe/sales_order', { ROWS   => \@ROWS,
 
 499   if (abs($form->{sellprice_total} * 1) >= 0.01) {
 
 500     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
 
 503   $main::lxdebug->leave_sub();
 
 507   $main::lxdebug->enter_sub();
 
 510   my $mode            = $params{mode}            || croak "Missing parameter 'mode'";
 
 511   my $pre_entered_qty = $params{pre_entered_qty} || 1;
 
 514   my $previous_form = $::auth->save_form_in_session(form => $::form);
 
 515   $::form->{title}  = $::myconfig{item_multiselect} ?
 
 516       $::locale->text('Set count for one or more of the items to select them'):
 
 517       $::locale->text('Select from one of the items below');
 
 520   my @item_list = map {
 
 521     # maybe there is a better backend function or way to calc
 
 522     $_->{display_sellprice} = ($_->{price_factor}) ? $_->{sellprice} / $_->{price_factor} : $_->{sellprice};
 
 524   } @{ $::form->{item_list} };
 
 526   # delete action variable
 
 527   delete @{$::form}{qw(action item_list)};
 
 529   print $::form->parse_html_template('io/select_item', { PREVIOUS_FORM   => $previous_form,
 
 531                                                          ITEM_LIST       => \@item_list,
 
 532                                                          IS_ASSEMBLY     => $mode eq 'IC',
 
 533                                                          IS_PURCHASE     => $mode eq 'IS',
 
 534                                                          PRE_ENTERED_QTY => $pre_entered_qty, });
 
 536   $main::lxdebug->leave_sub();
 
 541   # this function is used for adding parts to records (mode = IR/IS)
 
 542   # and to assemblies (mode = IC)
 
 544   $main::lxdebug->enter_sub();
 
 546   my $form     = $main::form;
 
 547   my %myconfig = %main::myconfig;
 
 551   $::auth->restore_form_from_session($form->{select_item_previous_form} || croak('Missing previous form ID'), form => $form);
 
 553   my $mode     = delete($form->{select_item_mode}) || croak 'Missing item selection mode';
 
 554   my $row_key  = $mode eq 'IC' ? 'assembly_rows' : 'rowcount';
 
 555   my $curr_row = $form->{ $row_key };
 
 559   if ($myconfig{item_multiselect}) {
 
 560     foreach (grep(/^select_qty_/, keys(%{ $form }))) {
 
 561       next unless $form->{$_};
 
 562       $_ =~ /^select_qty_(\d+)/;
 
 563       $form->{"id_${row}"}  = $1;
 
 564       $form->{"qty_${row}"} = $form->{$_};
 
 568     $form->{"id_${row}"} = delete($form->{select_item_id}) || croak 'Missing item selection ID';
 
 572   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 573     qw(sellprice weight);
 
 575   if ( $mode eq 'IC' ) {
 
 577     # the qty variables of the existing assembly items are all still formatted, so we parse them here
 
 578     # including the qty of the just added part
 
 579     $form->{"qty_$_"} = $form->parse_amount(\%myconfig, $form->{"qty_$_"}) for (1 .. $row - 1);
 
 581     if ($myconfig{item_multiselect}) {
 
 582       # other modes and multiselection:
 
 583       # parse all newly entered qtys
 
 584       $form->{"qty_$_"} = $form->parse_amount(\%myconfig, $form->{"qty_$_"}) for ($curr_row .. $row - 1);
 
 588   for my $i ($curr_row .. $row - 1) {
 
 589     $form->{ $row_key } = $i;
 
 591     my $id = $form->{"id_${i}"};
 
 593     delete $form->{item_list};
 
 596       IS->retrieve_item(\%myconfig, \%$form);
 
 597     } elsif ($mode eq 'IR') {
 
 598       IR->retrieve_item(\%myconfig, \%$form);
 
 599     } elsif ($mode eq 'IC') {
 
 600       IC->assembly_item(\%myconfig, \%$form);
 
 602       croak "Invalid item selection mode '${mode}'";
 
 605     my $new_item = $form->{item_list}->[0] || croak "No item found for mode '${mode}' and ID '${id}'";
 
 607     # if there was a price entered, override it
 
 609     unless ( $mode eq 'IC' ) {
 
 610       $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 614         qw(id partnumber description sellprice listprice inventory_accno
 
 615            income_accno expense_accno bin unit weight part_type taxaccounts
 
 616            partsgroup formel longdescription not_discountable partnotes lastcost
 
 617            price_factor_id price_factor);
 
 619     my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 620     push @new_fields, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 622     map { $form->{"${_}_$i"} = $new_item->{$_} } @new_fields;
 
 624     if (my $record = _make_record()) {
 
 625       my $price_source = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
 
 626       my $best_price   = $price_source->best_price;
 
 629         $::form->{"sellprice_$i"}           = $best_price->price;
 
 630         $::form->{"active_price_source_$i"} = $best_price->source;
 
 633       my $best_discount = $price_source->best_discount;
 
 635       if ($best_discount) {
 
 636         $::form->{"discount_$i"}               = $best_discount->discount;
 
 637         $::form->{"active_discount_source_$i"} = $best_discount->source;
 
 641     $form->{"marge_price_factor_$i"} = $new_item->{price_factor};
 
 643     if ($form->{"part_payment_id_$i"} ne "") {
 
 644       $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 647     my ($dec)         = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 649     my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 652       $form->{"sellprice_$i"} = $sellprice;
 
 655       # if there is an exchange rate adjust sellprice
 
 656       if (($form->{exchangerate} * 1) != 0) {
 
 657         $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 658         $form->{"sellprice_$i"} =
 
 659             $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 663     # at this stage qty of newly added part needs to be have been parsed
 
 664     $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 666     if ($form->{"not_discountable_$i"}) {
 
 667       $form->{"discount_$i"} = 0;
 
 671         $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"}) * $form->{"qty_$i"};
 
 672     map { $form->{"${_}_base"} += $amount }                         (split / /, $form->{"taxaccounts_$i"});
 
 673     map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{"taxaccounts_$i"} if !$form->{taxincluded};
 
 675     $form->{creditremaining} -= $amount;
 
 676     $form->{"runningnumber_$i"} = $i;
 
 681           $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 682     } qw(sellprice lastcost qty) if $form->{part_type} ne 'assembly';
 
 683     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0) if $form->{part_type} ne 'assembly';
 
 685     delete $form->{nextsub};
 
 691   $main::lxdebug->leave_sub();
 
 695   $main::lxdebug->enter_sub();
 
 697   my $form     = $main::form;
 
 698   my %myconfig = %main::myconfig;
 
 702   my $price_key = ($form->{type} =~ m/request_quotation|purchase_order/) || ($form->{script} eq 'ir.pl') ? 'lastcost' : 'sellprice';
 
 705   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 706   $form->{callback}     = $form->escape("$form->{script}?action=display_form", 1);
 
 708   # save all form variables except action in the session and keep the key in the previousform variable
 
 709   my $previousform = $::auth->save_form_in_session(skip_keys => [ qw(action) ]);
 
 712   push @HIDDENS,      { 'name' => 'previousform', 'value' => $previousform };
 
 713   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} },                       qw(rowcount vc);
 
 714   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{"${_}_$form->{rowcount}"} }, qw(partnumber description unit);
 
 715   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
 
 716   push @HIDDENS,      { 'name' => $price_key,     'value' => $form->parse_amount(\%myconfig, $form->{"sellprice_$form->{rowcount}"}) };
 
 717   push @HIDDENS,      { 'name' => 'notes',        'value' => $form->{"longdescription_$form->{rowcount}"} };
 
 720   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
 
 722   $main::lxdebug->leave_sub();
 
 726   $main::lxdebug->enter_sub();
 
 728   my $form     = $main::form;
 
 729   my %myconfig = %main::myconfig;
 
 736   # remove any makes or model rows
 
 737   if ($form->{part_type} eq 'assembly') {
 
 739     # fuer assemblies auskommentiert. seiteneffekte? ;-) wird die woanders benoetigt?
 
 740     #$form->{sellprice} = 0;
 
 742     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 743       qw(sellprice rop stock);
 
 745     my @flds = qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup lastcost);
 
 747     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 748       if ($form->{"qty_$i"}) {
 
 752         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 754         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 756         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 758         # fuer assemblies auskommentiert. siehe oben
 
 759         #    $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"} / ($form->{"price_factor_$i"} || 1));
 
 760         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"} / ($form->{"price_factor_$i"} || 1));
 
 764     # kann das hier auch weg? s.o. jb
 
 765     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 767     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 768     $form->{assembly_rows} = $count;
 
 770   } elsif ($form->{part_type} !~ m{^(?:part|service)$}) {
 
 771     remove_emptied_rows(1);
 
 773     $form->{creditremaining} -= &invoicetotal;
 
 778   $main::lxdebug->leave_sub();
 
 781 sub remove_emptied_rows {
 
 782   my $dont_add_empty = shift;
 
 785   return unless $form->{rowcount};
 
 787   my @flds = qw(id partnumber description qty ship sellprice unit
 
 788                 discount inventory_accno income_accno expense_accno listprice
 
 789                 taxaccounts bin assembly weight projectnumber project_id
 
 790                 oldprojectnumber runningnumber serialnumber partsgroup payment_id
 
 791                 not_discountable shop ve gv buchungsgruppen_id language_values
 
 792                 price_old price_new unit_old ordnumber donumber
 
 793                 transdate longdescription basefactor marge_total marge_percent
 
 794                 marge_price_factor lastcost price_factor_id partnotes
 
 795                 stock_out stock_in has_sernumber reqdate orderitems_id
 
 796                 active_price_source active_discount_source delivery_order_items_id
 
 797                 invoice_id converted_from_orderitems_id
 
 798                 converted_from_delivery_order_items_id converted_from_invoice_id);
 
 800   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 801   push @flds, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 804   for my $i (1 .. $form->{rowcount} - 1) {
 
 805     next unless $form->{"partnumber_$i"};
 
 807     push @new_rows, { map { $_ => $form->{"${_}_$i" } } @flds };
 
 810   my $new_rowcount = scalar @new_rows;
 
 811   $form->redo_rows(\@flds, \@new_rows, $new_rowcount, $form->{rowcount});
 
 812   $form->{rowcount} = $new_rowcount + ($dont_add_empty ? 0 : 1);
 
 816   $main::lxdebug->enter_sub();
 
 818   my $form     = $main::form;
 
 819   my %myconfig = %main::myconfig;
 
 823   $form->{oldinvtotal} = 0;
 
 825   # add all parts and deduct paid
 
 826   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
 828   my ($amount, $sellprice, $discount, $qty);
 
 830   for my $i (1 .. $form->{rowcount}) {
 
 831     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 832     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
 833     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 835     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 837     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
 838     map { $form->{"${_}_base"} += $amount }
 
 839       (split (/ /, $form->{"taxaccounts_$i"}));
 
 840     $form->{oldinvtotal} += $amount;
 
 843   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
 844     split(/ /, $form->{taxaccounts})
 
 845     if !$form->{taxincluded};
 
 847   $form->{oldtotalpaid} = 0;
 
 848   for my $i (1 .. $form->{paidaccounts}) {
 
 849     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
 852   $main::lxdebug->leave_sub();
 
 855   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 859   $main::lxdebug->enter_sub();
 
 861   my $form     = $main::form;
 
 862   my $locale   = $main::locale;
 
 866   # check if items are valid
 
 867   if ($form->{rowcount} == 1) {
 
 868     flash('warning', $::locale->text('The action you\'ve chosen has not been executed because the document does not contain any item yet.'));
 
 870     $::dispatcher->end_request;
 
 873   for my $i (1 .. $form->{rowcount} - 1) {
 
 874     $form->isblank("partnumber_$i",
 
 875                    $locale->text('Number missing in Row') . " $i");
 
 878   $main::lxdebug->leave_sub();
 
 882   $main::lxdebug->enter_sub();
 
 884   my $form     = $main::form;
 
 885   my %myconfig = %main::myconfig;
 
 886   my $locale   = $main::locale;
 
 890   if ($form->{second_run}) {
 
 891     $form->{print_and_post} = 0;
 
 893   $form->{ordnumber} = $form->{invnumber};
 
 895   $form->{old_employee_id} = $form->{employee_id};
 
 896   $form->{old_salesman_id} = $form->{salesman_id};
 
 898   delete $form->{$_} foreach (qw(printed emailed queued));
 
 900   # When creating a new sales order from a saved sales invoice, reset id,
 
 901   # ordnumber, transdate and deliverydate as we are creating a new order. This
 
 902   # workflow is probably mainly used as a template mechanism for creating new
 
 903   # orders from existing invoices, so we probably don't want to link the items.
 
 904   # Is this order function called anywhere else?
 
 905   # The worksflows in oe already call sales_order and purchase_order in oe, not
 
 906   # this general function which now only seems to be called from saved sales
 
 908   # Why is ordnumber set to invnumber above, does this ever make sense?
 
 910   if ( $form->{script} eq 'is.pl' && $form->{type} eq 'invoice' ) {
 
 911     delete $form->{$_} foreach (qw(ordnumber id transdate deliverydate));
 
 915   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
 916     $form->{title} = $locale->text('Add Purchase Order');
 
 917     $form->{vc}    = 'vendor';
 
 918     $form->{type}  = 'purchase_order';
 
 921   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
 922     $form->{title} = $locale->text('Add Sales Order');
 
 923     $form->{vc}    = 'customer';
 
 924     $form->{type}  = 'sales_order';
 
 927   $form->{script} = 'oe.pl';
 
 933   require "bin/mozilla/$form->{script}";
 
 934   my $script = $form->{"script"};
 
 937   $locale = Locale->new($::lx_office_conf{system}->{language}, $script);
 
 939   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
 
 941   my $currency = $form->{currency};
 
 945   $form->{currency}     = $currency;
 
 946   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 947   $form->{exchangerate} = $form->{forex} || '';
 
 949   for my $i (1 .. $form->{rowcount}) {
 
 950     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"})
 
 951             if ($form->{"${_}_${i}"}) }
 
 952         qw(ship qty sellprice basefactor discount));
 
 953     $form->{"converted_from_invoice_id_$i"} = delete $form->{"invoice_id_$i"};
 
 959   $main::lxdebug->leave_sub();
 
 963   $main::lxdebug->enter_sub();
 
 965   my $form     = $main::form;
 
 966   my %myconfig = %main::myconfig;
 
 967   my $locale   = $main::locale;
 
 971   # we are coming from *_order and convert to quotation
 
 972   # it seems that quotation is only called if we have a existing order
 
 973   if ($form->{type} =~  /(sales|purchase)_order/) {
 
 974     $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
 
 976   if ($form->{second_run}) {
 
 977     $form->{print_and_post} = 0;
 
 979   delete $form->{$_} foreach (qw(printed emailed queued));
 
 982   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
 983     $form->{title} = $locale->text('Add Request for Quotation');
 
 984     $form->{vc}    = 'vendor';
 
 985     $form->{type}  = 'request_quotation';
 
 988   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
 989     $form->{title} = $locale->text('Add Quotation');
 
 990     $form->{vc}    = 'customer';
 
 991     $form->{type}  = 'sales_quotation';
 
 997   $form->{script} = 'oe.pl';
 
1001   require "bin/mozilla/$form->{script}";
 
1003   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
 
1005   my $currency = $form->{currency};
 
1009   $form->{currency}     = $currency;
 
1010   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
1011   $form->{exchangerate} = $form->{forex} || '';
 
1013   for my $i (1 .. $form->{rowcount}) {
 
1014     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
1015                                                      $form->{"${_}_${i}"})
 
1016             if ($form->{"${_}_${i}"}) }
 
1017         qw(ship qty sellprice basefactor discount lastcost));
 
1023   $main::lxdebug->leave_sub();
 
1026 sub request_for_quotation {
 
1031   $::lxdebug->enter_sub();
 
1037   my $inline = delete $options{inline};
 
1039   require SL::Helper::PrintOptions;
 
1040   my $print_options = SL::Helper::PrintOptions->get_print_options(
 
1042     myconfig => \%::myconfig,
 
1043     locale   => $::locale,
 
1044     options  => \%options);
 
1047     $::lxdebug->leave_sub();
 
1048     return $print_options;
 
1051   print $print_options;
 
1052   $::lxdebug->leave_sub();
 
1057   $main::lxdebug->enter_sub();
 
1059   my $form     = $main::form;
 
1060   my $locale   = $main::locale;
 
1064   if ($form->{print_nextsub}) {
 
1065     call_sub($form->{print_nextsub});
 
1066     $main::lxdebug->leave_sub();
 
1070   # if this goes to the printer pass through
 
1072   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1073     $form->error($locale->text('Select postscript or PDF!'))
 
1074       if ($form->{format} !~ /(postscript|pdf)/);
 
1076     $old_form = Form->new;
 
1077     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1080   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1081     if ($form->{formname} eq "proforma") {
 
1082       $form->{proforma} = 1;
 
1084     $form->{print_and_save} = 1;
 
1085     my $formname = $form->{formname};
 
1087     $form->{formname} = $formname;
 
1089     $::lxdebug->leave_sub();
 
1090     $::dispatcher->end_request;
 
1093   &print_form($old_form);
 
1095   $main::lxdebug->leave_sub();
 
1099   $main::lxdebug->enter_sub();
 
1101   my $form     = $main::form;
 
1102   my %myconfig = %main::myconfig;
 
1103   my $locale   = $main::locale;
 
1107   my $defaults = SL::DB::Default->get;
 
1108   $form->error($::locale->text('No print templates have been created for this client yet. Please do so in the client configuration.')) if !$defaults->templates;
 
1109   $form->{templates} = $defaults->templates;
 
1111   my ($old_form, %params) = @_;
 
1115   my $numberfld = "invnumber";
 
1119     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1121   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1122   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1124   if ($form->{formname} eq "invoice") {
 
1125     $form->{label} = $locale->text('Invoice');
 
1127   if ($form->{formname} eq 'sales_order') {
 
1130     $form->{"${inv}date"} = $form->{transdate};
 
1131     $form->{label}        = $locale->text('Confirmation');
 
1132     $numberfld            = "sonumber";
 
1136   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1139     $form->{"${inv}date"} = $form->{invdate};
 
1140     $form->{label}        = $locale->text('Proforma Invoice');
 
1141     $numberfld            = "sonumber";
 
1145   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1148     $form->{"${inv}date"} = $form->{transdate};
 
1149     $form->{"invdate"}    = $form->{transdate};
 
1150     $form->{invnumber}    = $form->{ordnumber};
 
1151     $form->{label}        = $locale->text('Proforma Invoice');
 
1152     $numberfld            = "sonumber";
 
1156   if ($form->{formname} eq 'purchase_order') {
 
1159     $form->{"${inv}date"} = $form->{transdate};
 
1160     $form->{label}        = $locale->text('Purchase Order');
 
1161     $numberfld            = "ponumber";
 
1164   if ($form->{formname} eq 'bin_list') {
 
1167     $form->{"${inv}date"} = $form->{transdate};
 
1168     $form->{label}        = $locale->text('Bin List');
 
1171   if ($form->{formname} eq 'sales_quotation') {
 
1174     $form->{"${inv}date"} = $form->{transdate};
 
1175     $form->{label}        = $locale->text('Quotation');
 
1176     $numberfld            = "sqnumber";
 
1180   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1183     $form->{"${inv}date"} = $form->{transdate};
 
1184     $form->{"invdate"}    = $form->{transdate};
 
1185     $form->{label}        = $locale->text('Proforma Invoice');
 
1186     $numberfld            = "sqnumber";
 
1190   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'ic_supply') ) {
 
1193     $form->{"${inv}date"} = $form->{transdate};
 
1194     $form->{"invdate"}    = $form->{transdate};
 
1195     $form->{invnumber}    = $form->{ordnumber};
 
1196     $form->{label}        = $locale->text('Intra-Community supply');
 
1197     $numberfld            = "sonumber";
 
1201   if ($form->{formname} eq 'request_quotation') {
 
1204     $form->{"${inv}date"} = $form->{transdate};
 
1205     $form->{label}        = $locale->text('RFQ');
 
1206     $numberfld            = "rfqnumber";
 
1210   if ($form->{type} =~ /_delivery_order$/) {
 
1213     $form->{"${inv}date"} = $form->{transdate};
 
1214     $numberfld            = $form->{type} =~ /^sales/ ? 'sdonumber' : 'pdonumber';
 
1215     $form->{label}        = $form->{formname} eq 'pick_list' ? $locale->text('Pick List') : $locale->text('Delivery Order');
 
1217   if ($form->{type} =~ /letter/) {
 
1220     $form->{label}        = $locale->text('Letter');
 
1223   $form->{TEMPLATE_DRIVER_OPTIONS} = { };
 
1224   if (any { $form->{type} eq $_ } qw(sales_quotation sales_order sales_delivery_order invoice request_quotation purchase_order purchase_delivery_order credit_note)) {
 
1225     $form->{TEMPLATE_DRIVER_OPTIONS}->{variable_content_types} = $form->get_variable_content_types();
 
1228   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1229     if ($form->{media} eq 'email');
 
1230   $form->isblank("${inv}date",
 
1231            $locale->text($form->{label})
 
1233            . $locale->text(' Date missing!'));
 
1235   # $locale->text('Invoice Number missing!')
 
1236   # $locale->text('Invoice Date missing!')
 
1237   # $locale->text('Order Number missing!')
 
1238   # $locale->text('Order Date missing!')
 
1239   # $locale->text('Quotation Number missing!')
 
1240   # $locale->text('Quotation Date missing!')
 
1242   $form->{what_done} = $form->{formname};
 
1246   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1247   my ($saved_email, $saved_cc, $saved_bcc) =
 
1248     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1250   my $language_saved = $form->{language_id};
 
1251   my $payment_id_saved = $form->{payment_id};
 
1252   my $delivery_term_id_saved = $form->{delivery_term_id};
 
1253   my $salesman_id_saved = $form->{salesman_id};
 
1254   my $cp_id_saved = $form->{cp_id};
 
1255   my $taxzone_id_saved = $form->{taxzone_id};
 
1256   my $currency_saved = $form->{currency};
 
1258   call_sub("$form->{vc}_details") if ($form->{vc});
 
1260   $form->{language_id} = $language_saved;
 
1261   $form->{payment_id} = $payment_id_saved;
 
1262   $form->{delivery_term_id} = $delivery_term_id_saved;
 
1263   $form->{taxzone_id} = $taxzone_id_saved;
 
1264   $form->{currency} = $currency_saved;
 
1266   $form->{"email"} = $saved_email if ($saved_email);
 
1267   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1268   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1270   if (!$cp_id_saved) {
 
1271     # No contact was selected. Delete all contact variables because
 
1272     # IS->customer_details() and IR->vendor_details() get the default
 
1274     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1277   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
1278   if ($form->{"language_id"}) {
 
1279     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
1280       AM->get_language_details(\%myconfig, $form, $form->{language_id});
 
1282     $output_dateformat = $myconfig{"dateformat"};
 
1283     $output_numberformat = $myconfig{"numberformat"};
 
1284     $output_longdates = 1;
 
1287   # Store the output number format so that the template modules know
 
1288   # how to parse the amounts back if requested.
 
1289   $myconfig{output_numberformat} = $output_numberformat || $myconfig{numberformat};
 
1291   ($form->{employee}) = split /--/, $form->{employee};
 
1293   # create the form variables
 
1294   if ($form->{type} =~ /_delivery_order$/) {
 
1295     DO->order_details(\%myconfig, \%$form);
 
1297     OE->order_details(\%myconfig, \%$form);
 
1298   } elsif ($form->{type} eq 'letter') {
 
1299     # right now, no details are needed
 
1300     # but i do not want to break the bad default (invoice)
 
1302     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1305   $form->get_employee_data('prefix' => 'employee', 'id' => $form->{employee_id});
 
1306   $form->get_employee_data('prefix' => 'salesman', 'id' => $salesman_id_saved);
 
1308   if ($form->{shipto_id}) {
 
1309     $form->get_shipto(\%myconfig);
 
1312   $form->{notes} =~ s/^\s+//g;
 
1314   delete $form->{printer_command};
 
1316   $form->{language} = $form->get_template_language(\%myconfig);
 
1319   if ($form->{media} ne 'email') {
 
1320     $printer_code = $form->get_printer_code(\%myconfig);
 
1321     if ($printer_code ne "") {
 
1322       $printer_code = "_" . $printer_code;
 
1326   if ($form->{language} ne "") {
 
1327     my $template_arrays = $form->{TEMPLATE_ARRAYS} || $form;
 
1328     map { $template_arrays->{unit}->[$_] = AM->translate_units($form, $form->{language}, $template_arrays->{unit}->[$_], $template_arrays->{qty}->[$_]); } (0..scalar(@{ $template_arrays->{unit} }) - 1);
 
1330     $form->{language} = "_" . $form->{language};
 
1334   format_dates($output_dateformat, $output_longdates,
 
1335                qw(invdate orddate quodate pldate duedate reqdate transdate
 
1336                   shippingdate deliverydate validitydate paymentdate
 
1337                   datepaid transdate_oe transdate_do transdate_quo deliverydate_oe dodate
 
1338                   employee_startdate employee_enddate
 
1340                grep({ /^datepaid_\d+$/ ||
 
1341                         /^transdate_oe_\d+$/ ||
 
1342                         /^transdate_do_\d+$/ ||
 
1343                         /^transdate_quo_\d+$/ ||
 
1344                         /^deliverydate_oe_\d+$/ ||
 
1346                         /^deliverydate_\d+$/ ||
 
1350   reformat_numbers($output_numberformat, 2,
 
1351                    qw(invtotal ordtotal quototal subtotal linetotal
 
1352                       listprice sellprice netprice discount
 
1353                       tax taxbase total paid payment),
 
1354                    grep({ /^(?:linetotal|nodiscount_linetotal|listprice|sellprice|netprice|taxbase|discount|p_discount|discount_sub|nodiscount_sub|paid|subtotal|total|tax)_\d+$/ } keys(%{$form})));
 
1356   reformat_numbers($output_numberformat, undef,
 
1357                    qw(qty price_factor),
 
1361   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
1363   if (scalar @{ $cvar_date_fields }) {
 
1364     format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
1367   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
1368     reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
1371   my $extension = 'html';
 
1372   if ($form->{format} eq 'postscript') {
 
1373     $form->{postscript}   = 1;
 
1376   } elsif ($form->{"format"} =~ /pdf/) {
 
1378     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
1380   } elsif ($form->{"format"} =~ /opendocument/) {
 
1381     $form->{opendocument} = 1;
 
1383   } elsif ($form->{"format"} =~ /excel/) {
 
1388   # search for the template
 
1389   my ($template_file, @template_files) = SL::Helper::CreatePDF->find_template(
 
1390     name        => $form->{formname},
 
1391     email       => $form->{media} eq 'email',
 
1392     language_id => $form->{language_id},
 
1393     printer_id  => $form->{printer_id},
 
1394     extension   => $extension,
 
1397   if (!defined $template_file) {
 
1398     $::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));
 
1401   $form->{IN} = $template_file;
 
1403   delete $form->{OUT};
 
1405   if ($form->{media} eq 'printer') {
 
1406     $form->{OUT}      = $form->{printer_command};
 
1407     $form->{OUT_MODE} = '|-';
 
1408     $form->{printed} .= " $form->{formname}";
 
1409     $form->{printed}  =~ s/^ //;
 
1411   my $printed = $form->{printed};
 
1413   if ($form->{media} eq 'email') {
 
1414     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1415       unless $form->{subject};
 
1417     $form->{emailed} .= " $form->{formname}";
 
1418     $form->{emailed} =~ s/^ //;
 
1419     $form->{addition} = "MAILED";
 
1421   my $emailed = $form->{emailed};
 
1423   if ($form->{media} eq 'queue') {
 
1424     my %queued = map { s|.*[/\\]||; $_ } split / /, $form->{queued};
 
1427     my $suffix = ($form->{postscript}) ? '.ps' : '.pdf';
 
1428     if ($filename = $queued{ $form->{formname} }) {
 
1429       unlink $::lx_office_conf{paths}->{spool} . "/$filename";
 
1430       delete $queued{ $form->{formname} };
 
1432       $form->{queued}    =  join ' ', %queued;
 
1433       $filename          =~ s/\..*$//g;
 
1434       $filename         .=  $suffix;
 
1435       $form->{OUT}       =  $::lx_office_conf{paths}->{spool} . "/$filename";
 
1436       $form->{OUT_MODE}  =  '>';
 
1440       ($temp_fh, $filename) = File::Temp::tempfile(
 
1441         'kivitendo-spoolXXXXXX',
 
1442         SUFFIX => "$suffix",
 
1443         DIR    => $::lx_office_conf{paths}->{spool},
 
1447       $form->{OUT} = "$filename";
 
1448       # use >> for OUT_MODE because file is already created by File::Temp
 
1449       $form->{OUT_MODE} = '>>';
 
1450       # strip directory so that only filename is stored in table status
 
1451       ($filename) = $filename =~ /^$::lx_office_conf{paths}->{spool}\/(.*)/;
 
1455     $form->{queued} .= " $form->{formname} $filename";
 
1456     $form->{queued} =~ s/^ //;
 
1458   my $queued = $form->{queued};
 
1460 # saving the history
 
1461   if(!exists $form->{addition}) {
 
1462     $form->{snumbers} = "${inv}number" . "_" . $form->{"${inv}number"};
 
1463     if($form->{media} =~ /printer/) {
 
1464       $form->{addition} = "PRINTED";
 
1466     elsif($form->{media} =~ /email/) {
 
1467       $form->{addition} = "MAILED";
 
1469     elsif($form->{media} =~ /queue/) {
 
1470       $form->{addition} = "QUEUED";
 
1472     elsif($form->{media} =~ /screen/) {
 
1473       $form->{addition} = "SCREENED";
 
1475     $form->save_history;
 
1477   # /saving the history
 
1479   # prepare meta information for template introspection
 
1480   $form->{template_meta} = {
 
1481     formname  => $form->{formname},
 
1482     language  => SL::DB::Manager::Language->find_by_or_create(id => $form->{language_id} || undef),
 
1483     format    => $form->{format},
 
1484     media     => $form->{media},
 
1485     extension => $extension,
 
1486     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $form->{printer_id} || undef),
 
1487     today     => DateTime->today,
 
1490   $form->parse_template(\%myconfig);
 
1492   $form->{callback} = "";
 
1494   if ($form->{media} eq 'email') {
 
1495     $form->{message} = $locale->text('sent') unless $form->{message};
 
1497   my $message = $form->{message};
 
1499   # if we got back here restore the previous form
 
1500   if ($form->{media} =~ /(printer|email|queue)/) {
 
1502     $form->update_status(\%myconfig)
 
1503       if ($form->{media} eq 'queue' && $form->{id});
 
1505     return $main::lxdebug->leave_sub() if ($old_form eq "return");
 
1509       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1511       # restore and display form
 
1512       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1514       $form->{queued}  = $queued;
 
1515       $form->{printed} = $printed;
 
1516       $form->{emailed} = $emailed;
 
1517       $form->{message} = $message;
 
1519       $form->{rowcount}--;
 
1520       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1521         qw(exchangerate creditlimit creditremaining);
 
1523       for my $i (1 .. $form->{paidaccounts}) {
 
1525           $form->{"${_}_$i"} =
 
1526             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1527         } qw(paid exchangerate);
 
1530       call_sub($display_form);
 
1531       $::dispatcher->end_request;
 
1535       ($form->{media} eq 'printer')
 
1536       ? $locale->text('sent to printer')
 
1537       : $locale->text('emailed to') . " $form->{email}";
 
1539     if (!$params{no_redirect}) {
 
1540       $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1543   if ($form->{printing}) {
 
1544    call_sub($display_form);
 
1545    $::dispatcher->end_request;
 
1548   $main::lxdebug->leave_sub();
 
1551 sub customer_details {
 
1552   $main::lxdebug->enter_sub();
 
1554   my $form     = $main::form;
 
1555   my %myconfig = %main::myconfig;
 
1557   IS->customer_details(\%myconfig, \%$form, @_);
 
1559   $main::lxdebug->leave_sub();
 
1562 sub vendor_details {
 
1563   $main::lxdebug->enter_sub();
 
1565   my $form     = $main::form;
 
1566   my %myconfig = %main::myconfig;
 
1568   IR->vendor_details(\%myconfig, \%$form, @_);
 
1570   $main::lxdebug->leave_sub();
 
1574   $main::lxdebug->enter_sub();
 
1576   my $form     = $main::form;
 
1580   $form->{postasnew} = 1;
 
1581   map { delete $form->{$_} } qw(printed emailed queued);
 
1585   $main::lxdebug->leave_sub();
 
1588 sub relink_accounts {
 
1589   $main::lxdebug->enter_sub();
 
1591   my $form     = $main::form;
 
1592   my %myconfig = %main::myconfig;
 
1596   $form->{"taxaccounts"} =~ s/\s*$//;
 
1597   $form->{"taxaccounts"} =~ s/^\s*//;
 
1598   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
1599     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
1601   $form->{"taxaccounts"} = "";
 
1603   IC->retrieve_accounts(\%myconfig, $form, map { $_ => $form->{"id_$_"} } 1 .. $form->{rowcount});
 
1605   $main::lxdebug->leave_sub();
 
1608 sub get_payment_terms_for_invoice {
 
1609   my $terms = $::form->{payment_id}  ? SL::DB::PaymentTerm->new(id => $::form->{payment_id}) ->load
 
1610             : $::form->{customer_id} ? SL::DB::Customer   ->new(id => $::form->{customer_id})->load->payment
 
1611             : $::form->{vendor_id}   ? SL::DB::Vendor     ->new(id => $::form->{vendor_id})  ->load->payment
 
1620   my $js      = SL::ClientJS->new(controller => SL::Controller::Base->new);
 
1621   my $terms   = get_payment_terms_for_invoice();
 
1622   my $invdate = $::form->{invdate} eq 'undefined' ? DateTime->today_local : DateTime->from_kivitendo($::form->{invdate});
 
1623   my $duedate = $terms ? $terms->calc_date(reference_date => $invdate, due_date => $::form->{duedate})->to_kivitendo : ($::form->{duedate} || $invdate->to_kivitendo);
 
1625   if ($terms && $terms->auto_calculation) {
 
1626     $js->hide('#duedate_container')
 
1627        ->show('#duedate_fixed')
 
1628        ->html('#duedate_fixed', $duedate);
 
1631     $js->show('#duedate_container')
 
1632        ->hide('#duedate_fixed');
 
1635   $js->val('#duedate', $duedate)
 
1639 sub _update_part_information {
 
1640   $main::lxdebug->enter_sub();
 
1642   my $form     = $main::form;
 
1644   my %part_information = IC->get_basic_part_info('id' => [ grep { $_ } map { $form->{"id_${_}"} } (1..$form->{rowcount}) ]);
 
1646   $form->{PART_INFORMATION} = \%part_information;
 
1648   foreach my $i (1..$form->{rowcount}) {
 
1649     next unless ($form->{"id_${i}"});
 
1651     my $info                        = $form->{PART_INFORMATION}->{$form->{"id_${i}"}} || { };
 
1652     $form->{"partunit_${i}"}        = $info->{unit};
 
1653     $form->{"weight_$i"}            = $info->{weight};
 
1654     $form->{"part_type_$i"}         = $info->{part_type};
 
1655     $form->{"classification_id_$i"} = $info->{classification_id};
 
1658   $main::lxdebug->leave_sub();
 
1662   $main::lxdebug->enter_sub();
 
1664   my $form     = $main::form;
 
1665   my %myconfig = %main::myconfig;
 
1667   if (!$form->{ordnumber} || !$form->{id}) {
 
1668     map { $form->{"ship_$_"} = 0 } (1..$form->{rowcount});
 
1669     $main::lxdebug->leave_sub();
 
1673   my $all_units = AM->retrieve_all_units();
 
1675   my %ship = DO->get_shipped_qty('oe_id' => $form->{id});
 
1677   foreach my $i (1..$form->{rowcount}) {
 
1678     next unless ($form->{"id_${i}"});
 
1680     $form->{"ship_$i"} = 0;
 
1682     my $ship_entry = $ship{$i};
 
1684     next if (!$ship_entry || ($ship_entry->{qty_ordered} <= 0));
 
1686     my $rowqty = $ship_entry->{qty_ordered} - $ship_entry->{qty_notdelivered};
 
1687     $rowqty   *= $all_units->{$form->{"unit_$i"}}->{factor} /
 
1688                  $all_units->{$form->{"partunit_$i"}}->{factor} if !$form->{simple_save};
 
1689     $form->{"ship_$i"}  = $rowqty;
 
1692   $main::lxdebug->leave_sub();
 
1695 sub _update_custom_variables {
 
1696   $main::lxdebug->enter_sub();
 
1698   my $form     = $main::form;
 
1700   $form->{CVAR_CONFIGS}         = { } unless ref $form->{CVAR_CONFIGS} eq 'HASH';
 
1701   $form->{CVAR_CONFIGS}->{IC} ||= CVar->get_configs(module => 'IC');
 
1703   $main::lxdebug->leave_sub();
 
1706 sub _render_custom_variables_inputs {
 
1707   $main::lxdebug->enter_sub(2);
 
1709   my $form     = $main::form;
 
1713   if (!$form->{CVAR_CONFIGS}->{IC}) {
 
1714     $main::lxdebug->leave_sub();
 
1718   my $valid = CVar->custom_variables_validity_by_trans_id(trans_id => $params{part_id});
 
1720   # get partsgroup_id from part
 
1722   if ($params{part_id}) {
 
1723     $partsgroup_id = SL::DB::Part->new(id => $params{part_id})->load->partsgroup_id;
 
1726   my $num_visible_cvars = 0;
 
1727   foreach my $cvar (@{ $form->{CVAR_CONFIGS}->{IC} }) {
 
1728     $cvar->{valid} = $params{part_id} && $valid->($cvar->{id});
 
1730     # set partsgroup filter
 
1731     my $partsgroup_filtered = 0;
 
1732     if ($cvar->{flag_partsgroup_filter}) {
 
1733       if (!$partsgroup_id || (!grep {$partsgroup_id == $_} @{ $cvar->{partsgroups} })) {
 
1734         $partsgroup_filtered = 1;
 
1738     my $hide_non_editable = 1;
 
1741     my $description = '';
 
1742     if (( ($cvar->{flag_editable} || !$hide_non_editable) && $cvar->{valid}) && !$partsgroup_filtered) {
 
1743       $num_visible_cvars++;
 
1744       $description = $cvar->{description} . ' ';
 
1748     my $form_key = "ic_cvar_" . $cvar->{name} . "_$params{row}";
 
1750     push @{ $params{ROW2} }, {
 
1751       line_break     => $show && !(($num_visible_cvars - 1) % ($::myconfig{form_cvars_nr_cols}*1 || 3)),
 
1752       description    => $description,
 
1755          hide_non_editable => $hide_non_editable,
 
1757          name_prefix       => 'ic_',
 
1758          name_postfix      => "_$params{row}",
 
1759          valid             => $cvar->{valid},
 
1760          value             => CVar->parse($::form->{$form_key}, $cvar),
 
1761          partsgroup_filtered => $partsgroup_filtered,
 
1766   $main::lxdebug->leave_sub(2);
 
1769 sub _remove_billed_or_delivered_rows {
 
1772   croak "Missing parameter 'quantities'" if !$params{quantities};
 
1774   my @fields = map { s/_1$//; $_ } grep { m/_1$/ } keys %{ $::form };
 
1777   my $make_key = sub {
 
1779     return $::form->{"id_${row}"} unless $::form->{"serialnumber_${row}"};
 
1780     my $key = $::form->{"id_${row}"} . ':' . $::form->{"serialnumber_${row}"};
 
1781     return exists $params{quantities}->{$key} ? $key : $::form->{"id_${row}"};
 
1784   my $removed_rows = 0;
 
1786   while ($row < $::form->{rowcount}) {
 
1788     next unless $::form->{"id_$row"};
 
1790     my $parts_id                      = $::form->{"id_$row"};
 
1791     my $base_qty                      = $::form->parse_amount(\%::myconfig, $::form->{"qty_$row"}) * SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor;
 
1793     my $key                           = $make_key->($row);
 
1794     my $sub_qty                       = min($base_qty, $params{quantities}->{$key});
 
1795     $params{quantities}->{$key}      -= $sub_qty;
 
1797     if (!$sub_qty || ($sub_qty != $base_qty)) {
 
1798       $::form->{"qty_${row}"} = $::form->format_amount(\%::myconfig, ($base_qty - $sub_qty) / SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor);
 
1799       push @new_rows, { map { $_ => $::form->{"${_}_${row}"} } @fields };
 
1806   $::form->redo_rows(\@fields, \@new_rows, scalar(@new_rows), $::form->{rowcount});
 
1807   $::form->{rowcount} -= $removed_rows;
 
1810 # TODO: both of these are makeshift so that price sources can operate on rdbo objects. if
 
1811 # this ever gets rewritten in controller style, throw this out
 
1812 sub _make_record_item {
 
1816     sales_order             => 'OrderItem',
 
1817     purchase_order          => 'OrderItem',
 
1818     sales_quotation         => 'OrderItem',
 
1819     request_quotation       => 'OrderItem',
 
1820     invoice                 => 'InvoiceItem',
 
1821     credit_note             => 'InvoiceItem',
 
1822     purchase_invoice        => 'InvoiceItem',
 
1823     purchase_delivery_order => 'DeliveryOrderItem',
 
1824     sales_delivery_order    => 'DeliveryOrderItem',
 
1825   }->{$::form->{type}};
 
1827   return unless $class;
 
1829   $class = 'SL::DB::' . $class;
 
1831   eval "require $class";
 
1833   my $obj = $::form->{"orderitems_id_$row"}
 
1834           ? $class->meta->convention_manager->auto_manager_class_name->find_by(id => $::form->{"orderitems_id_$row"})
 
1837   for my $method (apply { s/_$row$// } grep { /_$row$/ } keys %$::form) {
 
1838     if ($obj->meta->column($method)) {
 
1839       if ($obj->meta->column($method)->isa('Rose::DB::Object::Metadata::Column::Date')) {
 
1840         $obj->${\"$method\_as_date"}($::form->{"$method\_$row"});
 
1841       } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::(?:Numeric|Float|DoublePrecsion)$/) {
 
1842         $obj->${\"$method\_as_number"}($::form->{"$method\_$row"});
 
1843       } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::Boolean$/) {
 
1844         $obj->$method(!!$::form->{$method});
 
1846         $obj->$method($::form->{"$method\_$row"});
 
1849       $obj->{__additional_form_attributes}{$method} = $::form->{"$method\_$row"};
 
1853   if ($::form->{"id_$row"}) {
 
1854     $obj->part(SL::DB::Part->load_cached($::form->{"id_$row"}));
 
1862     sales_order             => 'Order',
 
1863     purchase_order          => 'Order',
 
1864     sales_quotation         => 'Order',
 
1865     request_quotation       => 'Order',
 
1866     purchase_delivery_order => 'DeliveryOrder',
 
1867     sales_delivery_order    => 'DeliveryOrder',
 
1868   }->{$::form->{type}};
 
1870   if ($::form->{type} =~ /invoice|credit_note/) {
 
1871     $class = $::form->{vc} eq 'customer' ? 'Invoice'
 
1872            : $::form->{vc} eq 'vendor'   ? 'PurchaseInvoice'
 
1873            : do { die 'unknown invoice type' };
 
1876   return unless $class;
 
1878   $class = 'SL::DB::' . $class;
 
1880   eval "require $class";
 
1882   my $obj = $::form->{id}
 
1883           ? $class->meta->convention_manager->auto_manager_class_name->find_by(id => $::form->{id})
 
1886   for my $method (keys %$::form) {
 
1887     next unless $obj->can($method);
 
1888     next unless $obj->meta->column($method);
 
1890     if ($obj->meta->column($method)->isa('Rose::DB::Object::Metadata::Column::Date')) {
 
1891       $obj->${\"$method\_as_date"}($::form->{$method});
 
1892     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::(?:Numeric|Float|DoublePrecsion)$/) {
 
1893       $obj->${\"$method\_as_number"}($::form->{$method});
 
1894     } elsif ((ref $obj->meta->column($method)) =~ /^Rose::DB::Object::Metadata::Column::Boolean$/) {
 
1895       $obj->$method(!!$::form->{$method});
 
1897       $obj->$method($::form->{$method});
 
1902   for my $i (1 .. $::form->{rowcount}) {
 
1903     next unless $::form->{"id_$i"};
 
1904     push @items, _make_record_item($i);
 
1907   $obj->items(@items) if @items;
 
1908   $obj->is_sales(!!$obj->customer_id) if $class eq 'SL::DB::DeliveryOrder';
 
1913 sub setup_sales_purchase_print_options {
 
1914   my $print_form = Form->new('');
 
1915   $print_form->{printers}  = SL::DB::Manager::Printer->get_all_sorted;
 
1916   $print_form->{languages} = SL::DB::Manager::Language->get_all_sorted;
 
1918   $print_form->{$_} = $::form->{$_} for qw(type media language_id printer_id);
 
1920   return SL::Helper::PrintOptions->get_print_options(
 
1921     form    => $print_form,
 
1928 sub _get_files_for_email_dialog {
 
1929   my %files = map { ($_ => []) } qw(versions files vc_files part_files);
 
1931   return %files if !$::instance_conf->get_doc_storage;
 
1933   $files{versions} = [ SL::File->get_all_versions(object_id => $::form->{id},    object_type => $::form->{type}, file_type => 'document') ];
 
1934   $files{files}    = [ SL::File->get_all(         object_id => $::form->{id},    object_type => $::form->{type}, file_type => 'attachment') ];
 
1935   $files{vc_files} = [ SL::File->get_all(         object_id => $::form->{vc_id}, object_type => $::form->{vc},   file_type => 'attachment') ]
 
1936     if $::form->{vc} && $::form->{"vc_id"};
 
1939     uniq_by { $_->{id} }
 
1942       +{ id         => $::form->{"id_$_"},
 
1943          partnumber => $::form->{"partnumber_$_"},
 
1945     } (1 .. $::form->{rowcount});
 
1947   foreach my $part (@parts) {
 
1948     my @pfiles = SL::File->get_all(object_id => $part->{id}, object_type => 'part');
 
1949     push @{ $files{part_files} }, map { +{ %{ $_ }, partnumber => $part->{partnumber} } } @pfiles;
 
1952   foreach my $key (keys %files) {
 
1953     $files{$key} = [ sort_by { lc $_->{db_file}->{file_name} } @{ $files{$key} } ];
 
1959 sub show_sales_purchase_email_dialog {
 
1960   my $contact    = $::form->{cp_id} ? SL::DB::Contact->load_cached($::form->{cp_id}) : undef;
 
1962     to                  => $contact ? $contact->cp_email : '',
 
1963     subject             => $::form->generate_email_subject,
 
1964     attachment_filename => $::form->generate_attachment_filename,
 
1967   my %files = _get_files_for_email_dialog();
 
1968   my $html  = $::form->parse_html_template("common/_send_email_dialog", {
 
1969     email_form  => $email_form,
 
1970     show_bcc    => $::auth->assert('email_bcc', 'may fail'),
 
1972     is_customer => $::form->{vc} eq 'customer',
 
1975   print $::form->ajax_response_header, $html;
 
1978 sub send_sales_purchase_email {
 
1979   my $type        = $::form->{type};
 
1980   my $id          = $::form->{id};
 
1981   my $script      = $type =~ m{sales_order|purchase_order|quotation} ? 'oe.pl'
 
1982                   : $type =~ m{delivery_}                            ? 'do.pl'
 
1985   my $email_form  = delete $::form->{email_form};
 
1986   my %field_names = (to => 'email');
 
1988   $::form->{ $field_names{$_} // $_ } = $email_form->{$_} for keys %{ $email_form };
 
1990   $::form->{media} = 'email';
 
1992   if (($::form->{attachment_policy} // '') =~ m{^(?:old_file|no_file)$}) {
 
1993     $::form->send_email(\%::myconfig, 'pdf');
 
1996     print_form("return");
 
1997     Common->save_email_status(\%::myconfig, $::form);
 
2000   flash_later('info', $::locale->text('The email has been sent.'));
 
2002   print $::form->redirect_header($script . '?action=edit&id=' . $::form->escape($id) . '&type=' . $::form->escape($type));