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);
 
 198   for $i (1 .. $numrows) {
 
 201     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(qty discount sellprice price_new price_old) unless ($form->{simple_save});
 
 204     $form->{"unit_old_$i"}      ||= $form->{"unit_$i"};
 
 205     $form->{"selected_unit_$i"} ||= $form->{"unit_$i"};
 
 207     if (   !$all_units->{$form->{"selected_unit_$i"}}                                            # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 208         || !AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units)) { # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 209       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};                 # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 211     # adjust prices by unit, ignore if pricegroup changed
 
 212     if ((!$form->{"prices_$i"}) || ($form->{"new_pricegroup_$i"} == $form->{"old_pricegroup_$i"})) {
 
 213         $form->{"sellprice_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units) || 1;
 
 214         $form->{"unit_old_$i"}   = $form->{"selected_unit_$i"};
 
 216     my $this_unit = $form->{"unit_$i"};
 
 217     $this_unit    = $form->{"selected_unit_$i"} if AM->convert_unit($this_unit, $form->{"selected_unit_$i"}, $all_units);
 
 220     if (0 < scalar @{ $form->{ALL_PRICE_FACTORS} }) {
 
 221       my @values = ('', map { $_->{id}                      } @{ $form->{ALL_PRICE_FACTORS} });
 
 222       my %labels =      map { $_->{id} => $_->{description} } @{ $form->{ALL_PRICE_FACTORS} };
 
 224       $column_data{price_factor} =
 
 225         NTI($cgi->popup_menu('-name'    => "price_factor_id_$i",
 
 226                              '-default' => $form->{"price_factor_id_$i"},
 
 227                              '-values'  => \@values,
 
 228                              '-labels'  => \%labels,
 
 229                              '-style'   => 'width:90px'));
 
 231       $column_data{price_factor} = ' ';
 
 234     $column_data{"unit"} = AM->unit_select_html($all_units, "unit_$i", $this_unit, $form->{"id_$i"} ? $form->{"unit_$i"} : undef);
 
 237     $form->{"sellprice_$i"} =~ /\.(\d+)/;
 
 238     $decimalplaces = max 2, length $1;
 
 240     $price_factor   = $price_factors{$form->{"price_factor_id_$i"}} || 1;
 
 241     $discount       = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} *        $form->{"discount_$i"}  / 100 / $price_factor, 2);
 
 242     $linetotal      = $form->round_amount($form->{"qty_$i"} * $form->{"sellprice_$i"} * (100 - $form->{"discount_$i"}) / 100 / $price_factor, 2);
 
 244     $column_data{runningnumber} = $cgi->textfield(-name => "runningnumber_$i", -size => 5,  -value => $i);    # HuT
 
 245     $column_data{partnumber}    = $cgi->textfield(-name => "partnumber_$i",    -size => 12, -value => $form->{"partnumber_$i"});
 
 246     $column_data{description} = ((($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) # if description is too large, use a textbox instead
 
 247                                 ? $cgi->textarea( -name => "description_$i", -default => $form->{"description_$i"}, -rows => $rows, -columns => 30)
 
 248                                 : $cgi->textfield(-name => "description_$i",   -size => 30, -value => $form->{"description_$i"}))
 
 249                                 . $cgi->button(-value => $locale->text('L'), -onClick => "set_longdescription_window('longdescription_$i')");
 
 251     $form->{"qty_$i"} =~ /\.(\d+)/;
 
 252     my $qty_dec = length $1;
 
 254     $column_data{qty}  = $cgi->textfield(-name => "qty_$i", -size => 5, -value => $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec));
 
 255     $column_data{qty} .= $cgi->button(-onclick => "calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)", -value => $locale->text('*/'))
 
 256                        . $cgi->hidden(-name => "formel_$i", -value => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"})
 
 257       if $form->{"formel_$i"};
 
 259     $column_data{ship} = '';
 
 260     if ($form->{"id_$i"}) {
 
 261       my $ship_qty        = $form->{"ship_$i"} * 1;
 
 262       $ship_qty          *= $all_units->{$form->{"partunit_$i"}}->{factor};
 
 263       $ship_qty          /= $all_units->{$form->{"unit_$i"}}->{factor};
 
 265       $column_data{ship}  = $form->format_amount(\%myconfig, $form->round_amount($ship_qty, 2) * 1) . ' ' . $form->{"unit_$i"};
 
 268     # build in drop down list for pricesgroups
 
 269     if ($form->{"prices_$i"}) {
 
 270       $column_data{sellprice_pg} = qq|<select name="sellprice_pg_$i" style="width: 8em">$form->{"prices_$i"}</select>|;
 
 271       $column_data{sellprice}    = $cgi->textfield(-name => "sellprice_$i", -size => 10, -onBlur => 'check_right_number_format(this)', -value =>
 
 272                                    (($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"})
 
 273                                       ? $form->format_amount(\%myconfig, $form->{"price_new_$i"}, $decimalplaces)
 
 274                                       : $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces)));
 
 276       # for last row and report
 
 277       # set pricegroup drop down list from report menu
 
 278       if ($form->{"sellprice_$i"} != 0) {
 
 279         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 280         my $default_option           = $form->{"sellprice_$i"}.'--'.$form->{"pricegroup_id_$i"};
 
 281         $column_data{sellprice_pg}   = NTI($cgi->popup_menu("sellpricepg_$i", [ $default_option ], $default_option, { $default_option => $form->{"pricegroup_$i"} || '' }));
 
 283         $column_data{sellprice_pg} = qq| |;
 
 285       $column_data{sellprice} = $cgi->textfield(-name => "sellprice_$i", -size => 10, -onBlur => "check_right_number_format(this)", -value =>
 
 286                                                 $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces));
 
 288     $column_data{discount}    = $cgi->textfield(-name => "discount_$i", -size => 3, -value => $form->format_amount(\%myconfig, $form->{"discount_$i"}));
 
 289     $column_data{linetotal}   = $form->format_amount(\%myconfig, $linetotal, 2);
 
 290     $column_data{bin}         = $form->{"bin_$i"};
 
 292     if ($is_delivery_order) {
 
 293       $column_data{stock_in_out} =  calculate_stock_in_out($i);
 
 296     my @ROW1 = map { value => $column_data{$_}, align => $align{$_}, nowrap => $nowrap{$_} }, @column_index;
 
 300     push @ROW2, { value => qq|<b>$serialnumber</b> <input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">| }
 
 301       if $form->{type} !~ /_quotation/;
 
 302     push @ROW2, { value => qq|<b>$projectnumber</b> | . NTI($cgi->popup_menu('-name'  => "project_id_$i",        '-values'  => \@projectnumber_values,
 
 303                                                                              '-labels' => \%projectnumber_labels, '-default' => $form->{"project_id_$i"})) };
 
 304     push @ROW2, { value => qq|<b>$reqdate</b> <input name="reqdate_$i" size="11" onBlur="check_right_date_format(this)" value="$form->{"reqdate_$i"}">| }
 
 305       if ($form->{type} =~ /order/ ||  $form->{type} =~ /invoice/);
 
 306     push @ROW2, { value => sprintf qq|<b>%s</b> <input type="checkbox" name="subtotal_$i" value="1" %s>|,
 
 307                    $locale->text('Subtotal'), $form->{"subtotal_$i"} ? 'checked' : '' };
 
 309 # begin marge calculations
 
 311     my $real_sellprice     = ($form->{"sellprice_$i"} - $discount) / $price_factor;
 
 312     my $marge_price_factor = $form->{"marge_price_factor_$i"} * 1 || 1;
 
 314     $form->{"lastcost_$i"} *= 1;
 
 315     $form->{"marge_percent_$i"} = 0;
 
 317     if ($real_sellprice && ($form->{"qty_$i"} * 1)) {
 
 318       $form->{"marge_percent_$i"}     = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * 100 / $real_sellprice;
 
 319       $myconfig{marge_percent_warn} ||= 15;
 
 320       $marge_color                    = 'color="#ff0000"' if $form->{"id_$i"} && ($form->{"marge_percent_$i"} < (1 * $myconfig{marge_percent_warn}));
 
 323     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
 
 324     $form->{"marge_absolut_$i"}  = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * $form->{"qty_$i"} * $marge_adjust_credit_note;
 
 325     $form->{"marge_total"}      += $form->{"marge_absolut_$i"};
 
 326     $form->{"lastcost_total"}   += $form->{"lastcost_$i"} * $form->{"qty_$i"} / $marge_price_factor;
 
 327     $form->{"sellprice_total"}  += $real_sellprice * $form->{"qty_$i"};
 
 329     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_absolut marge_percent);
 
 331     push @ROW2, { value => sprintf qq|<font %s><b>%s</b> %s  %s%% </font>  <b>%s</b> %s  <b>%s</b> %s|,
 
 332                    $marge_color, $locale->text('Ertrag'),$form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"},
 
 333                    $locale->text('LP'), $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2),
 
 334                    $locale->text('EK'), $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2) }
 
 335       if $form->{"id_$i"} && ($form->{type} =~ /^sales_/ ||  $form->{type} =~ /invoice/) && !$is_delivery_order;
 
 336 # / marge calculations ending
 
 340     if ($is_delivery_order) {
 
 341       map { $form->{"${_}_${i}"} = $form->format_amount(\%myconfig, $form->{"${_}_${i}"}) } qw(sellprice discount);
 
 342       push @hidden_vars, qw(sellprice discount price_factor_id);
 
 343       push @hidden_vars, "stock_${stock_in_out}_sum_qty", "stock_${stock_in_out}";
 
 346     my @HIDDENS = map { value => $_}, (
 
 347           $cgi->hidden("-name" => "unit_old_$i", "-value" => $form->{"selected_unit_$i"}),
 
 348           $cgi->hidden("-name" => "price_new_$i", "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"})),
 
 349           map { ($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } map { $_."_$i" }
 
 350             (qw(orderitems_id bo pricegroup_old price_old id inventory_accno bin partsgroup partnotes
 
 351                 income_accno expense_accno listprice assembly taxaccounts ordnumber transdate cusordnumber
 
 352                 longdescription basefactor marge_absolut marge_percent marge_price_factor lastcost), @hidden_vars)
 
 355     map { $form->{"${_}_base"} += $linetotal } (split(/ /, $form->{"taxaccounts_$i"}));
 
 357     $form->{invsubtotal} += $linetotal;
 
 359     push @ROWS, { ROW1 => \@ROW1, ROW2 => \@ROW2, HIDDENS => \@HIDDENS, colspan => $colspan, error => $form->{"row_error_$i"}, };
 
 362   print $form->parse_html_template('oe/sales_order', { ROWS   => \@ROWS,
 
 366   if (0 != ($form->{sellprice_total} * 1)) {
 
 367     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
 
 370   $lxdebug->leave_sub();
 
 373 ##################################################
 
 374 # build html-code for pricegroups in variable $form->{prices_$j}
 
 377   $lxdebug->enter_sub();
 
 381   my $rowcount = shift;
 
 382   for $j (1 .. $rowcount) {
 
 383     next unless $form->{PRICES}{$j};
 
 384     # build drop down list for pricegroups
 
 385     my $option_tmpl = qq|<option value="%s--%s" %s>%s</option>|;
 
 386     $form->{"prices_$j"}  = join '', map { sprintf $option_tmpl, @$_{qw(price pricegroup_id selected pricegroup)} }
 
 387                                          (+{ pricegroup => $locale->text("none (pricegroup)") }, @{ $form->{PRICES}{$j} });
 
 389     foreach $item (@{ $form->{PRICES}{$j} }) {
 
 390       # set new selectedpricegroup_id and prices for "Preis"
 
 391       $form->{"pricegroup_old_$j"} = $item->{pricegroup_id}   if $item->{selected} &&  $item->{pricegroup_id};
 
 392       $form->{"sellprice_$j"}      = $item->{price}           if $item->{selected} &&  $item->{pricegroup_id};
 
 393       $form->{"price_new_$j"}      = $form->{"sellprice_$j"}  if $item->{selected} || !$item->{pricegroup_id};
 
 396   $lxdebug->leave_sub();
 
 400   $lxdebug->enter_sub();
 
 401 # diese variable kommt schon in der methode display_row vor, kann man die besser wiederverwenden? @mb fragen.  ich check das jetzt erstmal so ein
 
 402   my $is_purchase        = (first { $_ eq $form->{type} } qw(request_quotation purchase_order purchase_delivery_order)) || ($form->{script} eq 'ir.pl');
 
 405   @column_index = qw(ndx partnumber description rop onhand unit sellprice);
 
 407   $column_data{ndx}        = qq|<th> </th>|;
 
 408   $column_data{partnumber} =
 
 409     qq|<th class="listheading">| . $locale->text('Number') . qq|</th>|;
 
 410   $column_data{description} =
 
 411     qq|<th class="listheading">| . $locale->text('Part Description') . qq|</th>|;
 
 412   $column_data{sellprice} =
 
 413     qq|<th class="listheading">| . $locale->text('Price') . qq|</th>|;
 
 416       qq|<th class="listheading">| . $locale->text('ROP') . qq|</th>|;
 
 417     }# ende if $is_purchase -> Überschrift Mindestlagerbestand - ähnliche Prüfung weiter unten
 
 418   $column_data{onhand} =
 
 419     qq|<th class="listheading">| . $locale->text('Qty') . qq|</th>|;
 
 421     qq|<th class="listheading">| . $locale->text('Unit') . qq|</th>|;
 
 422   # list items with radio button on a form
 
 425   $title   = $locale->text('Select from one of the items below');
 
 426   $colspan = $#column_index + 1;
 
 431 <form method="post" action="$form->{script}">
 
 435     <th class="listtop" colspan="$colspan">$title</th>
 
 438   <tr class="listheading">|;
 
 440   map { print "\n$column_data{$_}" } @column_index;
 
 445   foreach $ref (@{ $form->{item_list} }) {
 
 446     $checked = ($i++) ? "" : "checked";
 
 449       if ($ref->{inventory_accno} > 0) {
 
 450         $ref->{"lizenzen"} = qq|<option></option>|;
 
 451         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 452           $ref->{"lizenzen"} .=
 
 453             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 455         $ref->{"lizenzen"} .= qq|<option value="-1">Neue Lizenz</option>|;
 
 456         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 460     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 462     my $display_sellprice  = $ref->{sellprice} * (1 - $form->{tradediscount});
 
 463     $display_sellprice    /= $ref->{price_factor} if ($ref->{price_factor});
 
 464     $display_sellprice     = $form->format_amount(\%myconfig, $display_sellprice, 2);
 
 467       qq|<td><input name="ndx" class="radio" type="radio" value="$i" $checked></td>|;
 
 468     $column_data{partnumber} =
 
 469       qq|<td><input name="new_partnumber_$i" type="hidden" value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 470     $column_data{description} =
 
 471       qq|<td><input name="new_description_$i" type="hidden" value="$ref->{description}">$ref->{description}</td>|;
 
 472     $column_data{sellprice} =
 
 473       qq|<td align="right"><input name="new_sellprice_$i" type="hidden" value="$ref->{sellprice}">|
 
 476     $column_data{onhand} =
 
 477       qq|<td align="right"><input name="new_onhand_$i" type="hidden" value="$ref->{onhand}">|
 
 478       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 482       qq|<td align="right"><input name="new_rop$i" type="hidden" value="$ref->{rop}">|
 
 483       . $form->format_amount(\%myconfig, $ref->{rop}, '', " ")
 
 485     }# ende if $is_purchase -> Falls der Aufruf über eine Einkaufsmaske kam, handelt es sich um einen Lieferantenauftrag und uns interessiert auch die Mindestbestandsmenge
 
 487       qq|<td>$ref->{unit}</td>|;
 
 491 <tr class=listrow$j>|;
 
 493     map { print "\n$column_data{$_}" } @column_index;
 
 498       qw(bin listprice inventory_accno income_accno expense_accno unit weight
 
 499          assembly taxaccounts partsgroup formel longdescription not_discountable
 
 500          part_payment_id partnotes id lastcost price_factor_id price_factor);
 
 501     push(@new_fields, "lizenzen") if ($lizenzen);
 
 503     print join "\n", map { $cgi->hidden("-name" => "new_${_}_$i", "-value" => $ref->{$_}) } @new_fields;
 
 508 <tr><td colspan="8"><hr size="3" noshade></td></tr>
 
 511 <input name="lastndx" type="hidden" value="$i">
 
 515   # delete action variable
 
 516   map { delete $form->{$_} } qw(action item_list header);
 
 518   # save all other form variables
 
 519   foreach $key (keys %${form}) {
 
 520     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
 521     $form->{$key} =~ s/\"/"/g;
 
 522     print qq|<input name="$key" type="hidden" value="$form->{$key}">\n|;
 
 526 <input type="hidden" name="nextsub" value="item_selected">
 
 529 <input class="submit" type="submit" name="action" value="|
 
 530     . $locale->text('Continue') . qq|">
 
 537   $lxdebug->leave_sub();
 
 541   $lxdebug->enter_sub();
 
 545   # replace the last row with the checked row
 
 546   $i = $form->{rowcount};
 
 547   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 553   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 554   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 556   # if there was a price entered, override it
 
 557   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 560     qw(id partnumber description sellprice listprice inventory_accno
 
 561        income_accno expense_accno bin unit weight assembly taxaccounts
 
 562        partsgroup formel longdescription not_discountable partnotes lastcost
 
 563        price_factor_id price_factor);
 
 565   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } @new_fields;
 
 567   $form->{"marge_price_factor_$i"} = $form->{"new_price_factor_$j"};
 
 569   if ($form->{"part_payment_id_$i"} ne "") {
 
 570     $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 574     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 577   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 579   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 582     $form->{"sellprice_$i"} = $sellprice;
 
 585     # if there is an exchange rate adjust sellprice
 
 586     if (($form->{exchangerate} * 1) != 0) {
 
 587       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 588       $form->{"sellprice_$i"} =
 
 589         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 593   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 594     qw(sellprice listprice weight);
 
 596   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 597   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 599   if ($form->{"not_discountable_$i"}) {
 
 600     $form->{"discount_$i"} = 0;
 
 604     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 606   map { $form->{"${_}_base"} += $amount }
 
 607     (split / /, $form->{"taxaccounts_$i"});
 
 608   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 609     $form->{"taxaccounts_$i"}
 
 610     if !$form->{taxincluded};
 
 612   $form->{creditremaining} -= $amount;
 
 614   $form->{"runningnumber_$i"} = $i;
 
 616   # delete all the new_ variables
 
 617   for $i (1 .. $form->{lastndx}) {
 
 618     map { delete $form->{"new_${_}_$i"} } @new_fields;
 
 621   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 626       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 627   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 629   # get pricegroups for parts
 
 630   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 632   # build up html code for prices_$i
 
 633   set_pricegroup($form->{rowcount});
 
 637   $lxdebug->leave_sub();
 
 641   $lxdebug->enter_sub();
 
 645   my $price_key = ($form->{type} =~ m/request_quotation|purchase_order/) || ($form->{script} eq 'ir.pl') ? 'lastcost' : 'sellprice';
 
 648   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 649   $form->{callback}     = $form->escape("$form->{script}?action=display_form", 1);
 
 651   # save all form variables except action in a previousform variable
 
 652   my $previousform = join '&', map { my $value = $form->{$_}; $value =~ s/&/%26/; "$_=$value" } grep { !/action/ } keys %$form;
 
 654   push @HIDDENS,      { 'name' => 'previousform', 'value' => $form->escape($previousform, 1) };
 
 655   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} },                       qw(rowcount vc);
 
 656   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{"${_}_$form->{rowcount}"} }, qw(partnumber description unit);
 
 657   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
 
 658   push @HIDDENS,      { 'name' => $price_key,     'value' => $form->parse_amount(\%myconfig, $form->{"sellprice_$form->{rowcount}"}) };
 
 659   push @HIDDENS,      { 'name' => 'notes',        'value' => $form->{"longdescription_$form->{rowcount}"} };
 
 662   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
 
 664   $lxdebug->leave_sub();
 
 668   $lxdebug->enter_sub();
 
 675   my @flds = qw(id partnumber description qty ship sellprice unit
 
 676                 discount inventory_accno income_accno expense_accno listprice
 
 677                 taxaccounts bin assembly weight projectnumber project_id
 
 678                 oldprojectnumber runningnumber serialnumber partsgroup payment_id
 
 679                 not_discountable shop ve gv buchungsgruppen_id language_values
 
 680                 sellprice_pg pricegroup_old price_old price_new unit_old ordnumber
 
 681                 transdate longdescription basefactor marge_total marge_percent
 
 682                 marge_price_factor lastcost price_factor_id partnotes
 
 685   # remove any makes or model rows
 
 686   if ($form->{item} eq 'part') {
 
 687     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 688       qw(listprice sellprice lastcost weight rop);
 
 690   } elsif ($form->{item} eq 'assembly') {
 
 692     # fuer assemblies auskommentiert. seiteneffekte? ;-) wird die woanders benoetigt?
 
 693     #$form->{sellprice} = 0;
 
 695     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 696       qw(listprice sellprice rop stock);
 
 699       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup lastcost);
 
 701     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 702       if ($form->{"qty_$i"}) {
 
 706         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 708         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 710         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 712         # fuer assemblies auskommentiert. siehe oben
 
 713         #    $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"} / ($form->{"price_factor_$i"} || 1));
 
 714         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"} / ($form->{"price_factor_$i"} || 1));
 
 718     # kann das hier auch weg? s.o. jb
 
 719     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 721     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 722     $form->{assembly_rows} = $count;
 
 724   } elsif ($form->{item} eq 'service') {
 
 725     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost);
 
 729     # this section applies to invoices and orders
 
 730     # remove any empty numbers
 
 731     if ($form->{rowcount}) {
 
 732       for my $i (1 .. $form->{rowcount} - 1) {
 
 733         if ($form->{"partnumber_$i"}) {
 
 737           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 740             if ($form->{"licensenumber_$i"} == -1) {
 
 748       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 749       $form->{rowcount} = $count;
 
 751       $form->{creditremaining} -= &invoicetotal;
 
 758   if (   $form->{type} =~ (/sales_quotation/)
 
 759       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 760       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 761       or ($form->{type} =~ /sales_order/)) {
 
 763     # get pricegroups for parts
 
 764     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 766     # build up html code for prices_$i
 
 767     set_pricegroup($form->{rowcount});
 
 773   $lxdebug->leave_sub();
 
 777   $lxdebug->enter_sub();
 
 781   $form->{oldinvtotal} = 0;
 
 783   # add all parts and deduct paid
 
 784   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
 786   my ($amount, $sellprice, $discount, $qty);
 
 788   for my $i (1 .. $form->{rowcount}) {
 
 789     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 790     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
 791     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 793     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 795     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
 796     map { $form->{"${_}_base"} += $amount }
 
 797       (split (/ /, $form->{"taxaccounts_$i"}));
 
 798     $form->{oldinvtotal} += $amount;
 
 801   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
 802     split(/ /, $form->{taxaccounts})
 
 803     if !$form->{taxincluded};
 
 805   $form->{oldtotalpaid} = 0;
 
 806   for $i (1 .. $form->{paidaccounts}) {
 
 807     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
 810   $lxdebug->leave_sub();
 
 813   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 817   $lxdebug->enter_sub();
 
 821   # check if items are valid
 
 822   if ($form->{rowcount} == 1) {
 
 827   for $i (1 .. $form->{rowcount} - 1) {
 
 828     $form->isblank("partnumber_$i",
 
 829                    $locale->text('Number missing in Row') . " $i");
 
 832   $lxdebug->leave_sub();
 
 836   $lxdebug->enter_sub();
 
 840   if ($form->{second_run}) {
 
 841     $form->{print_and_post} = 0;
 
 843   $form->{ordnumber} = $form->{invnumber};
 
 845   $form->{old_employee_id} = $form->{employee_id};
 
 846   $form->{old_salesman_id} = $form->{salesman_id};
 
 848   map { delete $form->{$_} } qw(id printed emailed queued);
 
 849   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
 850     $form->{title} = $locale->text('Add Purchase Order');
 
 851     $form->{vc}    = 'vendor';
 
 852     $form->{type}  = 'purchase_order';
 
 855   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
 856     $form->{title} = $locale->text('Add Sales Order');
 
 857     $form->{vc}    = 'customer';
 
 858     $form->{type}  = 'sales_order';
 
 861   $form->{script} = 'oe.pl';
 
 869   require "bin/mozilla/$form->{script}";
 
 870   my $script = $form->{"script"};
 
 873   $locale = new Locale($language, $script);
 
 875   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
 877   $currency = $form->{currency};
 
 881   $form->{currency}     = $currency;
 
 882   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 883   $form->{exchangerate} = $form->{forex} || '';
 
 885   for $i (1 .. $form->{rowcount}) {
 
 886     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"})
 
 887             if ($form->{"${_}_${i}"}) }
 
 888         qw(ship qty sellprice listprice basefactor discount));
 
 894   $lxdebug->leave_sub();
 
 898   $lxdebug->enter_sub();
 
 902   if ($form->{second_run}) {
 
 903     $form->{print_and_post} = 0;
 
 905   map { delete $form->{$_} } qw(id printed emailed queued);
 
 907   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
 908     $form->{title} = $locale->text('Add Request for Quotation');
 
 909     $form->{vc}    = 'vendor';
 
 910     $form->{type}  = 'request_quotation';
 
 913   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
 914     $form->{title} = $locale->text('Add Quotation');
 
 915     $form->{vc}    = 'customer';
 
 916     $form->{type}  = 'sales_quotation';
 
 922   $form->{script} = 'oe.pl';
 
 928   require "bin/mozilla/$form->{script}";
 
 930   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
 932   $currency = $form->{currency};
 
 936   $form->{currency}     = $currency;
 
 937   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 938   $form->{exchangerate} = $form->{forex} || '';
 
 940   for $i (1 .. $form->{rowcount}) {
 
 941     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
 942                                                      $form->{"${_}_${i}"})
 
 943             if ($form->{"${_}_${i}"}) }
 
 944         qw(ship qty sellprice listprice basefactor discount));
 
 950   $lxdebug->leave_sub();
 
 953 sub request_for_quotation {
 
 958   $lxdebug->enter_sub();
 
 962   if ($form->{second_run}) {
 
 963     $form->{print_and_post} = 0;
 
 964     $form->{resubmit}       = 0;
 
 967   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
 
 969   if ($form->{"cp_id"} && !$form->{"email"}) {
 
 970     CT->get_contact(\%myconfig, $form);
 
 971     $form->{"email"} = $form->{"cp_email"};
 
 974   $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
 
 976   $form->{oldmedia} = $form->{media};
 
 977   $form->{media}    = "email";
 
 979   my $attachment_filename = $form->generate_attachment_filename();
 
 980   my $subject             = $form->{subject} || $form->generate_email_subject();
 
 982   $form->{"fokus"} = $form->{"email"} ? "Form.subject" : "Form.email";
 
 985   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
 
 986   @dont_hide_key_list = qw(action email cc bcc subject message sendmode format header override login password);
 
 987   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
 
 988   @hidden_keys = sort grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
 
 990   print $form->parse_html_template('generic/edit_email',
 
 992                                      a_filename    => $attachment_filename,
 
 994                                      print_options => print_options('inline' => 1),
 
 995                                      HIDDEN        => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
 
 996                                      SHOW_BCC      => $myconfig{role} eq 'admin' });
 
 998   $lxdebug->leave_sub();
 
1002   $lxdebug->enter_sub();
 
1006   my $callback = $form->{script} . "?action=edit";
 
1007   map({ $callback .= "\&${_}=" . E($form->{$_}); } qw(type id));
 
1009   print_form("return");
 
1011   Common->save_email_status(\%myconfig, $form);
 
1013   $form->{callback} = $callback;
 
1016   $lxdebug->leave_sub();
 
1019 # generate the printing options displayed at the bottom of oe and is forms.
 
1020 # this function will attempt to guess what type of form is displayed, and will generate according options
 
1023 # this version builds the arrays of options pretty directly. if you have trouble understanding how,
 
1024 # the opthash function builds hashrefs which are then pieced together for the template arrays.
 
1025 # unneeded options are "undef"ed out, and then grepped out.
 
1027 # the inline options is untested, but intended to be used later in metatemplating
 
1029   $lxdebug->enter_sub();
 
1035   # names 3 parameters and returns a hashref, for use in templates
 
1036   sub opthash { +{ value => shift, selected => shift, oname => shift } }
 
1037   (@FORMNAME, @FORMNAME, @LANGUAGE_ID, @FORMAT, @SENDMODE, @MEDIA, @PRINTER_ID, @SELECTS) = ();
 
1039   # note: "||"-selection is only correct for values where "0" is _not_ a correct entry
 
1040   $form->{sendmode}   = "attachment";
 
1041   $form->{format}     = $form->{format} || $myconfig{template_format} || "pdf";
 
1042   $form->{copies}     = $form->{copies} || $myconfig{copies}          || 3;
 
1043   $form->{media}      = $form->{media}  || $myconfig{default_media}   || "screen";
 
1044   $form->{printer_id} = defined $form->{printer_id}           ? $form->{printer_id} :
 
1045                         defined $myconfig{default_printer_id} ? $myconfig{default_printer_id} : "";
 
1047   $form->{PD}{ $form->{formname} } = "selected";
 
1048   $form->{DF}{ $form->{format} }   = "selected";
 
1049   $form->{OP}{ $form->{media} }    = "selected";
 
1050   $form->{SM}{ $form->{formname} } = "selected";
 
1052   push @FORMNAME, grep $_,
 
1053     ($form->{type} eq 'purchase_order') ? (
 
1054       opthash("purchase_order",      $form->{PD}{purchase_order},      $locale->text('Purchase Order')),
 
1055       opthash("bin_list",            $form->{PD}{bin_list},            $locale->text('Bin List'))
 
1057     ($form->{type} eq 'credit_note') ?
 
1058       opthash("credit_note",         $form->{PD}{credit_note},         $locale->text('Credit Note')) : undef,
 
1059     ($form->{type} eq 'sales_order') ? (
 
1060       opthash("sales_order",         $form->{PD}{sales_order},         $locale->text('Confirmation')),
 
1061       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
 
1063     ($form->{type} =~ /sales_quotation$/) ?
 
1064       opthash('sales_quotation',     $form->{PD}{sales_quotation},     $locale->text('Quotation')) : undef,
 
1065     ($form->{type} =~ /request_quotation$/) ?
 
1066       opthash('request_quotation',   $form->{PD}{request_quotation},   $locale->text('Request for Quotation')) : undef,
 
1067     ($form->{type} eq 'invoice') ? (
 
1068       opthash("invoice",             $form->{PD}{invoice},             $locale->text('Invoice')),
 
1069       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
 
1071     ($form->{type} eq 'invoice' && $form->{storno}) ? (
 
1072       opthash("storno_invoice",      $form->{PD}{storno_invoice},      $locale->text('Storno Invoice')),
 
1073       opthash("storno_packing_list", $form->{PD}{storno_packing_list}, $locale->text('Storno Packing List'))
 
1075     ($form->{type} =~ /_delivery_order$/) ? (
 
1076       opthash($form->{type},         $form->{PD}{$form->{type}},       $locale->text('Delivery Order')),
 
1077       opthash('pick_list',           $form->{PD}{pick_list},           $locale->text('Pick List')),
 
1081     opthash("attachment",            $form->{SM}{attachment},          $locale->text('Attachment')),
 
1082     opthash("inline",                $form->{SM}{inline},              $locale->text('In-line'))
 
1083       if ($form->{media} eq 'email');
 
1085   push @MEDIA, grep $_,
 
1086       opthash("screen",              $form->{OP}{screen},              $locale->text('Screen')),
 
1087     (scalar @{ $form->{printers} } && $latex_templates) ?
 
1088       opthash("printer",             $form->{OP}{printer},             $locale->text('Printer')) : undef,
 
1089     ($latex_templates && !$options{no_queue}) ?
 
1090       opthash("queue",               $form->{OP}{queue},               $locale->text('Queue')) : undef
 
1091         if ($form->{media} ne 'email');
 
1093   push @FORMAT, grep $_,
 
1094     ($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)
 
1095      && !$options{no_opendocument_pdf}) ?
 
1096       opthash("opendocument_pdf",    $form->{DF}{"opendocument_pdf"},  $locale->text("PDF (OpenDocument/OASIS)")) : undef,
 
1097     ($latex_templates) ?
 
1098       opthash("pdf",                 $form->{DF}{pdf},                 $locale->text('PDF')) : undef,
 
1099     ($latex_templates && !$options{no_postscript}) ?
 
1100       opthash("postscript",          $form->{DF}{postscript},          $locale->text('Postscript')) : undef,
 
1101     (!$options{no_html}) ?
 
1102       opthash("html", $form->{DF}{html}, "HTML") : undef,
 
1103     ($opendocument_templates && !$options{no_opendocument}) ?
 
1104       opthash("opendocument",        $form->{DF}{opendocument},        $locale->text("OpenDocument/OASIS")) : undef;
 
1107     map { opthash($_->{id}, ($_->{id} eq $form->{language_id} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} }
 
1108       if (ref $form->{languages} eq 'ARRAY');
 
1111     map { opthash($_->{id}, ($_->{id} eq $form->{printer_id} ? 'selected' : ''), $_->{printer_description}) } +{}, @{ $form->{printers} }
 
1112       if ((ref $form->{printers} eq 'ARRAY') && scalar @{ $form->{printers } });
 
1114   @SELECTS = map { sname => lc $_, DATA => \@$_, show => !$options{"hide_" . lc($_)} && scalar @$_ }, qw(FORMNAME LANGUAGE_ID FORMAT SENDMODE MEDIA PRINTER_ID);
 
1116   my %dont_display_groupitems = (
 
1121     display_copies       => scalar @{ $form->{printers} } && $latex_templates && $form->{media} ne 'email',
 
1122     display_remove_draft => (!$form->{id} && $form->{draft_id}),
 
1123     display_groupitems   => !$dont_display_groupitems{$form->{type}},
 
1124     groupitems_checked   => $form->{groupitems} ? "checked" : '',
 
1125     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
 
1128   my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
 
1130   if ($options{inline}) {
 
1131     $lxdebug->leave_sub();
 
1132     return $print_options;
 
1135   print $print_options;
 
1137   $lxdebug->leave_sub();
 
1141   $lxdebug->enter_sub();
 
1145   if ($form->{print_nextsub}) {
 
1146     call_sub($form->{print_nextsub});
 
1147     $lxdebug->leave_sub();
 
1151   # if this goes to the printer pass through
 
1152   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1153     $form->error($locale->text('Select postscript or PDF!'))
 
1154       if ($form->{format} !~ /(postscript|pdf)/);
 
1156     $old_form = new Form;
 
1157     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1160   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1161     if ($form->{formname} eq "proforma") {
 
1162       $form->{proforma} = 1;
 
1164     $form->{print_and_save} = 1;
 
1165     my $formname = $form->{formname};
 
1167     $form->{formname} = $formname;
 
1172   &print_form($old_form);
 
1174   $lxdebug->leave_sub();
 
1178   $lxdebug->enter_sub();
 
1182   my ($old_form) = @_;
 
1186   $numberfld = "invnumber";
 
1189     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1191   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1192   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1194   if ($form->{formname} eq "invoice") {
 
1195     $form->{label} = $locale->text('Invoice');
 
1197   if ($form->{formname} eq "packing_list") {
 
1199     # this is from an invoice
 
1200     $form->{label} = $locale->text('Packing List');
 
1202   if ($form->{formname} eq 'sales_order') {
 
1205     $form->{"${inv}date"} = $form->{transdate};
 
1206     $form->{label}        = $locale->text('Confirmation');
 
1207     $numberfld            = "sonumber";
 
1211   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1214     $form->{"${inv}date"} = $form->{invdate};
 
1215     $form->{label}        = $locale->text('Proforma Invoice');
 
1216     $numberfld            = "sonumber";
 
1220   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1223     $form->{"${inv}date"} = $form->{transdate};
 
1224     $form->{"invdate"}    = $form->{transdate};
 
1225     $form->{invnumber}    = $form->{ordnumber};
 
1226     $form->{label}        = $locale->text('Proforma Invoice');
 
1227     $numberfld            = "sonumber";
 
1231   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1233     # we use the same packing list as from an invoice
 
1236     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1237     $form->{label} = $locale->text('Packing List');
 
1239     # set invnumber for template packing_list
 
1240     $form->{invnumber}   = $form->{ordnumber};
 
1242   if ($form->{formname} eq 'purchase_order') {
 
1245     $form->{"${inv}date"} = $form->{transdate};
 
1246     $form->{label}        = $locale->text('Purchase Order');
 
1247     $numberfld            = "ponumber";
 
1250   if ($form->{formname} eq 'bin_list') {
 
1253     $form->{"${inv}date"} = $form->{transdate};
 
1254     $form->{label}        = $locale->text('Bin List');
 
1257   if ($form->{formname} eq 'sales_quotation') {
 
1260     $form->{"${inv}date"} = $form->{transdate};
 
1261     $form->{label}        = $locale->text('Quotation');
 
1262     $numberfld            = "sqnumber";
 
1266   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1269     $form->{"${inv}date"} = $form->{transdate};
 
1270     $form->{"invdate"}    = $form->{transdate};
 
1271     $form->{label}        = $locale->text('Proforma Invoice');
 
1272     $numberfld            = "sqnumber";
 
1276   if ($form->{formname} eq 'request_quotation') {
 
1279     $form->{"${inv}date"} = $form->{transdate};
 
1280     $form->{label}        = $locale->text('RFQ');
 
1281     $numberfld            = "rfqnumber";
 
1285   if ($form->{type} =~ /_delivery_order$/) {
 
1288     $form->{"${inv}date"} = $form->{transdate};
 
1289     $numberfld            = $form->{type} =~ /^sales/ ? 'sdonumber' : 'pdonumber';
 
1290     $form->{label}        = $form->{formname} eq 'pick_list' ? $locale->text('Pick List') : $locale->text('Delivery Order');
 
1293   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1294     if ($form->{media} eq 'email');
 
1295   $form->isblank("${inv}date",
 
1296            $locale->text($form->{label})
 
1298            . $locale->text(' Date missing!'));
 
1300   # $locale->text('Invoice Number missing!')
 
1301   # $locale->text('Invoice Date missing!')
 
1302   # $locale->text('Packing List Number missing!')
 
1303   # $locale->text('Packing List Date missing!')
 
1304   # $locale->text('Order Number missing!')
 
1305   # $locale->text('Order Date missing!')
 
1306   # $locale->text('Quotation Number missing!')
 
1307   # $locale->text('Quotation Date missing!')
 
1310   $form->{what_done} = $form->{formname};
 
1311   if (!$form->{"${inv}number"} && !$form->{preview} && !$form->{id}) {
 
1312     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1313     if ($form->{media} ne 'email') {
 
1315       # get pricegroups for parts
 
1316       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1318       # build up html code for prices_$i
 
1319       set_pricegroup($form->{rowcount});
 
1321       $form->{rowcount}--;
 
1323       call_sub($display_form);
 
1324       # saving the history
 
1325           if(!exists $form->{addition}) {
 
1326         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1327             $form->{addition} = "PRINTED";
 
1328             $form->save_history($form->dbconnect(\%myconfig));
 
1330       # /saving the history
 
1337   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1338   my ($saved_email, $saved_cc, $saved_bcc) =
 
1339     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1341   $language_saved = $form->{language_id};
 
1342   $payment_id_saved = $form->{payment_id};
 
1343   $salesman_id_saved = $form->{salesman_id};
 
1344   $cp_id_saved = $form->{cp_id};
 
1346   call_sub("$form->{vc}_details") if ($form->{vc});
 
1348   $form->{language_id} = $language_saved;
 
1349   $form->{payment_id} = $payment_id_saved;
 
1351   $form->{"email"} = $saved_email if ($saved_email);
 
1352   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1353   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1355   if (!$cp_id_saved) {
 
1356     # No contact was selected. Delete all contact variables because
 
1357     # IS->customer_details() and IR->vendor_details() get the default
 
1359     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1362   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
1363   if ($form->{"language_id"}) {
 
1364     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
1365       AM->get_language_details(\%myconfig, $form, $form->{language_id});
 
1367     $output_dateformat = $myconfig{"dateformat"};
 
1368     $output_numberformat = $myconfig{"numberformat"};
 
1369     $output_longdates = 1;
 
1372   ($form->{employee}) = split /--/, $form->{employee};
 
1374   # create the form variables
 
1375   if ($form->{type} =~ /_delivery_order$/) {
 
1376     DO->order_details();
 
1378     OE->order_details(\%myconfig, \%$form);
 
1380     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1383   $form->get_employee_data('prefix' => 'employee', 'id' => $form->{employee_id});
 
1384   $form->get_employee_data('prefix' => 'salesman', 'id' => $salesman_id_saved);
 
1386   if ($form->{shipto_id}) {
 
1387     $form->get_shipto(\%myconfig);
 
1390   @a = qw(name street zipcode city country contact);
 
1394   # if there is no shipto fill it in from billto
 
1395   foreach $item (@a) {
 
1396     if ($form->{"shipto$item"}) {
 
1403     if (   $form->{formname} eq 'purchase_order'
 
1404         || $form->{formname} eq 'request_quotation') {
 
1405       $form->{shiptoname}   = $myconfig{company};
 
1406       $form->{shiptostreet} = $myconfig{address};
 
1408       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1412   $form->{notes} =~ s/^\s+//g;
 
1414   $form->{templates} = "$myconfig{templates}";
 
1416   delete $form->{printer_command};
 
1418   $form->{language} = $form->get_template_language(\%myconfig);
 
1421   if ($form->{media} ne 'email') {
 
1422     $printer_code = $form->get_printer_code(\%myconfig);
 
1423     if ($printer_code ne "") {
 
1424       $printer_code = "_" . $printer_code;
 
1428   if ($form->{language} ne "") {
 
1429     map({ $form->{"unit"}->[$_] =
 
1430             AM->translate_units($form, $form->{"language"},
 
1431                                 $form->{"unit"}->[$_], $form->{"qty"}->[$_]); }
 
1432         (0..scalar(@{$form->{"unit"}}) - 1));
 
1433     $form->{language} = "_" . $form->{language};
 
1437   format_dates($output_dateformat, $output_longdates,
 
1438                qw(invdate orddate quodate pldate duedate reqdate transdate
 
1439                   shippingdate deliverydate validitydate paymentdate
 
1440                   datepaid transdate_oe deliverydate_oe
 
1441                   employee_startdate employee_enddate
 
1443                grep({ /^datepaid_\d+$/ ||
 
1444                         /^transdate_oe_\d+$/ ||
 
1445                         /^deliverydate_oe_\d+$/ ||
 
1447                         /^deliverydate_\d+$/ ||
 
1451   reformat_numbers($output_numberformat, 2,
 
1452                    qw(invtotal ordtotal quototal subtotal linetotal
 
1453                       listprice sellprice netprice discount
 
1454                       tax taxbase total paid),
 
1455                    grep({ /^linetotal_\d+$/ ||
 
1456                             /^listprice_\d+$/ ||
 
1457                             /^sellprice_\d+$/ ||
 
1467   reformat_numbers($output_numberformat, undef,
 
1468                    qw(qty price_factor),
 
1472   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
1474   if (scalar @{ $cvar_date_fields }) {
 
1475     format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
1478   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
1479     reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
1483   if ($form->{format} eq 'postscript') {
 
1484     $form->{postscript}   = 1;
 
1487   } elsif ($form->{"format"} =~ /pdf/) {
 
1489     $extension            = $form->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
1491   } elsif ($form->{"format"} =~ /opendocument/) {
 
1492     $form->{opendocument} = 1;
 
1496   my $email_extension = '_email' if (($form->{media} eq 'email') && (-f "$myconfig{templates}/$form->{formname}_email$form->{language}${printer_code}.${extension}"));
 
1498   $form->{IN}         = "$form->{formname}${email_extension}$form->{language}${printer_code}.${extension}";
 
1500   delete $form->{OUT};
 
1502   if ($form->{media} eq 'printer') {
 
1503     #$form->{OUT} = "| $form->{printer_command} &>/dev/null";
 
1504     $form->{OUT} = "| $form->{printer_command} ";
 
1505     $form->{printed} .= " $form->{formname}";
 
1506     $form->{printed} =~ s/^ //;
 
1508   $printed = $form->{printed};
 
1510   if ($form->{media} eq 'email') {
 
1511     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1512       unless $form->{subject};
 
1514     $form->{emailed} .= " $form->{formname}";
 
1515     $form->{emailed} =~ s/^ //;
 
1517   $emailed = $form->{emailed};
 
1519   if ($form->{media} eq 'queue') {
 
1520     %queued = map { s|.*/|| } split / /, $form->{queued};
 
1522     if ($filename = $queued{ $form->{formname} }) {
 
1523       $form->{queued} =~ s/\Q$form->{formname} $filename\E//;
 
1524       unlink "$spool/$filename";
 
1525       $filename =~ s/\..*$//g;
 
1531     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1532     $form->{OUT} = ">$spool/$filename";
 
1535     $form->{queued} .= " $form->{formname} $filename";
 
1537     $form->{queued} =~ s/^ //;
 
1539   $queued = $form->{queued};
 
1541 # saving the history
 
1542   if(!exists $form->{addition}) {
 
1543     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1544     if($form->{media} =~ /printer/) {
 
1545         $form->{addition} = "PRINTED";
 
1547     elsif($form->{media} =~ /email/) {
 
1548         $form->{addition} = "MAILED";
 
1550     elsif($form->{media} =~ /queue/) {
 
1551         $form->{addition} = "QUEUED";
 
1553     elsif($form->{media} =~ /screen/) {
 
1554         $form->{addition} = "SCREENED";
 
1556     $form->save_history($form->dbconnect(\%myconfig));
 
1558   # /saving the history
 
1560   $form->parse_template(\%myconfig, $userspath);
 
1562   $form->{callback} = "";
 
1564   if ($form->{media} eq 'email') {
 
1565     $form->{message} = $locale->text('sent') unless $form->{message};
 
1567   $message = $form->{message};
 
1569   # if we got back here restore the previous form
 
1570   if ($form->{media} =~ /(printer|email|queue)/) {
 
1572     $form->update_status(\%myconfig)
 
1573       if ($form->{media} eq 'queue' && $form->{id});
 
1575     return $lxdebug->leave_sub() if ($old_form eq "return");
 
1579       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1581       # restore and display form
 
1582       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1584       $form->{queued}  = $queued;
 
1585       $form->{printed} = $printed;
 
1586       $form->{emailed} = $emailed;
 
1587       $form->{message} = $message;
 
1589       $form->{rowcount}--;
 
1590       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1591         qw(exchangerate creditlimit creditremaining);
 
1593       for $i (1 .. $form->{paidaccounts}) {
 
1595           $form->{"${_}_$i"} =
 
1596             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1597         } qw(paid exchangerate);
 
1600       call_sub($display_form);
 
1605       ($form->{media} eq 'printer')
 
1606       ? $locale->text('sent to printer')
 
1607       : $locale->text('emailed to') . " $form->{email}";
 
1608     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1610   if ($form->{printing}) {
 
1611    call_sub($display_form);
 
1615   $lxdebug->leave_sub();
 
1618 sub customer_details {
 
1619   $lxdebug->enter_sub();
 
1621   IS->customer_details(\%myconfig, \%$form, @_);
 
1623   $lxdebug->leave_sub();
 
1626 sub vendor_details {
 
1627   $lxdebug->enter_sub();
 
1629   IR->vendor_details(\%myconfig, \%$form, @_);
 
1631   $lxdebug->leave_sub();
 
1635   $lxdebug->enter_sub();
 
1639   $form->{postasnew} = 1;
 
1640   map { delete $form->{$_} } qw(printed emailed queued);
 
1644   $lxdebug->leave_sub();
 
1648   $lxdebug->enter_sub();
 
1652   if ($form->{second_run}) {
 
1653     $form->{print_and_post} = 0;
 
1656   $title = $form->{title};
 
1657   $form->{title} = $locale->text('Ship to');
 
1659   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1660     qw(exchangerate creditlimit creditremaining);
 
1663     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
 
1664        shiptocontact shiptophone shiptofax shiptoemail
 
1665        shiptodepartment_1 shiptodepartment_2);
 
1668     (qw(name department_1 department_2 street zipcode city country
 
1669         contact email phone fax));
 
1671   # get details for name
 
1672   call_sub("$form->{vc}_details", @addr_vars);
 
1675     ($form->{vc} eq 'customer')
 
1676     ? $locale->text('Customer Number')
 
1677     : $locale->text('Vendor Number');
 
1679   # get pricegroups for parts
 
1680   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1682   # build up html code for prices_$i
 
1683   set_pricegroup($form->{rowcount});
 
1685   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1687   $form->{rowcount}--;
 
1694 <form method="post" action="$form->{script}">
 
1696 <table width="100%">
 
1700         <tr class="listheading">
 
1701           <th class="listheading" colspan="2" width="50%">|
 
1702     . $locale->text('Billing Address') . qq|</th>
 
1703           <th class="listheading" width="50%">|
 
1704     . $locale->text('Shipping Address') . qq|</th>
 
1706         <tr height="5"></tr>
 
1708           <th align="right" nowrap>$number</th>
 
1709           <td>$form->{"$form->{vc}number"}</td>
 
1712           <th align="right" nowrap>| . $locale->text('Company Name') . qq|</th>
 
1713           <td>$form->{name}</td>
 
1714           <td><input name="shiptoname" size="35" value="$form->{shiptoname}"></td>
 
1717           <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
1718           <td>$form->{department_1}</td>
 
1719           <td><input name="shiptodepartment_1" size="35" value="$form->{shiptodepartment_1}"></td>
 
1722           <th align="right" nowrap> </th>
 
1723           <td>$form->{department_2}</td>
 
1724           <td><input name="shiptodepartment_2" size="35" value="$form->{shiptodepartment_2}"></td>
 
1727           <th align="right" nowrap>| . $locale->text('Street') . qq|</th>
 
1728           <td>$form->{street}</td>
 
1729           <td><input name="shiptostreet" size="35" value="$form->{shiptostreet}"></td>
 
1732           <th align="right" nowrap>| . $locale->text('Zipcode') . qq|</th>
 
1733           <td>$form->{zipcode}</td>
 
1734           <td><input name="shiptozipcode" size="35" value="$form->{shiptozipcode}"></td>
 
1737           <th align="right" nowrap>| . $locale->text('City') . qq|</th>
 
1738           <td>$form->{city}</td>
 
1739           <td><input name="shiptocity" size="35" value="$form->{shiptocity}"></td>
 
1742           <th align="right" nowrap>| . $locale->text('Country') . qq|</th>
 
1743           <td>$form->{country}</td>
 
1744           <td><input name="shiptocountry" size="35" value="$form->{shiptocountry}"></td>
 
1747           <th align="right" nowrap>| . $locale->text('Contact') . qq|</th>
 
1748           <td>$form->{contact}</td>
 
1749           <td><input name="shiptocontact" size="35" value="$form->{shiptocontact}"></td>
 
1752           <th align="right" nowrap>| . $locale->text('Phone') . qq|</th>
 
1753           <td>$form->{phone}</td>
 
1754           <td><input name="shiptophone" size="20" value="$form->{shiptophone}"></td>
 
1757           <th align="right" nowrap>| . $locale->text('Fax') . qq|</th>
 
1758           <td>$form->{fax}</td>
 
1759           <td><input name="shiptofax" size="20" value="$form->{shiptofax}"></td>
 
1762           <th align="right" nowrap>| . $locale->text('E-mail') . qq|</th>
 
1763           <td>$form->{email}</td>
 
1764           <td><input name="shiptoemail" size="35" value="$form->{shiptoemail}"></td>
 
1770 | . $cgi->hidden("-name" => "nextsub", "-value" => $nextsub);
 
1776   map({ delete $form->{$_} } (@shipto_vars, qw(header)));
 
1777   $form->{title} = $title;
 
1779   foreach $key (keys %$form) {
 
1780     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1781     $form->{$key} =~ s/\"/"/g;
 
1782     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
 
1787 <hr size="3" noshade>
 
1790 <input class="submit" type="submit" name="action" value="|
 
1791     . $locale->text('Continue') . qq|">
 
1798   $lxdebug->leave_sub();
 
1802   $lxdebug->enter_sub();
 
1809   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
1810   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
1811   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
1814   delete $form->{action};
 
1815   $customer = $form->{customer};
 
1816   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
1818   # save all other form variables in a previousform variable
 
1819   $form->{row} = $row;
 
1820   foreach $key (keys %$form) {
 
1821     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1824     $form->{$key} =~ s/&/%26/g;
 
1825     $previousform .= qq|$key=$form->{$key}&|;
 
1828   $previousform = $form->escape($previousform, 1);
 
1830   $form->{script} = "licenses.pl";
 
1832   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
1833   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
1834     qw(partnumber description);
 
1836     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|;
 
1839   $lxdebug->leave_sub();
 
1842 sub relink_accounts {
 
1843   $lxdebug->enter_sub();
 
1847   $form->{"taxaccounts"} =~ s/\s*$//;
 
1848   $form->{"taxaccounts"} =~ s/^\s*//;
 
1849   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
1850     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
1852   $form->{"taxaccounts"} = "";
 
1854   for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
 
1855     if ($form->{"id_$i"}) {
 
1856       IC->retrieve_accounts(\%myconfig, $form, $form->{"id_$i"}, $i, 1);
 
1860   $lxdebug->leave_sub();
 
1864   $lxdebug->enter_sub();
 
1868   my $invdate = $form->{invdate} eq 'undefined' ? undef : $form->{invdate};
 
1869   my $duedate = $form->get_duedate(\%myconfig, $invdate);
 
1871   print $form->ajax_response_header() . $duedate;
 
1873   $lxdebug->leave_sub();
 
1876 sub _update_part_information {
 
1877   $lxdebug->enter_sub();
 
1879   my %part_information = IC->get_basic_part_info('id'        => [ grep { $_ } map { $form->{"id_${_}"} } (1..$form->{rowcount}) ],
 
1880                                                  'vendor_id' => $form->{vendor_id});
 
1882   $form->{PART_INFORMATION} = \%part_information;
 
1884   foreach my $i (1..$form->{rowcount}) {
 
1885     next unless ($form->{"id_${i}"});
 
1887     my $info                 = $form->{PART_INFORMATION}->{$form->{"id_${i}"}} || { };
 
1888     $form->{"partunit_${i}"} = $info->{unit};
 
1891   $lxdebug->leave_sub();
 
1895   $lxdebug->enter_sub();
 
1897   if (!$form->{ordnumber} || !$form->{id}) {
 
1898     map { $form->{"ship_$_"} = 0 } (1..$form->{rowcount});
 
1899     $lxdebug->leave_sub();
 
1903   AM->retrieve_all_units();
 
1905   my %ship = DO->get_shipped_qty('type'  => ($form->{type} eq 'purchase_order') ? 'purchase' : 'sales',
 
1906                                  'oe_id' => $form->{id},);
 
1908   foreach my $i (1..$form->{rowcount}) {
 
1909     next unless ($form->{"id_${i}"});
 
1911     $form->{"ship_$i"} = 0;
 
1913     my $ship_entry = $ship{$form->{"id_$i"}};
 
1915     next if (!$ship_entry || ($ship_entry->{qty} <= 0));
 
1918       ($form->{simple_save} ? $form->{"qty_$i"} : $form->parse_amount(\%myconfig, $form->{"qty_$i"}))
 
1919       * $all_units->{$form->{"unit_$i"}}->{factor}
 
1920       / $all_units->{$form->{"partunit_$i"}}->{factor};
 
1922     $form->{"ship_$i"}  = min($rowqty, $ship_entry->{qty});
 
1923     $ship_entry->{qty} -= $form->{"ship_$i"};
 
1926   foreach my $i (1..$form->{rowcount}) {
 
1927     next unless ($form->{"id_${i}"});
 
1929     my $ship_entry = $ship{$form->{"id_$i"}};
 
1931     next if (!$ship_entry || ($ship_entry->{qty} <= 0.01));
 
1933     $form->{"ship_$i"} += $ship_entry->{qty};
 
1934     $ship_entry->{qty}  = 0;
 
1937   $lxdebug->leave_sub();