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., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  33 #######################################################################
 
  35 # common routines used in is, ir, oe
 
  37 #######################################################################
 
  41 use List::Util qw(min max first);
 
  49 require "bin/mozilla/common.pl";
 
  51 # any custom scripts for this one
 
  52 if (-f "bin/mozilla/custom_io.pl") {
 
  53   eval { require "bin/mozilla/custom_io.pl"; };
 
  55 if (-f "bin/mozilla/$form->{login}_io.pl") {
 
  56   eval { require "bin/mozilla/$form->{login}_io.pl"; };
 
  63 # this is for our long dates
 
  64 # $locale->text('January')
 
  65 # $locale->text('February')
 
  66 # $locale->text('March')
 
  67 # $locale->text('April')
 
  68 # $locale->text('May ')
 
  69 # $locale->text('June')
 
  70 # $locale->text('July')
 
  71 # $locale->text('August')
 
  72 # $locale->text('September')
 
  73 # $locale->text('October')
 
  74 # $locale->text('November')
 
  75 # $locale->text('December')
 
  77 # this is for our short month
 
  78 # $locale->text('Jan')
 
  79 # $locale->text('Feb')
 
  80 # $locale->text('Mar')
 
  81 # $locale->text('Apr')
 
  82 # $locale->text('May')
 
  83 # $locale->text('Jun')
 
  84 # $locale->text('Jul')
 
  85 # $locale->text('Aug')
 
  86 # $locale->text('Sep')
 
  87 # $locale->text('Oct')
 
  88 # $locale->text('Nov')
 
  89 # $locale->text('Dec')
 
  96   $auth->assert('part_service_assembly_edit   | vendor_invoice_edit       | sales_order_edit    | invoice_edit |' .
 
  97                 'request_quotation_edit       | sales_quotation_edit      | purchase_order_edit | ' .
 
  98                 'purchase_delivery_order_edit | sales_delivery_order_edit');
 
 101 ########################################
 
 102 # Eintrag fuer Version 2.2.0 geaendert #
 
 103 # neue Optik im Rechnungsformular      #
 
 104 ########################################
 
 106   $lxdebug->enter_sub();
 
 112   my ($readonly, $stock_in_out, $stock_in_out_title);
 
 114   my $is_purchase        = (first { $_ eq $form->{type} } qw(request_quotation purchase_order purchase_delivery_order)) || ($form->{script} eq 'ir.pl');
 
 115   my $show_min_order_qty =  first { $_ eq $form->{type} } qw(request_quotation purchase_order);
 
 116   my $is_delivery_order  = $form->{type} =~ /_delivery_order$/;
 
 117   my $is_s_p_order       = (first { $_ eq $form->{type} } qw(sales_order purchase_order));
 
 119   if ($is_delivery_order) {
 
 120     $readonly             = ' readonly' if ($form->{closed});
 
 122     if ($form->{type} eq 'sales_delivery_order') {
 
 123       $stock_in_out_title = $locale->text('Release From Stock');
 
 124       $stock_in_out       = 'out';
 
 126       $stock_in_out_title = $locale->text('Transfer To Stock');
 
 127       $stock_in_out       = 'in';
 
 130     retrieve_partunits();
 
 134   my @header_sort = qw(runningnumber partnumber description ship qty unit sellprice_pg sellprice discount linetotal);
 
 136     {  id => 'runningnumber', width => 5,     value => $locale->text('No.'),                  display => 1, },
 
 137     {  id => 'partnumber',    width => 8,     value => $locale->text('Number'),               display => 1, },
 
 138     {  id => 'description',   width => 30,    value => $locale->text('Part Description'),     display => 1, },
 
 139     {  id => 'ship',          width => 5,     value => $locale->text('Delivered'),            display => $is_s_p_order, },
 
 140     {  id => 'qty',           width => 5,     value => $locale->text('Qty'),                  display => 1, },
 
 141     {  id => 'price_factor',  width => 5,     value => $locale->text('Price Factor'),         display => !$is_delivery_order, },
 
 142     {  id => 'unit',          width => 5,     value => $locale->text('Unit'),                 display => 1, },
 
 143     {  id => 'license',       width => 10,    value => $locale->text('License'),              display => 0, },
 
 144     {  id => 'serialnr',      width => 10,    value => $locale->text('Serial No.'),           display => 0, },
 
 145     {  id => 'projectnr',     width => 10,    value => $locale->text('Project'),              display => 0, },
 
 146     {  id => 'sellprice',     width => 15,    value => $locale->text('Price'),                display => !$is_delivery_order, },
 
 147     {  id => 'sellprice_pg',  width => 8,     value => $locale->text('Pricegroup'),           display => ($form->{type} =~ /^sales_/) && !$is_delivery_order,  },
 
 148     {  id => 'discount',      width => 5,     value => $locale->text('Discount'),             display => !$is_delivery_order, },
 
 149     {  id => 'linetotal',     width => 10,    value => $locale->text('Extended'),             display => !$is_delivery_order, },
 
 150     {  id => 'bin',           width => 10,    value => $locale->text('Bin'),                  display => 0, },
 
 151     {  id => 'stock_in_out',  width => 10,    value => $stock_in_out_title,                   display => $is_delivery_order, },
 
 153   my @column_index = map { $_->{id} } grep { $_->{display} } @HEADER;
 
 156   my $all_units       = AM->retrieve_units(\%myconfig, $form);
 
 158   my %price_factors   = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 160   my $colspan = scalar @column_index;
 
 162   $form->{invsubtotal} = 0;
 
 163   map { $form->{"${_}_base"} = 0 } (split(/ /, $form->{taxaccounts}));
 
 166   $myconfig{show_form_details} = 1                            unless (defined($myconfig{show_form_details}));
 
 167   $form->{show_details}        = $myconfig{show_form_details} unless (defined($form->{show_details}));
 
 170   # translations, unused commented out
 
 171 #  $runningnumber = $locale->text('No.');
 
 172   $deliverydate  = $locale->text('Delivery Date');
 
 173   $serialnumber  = $locale->text('Serial No.');
 
 174   $projectnumber = $locale->text('Project');
 
 175 #  $partsgroup    = $locale->text('Group');
 
 176   $reqdate       = $locale->text('Reqdate');
 
 177   $deliverydate  = $locale->text('Required by');
 
 180   my %align  = map { $_ => 'right' } qw(qty ship right sellprice_pg discount linetotal stock_in_out);
 
 181   my %nowrap = map { $_ => 1 }       qw(description unit);
 
 183   $form->{marge_total}           = 0;
 
 184   $form->{sellprice_total}       = 0;
 
 185   $form->{lastcost_total}        = 0;
 
 186   my %projectnumber_labels = ();
 
 187   my @projectnumber_values = ("");
 
 189   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 190     push(@projectnumber_values, $item->{"id"});
 
 191     $projectnumber_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 194   _update_part_information();
 
 195   _update_ship() if ($is_s_p_order);
 
 196   _update_custom_variables();
 
 199   for $i (1 .. $numrows) {
 
 200     my %column_data = ();
 
 203     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(qty discount sellprice price_new price_old) unless ($form->{simple_save});
 
 206     $form->{"unit_old_$i"}      ||= $form->{"unit_$i"};
 
 207     $form->{"selected_unit_$i"} ||= $form->{"unit_$i"};
 
 209     if (   !$all_units->{$form->{"selected_unit_$i"}}                                            # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 210         || !AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units)) { # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 211       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};                 # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 213     # adjust prices by unit, ignore if pricegroup changed
 
 214     if ((!$form->{"prices_$i"}) || ($form->{"new_pricegroup_$i"} == $form->{"old_pricegroup_$i"})) {
 
 215         $form->{"sellprice_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units) || 1;
 
 216         $form->{"unit_old_$i"}   = $form->{"selected_unit_$i"};
 
 218     my $this_unit = $form->{"unit_$i"};
 
 219     $this_unit    = $form->{"selected_unit_$i"} if AM->convert_unit($this_unit, $form->{"selected_unit_$i"}, $all_units);
 
 222     if (0 < scalar @{ $form->{ALL_PRICE_FACTORS} }) {
 
 223       my @values = ('', map { $_->{id}                      } @{ $form->{ALL_PRICE_FACTORS} });
 
 224       my %labels =      map { $_->{id} => $_->{description} } @{ $form->{ALL_PRICE_FACTORS} };
 
 226       $column_data{price_factor} =
 
 227         NTI($cgi->popup_menu('-name'    => "price_factor_id_$i",
 
 228                              '-default' => $form->{"price_factor_id_$i"},
 
 229                              '-values'  => \@values,
 
 230                              '-labels'  => \%labels,
 
 231                              '-style'   => 'width:90px'));
 
 233       $column_data{price_factor} = ' ';
 
 236     $column_data{"unit"} = AM->unit_select_html($all_units, "unit_$i", $this_unit, $form->{"id_$i"} ? $form->{"unit_$i"} : undef);
 
 239     $form->{"sellprice_$i"} =~ /\.(\d+)/;
 
 240     $decimalplaces = max 2, length $1;
 
 242     $price_factor   = $price_factors{$form->{"price_factor_id_$i"}} || 1;
 
 243     $discount       = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} *        $form->{"discount_$i"}  / 100 / $price_factor, 2);
 
 244     $linetotal      = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} * (100 - $form->{"discount_$i"}) / 100 / $price_factor, 2);
 
 246     $column_data{runningnumber} = $cgi->textfield(-name => "runningnumber_$i", -size => 5,  -value => $i);    # HuT
 
 247     $column_data{partnumber}    = $cgi->textfield(-name => "partnumber_$i",    -size => 12, -value => $form->{"partnumber_$i"});
 
 248     $column_data{description} = ((($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) # if description is too large, use a textbox instead
 
 249                                 ? $cgi->textarea( -name => "description_$i", -default => $form->{"description_$i"}, -rows => $rows, -columns => 30)
 
 250                                 : $cgi->textfield(-name => "description_$i",   -size => 30, -value => $form->{"description_$i"}))
 
 251                                 . $cgi->button(-value => $locale->text('L'), -onClick => "set_longdescription_window('longdescription_$i')");
 
 253     $form->{"qty_$i"} =~ /\.(\d+)/;
 
 254     my $qty_dec = length $1;
 
 256     $column_data{qty}  = $cgi->textfield(-name => "qty_$i", -size => 5, -value => $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec));
 
 257     $column_data{qty} .= $cgi->button(-onclick => "calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)", -value => $locale->text('*/'))
 
 258                        . $cgi->hidden(-name => "formel_$i", -value => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"})
 
 259       if $form->{"formel_$i"};
 
 261     $column_data{ship} = '';
 
 262     if ($form->{"id_$i"}) {
 
 263       my $ship_qty        = $form->{"ship_$i"} * 1;
 
 264       $ship_qty          *= $all_units->{$form->{"partunit_$i"}}->{factor};
 
 265       $ship_qty          /= ( $all_units->{$form->{"unit_$i"}}->{factor} || 1 );
 
 267       $column_data{ship}  = $form->format_amount(\%myconfig, $form->round_amount($ship_qty, 2) * 1) . ' ' . $form->{"unit_$i"};
 
 270     # build in drop down list for pricesgroups
 
 271     if ($form->{"prices_$i"}) {
 
 272       $column_data{sellprice_pg} = qq|<select name="sellprice_pg_$i" style="width: 8em">$form->{"prices_$i"}</select>|;
 
 273       $column_data{sellprice}    = $cgi->textfield(-name => "sellprice_$i", -size => 10, -onBlur => 'check_right_number_format(this)', -value =>
 
 274                                    (($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"})
 
 275                                       ? $form->format_amount(\%myconfig, $form->{"price_new_$i"}, $decimalplaces)
 
 276                                       : $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces)));
 
 278       # for last row and report
 
 279       # set pricegroup drop down list from report menu
 
 280       if ($form->{"sellprice_$i"} != 0) {
 
 281         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 282         my $default_option           = $form->{"sellprice_$i"}.'--'.$form->{"pricegroup_id_$i"};
 
 283         $column_data{sellprice_pg}   = NTI($cgi->popup_menu("sellpricepg_$i", [ $default_option ], $default_option, { $default_option => $form->{"pricegroup_$i"} || '' }));
 
 285         $column_data{sellprice_pg} = qq| |;
 
 287       $column_data{sellprice} = $cgi->textfield(-name => "sellprice_$i", -size => 10, -onBlur => "check_right_number_format(this)", -value =>
 
 288                                                 $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces));
 
 290     $column_data{discount}    = $cgi->textfield(-name => "discount_$i", -size => 3, -value => $form->format_amount(\%myconfig, $form->{"discount_$i"}));
 
 291     $column_data{linetotal}   = $form->format_amount(\%myconfig, $linetotal, 2);
 
 292     $column_data{bin}         = $form->{"bin_$i"};
 
 294     if ($is_delivery_order) {
 
 295       $column_data{stock_in_out} =  calculate_stock_in_out($i);
 
 298     my @ROW1 = map { value => $column_data{$_}, align => $align{$_}, nowrap => $nowrap{$_} }, @column_index;
 
 302     push @ROW2, { value => qq|<b>$serialnumber</b> <input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">| }
 
 303       if $form->{type} !~ /_quotation/;
 
 304     push @ROW2, { value => qq|<b>$projectnumber</b> | . NTI($cgi->popup_menu('-name'  => "project_id_$i",        '-values'  => \@projectnumber_values,
 
 305                                                                              '-labels' => \%projectnumber_labels, '-default' => $form->{"project_id_$i"})) };
 
 306     push @ROW2, { value => qq|<b>$reqdate</b> <input name="reqdate_$i" size="11" onBlur="check_right_date_format(this)" value="$form->{"reqdate_$i"}">| }
 
 307       if ($form->{type} =~ /order/ ||  $form->{type} =~ /invoice/);
 
 308     push @ROW2, { value => sprintf qq|<b>%s</b> <input type="checkbox" name="subtotal_$i" value="1" %s>|,
 
 309                    $locale->text('Subtotal'), $form->{"subtotal_$i"} ? 'checked' : '' };
 
 311 # begin marge calculations
 
 313     my $real_sellprice     = ($form->{"sellprice_$i"} - $discount) / $price_factor;
 
 314     my $marge_price_factor = $form->{"marge_price_factor_$i"} * 1 || 1;
 
 316     $form->{"lastcost_$i"} *= 1;
 
 317     $form->{"marge_percent_$i"} = 0;
 
 319     if ($real_sellprice && ($form->{"qty_$i"} * 1)) {
 
 320       $form->{"marge_percent_$i"}     = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * 100 / $real_sellprice;
 
 321       $myconfig{marge_percent_warn} ||= 15;
 
 322       $marge_color                    = 'color="#ff0000"' if $form->{"id_$i"} && ($form->{"marge_percent_$i"} < (1 * $myconfig{marge_percent_warn}));
 
 325     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
 
 326     $form->{"marge_absolut_$i"}  = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * $form->{"qty_$i"} * $marge_adjust_credit_note;
 
 327     $form->{"marge_total"}      += $form->{"marge_absolut_$i"};
 
 328     $form->{"lastcost_total"}   += $form->{"lastcost_$i"} * $form->{"qty_$i"} / $marge_price_factor;
 
 329     $form->{"sellprice_total"}  += $real_sellprice * $form->{"qty_$i"};
 
 331     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_absolut marge_percent);
 
 333     push @ROW2, { value => sprintf qq|<font %s><b>%s</b> %s  %s%% </font>  <b>%s</b> %s  <b>%s</b> %s|,
 
 334                    $marge_color, $locale->text('Ertrag'),$form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"},
 
 335                    $locale->text('LP'), $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2),
 
 336                    $locale->text('EK'), $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2) }
 
 337       if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ ||  $form->{type} =~ /invoice/) && !$is_delivery_order;
 
 338 # / marge calculations ending
 
 341     if ($form->{"id_$i"}) {
 
 342       my $part         = IC->get_basic_part_info(id => $form->{"id_$i"});
 
 343       my $onhand_color = 'color="#ff0000"' if  $part->{onhand} < $part->{rop};
 
 344       push @ROW2, { value => sprintf "<b>%s</b> <font %s>%s %s</font>",
 
 345                       $locale->text('On Hand'),
 
 347                       $form->format_amount(\%myconfig, $part->{onhand}, 2),
 
 355     if ($is_delivery_order) {
 
 356       map { $form->{"${_}_${i}"} = $form->format_amount(\%myconfig, $form->{"${_}_${i}"}) } qw(sellprice discount);
 
 357       push @hidden_vars, qw(sellprice discount price_factor_id);
 
 358       push @hidden_vars, "stock_${stock_in_out}_sum_qty", "stock_${stock_in_out}";
 
 361     my @HIDDENS = map { value => $_}, (
 
 362           $cgi->hidden("-name" => "unit_old_$i", "-value" => $form->{"selected_unit_$i"}),
 
 363           $cgi->hidden("-name" => "price_new_$i", "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"})),
 
 364           map { ($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } map { $_."_$i" }
 
 365             (qw(orderitems_id bo pricegroup_old price_old id inventory_accno bin partsgroup partnotes
 
 366                 income_accno expense_accno listprice assembly taxaccounts ordnumber transdate cusordnumber
 
 367                 longdescription basefactor marge_absolut marge_percent marge_price_factor lastcost), @hidden_vars)
 
 370     map { $form->{"${_}_base"} += $linetotal } (split(/ /, $form->{"taxaccounts_$i"}));
 
 372     $form->{invsubtotal} += $linetotal;
 
 374     # Benutzerdefinierte Variablen für Waren/Dienstleistungen/Erzeugnisse
 
 375     _render_custom_variables_inputs(ROW2 => \@ROW2, row => $i);
 
 377     push @ROWS, { ROW1 => \@ROW1, ROW2 => \@ROW2, HIDDENS => \@HIDDENS, colspan => $colspan, error => $form->{"row_error_$i"}, };
 
 380   print $form->parse_html_template('oe/sales_order', { ROWS   => \@ROWS,
 
 384   if (0 != ($form->{sellprice_total} * 1)) {
 
 385     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
 
 388   $lxdebug->leave_sub();
 
 391 ##################################################
 
 392 # build html-code for pricegroups in variable $form->{prices_$j}
 
 395   $lxdebug->enter_sub();
 
 399   my $rowcount = shift;
 
 400   for $j (1 .. $rowcount) {
 
 401     next unless $form->{PRICES}{$j};
 
 402     # build drop down list for pricegroups
 
 403     my $option_tmpl = qq|<option value="%s--%s" %s>%s</option>|;
 
 404     $form->{"prices_$j"}  = join '', map { sprintf $option_tmpl, @$_{qw(price pricegroup_id selected pricegroup)} }
 
 405                                          (+{ pricegroup => $locale->text("none (pricegroup)") }, @{ $form->{PRICES}{$j} });
 
 407     foreach $item (@{ $form->{PRICES}{$j} }) {
 
 408       # set new selectedpricegroup_id and prices for "Preis"
 
 409       $form->{"pricegroup_old_$j"} = $item->{pricegroup_id}   if $item->{selected} &&  $item->{pricegroup_id};
 
 410       $form->{"sellprice_$j"}      = $item->{price}           if $item->{selected} &&  $item->{pricegroup_id};
 
 411       $form->{"price_new_$j"}      = $form->{"sellprice_$j"}  if $item->{selected} || !$item->{pricegroup_id};
 
 414   $lxdebug->leave_sub();
 
 418   $lxdebug->enter_sub();
 
 419 # diese variable kommt schon in der methode display_row vor, kann man die besser wiederverwenden? @mb fragen.  ich check das jetzt erstmal so ein
 
 420   my $is_purchase        = (first { $_ eq $form->{type} } qw(request_quotation purchase_order purchase_delivery_order)) || ($form->{script} eq 'ir.pl');
 
 423   @column_index = qw(ndx partnumber description rop onhand unit sellprice);
 
 425   $column_data{ndx}        = qq|<th> </th>|;
 
 426   $column_data{partnumber} =
 
 427     qq|<th class="listheading">| . $locale->text('Number') . qq|</th>|;
 
 428   $column_data{description} =
 
 429     qq|<th class="listheading">| . $locale->text('Part Description') . qq|</th>|;
 
 430   $column_data{sellprice} =
 
 431     qq|<th class="listheading">| . $locale->text('Price') . qq|</th>|;
 
 434       qq|<th class="listheading">| . $locale->text('ROP') . qq|</th>|;
 
 435     }# ende if $is_purchase -> Überschrift Mindestlagerbestand - ähnliche Prüfung weiter unten
 
 436   $column_data{onhand} =
 
 437     qq|<th class="listheading">| . $locale->text('Qty') . qq|</th>|;
 
 439     qq|<th class="listheading">| . $locale->text('Unit') . qq|</th>|;
 
 440   # list items with radio button on a form
 
 443   $title   = $locale->text('Select from one of the items below');
 
 444   $colspan = $#column_index + 1;
 
 449 <form method="post" action="$form->{script}">
 
 453     <th class="listtop" colspan="$colspan">$title</th>
 
 456   <tr class="listheading">|;
 
 458   map { print "\n$column_data{$_}" } @column_index;
 
 463     qw(bin listprice inventory_accno income_accno expense_accno unit weight
 
 464        assembly taxaccounts partsgroup formel longdescription not_discountable
 
 465        part_payment_id partnotes id lastcost price_factor_id price_factor);
 
 466   push @new_fields, "lizenzen" if ($lizenzen);
 
 467   push @new_fields, grep { m/^ic_cvar_/ } keys %{ $form->{item_list}->[0] };
 
 470   foreach $ref (@{ $form->{item_list} }) {
 
 471     $checked = ($i++) ? "" : "checked";
 
 474       if ($ref->{inventory_accno} > 0) {
 
 475         $ref->{"lizenzen"} = qq|<option></option>|;
 
 476         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 477           $ref->{"lizenzen"} .=
 
 478             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 480         $ref->{"lizenzen"} .= qq|<option value="-1">Neue Lizenz</option>|;
 
 481         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 485     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 487     my $display_sellprice  = $ref->{sellprice} * (1 - $form->{tradediscount});
 
 488     $display_sellprice    /= $ref->{price_factor} if ($ref->{price_factor});
 
 489     $display_sellprice     = $form->format_amount(\%myconfig, $display_sellprice, 2);
 
 492       qq|<td><input name="ndx" class="radio" type="radio" value="$i" $checked></td>|;
 
 493     $column_data{partnumber} =
 
 494       qq|<td><input name="new_partnumber_$i" type="hidden" value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 495     $column_data{description} =
 
 496       qq|<td><input name="new_description_$i" type="hidden" value="$ref->{description}">$ref->{description}</td>|;
 
 497     $column_data{sellprice} =
 
 498       qq|<td align="right"><input name="new_sellprice_$i" type="hidden" value="$ref->{sellprice}">|
 
 501     $column_data{onhand} =
 
 502       qq|<td align="right"><input name="new_onhand_$i" type="hidden" value="$ref->{onhand}">|
 
 503       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 507       qq|<td align="right"><input name="new_rop$i" type="hidden" value="$ref->{rop}">|
 
 508       . $form->format_amount(\%myconfig, $ref->{rop}, '', " ")
 
 510     }# ende if $is_purchase -> Falls der Aufruf über eine Einkaufsmaske kam, handelt es sich um einen Lieferantenauftrag und uns interessiert auch die Mindestbestandsmenge
 
 512       qq|<td>$ref->{unit}</td>|;
 
 516 <tr class=listrow$j>|;
 
 518     map { print "\n$column_data{$_}" } @column_index;
 
 522     print join "\n", map { $cgi->hidden("-name" => "new_${_}_$i", "-value" => $ref->{$_}) } @new_fields;
 
 527 <tr><td colspan="8"><hr size="3" noshade></td></tr>
 
 530 <input name="lastndx" type="hidden" value="$i">
 
 534   # delete action variable
 
 535   map { delete $form->{$_} } qw(action item_list header);
 
 537   # save all other form variables
 
 538   foreach $key (keys %${form}) {
 
 539     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
 540     $form->{$key} =~ s/\"/"/g;
 
 541     print qq|<input name="$key" type="hidden" value="$form->{$key}">\n|;
 
 545 <input type="hidden" name="nextsub" value="item_selected">
 
 548 <input class="submit" type="submit" name="action" value="|
 
 549     . $locale->text('Continue') . qq|">
 
 556   $lxdebug->leave_sub();
 
 560   $lxdebug->enter_sub();
 
 564   # replace the last row with the checked row
 
 565   $i = $form->{rowcount};
 
 566   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 572   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 573   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 575   # if there was a price entered, override it
 
 576   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 579     qw(id partnumber description sellprice listprice inventory_accno
 
 580        income_accno expense_accno bin unit weight assembly taxaccounts
 
 581        partsgroup formel longdescription not_discountable partnotes lastcost
 
 582        price_factor_id price_factor);
 
 584   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 585   push @new_fields, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 587   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } @new_fields;
 
 589   $form->{"marge_price_factor_$i"} = $form->{"new_price_factor_$j"};
 
 591   if ($form->{"part_payment_id_$i"} ne "") {
 
 592     $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 596     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 599   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 601   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 604     $form->{"sellprice_$i"} = $sellprice;
 
 607     # if there is an exchange rate adjust sellprice
 
 608     if (($form->{exchangerate} * 1) != 0) {
 
 609       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 610       $form->{"sellprice_$i"} =
 
 611         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 615   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 616     qw(sellprice listprice weight);
 
 618   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 619   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 621   if ($form->{"not_discountable_$i"}) {
 
 622     $form->{"discount_$i"} = 0;
 
 626     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 628   map { $form->{"${_}_base"} += $amount }
 
 629     (split / /, $form->{"taxaccounts_$i"});
 
 630   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 631     $form->{"taxaccounts_$i"}
 
 632     if !$form->{taxincluded};
 
 634   $form->{creditremaining} -= $amount;
 
 636   $form->{"runningnumber_$i"} = $i;
 
 638   # delete all the new_ variables
 
 639   for $i (1 .. $form->{lastndx}) {
 
 640     map { delete $form->{"new_${_}_$i"} } @new_fields;
 
 643   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 648       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 649   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 651   # get pricegroups for parts
 
 652   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 654   # build up html code for prices_$i
 
 655   set_pricegroup($form->{rowcount});
 
 659   $lxdebug->leave_sub();
 
 663   $lxdebug->enter_sub();
 
 667   my $price_key = ($form->{type} =~ m/request_quotation|purchase_order/) || ($form->{script} eq 'ir.pl') ? 'lastcost' : 'sellprice';
 
 670   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 671   $form->{callback}     = $form->escape("$form->{script}?action=display_form", 1);
 
 673   # save all form variables except action in a previousform variable
 
 674   my $previousform = join '&', map { my $value = $form->{$_}; $value =~ s/&/%26/; "$_=$value" } grep { !/action/ } keys %$form;
 
 676   push @HIDDENS,      { 'name' => 'previousform', 'value' => $form->escape($previousform, 1) };
 
 677   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} },                       qw(rowcount vc);
 
 678   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{"${_}_$form->{rowcount}"} }, qw(partnumber description unit);
 
 679   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
 
 680   push @HIDDENS,      { 'name' => $price_key,     'value' => $form->parse_amount(\%myconfig, $form->{"sellprice_$form->{rowcount}"}) };
 
 681   push @HIDDENS,      { 'name' => 'notes',        'value' => $form->{"longdescription_$form->{rowcount}"} };
 
 684   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
 
 686   $lxdebug->leave_sub();
 
 690   $lxdebug->enter_sub();
 
 697   # remove any makes or model rows
 
 698   if ($form->{item} eq 'part') {
 
 699     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 700       qw(listprice sellprice lastcost weight rop);
 
 702   } elsif ($form->{item} eq 'assembly') {
 
 704     # fuer assemblies auskommentiert. seiteneffekte? ;-) wird die woanders benoetigt?
 
 705     #$form->{sellprice} = 0;
 
 707     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 708       qw(listprice sellprice rop stock);
 
 710     my @flds = qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup lastcost);
 
 712     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 713       if ($form->{"qty_$i"}) {
 
 717         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 719         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 721         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 723         # fuer assemblies auskommentiert. siehe oben
 
 724         #    $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"} / ($form->{"price_factor_$i"} || 1));
 
 725         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"} / ($form->{"price_factor_$i"} || 1));
 
 729     # kann das hier auch weg? s.o. jb
 
 730     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 732     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 733     $form->{assembly_rows} = $count;
 
 735   } elsif ($form->{item} eq 'service') {
 
 736     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost);
 
 739     my @flds = qw(id partnumber description qty ship sellprice unit
 
 740                   discount inventory_accno income_accno expense_accno listprice
 
 741                   taxaccounts bin assembly weight projectnumber project_id
 
 742                   oldprojectnumber runningnumber serialnumber partsgroup payment_id
 
 743                   not_discountable shop ve gv buchungsgruppen_id language_values
 
 744                   sellprice_pg pricegroup_old price_old price_new unit_old ordnumber
 
 745                   transdate longdescription basefactor marge_total marge_percent
 
 746                   marge_price_factor lastcost price_factor_id partnotes
 
 747                   stock_out stock_in has_sernumber);
 
 749     my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 750     push @flds, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 752     # this section applies to invoices and orders
 
 753     # remove any empty numbers
 
 754     if ($form->{rowcount}) {
 
 755       for my $i (1 .. $form->{rowcount} - 1) {
 
 756         if ($form->{"partnumber_$i"}) {
 
 760           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 763             if ($form->{"licensenumber_$i"} == -1) {
 
 771       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 772       $form->{rowcount} = $count;
 
 774       $form->{creditremaining} -= &invoicetotal;
 
 781   if (   $form->{type} =~ (/sales_quotation/)
 
 782       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 783       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 784       or ($form->{type} =~ /sales_order/)) {
 
 786     # get pricegroups for parts
 
 787     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 789     # build up html code for prices_$i
 
 790     set_pricegroup($form->{rowcount});
 
 796   $lxdebug->leave_sub();
 
 800   $lxdebug->enter_sub();
 
 804   $form->{oldinvtotal} = 0;
 
 806   # add all parts and deduct paid
 
 807   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
 809   my ($amount, $sellprice, $discount, $qty);
 
 811   for my $i (1 .. $form->{rowcount}) {
 
 812     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 813     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
 814     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 816     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 818     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
 819     map { $form->{"${_}_base"} += $amount }
 
 820       (split (/ /, $form->{"taxaccounts_$i"}));
 
 821     $form->{oldinvtotal} += $amount;
 
 824   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
 825     split(/ /, $form->{taxaccounts})
 
 826     if !$form->{taxincluded};
 
 828   $form->{oldtotalpaid} = 0;
 
 829   for $i (1 .. $form->{paidaccounts}) {
 
 830     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
 833   $lxdebug->leave_sub();
 
 836   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 840   $lxdebug->enter_sub();
 
 844   # check if items are valid
 
 845   if ($form->{rowcount} == 1) {
 
 850   for $i (1 .. $form->{rowcount} - 1) {
 
 851     $form->isblank("partnumber_$i",
 
 852                    $locale->text('Number missing in Row') . " $i");
 
 855   $lxdebug->leave_sub();
 
 859   $lxdebug->enter_sub();
 
 863   if ($form->{second_run}) {
 
 864     $form->{print_and_post} = 0;
 
 866   $form->{ordnumber} = $form->{invnumber};
 
 868   $form->{old_employee_id} = $form->{employee_id};
 
 869   $form->{old_salesman_id} = $form->{salesman_id};
 
 871   map { delete $form->{$_} } qw(id printed emailed queued);
 
 872   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
 873     $form->{title} = $locale->text('Add Purchase Order');
 
 874     $form->{vc}    = 'vendor';
 
 875     $form->{type}  = 'purchase_order';
 
 878   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
 879     $form->{title} = $locale->text('Add Sales Order');
 
 880     $form->{vc}    = 'customer';
 
 881     $form->{type}  = 'sales_order';
 
 884   $form->{script} = 'oe.pl';
 
 892   require "bin/mozilla/$form->{script}";
 
 893   my $script = $form->{"script"};
 
 896   $locale = new Locale($language, $script);
 
 898   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
 900   $currency = $form->{currency};
 
 904   $form->{currency}     = $currency;
 
 905   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 906   $form->{exchangerate} = $form->{forex} || '';
 
 908   for $i (1 .. $form->{rowcount}) {
 
 909     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"})
 
 910             if ($form->{"${_}_${i}"}) }
 
 911         qw(ship qty sellprice listprice basefactor discount));
 
 917   $lxdebug->leave_sub();
 
 921   $lxdebug->enter_sub();
 
 925   if ($form->{second_run}) {
 
 926     $form->{print_and_post} = 0;
 
 928   map { delete $form->{$_} } qw(id printed emailed queued);
 
 930   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
 931     $form->{title} = $locale->text('Add Request for Quotation');
 
 932     $form->{vc}    = 'vendor';
 
 933     $form->{type}  = 'request_quotation';
 
 936   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
 937     $form->{title} = $locale->text('Add Quotation');
 
 938     $form->{vc}    = 'customer';
 
 939     $form->{type}  = 'sales_quotation';
 
 945   $form->{script} = 'oe.pl';
 
 951   require "bin/mozilla/$form->{script}";
 
 953   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
 955   $currency = $form->{currency};
 
 959   $form->{currency}     = $currency;
 
 960   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 961   $form->{exchangerate} = $form->{forex} || '';
 
 963   for $i (1 .. $form->{rowcount}) {
 
 964     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
 965                                                      $form->{"${_}_${i}"})
 
 966             if ($form->{"${_}_${i}"}) }
 
 967         qw(ship qty sellprice listprice basefactor discount));
 
 973   $lxdebug->leave_sub();
 
 976 sub request_for_quotation {
 
 981   $lxdebug->enter_sub();
 
 985   if ($form->{second_run}) {
 
 986     $form->{print_and_post} = 0;
 
 987     $form->{resubmit}       = 0;
 
 990   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
 
 992   if ($form->{"cp_id"} && !$form->{"email"}) {
 
 993     CT->get_contact(\%myconfig, $form);
 
 994     $form->{"email"} = $form->{"cp_email"};
 
 997   $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
 
 999   $form->{oldmedia} = $form->{media};
 
1000   $form->{media}    = "email";
 
1002   my $attachment_filename = $form->generate_attachment_filename();
 
1003   my $subject             = $form->{subject} || $form->generate_email_subject();
 
1005   $form->{"fokus"} = $form->{"email"} ? "Form.subject" : "Form.email";
 
1008   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
 
1009   @dont_hide_key_list = qw(action email cc bcc subject message sendmode format header override login password);
 
1010   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
 
1011   @hidden_keys = sort grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
 
1013   print $form->parse_html_template('generic/edit_email',
 
1015                                      a_filename    => $attachment_filename,
 
1016                                      subject       => $subject,
 
1017                                      print_options => print_options('inline' => 1),
 
1018                                      HIDDEN        => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
 
1019                                      SHOW_BCC      => $myconfig{role} eq 'admin' });
 
1021   $lxdebug->leave_sub();
 
1025   $lxdebug->enter_sub();
 
1029   my $callback = $form->{script} . "?action=edit";
 
1030   map({ $callback .= "\&${_}=" . E($form->{$_}); } qw(type id));
 
1032   print_form("return");
 
1034   Common->save_email_status(\%myconfig, $form);
 
1036   $form->{callback} = $callback;
 
1039   $lxdebug->leave_sub();
 
1042 # generate the printing options displayed at the bottom of oe and is forms.
 
1043 # this function will attempt to guess what type of form is displayed, and will generate according options
 
1046 # this version builds the arrays of options pretty directly. if you have trouble understanding how,
 
1047 # the opthash function builds hashrefs which are then pieced together for the template arrays.
 
1048 # unneeded options are "undef"ed out, and then grepped out.
 
1050 # the inline options is untested, but intended to be used later in metatemplating
 
1052   $lxdebug->enter_sub();
 
1058   # names 3 parameters and returns a hashref, for use in templates
 
1059   sub opthash { +{ value => shift, selected => shift, oname => shift } }
 
1060   (@FORMNAME, @FORMNAME, @LANGUAGE_ID, @FORMAT, @SENDMODE, @MEDIA, @PRINTER_ID, @SELECTS) = ();
 
1062   # note: "||"-selection is only correct for values where "0" is _not_ a correct entry
 
1063   $form->{sendmode}   = "attachment";
 
1064   $form->{format}     = $form->{format} || $myconfig{template_format} || "pdf";
 
1065   $form->{copies}     = $form->{copies} || $myconfig{copies}          || 3;
 
1066   $form->{media}      = $form->{media}  || $myconfig{default_media}   || "screen";
 
1067   $form->{printer_id} = defined $form->{printer_id}           ? $form->{printer_id} :
 
1068                         defined $myconfig{default_printer_id} ? $myconfig{default_printer_id} : "";
 
1070   $form->{PD}{ $form->{formname} } = "selected";
 
1071   $form->{DF}{ $form->{format} }   = "selected";
 
1072   $form->{OP}{ $form->{media} }    = "selected";
 
1073   $form->{SM}{ $form->{formname} } = "selected";
 
1075   push @FORMNAME, grep $_,
 
1076     ($form->{type} eq 'purchase_order') ? (
 
1077       opthash("purchase_order",      $form->{PD}{purchase_order},      $locale->text('Purchase Order')),
 
1078       opthash("bin_list",            $form->{PD}{bin_list},            $locale->text('Bin List'))
 
1080     ($form->{type} eq 'credit_note') ?
 
1081       opthash("credit_note",         $form->{PD}{credit_note},         $locale->text('Credit Note')) : undef,
 
1082     ($form->{type} eq 'sales_order') ? (
 
1083       opthash("sales_order",         $form->{PD}{sales_order},         $locale->text('Confirmation')),
 
1084       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
 
1086     ($form->{type} =~ /sales_quotation$/) ?
 
1087       opthash('sales_quotation',     $form->{PD}{sales_quotation},     $locale->text('Quotation')) : undef,
 
1088     ($form->{type} =~ /request_quotation$/) ?
 
1089       opthash('request_quotation',   $form->{PD}{request_quotation},   $locale->text('Request for Quotation')) : undef,
 
1090     ($form->{type} eq 'invoice') ? (
 
1091       opthash("invoice",             $form->{PD}{invoice},             $locale->text('Invoice')),
 
1092       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
 
1094     ($form->{type} eq 'invoice' && $form->{storno}) ? (
 
1095       opthash("storno_invoice",      $form->{PD}{storno_invoice},      $locale->text('Storno Invoice')),
 
1096       opthash("storno_packing_list", $form->{PD}{storno_packing_list}, $locale->text('Storno Packing List'))
 
1098     ($form->{type} =~ /_delivery_order$/) ? (
 
1099       opthash($form->{type},         $form->{PD}{$form->{type}},       $locale->text('Delivery Order')),
 
1100       opthash('pick_list',           $form->{PD}{pick_list},           $locale->text('Pick List')),
 
1104     opthash("attachment",            $form->{SM}{attachment},          $locale->text('Attachment')),
 
1105     opthash("inline",                $form->{SM}{inline},              $locale->text('In-line'))
 
1106       if ($form->{media} eq 'email');
 
1108   push @MEDIA, grep $_,
 
1109       opthash("screen",              $form->{OP}{screen},              $locale->text('Screen')),
 
1110     (scalar @{ $form->{printers} } && $latex_templates) ?
 
1111       opthash("printer",             $form->{OP}{printer},             $locale->text('Printer')) : undef,
 
1112     ($latex_templates && !$options{no_queue}) ?
 
1113       opthash("queue",               $form->{OP}{queue},               $locale->text('Queue')) : undef
 
1114         if ($form->{media} ne 'email');
 
1116   push @FORMAT, grep $_,
 
1117     ($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)
 
1118      && !$options{no_opendocument_pdf}) ?
 
1119       opthash("opendocument_pdf",    $form->{DF}{"opendocument_pdf"},  $locale->text("PDF (OpenDocument/OASIS)")) : undef,
 
1120     ($latex_templates) ?
 
1121       opthash("pdf",                 $form->{DF}{pdf},                 $locale->text('PDF')) : undef,
 
1122     ($latex_templates && !$options{no_postscript}) ?
 
1123       opthash("postscript",          $form->{DF}{postscript},          $locale->text('Postscript')) : undef,
 
1124     (!$options{no_html}) ?
 
1125       opthash("html", $form->{DF}{html}, "HTML") : undef,
 
1126     ($opendocument_templates && !$options{no_opendocument}) ?
 
1127       opthash("opendocument",        $form->{DF}{opendocument},        $locale->text("OpenDocument/OASIS")) : undef;
 
1130     map { opthash($_->{id}, ($_->{id} eq $form->{language_id} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} }
 
1131       if (ref $form->{languages} eq 'ARRAY');
 
1134     map { opthash($_->{id}, ($_->{id} eq $form->{printer_id} ? 'selected' : ''), $_->{printer_description}) } +{}, @{ $form->{printers} }
 
1135       if ((ref $form->{printers} eq 'ARRAY') && scalar @{ $form->{printers } });
 
1137   @SELECTS = map { sname => lc $_, DATA => \@$_, show => !$options{"hide_" . lc($_)} && scalar @$_ }, qw(FORMNAME LANGUAGE_ID FORMAT SENDMODE MEDIA PRINTER_ID);
 
1139   my %dont_display_groupitems = (
 
1144     display_copies       => scalar @{ $form->{printers} } && $latex_templates && $form->{media} ne 'email',
 
1145     display_remove_draft => (!$form->{id} && $form->{draft_id}),
 
1146     display_groupitems   => !$dont_display_groupitems{$form->{type}},
 
1147     groupitems_checked   => $form->{groupitems} ? "checked" : '',
 
1148     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
 
1151   my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
 
1153   if ($options{inline}) {
 
1154     $lxdebug->leave_sub();
 
1155     return $print_options;
 
1158   print $print_options;
 
1160   $lxdebug->leave_sub();
 
1164   $lxdebug->enter_sub();
 
1168   if ($form->{print_nextsub}) {
 
1169     call_sub($form->{print_nextsub});
 
1170     $lxdebug->leave_sub();
 
1174   # if this goes to the printer pass through
 
1175   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1176     $form->error($locale->text('Select postscript or PDF!'))
 
1177       if ($form->{format} !~ /(postscript|pdf)/);
 
1179     $old_form = new Form;
 
1180     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1183   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1184     if ($form->{formname} eq "proforma") {
 
1185       $form->{proforma} = 1;
 
1187     $form->{print_and_save} = 1;
 
1188     my $formname = $form->{formname};
 
1190     $form->{formname} = $formname;
 
1195   &print_form($old_form);
 
1197   $lxdebug->leave_sub();
 
1201   $lxdebug->enter_sub();
 
1205   my ($old_form) = @_;
 
1209   $numberfld = "invnumber";
 
1212     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1214   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1215   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1217   if ($form->{formname} eq "invoice") {
 
1218     $form->{label} = $locale->text('Invoice');
 
1220   if ($form->{formname} eq "packing_list") {
 
1222     # this is from an invoice
 
1223     $form->{label} = $locale->text('Packing List');
 
1225   if ($form->{formname} eq 'sales_order') {
 
1228     $form->{"${inv}date"} = $form->{transdate};
 
1229     $form->{label}        = $locale->text('Confirmation');
 
1230     $numberfld            = "sonumber";
 
1234   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1237     $form->{"${inv}date"} = $form->{invdate};
 
1238     $form->{label}        = $locale->text('Proforma Invoice');
 
1239     $numberfld            = "sonumber";
 
1243   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1246     $form->{"${inv}date"} = $form->{transdate};
 
1247     $form->{"invdate"}    = $form->{transdate};
 
1248     $form->{invnumber}    = $form->{ordnumber};
 
1249     $form->{label}        = $locale->text('Proforma Invoice');
 
1250     $numberfld            = "sonumber";
 
1254   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1256     # we use the same packing list as from an invoice
 
1259     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1260     $form->{label} = $locale->text('Packing List');
 
1262     # set invnumber for template packing_list
 
1263     $form->{invnumber}   = $form->{ordnumber};
 
1265   if ($form->{formname} eq 'purchase_order') {
 
1268     $form->{"${inv}date"} = $form->{transdate};
 
1269     $form->{label}        = $locale->text('Purchase Order');
 
1270     $numberfld            = "ponumber";
 
1273   if ($form->{formname} eq 'bin_list') {
 
1276     $form->{"${inv}date"} = $form->{transdate};
 
1277     $form->{label}        = $locale->text('Bin List');
 
1280   if ($form->{formname} eq 'sales_quotation') {
 
1283     $form->{"${inv}date"} = $form->{transdate};
 
1284     $form->{label}        = $locale->text('Quotation');
 
1285     $numberfld            = "sqnumber";
 
1289   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1292     $form->{"${inv}date"} = $form->{transdate};
 
1293     $form->{"invdate"}    = $form->{transdate};
 
1294     $form->{label}        = $locale->text('Proforma Invoice');
 
1295     $numberfld            = "sqnumber";
 
1299   if ($form->{formname} eq 'request_quotation') {
 
1302     $form->{"${inv}date"} = $form->{transdate};
 
1303     $form->{label}        = $locale->text('RFQ');
 
1304     $numberfld            = "rfqnumber";
 
1308   if ($form->{type} =~ /_delivery_order$/) {
 
1311     $form->{"${inv}date"} = $form->{transdate};
 
1312     $numberfld            = $form->{type} =~ /^sales/ ? 'sdonumber' : 'pdonumber';
 
1313     $form->{label}        = $form->{formname} eq 'pick_list' ? $locale->text('Pick List') : $locale->text('Delivery Order');
 
1316   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1317     if ($form->{media} eq 'email');
 
1318   $form->isblank("${inv}date",
 
1319            $locale->text($form->{label})
 
1321            . $locale->text(' Date missing!'));
 
1323   # $locale->text('Invoice Number missing!')
 
1324   # $locale->text('Invoice Date missing!')
 
1325   # $locale->text('Packing List Number missing!')
 
1326   # $locale->text('Packing List Date missing!')
 
1327   # $locale->text('Order Number missing!')
 
1328   # $locale->text('Order Date missing!')
 
1329   # $locale->text('Quotation Number missing!')
 
1330   # $locale->text('Quotation Date missing!')
 
1333   $form->{what_done} = $form->{formname};
 
1334   if (!$form->{"${inv}number"} && !$form->{preview} && !$form->{id}) {
 
1335     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1336     if ($form->{media} ne 'email') {
 
1338       # get pricegroups for parts
 
1339       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1341       # build up html code for prices_$i
 
1342       set_pricegroup($form->{rowcount});
 
1344       $form->{rowcount}--;
 
1346       call_sub($display_form);
 
1347       # saving the history
 
1348           if(!exists $form->{addition}) {
 
1349         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1350             $form->{addition} = "PRINTED";
 
1351             $form->save_history($form->dbconnect(\%myconfig));
 
1353       # /saving the history
 
1360   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1361   my ($saved_email, $saved_cc, $saved_bcc) =
 
1362     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1364   $language_saved = $form->{language_id};
 
1365   $payment_id_saved = $form->{payment_id};
 
1366   $salesman_id_saved = $form->{salesman_id};
 
1367   $cp_id_saved = $form->{cp_id};
 
1369   call_sub("$form->{vc}_details") if ($form->{vc});
 
1371   $form->{language_id} = $language_saved;
 
1372   $form->{payment_id} = $payment_id_saved;
 
1374   $form->{"email"} = $saved_email if ($saved_email);
 
1375   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1376   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1378   if (!$cp_id_saved) {
 
1379     # No contact was selected. Delete all contact variables because
 
1380     # IS->customer_details() and IR->vendor_details() get the default
 
1382     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1385   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
1386   if ($form->{"language_id"}) {
 
1387     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
1388       AM->get_language_details(\%myconfig, $form, $form->{language_id});
 
1390     $output_dateformat = $myconfig{"dateformat"};
 
1391     $output_numberformat = $myconfig{"numberformat"};
 
1392     $output_longdates = 1;
 
1395   ($form->{employee}) = split /--/, $form->{employee};
 
1397   # create the form variables
 
1398   if ($form->{type} =~ /_delivery_order$/) {
 
1399     DO->order_details();
 
1401     OE->order_details(\%myconfig, \%$form);
 
1403     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1406   $form->get_employee_data('prefix' => 'employee', 'id' => $form->{employee_id});
 
1407   $form->get_employee_data('prefix' => 'salesman', 'id' => $salesman_id_saved);
 
1409   if ($form->{shipto_id}) {
 
1410     $form->get_shipto(\%myconfig);
 
1413   @a = qw(name street zipcode city country contact);
 
1417   # if there is no shipto fill it in from billto
 
1418   foreach $item (@a) {
 
1419     if ($form->{"shipto$item"}) {
 
1426     if (   $form->{formname} eq 'purchase_order'
 
1427         || $form->{formname} eq 'request_quotation') {
 
1428       $form->{shiptoname}   = $myconfig{company};
 
1429       $form->{shiptostreet} = $myconfig{address};
 
1431       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1435   $form->{notes} =~ s/^\s+//g;
 
1437   $form->{templates} = "$myconfig{templates}";
 
1439   delete $form->{printer_command};
 
1441   $form->{language} = $form->get_template_language(\%myconfig);
 
1444   if ($form->{media} ne 'email') {
 
1445     $printer_code = $form->get_printer_code(\%myconfig);
 
1446     if ($printer_code ne "") {
 
1447       $printer_code = "_" . $printer_code;
 
1451   if ($form->{language} ne "") {
 
1452     map({ $form->{"unit"}->[$_] =
 
1453             AM->translate_units($form, $form->{"language"},
 
1454                                 $form->{"unit"}->[$_], $form->{"qty"}->[$_]); }
 
1455         (0..scalar(@{$form->{"unit"}}) - 1));
 
1456     $form->{language} = "_" . $form->{language};
 
1460   format_dates($output_dateformat, $output_longdates,
 
1461                qw(invdate orddate quodate pldate duedate reqdate transdate
 
1462                   shippingdate deliverydate validitydate paymentdate
 
1463                   datepaid transdate_oe deliverydate_oe
 
1464                   employee_startdate employee_enddate
 
1466                grep({ /^datepaid_\d+$/ ||
 
1467                         /^transdate_oe_\d+$/ ||
 
1468                         /^deliverydate_oe_\d+$/ ||
 
1470                         /^deliverydate_\d+$/ ||
 
1474   reformat_numbers($output_numberformat, 2,
 
1475                    qw(invtotal ordtotal quototal subtotal linetotal
 
1476                       listprice sellprice netprice discount
 
1477                       tax taxbase total paid),
 
1478                    grep({ /^linetotal_\d+$/ ||
 
1479                             /^listprice_\d+$/ ||
 
1480                             /^sellprice_\d+$/ ||
 
1490   reformat_numbers($output_numberformat, undef,
 
1491                    qw(qty price_factor),
 
1495   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
1497   if (scalar @{ $cvar_date_fields }) {
 
1498     format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
1501   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
1502     reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
1505   my $extension = 'html';
 
1506   if ($form->{format} eq 'postscript') {
 
1507     $form->{postscript}   = 1;
 
1510   } elsif ($form->{"format"} =~ /pdf/) {
 
1512     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
1514   } elsif ($form->{"format"} =~ /opendocument/) {
 
1515     $form->{opendocument} = 1;
 
1519   my $email_extension = '_email' if (($form->{media} eq 'email') && (-f "$myconfig{templates}/$form->{formname}_email$form->{language}${printer_code}.${extension}"));
 
1521   $form->{IN}         = "$form->{formname}${email_extension}$form->{language}${printer_code}.${extension}";
 
1523   delete $form->{OUT};
 
1525   if ($form->{media} eq 'printer') {
 
1526     #$form->{OUT} = "| $form->{printer_command} &>/dev/null";
 
1527     $form->{OUT} = "| $form->{printer_command} ";
 
1528     $form->{printed} .= " $form->{formname}";
 
1529     $form->{printed} =~ s/^ //;
 
1531   $printed = $form->{printed};
 
1533   if ($form->{media} eq 'email') {
 
1534     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1535       unless $form->{subject};
 
1537     $form->{emailed} .= " $form->{formname}";
 
1538     $form->{emailed} =~ s/^ //;
 
1540   $emailed = $form->{emailed};
 
1542   if ($form->{media} eq 'queue') {
 
1543     %queued = map { s|.*/|| } split / /, $form->{queued};
 
1545     if ($filename = $queued{ $form->{formname} }) {
 
1546       $form->{queued} =~ s/\Q$form->{formname} $filename\E//;
 
1547       unlink "$spool/$filename";
 
1548       $filename =~ s/\..*$//g;
 
1554     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1555     $form->{OUT} = ">$spool/$filename";
 
1558     $form->{queued} .= " $form->{formname} $filename";
 
1560     $form->{queued} =~ s/^ //;
 
1562   $queued = $form->{queued};
 
1564 # saving the history
 
1565   if(!exists $form->{addition}) {
 
1566     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1567     if($form->{media} =~ /printer/) {
 
1568         $form->{addition} = "PRINTED";
 
1570     elsif($form->{media} =~ /email/) {
 
1571         $form->{addition} = "MAILED";
 
1573     elsif($form->{media} =~ /queue/) {
 
1574         $form->{addition} = "QUEUED";
 
1576     elsif($form->{media} =~ /screen/) {
 
1577         $form->{addition} = "SCREENED";
 
1579     $form->save_history($form->dbconnect(\%myconfig));
 
1581   # /saving the history
 
1583   $form->parse_template(\%myconfig, $userspath);
 
1585   $form->{callback} = "";
 
1587   if ($form->{media} eq 'email') {
 
1588     $form->{message} = $locale->text('sent') unless $form->{message};
 
1590   $message = $form->{message};
 
1592   # if we got back here restore the previous form
 
1593   if ($form->{media} =~ /(printer|email|queue)/) {
 
1595     $form->update_status(\%myconfig)
 
1596       if ($form->{media} eq 'queue' && $form->{id});
 
1598     return $lxdebug->leave_sub() if ($old_form eq "return");
 
1602       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1604       # restore and display form
 
1605       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1607       $form->{queued}  = $queued;
 
1608       $form->{printed} = $printed;
 
1609       $form->{emailed} = $emailed;
 
1610       $form->{message} = $message;
 
1612       $form->{rowcount}--;
 
1613       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1614         qw(exchangerate creditlimit creditremaining);
 
1616       for $i (1 .. $form->{paidaccounts}) {
 
1618           $form->{"${_}_$i"} =
 
1619             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1620         } qw(paid exchangerate);
 
1623       call_sub($display_form);
 
1628       ($form->{media} eq 'printer')
 
1629       ? $locale->text('sent to printer')
 
1630       : $locale->text('emailed to') . " $form->{email}";
 
1631     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1633   if ($form->{printing}) {
 
1634    call_sub($display_form);
 
1638   $lxdebug->leave_sub();
 
1641 sub customer_details {
 
1642   $lxdebug->enter_sub();
 
1644   IS->customer_details(\%myconfig, \%$form, @_);
 
1646   $lxdebug->leave_sub();
 
1649 sub vendor_details {
 
1650   $lxdebug->enter_sub();
 
1652   IR->vendor_details(\%myconfig, \%$form, @_);
 
1654   $lxdebug->leave_sub();
 
1658   $lxdebug->enter_sub();
 
1662   $form->{postasnew} = 1;
 
1663   map { delete $form->{$_} } qw(printed emailed queued);
 
1667   $lxdebug->leave_sub();
 
1671   $lxdebug->enter_sub();
 
1675   if ($form->{second_run}) {
 
1676     $form->{print_and_post} = 0;
 
1679   $title = $form->{title};
 
1680   $form->{title} = $locale->text('Ship to');
 
1682   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1683     qw(exchangerate creditlimit creditremaining);
 
1686     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
 
1687        shiptocontact shiptophone shiptofax shiptoemail
 
1688        shiptodepartment_1 shiptodepartment_2);
 
1691     (qw(name department_1 department_2 street zipcode city country
 
1692         contact email phone fax));
 
1694   # get details for name
 
1695   call_sub("$form->{vc}_details", @addr_vars);
 
1698     ($form->{vc} eq 'customer')
 
1699     ? $locale->text('Customer Number')
 
1700     : $locale->text('Vendor Number');
 
1702   # get pricegroups for parts
 
1703   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1705   # build up html code for prices_$i
 
1706   set_pricegroup($form->{rowcount});
 
1708   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1710   $form->{rowcount}--;
 
1717 <form method="post" action="$form->{script}">
 
1719 <table width="100%">
 
1723         <tr class="listheading">
 
1724           <th class="listheading" colspan="2" width="50%">|
 
1725     . $locale->text('Billing Address') . qq|</th>
 
1726           <th class="listheading" width="50%">|
 
1727     . $locale->text('Shipping Address') . qq|</th>
 
1729         <tr height="5"></tr>
 
1731           <th align="right" nowrap>$number</th>
 
1732           <td>$form->{"$form->{vc}number"}</td>
 
1735           <th align="right" nowrap>| . $locale->text('Company Name') . qq|</th>
 
1736           <td>$form->{name}</td>
 
1737           <td><input name="shiptoname" size="35" value="$form->{shiptoname}"></td>
 
1740           <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
1741           <td>$form->{department_1}</td>
 
1742           <td><input name="shiptodepartment_1" size="35" value="$form->{shiptodepartment_1}"></td>
 
1745           <th align="right" nowrap> </th>
 
1746           <td>$form->{department_2}</td>
 
1747           <td><input name="shiptodepartment_2" size="35" value="$form->{shiptodepartment_2}"></td>
 
1750           <th align="right" nowrap>| . $locale->text('Street') . qq|</th>
 
1751           <td>$form->{street}</td>
 
1752           <td><input name="shiptostreet" size="35" value="$form->{shiptostreet}"></td>
 
1755           <th align="right" nowrap>| . $locale->text('Zipcode') . qq|</th>
 
1756           <td>$form->{zipcode}</td>
 
1757           <td><input name="shiptozipcode" size="35" value="$form->{shiptozipcode}"></td>
 
1760           <th align="right" nowrap>| . $locale->text('City') . qq|</th>
 
1761           <td>$form->{city}</td>
 
1762           <td><input name="shiptocity" size="35" value="$form->{shiptocity}"></td>
 
1765           <th align="right" nowrap>| . $locale->text('Country') . qq|</th>
 
1766           <td>$form->{country}</td>
 
1767           <td><input name="shiptocountry" size="35" value="$form->{shiptocountry}"></td>
 
1770           <th align="right" nowrap>| . $locale->text('Contact') . qq|</th>
 
1771           <td>$form->{contact}</td>
 
1772           <td><input name="shiptocontact" size="35" value="$form->{shiptocontact}"></td>
 
1775           <th align="right" nowrap>| . $locale->text('Phone') . qq|</th>
 
1776           <td>$form->{phone}</td>
 
1777           <td><input name="shiptophone" size="20" value="$form->{shiptophone}"></td>
 
1780           <th align="right" nowrap>| . $locale->text('Fax') . qq|</th>
 
1781           <td>$form->{fax}</td>
 
1782           <td><input name="shiptofax" size="20" value="$form->{shiptofax}"></td>
 
1785           <th align="right" nowrap>| . $locale->text('E-mail') . qq|</th>
 
1786           <td>$form->{email}</td>
 
1787           <td><input name="shiptoemail" size="35" value="$form->{shiptoemail}"></td>
 
1793 | . $cgi->hidden("-name" => "nextsub", "-value" => $nextsub);
 
1799   map({ delete $form->{$_} } (@shipto_vars, qw(header)));
 
1800   $form->{title} = $title;
 
1802   foreach $key (keys %$form) {
 
1803     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1804     $form->{$key} =~ s/\"/"/g;
 
1805     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
 
1810 <hr size="3" noshade>
 
1813 <input class="submit" type="submit" name="action" value="|
 
1814     . $locale->text('Continue') . qq|">
 
1821   $lxdebug->leave_sub();
 
1825   $lxdebug->enter_sub();
 
1832   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
1833   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
1834   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
1837   delete $form->{action};
 
1838   $customer = $form->{customer};
 
1839   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
1841   # save all other form variables in a previousform variable
 
1842   $form->{row} = $row;
 
1843   foreach $key (keys %$form) {
 
1844     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1847     $form->{$key} =~ s/&/%26/g;
 
1848     $previousform .= qq|$key=$form->{$key}&|;
 
1851   $previousform = $form->escape($previousform, 1);
 
1853   $form->{script} = "licenses.pl";
 
1855   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
1856   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
1857     qw(partnumber description);
 
1859     qq|$form->{script}?action=add&vc=$form->{db}&$form->{db}_id=$form->{id}&$form->{db}=$name&type=$form->{type}&customer=$customer&partnumber=$form->{partnumber}&description=$form->{description}&previousform="$previousform"&initial=1|;
 
1862   $lxdebug->leave_sub();
 
1865 sub relink_accounts {
 
1866   $lxdebug->enter_sub();
 
1870   $form->{"taxaccounts"} =~ s/\s*$//;
 
1871   $form->{"taxaccounts"} =~ s/^\s*//;
 
1872   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
1873     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
1875   $form->{"taxaccounts"} = "";
 
1877   for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
 
1878     if ($form->{"id_$i"}) {
 
1879       IC->retrieve_accounts(\%myconfig, $form, $form->{"id_$i"}, $i, 1);
 
1883   $lxdebug->leave_sub();
 
1887   $lxdebug->enter_sub();
 
1891   my $invdate = $form->{invdate} eq 'undefined' ? undef : $form->{invdate};
 
1892   my $duedate = $form->get_duedate(\%myconfig, $invdate);
 
1894   print $form->ajax_response_header() . $duedate;
 
1896   $lxdebug->leave_sub();
 
1899 sub _update_part_information {
 
1900   $lxdebug->enter_sub();
 
1902   my %part_information = IC->get_basic_part_info('id'        => [ grep { $_ } map { $form->{"id_${_}"} } (1..$form->{rowcount}) ],
 
1903                                                  'vendor_id' => $form->{vendor_id});
 
1905   $form->{PART_INFORMATION} = \%part_information;
 
1907   foreach my $i (1..$form->{rowcount}) {
 
1908     next unless ($form->{"id_${i}"});
 
1910     my $info                 = $form->{PART_INFORMATION}->{$form->{"id_${i}"}} || { };
 
1911     $form->{"partunit_${i}"} = $info->{unit};
 
1914   $lxdebug->leave_sub();
 
1918   $lxdebug->enter_sub();
 
1920   if (!$form->{ordnumber} || !$form->{id}) {
 
1921     map { $form->{"ship_$_"} = 0 } (1..$form->{rowcount});
 
1922     $lxdebug->leave_sub();
 
1926   AM->retrieve_all_units();
 
1928   my %ship = DO->get_shipped_qty('type'  => ($form->{type} eq 'purchase_order') ? 'purchase' : 'sales',
 
1929                                  'oe_id' => $form->{id},);
 
1931   foreach my $i (1..$form->{rowcount}) {
 
1932     next unless ($form->{"id_${i}"});
 
1934     $form->{"ship_$i"} = 0;
 
1936     my $ship_entry = $ship{$form->{"id_$i"}};
 
1938     next if (!$ship_entry || ($ship_entry->{qty} <= 0));
 
1941       ($form->{simple_save} ? $form->{"qty_$i"} : $form->parse_amount(\%myconfig, $form->{"qty_$i"}))
 
1942       * $all_units->{$form->{"unit_$i"}}->{factor}
 
1943       / $all_units->{$form->{"partunit_$i"}}->{factor};
 
1945     $form->{"ship_$i"}  = min($rowqty, $ship_entry->{qty});
 
1946     $ship_entry->{qty} -= $form->{"ship_$i"};
 
1949   foreach my $i (1..$form->{rowcount}) {
 
1950     next unless ($form->{"id_${i}"});
 
1952     my $ship_entry = $ship{$form->{"id_$i"}};
 
1954     next if (!$ship_entry || ($ship_entry->{qty} <= 0.01));
 
1956     $form->{"ship_$i"} += $ship_entry->{qty};
 
1957     $ship_entry->{qty}  = 0;
 
1960   $lxdebug->leave_sub();
 
1963 sub _update_custom_variables {
 
1964   $lxdebug->enter_sub();
 
1966   $form->{CVAR_CONFIGS}       ||= { };
 
1967   $form->{CVAR_CONFIGS}->{IC}   = CVar->get_configs(module => 'IC');
 
1969   $lxdebug->leave_sub();
 
1972 sub _render_custom_variables_inputs {
 
1973   $lxdebug->enter_sub();
 
1977   if (!$form->{CVAR_CONFIGS}->{IC}) {
 
1978     $lxdebug->leave_sub();
 
1982   foreach my $cvar (@{ $form->{CVAR_CONFIGS}->{IC} }) {
 
1983     $cvar->{value} = $form->{"ic_cvar_" . $cvar->{name} . "_$params{row}"};
 
1986   CVar->render_inputs(hide_non_editable => 1,
 
1987                       variables         => $form->{CVAR_CONFIGS}->{IC},
 
1988                       name_prefix       => 'ic_',
 
1989                       name_postfix      => "_$params{row}");
 
1991   my $num_visible_cvars = 0;
 
1992   foreach my $cvar (@{ $form->{CVAR_CONFIGS}->{IC} }) {
 
1993     my $description = '';
 
1994     if ($cvar->{flag_editable}) {
 
1995       $num_visible_cvars++;
 
1996       $description = $cvar->{description} . ' ';
 
1999     push @{ $params{ROW2} }, { line_break => $num_visible_cvars == 1,
 
2000                                value      => $description . $cvar->{HTML_CODE},
 
2004   $lxdebug->leave_sub();