1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   6 #############################################################################
 
   7 # Veraendert 2005-01-05 - Marco Welter <mawe@linux-studio.de> - Neue Optik  #
 
   8 #############################################################################
 
   9 # SQL-Ledger, Accounting
 
  10 # Copyright (c) 1998-2002
 
  12 #  Author: Dieter Simader
 
  13 #   Email: dsimader@sql-ledger.org
 
  14 #     Web: http://www.sql-ledger.org
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  30 #######################################################################
 
  32 # common routines used in is, ir, oe
 
  34 #######################################################################
 
  38 use List::Util qw(max first);
 
  46 require "bin/mozilla/common.pl";
 
  48 # any custom scripts for this one
 
  49 if (-f "bin/mozilla/custom_io.pl") {
 
  50   eval { require "bin/mozilla/custom_io.pl"; };
 
  52 if (-f "bin/mozilla/$form->{login}_io.pl") {
 
  53   eval { require "bin/mozilla/$form->{login}_io.pl"; };
 
  60 # this is for our long dates
 
  61 # $locale->text('January')
 
  62 # $locale->text('February')
 
  63 # $locale->text('March')
 
  64 # $locale->text('April')
 
  65 # $locale->text('May ')
 
  66 # $locale->text('June')
 
  67 # $locale->text('July')
 
  68 # $locale->text('August')
 
  69 # $locale->text('September')
 
  70 # $locale->text('October')
 
  71 # $locale->text('November')
 
  72 # $locale->text('December')
 
  74 # this is for our short month
 
  75 # $locale->text('Jan')
 
  76 # $locale->text('Feb')
 
  77 # $locale->text('Mar')
 
  78 # $locale->text('Apr')
 
  79 # $locale->text('May')
 
  80 # $locale->text('Jun')
 
  81 # $locale->text('Jul')
 
  82 # $locale->text('Aug')
 
  83 # $locale->text('Sep')
 
  84 # $locale->text('Oct')
 
  85 # $locale->text('Nov')
 
  86 # $locale->text('Dec')
 
  93   $auth->assert('part_service_assembly_edit   | vendor_invoice_edit       | sales_order_edit    | invoice_edit |' .
 
  94                 'request_quotation_edit       | sales_quotation_edit      | purchase_order_edit | ' .
 
  95                 'purchase_delivery_order_edit | sales_delivery_order_edit');
 
  98 ########################################
 
  99 # Eintrag fuer Version 2.2.0 geaendert #
 
 100 # neue Optik im Rechnungsformular      #
 
 101 ########################################
 
 103   $lxdebug->enter_sub();
 
 109   my ($readonly, $stock_in_out, $stock_in_out_title);
 
 111   my $is_purchase        = (first { $_ eq $form->{type} } qw(request_quotation purchase_order purchase_delivery_order)) || ($form->{script} eq 'ir.pl');
 
 112   my $show_min_order_qty =  first { $_ eq $form->{type} } qw(request_quotation purchase_order);
 
 113   my $is_delivery_order  = $form->{type} =~ /_delivery_order$/;
 
 115   if ($is_delivery_order) {
 
 116     $readonly             = ' readonly' if ($form->{closed});
 
 118     if ($form->{type} eq 'sales_delivery_order') {
 
 119       $stock_in_out_title = $locale->text('Release From Stock');
 
 120       $stock_in_out       = 'out';
 
 122       $stock_in_out_title = $locale->text('Transfer To Stock');
 
 123       $stock_in_out       = 'in';
 
 128   my @header_sort = qw(runningnumber partnumber description ship qty unit sellprice_pg sellprice discount linetotal);
 
 130     {  id => 'runningnumber', width => 5,     value => $locale->text('No.'),                  display => 1, },
 
 131     {  id => 'partnumber',    width => 12,    value => $locale->text('Number'),               display => 1, },
 
 132     {  id => 'description',   width => 30,    value => $locale->text('Part Description'),     display => 1, },
 
 133     {  id => 'ship',          width => 5,     value => ($form->{type} eq 'purchase_order' ? $locale->text('Ship rcvd') : $locale->text('Ship')),                 
 
 134        display => $form->{type} =~ /sales_order/ || ($form->{type} =~ /purchase_order/ && !($lizenzen && $form->{vc} eq "customer")) , },
 
 135     {  id => 'qty',           width => 5,     value => $locale->text('Qty'),                  display => 1, },
 
 136     {  id => 'price_factor',  width => 5,     value => $locale->text('Price Factor'),         display => !$is_delivery_order, },
 
 137     {  id => 'unit',          width => 5,     value => $locale->text('Unit'),                 display => 1, },
 
 138     {  id => 'license',       width => 10,    value => $locale->text('License'),              display => 0, },
 
 139     {  id => 'serialnr',      width => 10,    value => $locale->text('Serial No.'),           display => 0, },
 
 140     {  id => 'projectnr',     width => 10,    value => $locale->text('Project'),              display => 0, },
 
 141     {  id => 'sellprice',     width => 15,    value => $locale->text('Price'),                display => !$is_delivery_order, },
 
 142     {  id => 'sellprice_pg',  width => 15,    value => $locale->text('Pricegroup'),           display => ($form->{type} =~ /^sales_/) && !$is_delivery_order,  },
 
 143     {  id => 'discount',      width => 5,     value => $locale->text('Discount'),             display => ($form->{vc} eq 'customer') && !$is_delivery_order, },
 
 144     {  id => 'linetotal',     width => 10,    value => $locale->text('Extended'),             display => !$is_delivery_order, },
 
 145     {  id => 'bin',           width => 10,    value => $locale->text('Bin'),                  display => 0, },
 
 146     {  id => 'stock_in_out',  width => 10,    value => $stock_in_out_title,                   display => $is_delivery_order, },
 
 148   my @column_index = map { $_->{id} } grep { $_->{display} } @HEADER;
 
 151   my $dimension_units = AM->retrieve_units(\%myconfig, $form, "dimension");
 
 152   my $service_units   = AM->retrieve_units(\%myconfig, $form, "service");
 
 153   my $all_units       = AM->retrieve_units(\%myconfig, $form);
 
 155   my %price_factors   = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 157   my $colspan = scalar @column_index;
 
 159   $form->{invsubtotal} = 0;
 
 160   map { $form->{"${_}_base"} = 0 } (split(/ /, $form->{taxaccounts}));
 
 163   $myconfig{show_form_details} = 1                            unless (defined($myconfig{show_form_details}));
 
 164   $form->{show_details}        = $myconfig{show_form_details} unless (defined($form->{show_details}));
 
 167   # translations, unused commented out
 
 168 #  $runningnumber = $locale->text('No.');
 
 169   $deliverydate  = $locale->text('Delivery Date');
 
 170   $serialnumber  = $locale->text('Serial No.');
 
 171   $projectnumber = $locale->text('Project');
 
 172 #  $partsgroup    = $locale->text('Group');
 
 173   $reqdate       = $locale->text('Reqdate');
 
 174   $deliverydate  = $locale->text('Required by');
 
 177   my %align  = map { $_ => 'right' } qw(qty ship right sellprice_pg discount linetotal stock_in_out);
 
 178   my %nowrap = map { $_ => 1 }       qw(description unit);
 
 180   $form->{marge_total}           = 0;
 
 181   $form->{sellprice_total}       = 0;
 
 182   $form->{lastcost_total}        = 0;
 
 183   my %projectnumber_labels = ();
 
 184   my @projectnumber_values = ("");
 
 186   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 187     push(@projectnumber_values, $item->{"id"});
 
 188     $projectnumber_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 192   for $i (1 .. $numrows) {
 
 195     map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(qty ship discount sellprice price_new price_old) unless ($form->{simple_save});
 
 198     $form->{"unit_old_$i"}      ||= $form->{"unit_$i"};
 
 199     $form->{"selected_unit_$i"} ||= $form->{"unit_$i"};
 
 201     my $local_units = $form->{"inventory_accno_$i"} || $form->{"assembly_$i"} ? $dimension_units 
 
 202                     : $form->{"id_$i"}                                        ? $service_units 
 
 204     if (   !$local_units->{$form->{"selected_unit_$i"}}                                          # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 205         || !AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units)) { # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 206       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};                 # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 208     # adjust prices by unit, ignore if pricegroup changed
 
 209     if ((!$form->{"prices_$i"}) || ($form->{"new_pricegroup_$i"} == $form->{"old_pricegroup_$i"})) {
 
 210         $form->{"sellprice_$i"} *= AM->convert_unit($form->{"selected_unit_$i"}, $form->{"unit_old_$i"}, $all_units) || 1;
 
 211         $form->{"unit_old_$i"}   = $form->{"selected_unit_$i"};
 
 213     my $this_unit = $form->{"unit_$i"};
 
 214     $this_unit    = $form->{"selected_unit_$i"} if AM->convert_unit($this_unit, $form->{"selected_unit_$i"}, $all_units);
 
 217     if (0 < scalar @{ $form->{ALL_PRICE_FACTORS} }) {
 
 218       my @values = ('', map { $_->{id}                      } @{ $form->{ALL_PRICE_FACTORS} });
 
 219       my %labels =      map { $_->{id} => $_->{description} } @{ $form->{ALL_PRICE_FACTORS} };
 
 221       $column_data{price_factor} =
 
 222         NTI($cgi->popup_menu('-name'    => "price_factor_id_$i",
 
 223                              '-default' => $form->{"price_factor_id_$i"},
 
 224                              '-values'  => \@values,
 
 225                              '-labels'  => \%labels,
 
 226                              '-style'   => 'width:90px'));
 
 228       $column_data{price_factor} = ' ';
 
 231     $column_data{"unit"} = AM->unit_select_html($local_units, "unit_$i", $this_unit, $form->{"id_$i"} ? $form->{"unit_$i"} : undef);
 
 234     $form->{"sellprice_$i"} =~ /\.(\d+)/;
 
 235     $decimalplaces = max 2, length $1;
 
 237     $price_factor   = $price_factors{$form->{"price_factor_id_$i"}} || 1;
 
 238     $discount       = $form->round_amount($form->{"sellprice_$i"} * $form->{"discount_$i"} / 100, $decimalplaces);
 
 239     $linetotal      = $form->round_amount(($form->{"sellprice_$i"} - $discount) / $price_factor, $decimalplaces);
 
 240     $linetotal      = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
 
 242     # convert " to "
 
 243     map { $form->{"${_}_$i"} =~ s/\"/"/g } qw(partnumber description unit unit_old);
 
 245     $column_data{runningnumber} = $cgi->textfield(-name => "runningnumber_$i", -size => 5,  -value => $i);    # HuT
 
 246     $column_data{partnumber}    = $cgi->textfield(-name => "partnumber_$i",    -size => 12, -value => $form->{"partnumber_$i"});
 
 247     $column_data{description} = ((($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) # if description is too large, use a textbox instead
 
 248                                 ? $cgi->textarea( -name => "description_$i", -default => $form->{"description_$i"}, -rows => $rows, -columns => 30)
 
 249                                 : $cgi->textfield(-name => "description_$i",   -size => 30, -value => $form->quote($form->{"description_$i"})))
 
 250                                 . $cgi->button(-value => $locale->text('L'), -onClick => "set_longdescription_window('longdescription_$i')");
 
 252     $form->{"qty_$i"} =~ /\.(\d+)/;
 
 253     my $qty_dec = length $1;
 
 255     $column_data{qty}  = $cgi->textfield(-name => "qty_$i", -size => 5, -value => $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec));
 
 256     $column_data{qty} .= $cgi->button(-onclick => "calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)", -value => $locale->text('*/'))
 
 257                        . $cgi->hidden(-name => "formel_$i", -value => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"})
 
 258       if $form->{"formel_$i"};
 
 259     $column_data{ship} = $cgi->textfield(-name => "ship_$i", -size => 5, -value => $form->format_amount(\%myconfig, $form->{"ship_$i"}));
 
 261     # build in drop down list for pricesgroups
 
 262     if ($form->{"prices_$i"}) {
 
 263       $column_data{sellprice_pg} = qq|<select name="sellprice_pg_$i">$form->{"prices_$i"}</select>|;
 
 264       $column_data{sellprice}    = $cgi->textfield(-name => "sellprice_$i", -size => 10, -onBlur => 'check_right_number_format(this)', -value =>
 
 265                                    (($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"})
 
 266                                       ? $form->format_amount(\%myconfig, $form->{"price_new_$i"}, $decimalplaces)
 
 267                                       : $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces)));
 
 269       # for last row and report
 
 270       # set pricegroup drop down list from report menu
 
 271       if ($form->{"sellprice_$i"} != 0) {
 
 272         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 273         my $default_option           = $form->{"sellprice_$i"}.'--'.$form->{"pricegroup_id_$i"};
 
 274         $column_data{sellprice_pg}   = NTI($cgi->popup_menu("sellpricepg_$i", [ $default_option ], $default_option, { $default_option => $form->{"pricegroup_$i"} || '' }));
 
 276         $column_data{sellprice_pg} = qq| |;
 
 278       $column_data{sellprice} = $cgi->textfield(-name => "sellprice_$i", -size => 10, -onBlur => "check_right_number_format(this)", -value =>
 
 279                                                 $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces));
 
 281     $column_data{discount}    = $cgi->textfield(-name => "discount_$i", -size => 3, -value => $form->format_amount(\%myconfig, $form->{"discount_$i"}));
 
 282     $column_data{linetotal}   = $form->format_amount(\%myconfig, $linetotal, 2);
 
 283     $column_data{bin}         = $form->{"bin_$i"};
 
 285     if ($is_delivery_order) {
 
 286       $column_data{stock_in_out} = (!$form->{"assembly_$i"} && $form->{"inventory_accno_$i"}) ? calculate_stock_in_out($i) : ' ';
 
 289     my @ROW1 = map { value => $column_data{$_}, align => $align{$_}, nowrap => $nowrap{$_} }, @column_index;
 
 293     push @ROW2, { value => qq|<b>$serialnumber</b> <input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">| } 
 
 294       if $form->{type} !~ /_quotation/;
 
 295     push @ROW2, { value => qq|<b>$projectnumber</b> | . NTI($cgi->popup_menu('-name'  => "project_id_$i",        '-values'  => \@projectnumber_values,
 
 296                                                                              '-labels' => \%projectnumber_labels, '-default' => $form->{"project_id_$i"})) };
 
 297     push @ROW2, { value => qq|<b>$reqdate</b> <input name="reqdate_$i" size="11" onBlur="check_right_date_format(this)" value="$form->{"reqdate_$i"}">| }
 
 298       if $form->{type} =~ /order/;
 
 299     push @ROW2, { value => sprintf qq|<b>%s</b> <input type="checkbox" name="subtotal_$i" value="1" %s>|, 
 
 300                    $locale->text('Subtotal'), $form->{"subtotal_$i"} ? 'checked' : '' };
 
 302 # begin marge calculations
 
 304     my $real_sellprice     = ($form->{"sellprice_$i"} - $discount) / $price_factor;
 
 305     my $marge_price_factor = $form->{"marge_price_factor_$i"} * 1 || 1;
 
 307     $form->{"lastcost_$i"} *= 1;
 
 308     $form->{"marge_percent_$i"} = 0;
 
 310     if ($real_sellprice && ($form->{"qty_$i"} * 1)) {
 
 311       $form->{"marge_percent_$i"}     = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * 100 / $real_sellprice;
 
 312       $myconfig{marge_percent_warn} ||= 15;
 
 313       $marge_color                    = 'color="#ff0000"' if $form->{"id_$i"} && ($form->{"marge_percent_$i"} < (1 * $myconfig{marge_percent_warn}));
 
 316     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
 
 317     $form->{"marge_absolut_$i"}  = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * $form->{"qty_$i"} * $marge_adjust_credit_note;
 
 318     $form->{"marge_total"}      += $form->{"marge_absolut_$i"};
 
 319     $form->{"lastcost_total"}   += $form->{"lastcost_$i"} * $form->{"qty_$i"} / $marge_price_factor;
 
 320     $form->{"sellprice_total"}  += $real_sellprice * $form->{"qty_$i"};
 
 322     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_absolut marge_percent);
 
 324     push @ROW2, { value => sprintf qq|<font %s><b>%s</b> %s  %s%% </font>  <b>%s</b> %s  <b>%s</b> %s|,
 
 325                    $marge_color, $locale->text('Ertrag'),$form->{"marge_absolut_$i"}, $form->{"marge_percent_$i"},
 
 326                    $locale->text('LP'), $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2),
 
 327                    $locale->text('EK'), $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2) }
 
 328       if $form->{"id_$i"} && $form->{type} =~ /^sales_/ && !$is_delivery_order;
 
 329 # / marge calculations ending
 
 333     if ($is_delivery_order) {
 
 334       map { $form->{"${_}_${i}"} = $form->format_amount(\%myconfig, $form->{"${_}_${i}"}) } qw(sellprice discount);
 
 335       push @hidden_vars, qw(sellprice discount price_factor_id);
 
 336       push @hidden_vars, "stock_${stock_in_out}_sum_qty", "stock_${stock_in_out}";
 
 339     push @hidden_vars, qw(partunit) if ($is_purchase);
 
 341     my @HIDDENS = map { value => $_}, (
 
 342           $cgi->hidden("-name" => "unit_old_$i", "-value" => $form->{"selected_unit_$i"}),
 
 343           $cgi->hidden("-name" => "price_new_$i", "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"})),
 
 344           map { ($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } map { $_."_$i" } 
 
 345             (qw(orderitems_id bo pricegroup_old price_old id inventory_accno bin partsgroup partnotes
 
 346                 income_accno expense_accno listprice assembly taxaccounts ordnumber transdate cusordnumber
 
 347                 longdescription basefactor marge_absolut marge_percent marge_price_factor lastcost), @hidden_vars)
 
 350     map { $form->{"${_}_base"} += $linetotal } (split(/ /, $form->{"taxaccounts_$i"}));
 
 352     $form->{invsubtotal} += $linetotal;
 
 354     push @ROWS, { ROW1 => \@ROW1, ROW2 => \@ROW2, HIDDENS => \@HIDDENS, colspan => $colspan, error => $form->{"row_error_$i"}, };
 
 357   print $form->parse_html_template('oe/sales_order', { ROWS   => \@ROWS,
 
 361   if (0 != ($form->{sellprice_total} * 1)) {
 
 362     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
 
 365   $lxdebug->leave_sub();
 
 368 ##################################################
 
 369 # build html-code for pricegroups in variable $form->{prices_$j}
 
 372   $lxdebug->enter_sub();
 
 376   my $rowcount = shift;
 
 377   for $j (1 .. $rowcount) {
 
 378     next unless $form->{PRICES}{$j};
 
 379     # build drop down list for pricegroups
 
 380     my $option_tmpl = qq|<option value="%s--%s" %s>%s</option>|;
 
 381     $form->{"prices_$j"}  = join '', map { sprintf $option_tmpl, @$_{qw(price pricegroup_id selected pricegroup)} } 
 
 382                                          (+{ pricegroup => $locale->text("none (pricegroup)") }, @{ $form->{PRICES}{$j} });
 
 384     foreach $item (@{ $form->{PRICES}{$j} }) {
 
 385       # set new selectedpricegroup_id and prices for "Preis"
 
 386       $form->{"pricegroup_old_$j"} = $item->{pricegroup_id}   if $item->{selected} &&  $item->{pricegroup_id};
 
 387       $form->{"sellprice_$j"}      = $item->{price}           if $item->{selected} &&  $item->{pricegroup_id};
 
 388       $form->{"price_new_$j"}      = $form->{"sellprice_$j"}  if $item->{selected} || !$item->{pricegroup_id};
 
 391   $lxdebug->leave_sub();
 
 395   $lxdebug->enter_sub();
 
 399   @column_index = qw(ndx partnumber description onhand unit sellprice);
 
 401   $column_data{ndx}        = qq|<th> </th>|;
 
 402   $column_data{partnumber} =
 
 403     qq|<th class="listheading">| . $locale->text('Number') . qq|</th>|;
 
 404   $column_data{description} =
 
 405     qq|<th class="listheading">| . $locale->text('Part Description') . qq|</th>|;
 
 406   $column_data{sellprice} =
 
 407     qq|<th class="listheading">| . $locale->text('Price') . qq|</th>|;
 
 408   $column_data{onhand} =
 
 409     qq|<th class="listheading">| . $locale->text('Qty') . qq|</th>|;
 
 411     qq|<th class="listheading">| . $locale->text('Unit') . qq|</th>|;
 
 412   # list items with radio button on a form
 
 415   $title   = $locale->text('Select from one of the items below');
 
 416   $colspan = $#column_index + 1;
 
 421 <form method="post" action="$form->{script}">
 
 425     <th class="listtop" colspan="$colspan">$title</th>
 
 428   <tr class="listheading">|;
 
 430   map { print "\n$column_data{$_}" } @column_index;
 
 435   foreach $ref (@{ $form->{item_list} }) {
 
 436     $checked = ($i++) ? "" : "checked";
 
 439       if ($ref->{inventory_accno} > 0) {
 
 440         $ref->{"lizenzen"} = qq|<option></option>|;
 
 441         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 442           $ref->{"lizenzen"} .=
 
 443             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 445         $ref->{"lizenzen"} .= qq|<option value="-1">Neue Lizenz</option>|;
 
 446         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 450     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 452     my $display_sellprice  = $ref->{sellprice} * (1 - $form->{tradediscount});
 
 453     $display_sellprice    /= $ref->{price_factor} if ($ref->{price_factor});
 
 454     $display_sellprice     = $form->format_amount(\%myconfig, $display_sellprice, 2);
 
 457       qq|<td><input name="ndx" class="radio" type="radio" value="$i" $checked></td>|;
 
 458     $column_data{partnumber} =
 
 459       qq|<td><input name="new_partnumber_$i" type="hidden" value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 460     $column_data{description} =
 
 461       qq|<td><input name="new_description_$i" type="hidden" value="$ref->{description}">$ref->{description}</td>|;
 
 462     $column_data{sellprice} =
 
 463       qq|<td align="right"><input name="new_sellprice_$i" type="hidden" value="$ref->{sellprice}">|
 
 466     $column_data{onhand} =
 
 467       qq|<td align="right"><input name="new_onhand_$i" type="hidden" value="$ref->{onhand}">|
 
 468       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 471       qq|<td>$ref->{unit}</td>|;
 
 475 <tr class=listrow$j>|;
 
 477     map { print "\n$column_data{$_}" } @column_index;
 
 482       qw(bin listprice inventory_accno income_accno expense_accno unit weight
 
 483          assembly taxaccounts partsgroup formel longdescription not_discountable
 
 484          part_payment_id partnotes id lastcost price_factor_id price_factor);
 
 485     push(@new_fields, "lizenzen") if ($lizenzen);
 
 487     print join "\n", map { $cgi->hidden("-name" => "new_${_}_$i", "-value" => $ref->{$_}) } @new_fields;
 
 492 <tr><td colspan="8"><hr size="3" noshade></td></tr>
 
 495 <input name="lastndx" type="hidden" value="$i">
 
 499   # delete action variable
 
 500   map { delete $form->{$_} } qw(action item_list header);
 
 502   # save all other form variables
 
 503   foreach $key (keys %${form}) {
 
 504     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
 505     $form->{$key} =~ s/\"/"/g;
 
 506     print qq|<input name="$key" type="hidden" value="$form->{$key}">\n|;
 
 510 <input type="hidden" name="nextsub" value="item_selected">
 
 513 <input class="submit" type="submit" name="action" value="|
 
 514     . $locale->text('Continue') . qq|">
 
 521   $lxdebug->leave_sub();
 
 525   $lxdebug->enter_sub();
 
 529   # replace the last row with the checked row
 
 530   $i = $form->{rowcount};
 
 531   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 537   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 538   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 540   # if there was a price entered, override it
 
 541   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 544     qw(id partnumber description sellprice listprice inventory_accno
 
 545        income_accno expense_accno bin unit weight assembly taxaccounts
 
 546        partsgroup formel longdescription not_discountable partnotes lastcost
 
 547        price_factor_id price_factor);
 
 549   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } @new_fields;
 
 551   $form->{"marge_price_factor_$i"} = $form->{"new_price_factor_$j"};
 
 553   if ($form->{"part_payment_id_$i"} ne "") {
 
 554     $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 558     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 561   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 563   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 566     $form->{"sellprice_$i"} = $sellprice;
 
 569     # if there is an exchange rate adjust sellprice
 
 570     if (($form->{exchangerate} * 1) != 0) {
 
 571       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 572       $form->{"sellprice_$i"} =
 
 573         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 577   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 578     qw(sellprice listprice weight);
 
 580   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 581   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 583   if ($form->{"not_discountable_$i"}) {
 
 584     $form->{"discount_$i"} = 0;
 
 588     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 590   map { $form->{"${_}_base"} += $amount }
 
 591     (split / /, $form->{"taxaccounts_$i"});
 
 592   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 593     $form->{"taxaccounts_$i"}
 
 594     if !$form->{taxincluded};
 
 596   $form->{creditremaining} -= $amount;
 
 598   $form->{"runningnumber_$i"} = $i;
 
 600   # delete all the new_ variables
 
 601   for $i (1 .. $form->{lastndx}) {
 
 602     map { delete $form->{"new_${_}_$i"} } @new_fields;
 
 605   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 610       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 611   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 613   # get pricegroups for parts
 
 614   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 616   # build up html code for prices_$i
 
 617   set_pricegroup($form->{rowcount});
 
 621   $lxdebug->leave_sub();
 
 625   $lxdebug->enter_sub();
 
 630   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 631   $form->{callback}     = $form->escape("$form->{script}?action=display_form", 1);
 
 633   # save all form variables except action in a previousform variable
 
 634   my $previousform = join '&', map { $form->{$_} =~ s/&/%26/; "$_=$form->{$_}" } grep { !/action/ } keys %$form;
 
 636   push @HIDDENS,      { 'name' => 'previousform', 'value' => $form->escape($previousform, 1) };
 
 637   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{$_} },                       qw(rowcount vc);
 
 638   push @HIDDENS, map +{ 'name' => $_,             'value' => $form->{"${_}_$form->{rowcount}"} }, qw(partnumber description unit sellprice);
 
 639   push @HIDDENS,      { 'name' => 'taxaccount2',  'value' => $form->{taxaccounts} };
 
 642   print $form->parse_html_template("generic/new_item", { HIDDENS => [ sort { $a->{name} cmp $b->{name} } @HIDDENS ] } );
 
 644   $lxdebug->leave_sub();
 
 648   $lxdebug->enter_sub();
 
 655   my @flds = qw(id partnumber description qty ship sellprice unit
 
 656                 discount inventory_accno income_accno expense_accno listprice
 
 657                 taxaccounts bin assembly weight projectnumber project_id
 
 658                 oldprojectnumber runningnumber serialnumber partsgroup payment_id
 
 659                 not_discountable shop ve gv buchungsgruppen_id language_values
 
 660                 sellprice_pg pricegroup_old price_old price_new unit_old ordnumber
 
 661                 transdate longdescription basefactor marge_total marge_percent
 
 662                 marge_price_factor lastcost price_factor_id
 
 665   # remove any makes or model rows
 
 666   if ($form->{item} eq 'part') {
 
 667     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 668       qw(listprice sellprice lastcost weight rop);
 
 670   } elsif ($form->{item} eq 'assembly') {
 
 672     $form->{sellprice} = 0;
 
 674     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 675       qw(listprice rop stock);
 
 678       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
 
 680     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 681       if ($form->{"qty_$i"}) {
 
 685         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 687         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 689         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 691         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
 
 692         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
 697     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 699     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 700     $form->{assembly_rows} = $count;
 
 702   } elsif ($form->{item} eq 'service') {
 
 703     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost);
 
 707     # this section applies to invoices and orders
 
 708     # remove any empty numbers
 
 709     if ($form->{rowcount}) {
 
 710       for my $i (1 .. $form->{rowcount} - 1) {
 
 711         if ($form->{"partnumber_$i"}) {
 
 715           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 718             if ($form->{"licensenumber_$i"} == -1) {
 
 726       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 727       $form->{rowcount} = $count;
 
 729       $form->{creditremaining} -= &invoicetotal;
 
 736   if (   $form->{type} =~ (/sales_quotation/)
 
 737       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 738       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 739       or ($form->{type} =~ /sales_order/)) {
 
 741     # get pricegroups for parts
 
 742     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 744     # build up html code for prices_$i
 
 745     set_pricegroup($form->{rowcount});
 
 751   $lxdebug->leave_sub();
 
 755   $lxdebug->enter_sub();
 
 759   $form->{oldinvtotal} = 0;
 
 761   # add all parts and deduct paid
 
 762   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
 764   my ($amount, $sellprice, $discount, $qty);
 
 766   for my $i (1 .. $form->{rowcount}) {
 
 767     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 768     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
 769     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 771     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 773     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
 774     map { $form->{"${_}_base"} += $amount }
 
 775       (split (/ /, $form->{"taxaccounts_$i"}));
 
 776     $form->{oldinvtotal} += $amount;
 
 779   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
 780     split(/ /, $form->{taxaccounts})
 
 781     if !$form->{taxincluded};
 
 783   $form->{oldtotalpaid} = 0;
 
 784   for $i (1 .. $form->{paidaccounts}) {
 
 785     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
 788   $lxdebug->leave_sub();
 
 791   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 795   $lxdebug->enter_sub();
 
 799   # check if items are valid
 
 800   if ($form->{rowcount} == 1) {
 
 805   for $i (1 .. $form->{rowcount} - 1) {
 
 806     $form->isblank("partnumber_$i",
 
 807                    $locale->text('Number missing in Row') . " $i");
 
 810   $lxdebug->leave_sub();
 
 814   $lxdebug->enter_sub();
 
 818   if ($form->{second_run}) {
 
 819     $form->{print_and_post} = 0;
 
 821   $form->{ordnumber} = $form->{invnumber};
 
 823   $form->{old_employee_id} = $form->{employee_id};
 
 824   $form->{old_salesman_id} = $form->{salesman_id};
 
 826   map { delete $form->{$_} } qw(id printed emailed queued);
 
 827   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
 828     $form->{title} = $locale->text('Add Purchase Order');
 
 829     $form->{vc}    = 'vendor';
 
 830     $form->{type}  = 'purchase_order';
 
 833   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
 834     $form->{title} = $locale->text('Add Sales Order');
 
 835     $form->{vc}    = 'customer';
 
 836     $form->{type}  = 'sales_order';
 
 839   $form->{script} = 'oe.pl';
 
 847   require "bin/mozilla/$form->{script}";
 
 848   my $script = $form->{"script"};
 
 851   $locale = new Locale($language, $script);
 
 853   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
 855   $currency = $form->{currency};
 
 859   $form->{currency}     = $currency;
 
 860   $form->{exchangerate} = "";
 
 862   $form->{exchangerate} = $exchangerate
 
 866                     $form->check_exchangerate(
 
 867                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
 870   for $i (1 .. $form->{rowcount}) {
 
 871     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
 872                                                      $form->{"${_}_${i}"})
 
 873             if ($form->{"${_}_${i}"}) }
 
 874         qw(ship qty sellprice listprice basefactor));
 
 880   $lxdebug->leave_sub();
 
 884   $lxdebug->enter_sub();
 
 888   if ($form->{second_run}) {
 
 889     $form->{print_and_post} = 0;
 
 891   map { delete $form->{$_} } qw(id printed emailed queued);
 
 893   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
 894     $form->{title} = $locale->text('Add Request for Quotation');
 
 895     $form->{vc}    = 'vendor';
 
 896     $form->{type}  = 'request_quotation';
 
 899   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
 900     $form->{title} = $locale->text('Add Quotation');
 
 901     $form->{vc}    = 'customer';
 
 902     $form->{type}  = 'sales_quotation';
 
 908   $form->{script} = 'oe.pl';
 
 914   require "bin/mozilla/$form->{script}";
 
 916   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
 918   $currency = $form->{currency};
 
 922   $form->{currency}     = $currency;
 
 923   $form->{exchangerate} = "";
 
 925   $form->{exchangerate} = $exchangerate
 
 929                     $form->check_exchangerate(
 
 930                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
 933   for $i (1 .. $form->{rowcount}) {
 
 934     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
 935                                                      $form->{"${_}_${i}"})
 
 936             if ($form->{"${_}_${i}"}) }
 
 937         qw(ship qty sellprice listprice basefactor));
 
 943   $lxdebug->leave_sub();
 
 946 sub request_for_quotation {
 
 951   $lxdebug->enter_sub();
 
 955   if ($form->{second_run}) {
 
 956     $form->{print_and_post} = 0;
 
 957     $form->{resubmit}       = 0;
 
 960   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
 
 962   if ($form->{"cp_id"} && !$form->{"email"}) {
 
 963     CT->get_contact(\%myconfig, $form);
 
 964     $form->{"email"} = $form->{"cp_email"};
 
 967   $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
 
 969   $form->{oldmedia} = $form->{media};
 
 970   $form->{media}    = "email";
 
 972   my $attachment_filename = $form->generate_attachment_filename();
 
 974   $form->{"fokus"} = $form->{"email"} ? "Form.subject" : "Form.email";
 
 977   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
 
 978   @dont_hide_key_list = qw(action email cc bcc subject message sendmode format header override login password);
 
 979   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
 
 980   @hidden_keys = sort grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
 
 982   print $form->parse_html_template('generic/edit_email',
 
 984                                      a_filename      => $attachment_filename,
 
 985                                      _print_options_ => print_options('inline' => 1),
 
 986                                      HIDDEN          => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
 
 987                                      SHOW_BCC        => $myconfig{role} eq 'admin' });
 
 989   $lxdebug->leave_sub();
 
 993   $lxdebug->enter_sub();
 
 997   my $callback = $form->{script} . "?action=edit";
 
 998   map({ $callback .= "\&${_}=" . E($form->{$_}); } qw(type id));
 
1000   print_form("return");
 
1002   Common->save_email_status(\%myconfig, $form);
 
1004   $form->{callback} = $callback;
 
1007   $lxdebug->leave_sub();
 
1010 # generate the printing options displayed at the bottom of oe and is forms.
 
1011 # this function will attempt to guess what type of form is displayed, and will generate according options
 
1014 # this version builds the arrays of options pretty directly. if you have trouble understanding how,
 
1015 # the opthash function builds hashrefs which are then pieced together for the template arrays.
 
1016 # unneeded options are "undef"ed out, and then grepped out. 
 
1018 # the inline options is untested, but intended to be used later in metatemplating
 
1020   $lxdebug->enter_sub();
 
1026   # names 3 parameters and returns a hashref, for use in templates
 
1027   sub opthash { +{ value => shift, selected => shift, oname => shift } }
 
1028   (@FORMNAME, @FORMNAME, @LANGUAGE_ID, @FORMAT, @SENDMODE, @MEDIA, @PRINTER_ID, @SELECTS) = ();
 
1030   # note: "||"-selection is only correct for values where "0" is _not_ a correct entry
 
1031   $form->{sendmode}   = "attachment";
 
1032   $form->{format}     = $form->{format} || $myconfig{template_format} || "pdf";
 
1033   $form->{copies}     = $form->{copies} || $myconfig{copies}          || 3;
 
1034   $form->{media}      = $form->{media}  || $myconfig{default_media}   || "screen";
 
1035   $form->{printer_id} = defined $form->{printer_id}           ? $form->{printer_id} :
 
1036                         defined $myconfig{default_printer_id} ? $myconfig{default_printer_id} : "";
 
1038   $form->{PD}{ $form->{formname} } = "selected";
 
1039   $form->{DF}{ $form->{format} }   = "selected";
 
1040   $form->{OP}{ $form->{media} }    = "selected";
 
1041   $form->{SM}{ $form->{formname} } = "selected";
 
1043   push @FORMNAME, grep $_,
 
1044     ($form->{type} eq 'purchase_order') ? (
 
1045       opthash("purchase_order",      $form->{PD}{purchase_order},      $locale->text('Purchase Order')),
 
1046       opthash("bin_list",            $form->{PD}{bin_list},            $locale->text('Bin List')) 
 
1048     ($form->{type} eq 'credit_note') ?
 
1049       opthash("credit_note",         $form->{PD}{credit_note},         $locale->text('Credit Note')) : undef,
 
1050     ($form->{type} eq 'sales_order') ? (
 
1051       opthash("sales_order",         $form->{PD}{sales_order},         $locale->text('Confirmation')),
 
1052       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
 
1054     ($form->{type} =~ /sales_quotation$/) ?
 
1055       opthash('sales_quotation',     $form->{PD}{sales_quotation},     $locale->text('Quotation')) : undef,
 
1056     ($form->{type} =~ /request_quotation$/) ?
 
1057       opthash('request_quotation',   $form->{PD}{request_quotation},   $locale->text('Request for Quotation')) : undef,
 
1058     ($form->{type} eq 'invoice') ? (
 
1059       opthash("invoice",             $form->{PD}{invoice},             $locale->text('Invoice')),
 
1060       opthash("proforma",            $form->{PD}{proforma},            $locale->text('Proforma Invoice')),
 
1062     ($form->{type} eq 'invoice' && $form->{storno}) ? (
 
1063       opthash("storno_invoice",      $form->{PD}{storno_invoice},      $locale->text('Storno Invoice')),
 
1064       opthash("storno_packing_list", $form->{PD}{storno_packing_list}, $locale->text('Storno Packing List')) 
 
1066     ($form->{type} =~ /_delivery_order$/) ? (
 
1067       opthash($form->{type},         $form->{PD}{$form->{type}},       $locale->text('Delivery Order')),
 
1068       opthash('pick_list',           $form->{PD}{pick_list},           $locale->text('Pick List')),
 
1070     ($form->{type} eq 'credit_note') ?
 
1071       opthash("credit_note",         $form->{PD}{credit_note},         $locale->text('Credit Note')) : undef;
 
1074     opthash("attachment",            $form->{SM}{attachment},          $locale->text('Attachment')),
 
1075     opthash("inline",                $form->{SM}{inline},              $locale->text('In-line'))
 
1076       if ($form->{media} eq 'email');
 
1078   push @MEDIA, grep $_,
 
1079       opthash("screen",              $form->{OP}{screen},              $locale->text('Screen')),
 
1080     (scalar @{ $form->{printers} } && $latex_templates) ?
 
1081       opthash("printer",             $form->{OP}{printer},             $locale->text('Printer')) : undef,
 
1082     ($latex_templates && !$options{no_queue}) ?
 
1083       opthash("queue",               $form->{OP}{queue},               $locale->text('Queue')) : undef
 
1084         if ($form->{media} ne 'email');
 
1086   push @FORMAT, grep $_,
 
1087     ($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)
 
1088      && !$options{no_opendocument_pdf}) ?
 
1089       opthash("opendocument_pdf",    $form->{DF}{"opendocument_pdf"},  $locale->text("PDF (OpenDocument/OASIS)")) : undef,
 
1090     ($latex_templates) ?
 
1091       opthash("pdf",                 $form->{DF}{pdf},                 $locale->text('PDF')) : undef,
 
1092     ($latex_templates && !$options{no_postscript}) ?
 
1093       opthash("postscript",          $form->{DF}{postscript},          $locale->text('Postscript')) : undef,
 
1094     (!$options{no_html}) ?
 
1095       opthash("html", $form->{DF}{html}, "HTML") : undef,
 
1096     ($opendocument_templates && !$options{no_opendocument}) ?
 
1097       opthash("opendocument",        $form->{DF}{opendocument},        $locale->text("OpenDocument/OASIS")) : undef;
 
1100     map { opthash($_->{id}, ($_->{id} eq $form->{language_id} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} }
 
1101       if (ref $form->{languages} eq 'ARRAY');
 
1104     map { opthash($_->{id}, ($_->{id} eq $form->{printer_id} ? 'selected' : ''), $_->{printer_description}) } +{}, @{ $form->{printers} }
 
1105       if ((ref $form->{printers} eq 'ARRAY') && scalar @{ $form->{printers } });
 
1107   @SELECTS = map { sname => lc $_, DATA => \@$_, show => !$options{"hide_" . lc($_)} && scalar @$_ }, qw(FORMNAME LANGUAGE_ID FORMAT SENDMODE MEDIA PRINTER_ID);
 
1109   my %dont_display_groupitems = (
 
1114     display_copies       => scalar @{ $form->{printers} } && $latex_templates && $form->{media} ne 'email',
 
1115     display_remove_draft => (!$form->{id} && $form->{draft_id}),
 
1116     display_groupitems   => !$dont_display_groupitems{$form->{type}},
 
1117     groupitems_checked   => $form->{groupitems} ? "checked" : '',
 
1118     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
 
1121   my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
 
1123   if ($options{inline}) {
 
1124     $lxdebug->leave_sub();
 
1125     return $print_options;
 
1128   print $print_options;
 
1130   $lxdebug->leave_sub();
 
1134   $lxdebug->enter_sub();
 
1138   if ($form->{print_nextsub}) {
 
1139     call_sub($form->{print_nextsub});
 
1140     $lxdebug->leave_sub();
 
1144   # if this goes to the printer pass through
 
1145   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1146     $form->error($locale->text('Select postscript or PDF!'))
 
1147       if ($form->{format} !~ /(postscript|pdf)/);
 
1149     $old_form = new Form;
 
1150     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1153   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1154     if ($form->{formname} eq "proforma") {
 
1155       $form->{proforma} = 1;
 
1157     $form->{print_and_save} = 1;
 
1158     my $formname = $form->{formname};
 
1160     $form->{formname} = $formname;
 
1165   &print_form($old_form);
 
1167   $lxdebug->leave_sub();
 
1171   $lxdebug->enter_sub();
 
1175   my ($old_form) = @_;
 
1179   $numberfld = "invnumber";
 
1182     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1184   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1185   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1187   if ($form->{formname} eq "invoice") {
 
1188     $form->{label} = $locale->text('Invoice');
 
1190   if ($form->{formname} eq "packing_list") {
 
1192     # this is from an invoice
 
1193     $form->{label} = $locale->text('Packing List');
 
1195   if ($form->{formname} eq 'sales_order') {
 
1198     $form->{"${inv}date"} = $form->{transdate};
 
1199     $form->{label}        = $locale->text('Confirmation');
 
1200     $numberfld            = "sonumber";
 
1204   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1207     $form->{"${inv}date"} = $form->{invdate};
 
1208     $form->{label}        = $locale->text('Proforma Invoice');
 
1209     $numberfld            = "sonumber";
 
1213   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1216     $form->{"${inv}date"} = $form->{transdate};
 
1217     $form->{"invdate"}    = $form->{transdate};
 
1218     $form->{invnumber}    = $form->{ordnumber};
 
1219     $form->{label}        = $locale->text('Proforma Invoice');
 
1220     $numberfld            = "sonumber";
 
1224   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1226     # we use the same packing list as from an invoice
 
1229     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1230     $form->{label} = $locale->text('Packing List');
 
1232     # set invnumber for template packing_list 
 
1233     $form->{invnumber}   = $form->{ordnumber};
 
1235   if ($form->{formname} eq 'purchase_order') {
 
1238     $form->{"${inv}date"} = $form->{transdate};
 
1239     $form->{label}        = $locale->text('Purchase Order');
 
1240     $numberfld            = "ponumber";
 
1243   if ($form->{formname} eq 'bin_list') {
 
1246     $form->{"${inv}date"} = $form->{transdate};
 
1247     $form->{label}        = $locale->text('Bin List');
 
1250   if ($form->{formname} eq 'sales_quotation') {
 
1253     $form->{"${inv}date"} = $form->{transdate};
 
1254     $form->{label}        = $locale->text('Quotation');
 
1255     $numberfld            = "sqnumber";
 
1259   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1262     $form->{"${inv}date"} = $form->{transdate};
 
1263     $form->{"invdate"}    = $form->{transdate};
 
1264     $form->{label}        = $locale->text('Proforma Invoice');
 
1265     $numberfld            = "sqnumber";
 
1269   if ($form->{formname} eq 'request_quotation') {
 
1272     $form->{"${inv}date"} = $form->{transdate};
 
1273     $form->{label}        = $locale->text('RFQ');
 
1274     $numberfld            = "rfqnumber";
 
1278   if ($form->{type} =~ /_delivery_order$/) {
 
1281     $form->{"${inv}date"} = $form->{transdate};
 
1282     $numberfld            = $form->{type} =~ /^sales/ ? 'sdonumber' : 'pdonumber';
 
1283     $form->{label}        = $form->{formname} eq 'pick_list' ? $locale->text('Pick List') : $locale->text('Delivery Order');
 
1286   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1287     if ($form->{media} eq 'email');
 
1288   $form->isblank("${inv}date",
 
1289            $locale->text($form->{label}) 
 
1291            . $locale->text(' Date missing!'));
 
1293   # $locale->text('Invoice Number missing!')
 
1294   # $locale->text('Invoice Date missing!')
 
1295   # $locale->text('Packing List Number missing!')
 
1296   # $locale->text('Packing List Date missing!')
 
1297   # $locale->text('Order Number missing!')
 
1298   # $locale->text('Order Date missing!')
 
1299   # $locale->text('Quotation Number missing!')
 
1300   # $locale->text('Quotation Date missing!')
 
1303   $form->{what_done} = $form->{formname};
 
1304   if (!$form->{"${inv}number"} && !$form->{preview} && !$form->{id}) {
 
1305     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1306     if ($form->{media} ne 'email') {
 
1308       # get pricegroups for parts
 
1309       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1311       # build up html code for prices_$i
 
1312       set_pricegroup($form->{rowcount});
 
1314       $form->{rowcount}--;
 
1316       call_sub($display_form);
 
1317       # saving the history
 
1318           if(!exists $form->{addition}) {
 
1319         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber}; 
 
1320             $form->{addition} = "PRINTED";
 
1321             $form->save_history($form->dbconnect(\%myconfig));
 
1323       # /saving the history
 
1330   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1331   my ($saved_email, $saved_cc, $saved_bcc) =
 
1332     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1334   $language_saved = $form->{language_id};
 
1335   $payment_id_saved = $form->{payment_id};
 
1336   $salesman_id_saved = $form->{salesman_id};
 
1337   $cp_id_saved = $form->{cp_id};
 
1339   call_sub("$form->{vc}_details") if ($form->{vc});
 
1341   $form->{language_id} = $language_saved;
 
1342   $form->{payment_id} = $payment_id_saved;
 
1344   $form->{"email"} = $saved_email if ($saved_email);
 
1345   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1346   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1348   if (!$cp_id_saved) {
 
1349     # No contact was selected. Delete all contact variables because
 
1350     # IS->customer_details() and IR->vendor_details() get the default
 
1352     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1355   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
1356   if ($form->{"language_id"}) {
 
1357     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
1358       AM->get_language_details(\%myconfig, $form, $form->{language_id});
 
1360     $output_dateformat = $myconfig{"dateformat"};
 
1361     $output_numberformat = $myconfig{"numberformat"};
 
1362     $output_longdates = 1;
 
1365   ($form->{employee}) = split /--/, $form->{employee};
 
1367   # create the form variables
 
1368   if ($form->{type} =~ /_delivery_order$/) {
 
1369     DO->order_details();
 
1371     OE->order_details(\%myconfig, \%$form);
 
1373     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1376   $form->get_salesman(\%myconfig, $salesman_id_saved);
 
1378   if ($form->{shipto_id}) {
 
1379     $form->get_shipto(\%myconfig);
 
1382   @a = qw(name street zipcode city country);
 
1386   # if there is no shipto fill it in from billto
 
1387   foreach $item (@a) {
 
1388     if ($form->{"shipto$item"}) {
 
1395     if (   $form->{formname} eq 'purchase_order'
 
1396         || $form->{formname} eq 'request_quotation') {
 
1397       $form->{shiptoname}   = $myconfig{company};
 
1398       $form->{shiptostreet} = $myconfig{address};
 
1400       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1404   $form->{notes} =~ s/^\s+//g;
 
1406   $form->{templates} = "$myconfig{templates}";
 
1408   delete $form->{printer_command};
 
1410   $form->{language} = $form->get_template_language(\%myconfig);
 
1413   if ($form->{media} ne 'email') {
 
1414     $printer_code = $form->get_printer_code(\%myconfig);
 
1415     if ($printer_code ne "") {
 
1416       $printer_code = "_" . $printer_code;
 
1420   if ($form->{language} ne "") {
 
1421     map({ $form->{"unit"}->[$_] =
 
1422             AM->translate_units($form, $form->{"language"},
 
1423                                 $form->{"unit"}->[$_], $form->{"qty"}->[$_]); }
 
1424         (0..scalar(@{$form->{"unit"}}) - 1));
 
1425     $form->{language} = "_" . $form->{language};
 
1429   format_dates($output_dateformat, $output_longdates,
 
1430                qw(invdate orddate quodate pldate duedate reqdate transdate
 
1431                   shippingdate deliverydate validitydate paymentdate
 
1432                   datepaid transdate_oe deliverydate_oe
 
1433                   employee_startdate employee_enddate
 
1435                grep({ /^datepaid_\d+$/ ||
 
1436                         /^transdate_oe_\d+$/ ||
 
1437                         /^deliverydate_oe_\d+$/ ||
 
1439                         /^deliverydate_\d+$/ ||
 
1443   reformat_numbers($output_numberformat, 2,
 
1444                    qw(invtotal ordtotal quototal subtotal linetotal
 
1445                       listprice sellprice netprice discount
 
1446                       tax taxbase total paid),
 
1447                    grep({ /^linetotal_\d+$/ ||
 
1448                             /^listprice_\d+$/ ||
 
1449                             /^sellprice_\d+$/ ||
 
1459   reformat_numbers($output_numberformat, undef,
 
1460                    qw(qty price_factor),
 
1464   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
1466   if (scalar @{ $cvar_date_fields }) {
 
1467     format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
1470   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
1471     reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
1474   $form->{IN} = "$form->{formname}$form->{language}${printer_code}.html";
 
1475   if ($form->{format} eq 'postscript') {
 
1476     $form->{postscript} = 1;
 
1477     $form->{IN} =~ s/html$/tex/;
 
1478   } elsif ($form->{"format"} =~ /pdf/) {
 
1480     if ($form->{"format"} =~ /opendocument/) {
 
1481       $form->{IN} =~ s/html$/odt/;
 
1483       $form->{IN} =~ s/html$/tex/;
 
1485   } elsif ($form->{"format"} =~ /opendocument/) {
 
1486     $form->{"opendocument"} = 1;
 
1487     $form->{"IN"} =~ s/html$/odt/;
 
1490   delete $form->{OUT};
 
1492   if ($form->{media} eq 'printer') {
 
1493     $form->{OUT} = "| $form->{printer_command} &>/dev/null";
 
1494     $form->{printed} .= " $form->{formname}";
 
1495     $form->{printed} =~ s/^ //;
 
1497   $printed = $form->{printed};
 
1499   if ($form->{media} eq 'email') {
 
1500     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1501       unless $form->{subject};
 
1503     $form->{emailed} .= " $form->{formname}";
 
1504     $form->{emailed} =~ s/^ //;
 
1506   $emailed = $form->{emailed};
 
1508   if ($form->{media} eq 'queue') {
 
1509     %queued = map { s|.*/|| } split / /, $form->{queued};
 
1511     if ($filename = $queued{ $form->{formname} }) {
 
1512       $form->{queued} =~ s/\Q$form->{formname} $filename\E//;
 
1513       unlink "$spool/$filename";
 
1514       $filename =~ s/\..*$//g;
 
1520     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1521     $form->{OUT} = ">$spool/$filename";
 
1524     $form->{queued} .= " $form->{formname} $filename";
 
1526     $form->{queued} =~ s/^ //;
 
1528   $queued = $form->{queued};
 
1530 # saving the history
 
1531   if(!exists $form->{addition}) {
 
1532     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1533     if($form->{media} =~ /printer/) {
 
1534         $form->{addition} = "PRINTED";
 
1536     elsif($form->{media} =~ /email/) {
 
1537         $form->{addition} = "MAILED";
 
1539     elsif($form->{media} =~ /queue/) {
 
1540         $form->{addition} = "QUEUED";
 
1542     elsif($form->{media} =~ /screen/) {
 
1543         $form->{addition} = "SCREENED";
 
1545     $form->save_history($form->dbconnect(\%myconfig));
 
1547   # /saving the history
 
1549   $form->parse_template(\%myconfig, $userspath);
 
1551   $form->{callback} = "";
 
1553   if ($form->{media} eq 'email') {
 
1554     $form->{message} = $locale->text('sent') unless $form->{message};
 
1556   $message = $form->{message};
 
1558   # if we got back here restore the previous form
 
1559   if ($form->{media} =~ /(printer|email|queue)/) {
 
1561     $form->update_status(\%myconfig)
 
1562       if ($form->{media} eq 'queue' && $form->{id});
 
1564     return $lxdebug->leave_sub() if ($old_form eq "return");
 
1568       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1570       # restore and display form
 
1571       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1573       $form->{queued}  = $queued;
 
1574       $form->{printed} = $printed;
 
1575       $form->{emailed} = $emailed;
 
1576       $form->{message} = $message;
 
1578       $form->{rowcount}--;
 
1579       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1580         qw(exchangerate creditlimit creditremaining);
 
1582       for $i (1 .. $form->{paidaccounts}) {
 
1584           $form->{"${_}_$i"} =
 
1585             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1586         } qw(paid exchangerate);
 
1589       call_sub($display_form);
 
1594       ($form->{media} eq 'printer')
 
1595       ? $locale->text('sent to printer')
 
1596       : $locale->text('emailed to') . " $form->{email}";
 
1597     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1599   if ($form->{printing}) {
 
1600    call_sub($display_form);
 
1604   $lxdebug->leave_sub();
 
1607 sub customer_details {
 
1608   $lxdebug->enter_sub();
 
1610   IS->customer_details(\%myconfig, \%$form, @_);
 
1612   $lxdebug->leave_sub();
 
1615 sub vendor_details {
 
1616   $lxdebug->enter_sub();
 
1618   IR->vendor_details(\%myconfig, \%$form, @_);
 
1620   $lxdebug->leave_sub();
 
1624   $lxdebug->enter_sub();
 
1628   $form->{postasnew} = 1;
 
1629   map { delete $form->{$_} } qw(printed emailed queued);
 
1633   $lxdebug->leave_sub();
 
1637   $lxdebug->enter_sub();
 
1641   if ($form->{second_run}) {
 
1642     $form->{print_and_post} = 0;
 
1645   $title = $form->{title};
 
1646   $form->{title} = $locale->text('Ship to');
 
1648   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1649     qw(exchangerate creditlimit creditremaining);
 
1652     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
 
1653        shiptocontact shiptophone shiptofax shiptoemail
 
1654        shiptodepartment_1 shiptodepartment_2);
 
1657     (qw(name department_1 department_2 street zipcode city country
 
1658         contact email phone fax));
 
1660   # get details for name
 
1661   call_sub("$form->{vc}_details", @addr_vars);
 
1664     ($form->{vc} eq 'customer')
 
1665     ? $locale->text('Customer Number')
 
1666     : $locale->text('Vendor Number');
 
1668   # get pricegroups for parts
 
1669   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1671   # build up html code for prices_$i
 
1672   set_pricegroup($form->{rowcount});
 
1674   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1676   $form->{rowcount}--;
 
1683 <form method="post" action="$form->{script}">
 
1685 <table width="100%">
 
1689         <tr class="listheading">
 
1690           <th class="listheading" colspan="2" width="50%">|
 
1691     . $locale->text('Billing Address') . qq|</th>
 
1692           <th class="listheading" width="50%">|
 
1693     . $locale->text('Shipping Address') . qq|</th>
 
1695         <tr height="5"></tr>
 
1697           <th align="right" nowrap>$number</th>
 
1698           <td>$form->{"$form->{vc}number"}</td>
 
1701           <th align="right" nowrap>| . $locale->text('Company Name') . qq|</th>
 
1702           <td>$form->{name}</td>
 
1703           <td><input name="shiptoname" size="35" value="$form->{shiptoname}"></td>
 
1706           <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
1707           <td>$form->{department_1}</td>
 
1708           <td><input name="shiptodepartment_1" size="35" value="$form->{shiptodepartment_1}"></td>
 
1711           <th align="right" nowrap> </th>
 
1712           <td>$form->{department_2}</td>
 
1713           <td><input name="shiptodepartment_2" size="35" value="$form->{shiptodepartment_2}"></td>
 
1716           <th align="right" nowrap>| . $locale->text('Street') . qq|</th>
 
1717           <td>$form->{street}</td>
 
1718           <td><input name="shiptostreet" size="35" value="$form->{shiptostreet}"></td>
 
1721           <th align="right" nowrap>| . $locale->text('Zipcode') . qq|</th>
 
1722           <td>$form->{zipcode}</td>
 
1723           <td><input name="shiptozipcode" size="35" value="$form->{shiptozipcode}"></td>
 
1726           <th align="right" nowrap>| . $locale->text('City') . qq|</th>
 
1727           <td>$form->{city}</td>
 
1728           <td><input name="shiptocity" size="35" value="$form->{shiptocity}"></td>
 
1731           <th align="right" nowrap>| . $locale->text('Country') . qq|</th>
 
1732           <td>$form->{country}</td>
 
1733           <td><input name="shiptocountry" size="35" value="$form->{shiptocountry}"></td>
 
1736           <th align="right" nowrap>| . $locale->text('Contact') . qq|</th>
 
1737           <td>$form->{contact}</td>
 
1738           <td><input name="shiptocontact" size="35" value="$form->{shiptocontact}"></td>
 
1741           <th align="right" nowrap>| . $locale->text('Phone') . qq|</th>
 
1742           <td>$form->{phone}</td>
 
1743           <td><input name="shiptophone" size="20" value="$form->{shiptophone}"></td>
 
1746           <th align="right" nowrap>| . $locale->text('Fax') . qq|</th>
 
1747           <td>$form->{fax}</td>
 
1748           <td><input name="shiptofax" size="20" value="$form->{shiptofax}"></td>
 
1751           <th align="right" nowrap>| . $locale->text('E-mail') . qq|</th>
 
1752           <td>$form->{email}</td>
 
1753           <td><input name="shiptoemail" size="35" value="$form->{shiptoemail}"></td>
 
1759 | . $cgi->hidden("-name" => "nextsub", "-value" => $nextsub);
 
1765   map({ delete $form->{$_} } (@shipto_vars, qw(header)));
 
1766   $form->{title} = $title;
 
1768   foreach $key (keys %$form) {
 
1769     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1770     $form->{$key} =~ s/\"/"/g;
 
1771     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
 
1776 <hr size="3" noshade>
 
1779 <input class="submit" type="submit" name="action" value="|
 
1780     . $locale->text('Continue') . qq|">
 
1787   $lxdebug->leave_sub();
 
1791   $lxdebug->enter_sub();
 
1798   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
1799   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
1800   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
1803   delete $form->{action};
 
1804   $customer = $form->{customer};
 
1805   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
1807   # save all other form variables in a previousform variable
 
1808   $form->{row} = $row;
 
1809   foreach $key (keys %$form) {
 
1810     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1813     $form->{$key} =~ s/&/%26/g;
 
1814     $previousform .= qq|$key=$form->{$key}&|;
 
1817   $previousform = $form->escape($previousform, 1);
 
1819   $form->{script} = "licenses.pl";
 
1821   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
1822   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
1823     qw(partnumber description);
 
1825     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|;
 
1828   $lxdebug->leave_sub();
 
1831 sub relink_accounts {
 
1832   $lxdebug->enter_sub();
 
1836   $form->{"taxaccounts"} =~ s/\s*$//;
 
1837   $form->{"taxaccounts"} =~ s/^\s*//;
 
1838   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
1839     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
1841   $form->{"taxaccounts"} = "";
 
1843   for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
 
1844     if ($form->{"id_$i"}) {
 
1845       IC->retrieve_accounts(\%myconfig, $form, $form->{"id_$i"}, $i, 1);
 
1849   $lxdebug->leave_sub();
 
1853   $lxdebug->enter_sub();
 
1857   $form->get_duedate(\%myconfig);
 
1859   print $cgi->header() . $form->{duedate};
 
1861   $lxdebug->leave_sub();