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);
 
  44 require "bin/mozilla/common.pl";
 
  46 # any custom scripts for this one
 
  47 if (-f "bin/mozilla/custom_io.pl") {
 
  48   eval { require "bin/mozilla/custom_io.pl"; };
 
  50 if (-f "bin/mozilla/$form->{login}_io.pl") {
 
  51   eval { require "bin/mozilla/$form->{login}_io.pl"; };
 
  58 # this is for our long dates
 
  59 # $locale->text('January')
 
  60 # $locale->text('February')
 
  61 # $locale->text('March')
 
  62 # $locale->text('April')
 
  63 # $locale->text('May ')
 
  64 # $locale->text('June')
 
  65 # $locale->text('July')
 
  66 # $locale->text('August')
 
  67 # $locale->text('September')
 
  68 # $locale->text('October')
 
  69 # $locale->text('November')
 
  70 # $locale->text('December')
 
  72 # this is for our short month
 
  73 # $locale->text('Jan')
 
  74 # $locale->text('Feb')
 
  75 # $locale->text('Mar')
 
  76 # $locale->text('Apr')
 
  77 # $locale->text('May')
 
  78 # $locale->text('Jun')
 
  79 # $locale->text('Jul')
 
  80 # $locale->text('Aug')
 
  81 # $locale->text('Sep')
 
  82 # $locale->text('Oct')
 
  83 # $locale->text('Nov')
 
  84 # $locale->text('Dec')
 
  89 ########################################
 
  90 # Eintrag fuer Version 2.2.0 geaendert #
 
  91 # neue Optik im Rechnungsformular      #
 
  92 ########################################
 
  94   $lxdebug->enter_sub();
 
  98     (substr($form->{type}, 0, 6) eq "sales_")
 
  99     || (($form->{type} eq "invoice") && ($form->{script} eq "is.pl"))
 
 100     || ($form->{type} eq 'credit_note');
 
 102   if ($lizenzen && $form->{vc} eq "customer") {
 
 103     if ($form->{type} =~ /sales_order/) {
 
 104       @column_index = (runningnumber, partnumber, description, ship, qty);
 
 105     } elsif ($form->{type} =~ /sales_quotation/) {
 
 106       @column_index = (runningnumber, partnumber, description, qty);
 
 108       @column_index = (runningnumber, partnumber, description, qty);
 
 111     if (   ($form->{type} =~ /purchase_order/)
 
 112         || ($form->{type} =~ /sales_order/)) {
 
 113       @column_index = (runningnumber, partnumber, description, ship, qty);
 
 115       @column_index = (runningnumber, partnumber, description, qty);
 
 118 ############## ENDE Neueintrag ##################
 
 120   my $dimension_units = AM->retrieve_units(\%myconfig, $form, "dimension");
 
 121   my $service_units = AM->retrieve_units(\%myconfig, $form, "service");
 
 122   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 124   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 126   push @column_index, qw(unit);
 
 128   #for pricegroups column
 
 129   if (   $form->{type} =~ (/sales_quotation/)
 
 130       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 131       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 132       or ($form->{type} =~ /sales_order/)) {
 
 133     push @column_index, qw(sellprice_pg);
 
 136   push @column_index, qw(sellprice);
 
 138   if ($form->{vc} eq 'customer') {
 
 139     push @column_index, qw(discount);
 
 142   push @column_index, "linetotal";
 
 144   my $colspan = $#column_index + 1;
 
 146   $form->{invsubtotal} = 0;
 
 147   map { $form->{"${_}_base"} = 0 } (split(/ /, $form->{taxaccounts}));
 
 149 ########################################
 
 150   # Eintrag fuer Version 2.2.0 geaendert #
 
 151   # neue Optik im Rechnungsformular      #
 
 152 ########################################
 
 153   $column_data{runningnumber} =
 
 154       qq|<th align="left" nowrap width="5" class="listheading">|
 
 155     . $locale->text('No.')
 
 157   $column_data{partnumber} =
 
 158       qq|<th align="left" nowrap width="12" class="listheading">|
 
 159     . $locale->text('Number')
 
 161   $column_data{description} =
 
 162       qq|<th align="left" nowrap width="30" class="listheading">|
 
 163     . $locale->text('Part Description')
 
 165   if ($form->{"type"} eq "purchase_order") {
 
 167       qq|<th align="left" nowrap width="5" class="listheading">|
 
 168       . $locale->text('Ship rcvd')
 
 172       qq|<th align="left" nowrap width="5" class="listheading">|
 
 173       . $locale->text('Ship')
 
 177       qq|<th align="left" nowrap width="5" class="listheading">|
 
 178     . $locale->text('Qty')
 
 181       qq|<th align="left" nowrap width="5" class="listheading">|
 
 182     . $locale->text('Unit')
 
 184   $column_data{license} =
 
 185       qq|<th align="left" nowrap width="10" class="listheading">|
 
 186     . $locale->text('License')
 
 188   $column_data{serialnr} =
 
 189       qq|<th align="left" nowrap width="10" class="listheading">|
 
 190     . $locale->text('Serial No.')
 
 192   $column_data{projectnr} =
 
 193       qq|<th align="left" nowrap width="10" class="listheading">|
 
 194     . $locale->text('Project')
 
 196   $column_data{sellprice} =
 
 197       qq|<th align="left" nowrap width="15" class="listheading">|
 
 198     . $locale->text('Price')
 
 200   $column_data{sellprice_pg} =
 
 201       qq|<th align="left" nowrap width="15" class="listheading">|
 
 202     . $locale->text('Pricegroup')
 
 204   $column_data{discount} =
 
 205       qq|<th align="left" class="listheading">|
 
 206     . $locale->text('Discount')
 
 208   $column_data{linetotal} =
 
 209       qq|<th align="left" nowrap width="10" class="listheading">|
 
 210     . $locale->text('Extended')
 
 213       qq|<th align="left" nowrap width="10" class="listheading">|
 
 214     . $locale->text('Bin')
 
 216 ############## ENDE Neueintrag ##################
 
 218   $myconfig{"show_form_details"} = 1
 
 219     unless (defined($myconfig{"show_form_details"}));
 
 220   $form->{"show_details"} = $myconfig{"show_form_details"}
 
 221     unless (defined($form->{"show_details"}));
 
 222   $form->{"show_details"} = $form->{"show_details"} ? 1 : 0;
 
 223   my $show_details_new = 1 - $form->{"show_details"};
 
 224   my $show_details_checked = $form->{"show_details"} ? "checked" : "";
 
 228     <td>| . $cgi->hidden("-name" => "show_details", "-value" => $form->{show_details}) . qq|
 
 229       <input type="checkbox" id="cb_show_details" onclick="show_form_details($show_details_new);" $show_details_checked>
 
 230       <label for="cb_show_details">| . $locale->text("Show details") . qq|</label><br>
 
 232         <tr class="listheading">|;
 
 234   map { print "\n$column_data{$_}" } @column_index;
 
 240   $runningnumber = $locale->text('No.');
 
 241   $deliverydate  = $locale->text('Delivery Date');
 
 242   $serialnumber  = $locale->text('Serial No.');
 
 243   $projectnumber = $locale->text('Project');
 
 244   $partsgroup    = $locale->text('Group');
 
 245   $reqdate       = $locale->text('Reqdate');
 
 247   $delvar = 'deliverydate';
 
 249   if ($form->{type} =~ /_order$/ || $form->{type} =~ /_quotation$/) {
 
 250     $deliverydate = $locale->text('Required by');
 
 254   $form->{marge_total} = 0;
 
 255   $form->{sellprice_total} = 0;
 
 256   $form->{lastcost_total} = 0;
 
 257   my %projectnumber_labels = ();
 
 258   my @projectnumber_values = ("");
 
 259   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 260     push(@projectnumber_values, $item->{"id"});
 
 261     $projectnumber_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 264   for $i (1 .. $numrows) {
 
 269         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 270     } qw(qty ship discount sellprice price_new price_old) unless ($form->{simple_save});
 
 272     if (!$form->{"unit_old_$i"}) {
 
 273       # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
 
 274       # Einheit, wie sie in den Stammdaten hinterlegt wurde.
 
 275       # Es sollte also angenommen werden, dass diese ausgewaehlt war.
 
 276       $form->{"unit_old_$i"} = $form->{"unit_$i"};
 
 279     # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
 
 280     # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
 
 281     $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
 
 283     my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
 
 284     if (!$check_units->{$form->{"selected_unit_$i"}} ||
 
 285         ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
 
 286          $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
 
 287       # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 288       # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 289       # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 290       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
 
 292     if ((!$form->{"prices_$i"}) || ($form->{"new_pricegroup_$i"} == $form->{"old_pricegroup_$i"})) {
 
 293       if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
 
 295         if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
 
 296             $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
 
 297           $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
 
 298             $all_units->{$form->{"unit_old_$i"}}->{"factor"};
 
 300         $form->{"sellprice_$i"} *= $basefactor;
 
 301         $form->{"unit_old_$i"} = $form->{"selected_unit_$i"};
 
 305     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 306     $decimalplaces = max length($dec), 2;
 
 308     $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || 1;
 
 309     $discount     = (100 - $form->{"discount_$i"} * 1) / 100;
 
 311     $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} * $discount / $price_factor, $decimalplaces);
 
 313     my $real_sellprice = $form->{"sellprice_$i"} * $discount / $price_factor;
 
 316     my ($marge_font_start, $marge_font_end);
 
 318     $form->{"lastcost_$i"} *= 1;
 
 320     $marge_price_factor = $form->{"marge_price_factor_$i"} * 1 || 1;
 
 322     if ($real_sellprice && ($form->{"qty_$i"} * 1)) {
 
 323       $form->{"marge_percent_$i"}     = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * 100 / $real_sellprice;
 
 324       $myconfig{"marge_percent_warn"} = 15 unless (defined($myconfig{"marge_percent_warn"}));
 
 326       if ($form->{"id_$i"} &&
 
 327           ($form->{"marge_percent_$i"} < (1 * $myconfig{"marge_percent_warn"}))) {
 
 328         $marge_font_start = "<font color=\"#ff0000\">";
 
 329         $marge_font_end   = "</font>";
 
 333       $form->{"marge_percent_$i"} = 0;
 
 336     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
 
 337     $form->{"marge_total_$i"}  = ($real_sellprice - $form->{"lastcost_$i"} / $marge_price_factor) * $form->{"qty_$i"} * $marge_adjust_credit_note;
 
 338     $form->{"marge_total"}      += $form->{"marge_total_$i"};
 
 339     $form->{"lastcost_total"}   += $form->{"lastcost_$i"} * $form->{"qty_$i"} / $marge_price_factor;
 
 340     $form->{"sellprice_total"}  += $real_sellprice * $form->{"qty_$i"};
 
 342     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_total marge_percent);
 
 344     # convert " to "
 
 345     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 346       qw(partnumber description unit unit_old);
 
 348 ########################################
 
 349     # Eintrag fuer Version 2.2.0 geaendert #
 
 350     # neue Optik im Rechnungsformular      #
 
 351 ########################################
 
 352     $column_data{runningnumber} =
 
 353       qq|<td><input name="runningnumber_$i" size="5" value="$i"></td>|;    # HuT
 
 354 ############## ENDE Neueintrag ##################
 
 356     $column_data{partnumber} =
 
 357       qq|<td><input name="partnumber_$i" size=12 value="$form->{"partnumber_$i"}"></td>|;
 
 359     if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
 
 360       $column_data{description} =
 
 361         qq|<td><textarea name="description_$i" rows="$rows" cols="30" wrap="soft">| . H($form->{"description_$i"}) . qq|</textarea><button type="button" onclick="set_longdescription_window('longdescription_$i')">| . $locale->text('L') . qq|</button></td>|;
 
 363       $column_data{description} =
 
 364         qq|<td><input name="description_$i" size="30" value="| . $form->quote($form->{"description_$i"}) . qq|"><button type="button" onclick="set_longdescription_window('longdescription_$i')">| . $locale->text('L') . qq|</button></td>|;
 
 367     (my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 368     $qty_dec = length $qty_dec;
 
 371         qq|<td align="right"><input name="qty_$i" size="5" value="|
 
 372       . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec) .qq|">|;
 
 373     if ($form->{"formel_$i"}) {
 
 374       $column_data{qty} .= qq|<button type="button" onclick="calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)">| . $locale->text('*/') . qq|</button>|
 
 375         . $cgi->hidden("-name" => "formel_$i", "-value" => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"});
 
 377     $column_data{qty} .= qq|</td>|;
 
 379         qq|<td align="right"><input name="ship_$i" size=5 value="|
 
 380       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
 
 383     my $is_part     = $form->{"inventory_accno_$i"};
 
 384     my $is_assembly = $form->{"assembly_$i"};
 
 385     my $is_assigned = $form->{"id_$i"};
 
 386     my $this_unit = $form->{"unit_$i"};
 
 387     if ($form->{"selected_unit_$i"} && $this_unit &&
 
 388         $all_units->{$form->{"selected_unit_$i"}} && $all_units->{$this_unit} &&
 
 389         ($all_units->{$form->{"selected_unit_$i"}}->{"base_unit"} eq $all_units->{$this_unit}->{"base_unit"})) {
 
 390       $this_unit = $form->{"selected_unit_$i"};
 
 391     } elsif (!$is_assigned ||
 
 392              ($is_part && !$this_unit && ($all_units->{$this_unit} && ($all_units->{$this_unit}->{"base_unit"} eq $all_units->{"kg"}->{"base_unit"})))) {
 
 396     my $price_factor_select;
 
 397     if (0 < scalar @{ $form->{ALL_PRICE_FACTORS} }) {
 
 398       my @values = ('', map { $_->{id}                      } @{ $form->{ALL_PRICE_FACTORS} });
 
 399       my %labels =      map { $_->{id} => $_->{description} } @{ $form->{ALL_PRICE_FACTORS} };
 
 401       $price_factor_select =
 
 402         NTI($cgi->popup_menu('-name'    => "price_factor_id_$i",
 
 403                              '-default' => $form->{"price_factor_id_$i"},
 
 404                              '-values'  => \@values,
 
 405                              '-labels'  => \%labels,
 
 406                              '-style'   => 'width:90px'))
 
 410     $column_data{"unit"} = "<td>" .
 
 411       $price_factor_select .
 
 412        AM->unit_select_html($is_part || $is_assembly ? $dimension_units :
 
 413                             $is_assigned ? $service_units : $all_units,
 
 414                             "unit_$i", $this_unit,
 
 415                             $is_assigned ? $form->{"unit_$i"} : undef)
 
 418     # build in drop down list for pricesgroups
 
 419     if ($form->{"prices_$i"}) {
 
 420       if  ($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"}) {
 
 421         $price_tmp = $form->format_amount(\%myconfig, $form->{"price_new_$i"}, $decimalplaces);
 
 423         $price_tmp = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 426       $column_data{sellprice_pg} =
 
 427       qq|<td align="right"><select name="sellprice_pg_$i">$form->{"prices_$i"}</select></td>|;
 
 428       $column_data{sellprice} =
 
 429       qq|<td><input name="sellprice_$i" size="10" value="$price_tmp" onBlur=\"check_right_number_format(this)\"></td>|;
 
 432       # for last row and report
 
 433       # set pricegroup drop down list from report menu
 
 434       if ($form->{"sellprice_$i"} != 0) {
 
 436           qq|<option value="$form->{"sellprice_$i"}--$form->{"pricegroup_id_$i"}" selected>$form->{"pricegroup_$i"}</option>\n|;
 
 438         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 440         $column_data{sellprice_pg} =
 
 441           qq|<td align="right"><select name="sellprice_pg_$i">$prices</select></td>|;
 
 446         $column_data{sellprice_pg} = qq|<td align="right"> </td>|;
 
 449       $column_data{sellprice} =
 
 450       qq|<td><input name="sellprice_$i" size="10" onBlur=\"check_right_number_format(this)\" value="|
 
 451         . $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 455     $column_data{discount} =
 
 456         qq|<td align="right"><input name="discount_$i" size=3 value="|
 
 457       . $form->format_amount(\%myconfig, $form->{"discount_$i"})
 
 459     $column_data{linetotal} =
 
 460         qq|<td align="right">|
 
 461       . $form->format_amount(\%myconfig, $linetotal, 2)
 
 463     $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
 
 465 ########################################
 
 466     # Eintrag fuer Version 2.2.0 geaendert #
 
 467     # neue Optik im Rechnungsformular      #
 
 468 ########################################
 
 469     #     if ($lizenzen &&  $form->{type} eq "invoice" &&  $form->{vc} eq "customer") {
 
 470     #     $column_data{license} = qq|<td><select name="licensenumber_$i">$form->{"lizenzen_$i"}></select></td>|;
 
 473     #     if ($form->{type} !~ /_quotation/) {
 
 474     #     $column_data{serialnr} = qq|<td><input name="serialnumber_$i" size=10 value="$form->{"serialnumber_$i"}"></td>|;
 
 477     #     $column_data{projectnr} = qq|<td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}"></td>|;
 
 478 ############## ENDE Neueintrag ##################
 
 482         <tr valign="top" class="listrow$j">|;
 
 484     map { print "\n$column_data{$_}" } @column_index;
 
 487           $cgi->hidden("-name" => "unit_old_$i",
 
 488                        "-value" => $form->{"selected_unit_$i"})
 
 490           $cgi->hidden("-name" => "price_new_$i",
 
 491                        "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"}))
 
 493     map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_}) . "\n"); }
 
 494         ("orderitems_id_$i", "bo_$i", "pricegroup_old_$i", "price_old_$i",
 
 495          "id_$i", "inventory_accno_$i", "bin_$i", "partsgroup_$i", "partnotes_$i",
 
 496          "income_accno_$i", "expense_accno_$i", "listprice_$i", "assembly_$i",
 
 497          "taxaccounts_$i", "ordnumber_$i", "transdate_$i", "cusordnumber_$i",
 
 498          "longdescription_$i", "basefactor_$i", "marge_total_$i", "marge_percent_$i", "lastcost_$i",
 
 499          "marge_price_factor_$i"));
 
 501 ########################################
 
 502     # Eintrag fuer Version 2.2.0 geaendert #
 
 503     # neue Optik im Rechnungsformular      #
 
 504 ########################################
 
 507       'style="display:none;"' if (!$form->{"show_details"});
 
 511         <tr  class="listrow$j" $row_style_attr>
 
 512           <td colspan="$colspan">
 
 514     if ($lizenzen && $form->{type} eq "invoice" && $form->{vc} eq "customer") {
 
 515       my $selected = $form->{"licensenumber_$i"};
 
 517       $form->{"lizenzen_$i"} =~ s/ selected//g;
 
 518       $form->{"lizenzen_$i"} =~
 
 519         s/value="${selected}"\>/value="${selected}" selected\>/;
 
 520       $lizenzen_quoted = $form->{"lizenzen_$i"};
 
 521       $lizenzen_quoted =~ s/\"/"/g;
 
 523         <b>Lizenz\#</b> <select name="licensenumber_$i" size="1">
 
 524         $form->{"lizenzen_$i"}
 
 526         <input type="hidden" name="lizenzen_$i" value="${lizenzen_quoted}">
 
 529     if ($form->{type} !~ /_quotation/) {
 
 531           <b>$serialnumber</b> <input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">|;
 
 534     print qq|<b>$projectnumber</b> | .
 
 535       NTI($cgi->popup_menu('-name' => "project_id_$i",
 
 536                            '-values' => \@projectnumber_values,
 
 537                            '-labels' => \%projectnumber_labels,
 
 538                            '-default' => $form->{"project_id_$i"}));
 
 540     if ($form->{type} eq 'invoice' or $form->{type} =~ /order/) {
 
 542         ($form->{type} eq 'invoice')
 
 544         : 'reqdate';    # invoice uses a different term for the same thing.
 
 546         <b>${$reqdate_term}</b> <input name="${reqdate_term}_$i" size="11" onBlur="check_right_date_format(this)" value="$form->{"${reqdate_term}_$i"}">
 
 549     my $subtotalchecked = ($form->{"subtotal_$i"}) ? "checked" : "";
 
 551           <b>|.$locale->text('Subtotal').qq|</b> <input type="checkbox" name="subtotal_$i" value="1" $subtotalchecked>
 
 554     if ($form->{"id_$i"} && $is_sales) {
 
 555       my $marge_price_factor;
 
 557       $form->{"marge_price_factor_$i"} *= 1;
 
 559       if ($form->{"marge_price_factor_$i"} && (1 != $form->{"marge_price_factor_$i"})) {
 
 560         $marge_price_factor = '/' . $form->format_amount(\%myconfig, $form->{"marge_price_factor_$i"});
 
 564           ${marge_font_start}<b>| . $locale->text('Ertrag') . qq|</b> $form->{"marge_total_$i"} $form->{"marge_percent_$i"} % ${marge_font_end}
 
 565            <b>| . $locale->text('LP') . qq|</b> | . $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2) . qq|
 
 566            <b>| . $locale->text('EK') . qq|</b> | . $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2) . $marge_price_factor;
 
 574 ############## ENDE Neueintrag ##################
 
 576     map { $form->{"${_}_base"} += $linetotal }
 
 577       (split(/ /, $form->{"taxaccounts_$i"}));
 
 579     $form->{invsubtotal} += $linetotal;
 
 588   if (0 != ($form->{sellprice_total} * 1)) {
 
 589     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
 
 592   $lxdebug->leave_sub();
 
 595 ##################################################
 
 596 # build html-code for pricegroups in variable $form->{prices_$j}
 
 599   $lxdebug->enter_sub();
 
 600   my $rowcount = shift;
 
 601   for $j (1 .. $rowcount) {
 
 602     my $pricegroup_old = $form->{"pricegroup_old_$i"};
 
 603     if ($form->{PRICES}{$j}) {
 
 605       $prices = '<option value="--">' . $locale->text("none (pricegroup)") . '</option>';
 
 607       foreach $item (@{ $form->{PRICES}{$j} }) {
 
 609         #$price = $form->round_amount($myconfig,  $item->{price}, 5);
 
 610         #$price = $form->format_amount($myconfig, $item->{price}, 2);
 
 611         $price         = $item->{price};
 
 612         $pricegroup_id = $item->{pricegroup_id};
 
 613         $pricegroup    = $item->{pricegroup};
 
 615         # build drop down list for pricegroups
 
 617           qq|<option value="$price--$pricegroup_id"$item->{selected}>$pricegroup</option>\n|;
 
 622         #               $form->{"${_}_$j"} =
 
 623         #               $form->format_amount(\%myconfig, $form->{"${_}_$j"})
 
 624         #              } qw(sellprice price_new price_old);
 
 626         # set new selectedpricegroup_id and prices for "Preis"
 
 627         if ($item->{selected} && ($pricegroup_id != 0)) {
 
 628           $form->{"pricegroup_old_$j"} = $pricegroup_id;
 
 629           $form->{"price_new_$j"}      = $price;
 
 630           $form->{"sellprice_$j"}      = $price;
 
 632         if ($pricegroup_id == 0) {
 
 633           $form->{"price_new_$j"} = $form->{"sellprice_$j"};
 
 636       $form->{"prices_$j"} = $prices;
 
 639   $lxdebug->leave_sub();
 
 643   $lxdebug->enter_sub();
 
 644   @column_index = qw(ndx partnumber description onhand unit sellprice);
 
 646   $column_data{ndx}        = qq|<th> </th>|;
 
 647   $column_data{partnumber} =
 
 648     qq|<th class="listheading">| . $locale->text('Number') . qq|</th>|;
 
 649   $column_data{description} =
 
 650     qq|<th class="listheading">| . $locale->text('Part Description') . qq|</th>|;
 
 651   $column_data{sellprice} =
 
 652     qq|<th class="listheading">| . $locale->text('Price') . qq|</th>|;
 
 653   $column_data{onhand} =
 
 654     qq|<th class="listheading">| . $locale->text('Qty') . qq|</th>|;
 
 656     qq|<th class="listheading">| . $locale->text('Unit') . qq|</th>|;
 
 657   # list items with radio button on a form
 
 660   $title   = $locale->text('Select from one of the items below');
 
 661   $colspan = $#column_index + 1;
 
 666 <form method="post" action="$form->{script}">
 
 670     <th class="listtop" colspan="$colspan">$title</th>
 
 673   <tr class="listheading">|;
 
 675   map { print "\n$column_data{$_}" } @column_index;
 
 680   foreach $ref (@{ $form->{item_list} }) {
 
 681     $checked = ($i++) ? "" : "checked";
 
 684       if ($ref->{inventory_accno} > 0) {
 
 685         $ref->{"lizenzen"} = qq|<option></option>|;
 
 686         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 687           $ref->{"lizenzen"} .=
 
 688             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 690         $ref->{"lizenzen"} .= qq|<option value="-1">Neue Lizenz</option>|;
 
 691         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 695     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 697     my $display_sellprice  = $ref->{sellprice} * (1 - $form->{tradediscount});
 
 698     $display_sellprice    /= $ref->{price_factor} if ($ref->{price_factor});
 
 699     $display_sellprice     = $form->format_amount(\%myconfig, $display_sellprice, 2);
 
 702       qq|<td><input name="ndx" class="radio" type="radio" value="$i" $checked></td>|;
 
 703     $column_data{partnumber} =
 
 704       qq|<td><input name="new_partnumber_$i" type="hidden" value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 705     $column_data{description} =
 
 706       qq|<td><input name="new_description_$i" type="hidden" value="$ref->{description}">$ref->{description}</td>|;
 
 707     $column_data{sellprice} =
 
 708       qq|<td align="right"><input name="new_sellprice_$i" type="hidden" value="$ref->{sellprice}">|
 
 711     $column_data{onhand} =
 
 712       qq|<td align="right"><input name="new_onhand_$i" type="hidden" value="$ref->{onhand}">|
 
 713       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 716       qq|<td>$ref->{unit}</td>|;
 
 720 <tr class=listrow$j>|;
 
 722     map { print "\n$column_data{$_}" } @column_index;
 
 727       qw(bin listprice inventory_accno income_accno expense_accno unit weight
 
 728          assembly taxaccounts partsgroup formel longdescription not_discountable
 
 729          part_payment_id partnotes id lastcost price_factor_id price_factor);
 
 730     push(@new_fields, "lizenzen") if ($lizenzen);
 
 732     print join "\n", map { $cgi->hidden("-name" => "new_${_}_$i", "-value" => $ref->{$_}) } @new_fields;
 
 737 <tr><td colspan="8"><hr size="3" noshade></td></tr>
 
 740 <input name="lastndx" type="hidden" value="$i">
 
 744   # delete action variable
 
 745   map { delete $form->{$_} } qw(action item_list header);
 
 747   # save all other form variables
 
 748   foreach $key (keys %${form}) {
 
 749     $form->{$key} =~ s/\"/"/g;
 
 750     print qq|<input name="$key" type="hidden" value="$form->{$key}">\n|;
 
 754 <input type="hidden" name="nextsub" value="item_selected">
 
 757 <input class="submit" type="submit" name="action" value="|
 
 758     . $locale->text('Continue') . qq|">
 
 765   $lxdebug->leave_sub();
 
 769   $lxdebug->enter_sub();
 
 771   # replace the last row with the checked row
 
 772   $i = $form->{rowcount};
 
 773   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 779   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 780   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 782   # if there was a price entered, override it
 
 783   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 786     qw(id partnumber description sellprice listprice inventory_accno
 
 787        income_accno expense_accno bin unit weight assembly taxaccounts
 
 788        partsgroup formel longdescription not_discountable partnotes lastcost
 
 789        price_factor_id price_factor);
 
 791   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } @new_fields;
 
 793   $form->{"marge_price_factor_$i"} = $form->{"new_price_factor_$j"};
 
 795   if ($form->{"part_payment_id_$i"} ne "") {
 
 796     $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 800     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 803   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 805   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 808     $form->{"sellprice_$i"} = $sellprice;
 
 811     # if there is an exchange rate adjust sellprice
 
 812     if (($form->{exchangerate} * 1) != 0) {
 
 813       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 814       $form->{"sellprice_$i"} =
 
 815         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 819   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 820     qw(sellprice listprice weight);
 
 822   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 823   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 825   if ($form->{"not_discountable_$i"}) {
 
 826     $form->{"discount_$i"} = 0;
 
 830     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 832   map { $form->{"${_}_base"} += $amount }
 
 833     (split / /, $form->{"taxaccounts_$i"});
 
 834   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 835     $form->{"taxaccounts_$i"}
 
 836     if !$form->{taxincluded};
 
 838   $form->{creditremaining} -= $amount;
 
 840   $form->{"runningnumber_$i"} = $i;
 
 842   # delete all the new_ variables
 
 843   for $i (1 .. $form->{lastndx}) {
 
 844     map { delete $form->{"new_${_}_$i"} } @new_fields;
 
 847   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 852       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 853   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 855   # get pricegroups for parts
 
 856   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 858   # build up html code for prices_$i
 
 859   set_pricegroup($form->{rowcount});
 
 863   $lxdebug->leave_sub();
 
 867   $lxdebug->enter_sub();
 
 870   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 871   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
 874   delete $form->{action};
 
 876   # save all other form variables in a previousform variable
 
 877   foreach $key (keys %$form) {
 
 880     $form->{$key} =~ s/&/%26/g;
 
 881     $previousform .= qq|$key=$form->{$key}&|;
 
 884   $previousform = $form->escape($previousform, 1);
 
 886   $i = $form->{rowcount};
 
 887   map { $form->{"${_}_$i"} =~ s/\"/"/g } qw(partnumber description);
 
 894 <h4 class="error">| . $locale->text('Item not on file!') . qq|
 
 897 | . $locale->text('What type of item is this?') . qq|</h4>
 
 899 <form method="post" action="ic.pl">
 
 903   <input class="radio" type="radio" name="item" value="part" checked> |
 
 904     . $locale->text('Part') . qq|<br>
 
 905   <input class="radio" type="radio" name="item" value="service"> |
 
 906     . $locale->text('Service');
 
 908   print $cgi->hidden("-name" => "previousform", "-value" => $previousform);
 
 909   map { print $cgi->hidden("-name" => $_, "-value" => $form->{$_}); }        qw(rowcount vc login password);
 
 910   map { print $cgi->hidden("-name" => $_, "-value" => $form->{"${_}_$i"}); } qw(partnumber description unit sellprice price_factor_id);
 
 911   print $cgi->hidden("-name" => "taxaccount2", "-value" => $form->{taxaccounts});
 
 914 <input type="hidden" name="nextsub" value="add">
 
 917 <input class="submit" type="submit" name="action" value="|
 
 918     . $locale->text('Continue') . qq|">
 
 925   $lxdebug->leave_sub();
 
 929   $lxdebug->enter_sub();
 
 933   my $new_rowcount = $form->{"rowcount"} * 1 + 1;
 
 934   $form->{"project_id_${new_rowcount}"} = $form->{"globalproject_id"};
 
 936   $form->language_payment(\%myconfig);
 
 938   # if we have a display_form
 
 939   if ($form->{display_form}) {
 
 940     call_sub($form->{"display_form"});
 
 944   Common::webdav_folder($form) if ($webdav);
 
 946   #   if (   $form->{print_and_post}
 
 947   #       && $form->{second_run}
 
 948   #       && ($form->{action} eq "display_form")) {
 
 949   #     for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
 950   #     $old_form->{rowcount}++;
 
 952   #     #$form->{rowcount}--;
 
 953   #     #$form->{rowcount}--;
 
 955   #     $form->{print_and_post} = 0;
 
 957   #     &print_form($old_form);
 
 961   #   $form->{action}   = "";
 
 962   #   $form->{resubmit} = 0;
 
 964   #   if ($form->{print_and_post} && !$form->{second_run}) {
 
 965   #     $form->{second_run} = 1;
 
 966   #     $form->{action}     = "display_form";
 
 967   #     $form->{rowcount}--;
 
 968   #     my $rowcount = $form->{rowcount};
 
 970   #     # get pricegroups for parts
 
 971   #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 973   #     # build up html code for prices_$i
 
 974   #     set_pricegroup($rowcount);
 
 976   #     $form->{resubmit} = 1;
 
 981   $numrows    = ++$form->{rowcount};
 
 982   $subroutine = "display_row";
 
 984   if ($form->{item} eq 'part') {
 
 986     #set preisgruppenanzahl
 
 987     $numrows    = $form->{price_rows};
 
 988     $subroutine = "price_row";
 
 990     &{$subroutine}($numrows);
 
 992     $numrows    = ++$form->{makemodel_rows};
 
 993     $subroutine = "makemodel_row";
 
 995   if ($form->{item} eq 'assembly') {
 
 996     $numrows    = $form->{price_rows};
 
 997     $subroutine = "price_row";
 
 999     &{$subroutine}($numrows);
 
1001     $numrows    = ++$form->{makemodel_rows};
 
1002     $subroutine = "makemodel_row";
 
1004     # create makemodel rows
 
1005     &{$subroutine}($numrows);
 
1007     $numrows    = ++$form->{assembly_rows};
 
1008     $subroutine = "assembly_row";
 
1010   if ($form->{item} eq 'service') {
 
1011     $numrows    = $form->{price_rows};
 
1012     $subroutine = "price_row";
 
1014     &{$subroutine}($numrows);
 
1020   &{$subroutine}($numrows) if $numrows;
 
1024   $lxdebug->leave_sub();
 
1028   $lxdebug->enter_sub();
 
1031   my @flds  = (qw(id partnumber description qty ship sellprice unit discount inventory_accno income_accno expense_accno listprice taxaccounts bin assembly weight projectnumber project_id oldprojectnumber runningnumber serialnumber partsgroup payment_id not_discountable shop ve gv buchungsgruppen_id language_values sellprice_pg pricegroup_old price_old price_new unit_old ordnumber transdate longdescription basefactor marge_total marge_percent marge_price_factor lastcost price_factor_id));
 
1033   # remove any makes or model rows
 
1034   if ($form->{item} eq 'part') {
 
1035     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1036       qw(listprice sellprice lastcost weight rop);
 
1038     @flds = (make, model);
 
1039     for my $i (1 .. ($form->{makemodel_rows})) {
 
1040       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
1044         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1049     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
1050     $form->{makemodel_rows} = $count;
 
1052   } elsif ($form->{item} eq 'assembly') {
 
1054     $form->{sellprice} = 0;
 
1055     $form->{weight}    = 0;
 
1056     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1057       qw(listprice rop stock);
 
1060       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
 
1062     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
1063       if ($form->{"qty_$i"}) {
 
1067         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1069         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1071         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
1073         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
 
1074         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
1079     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
1081     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
1082     $form->{assembly_rows} = $count;
 
1085     @flds  = qw(make model);
 
1088     for my $i (1 .. ($form->{makemodel_rows})) {
 
1089       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
1093         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1098     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
1099     $form->{makemodel_rows} = $count;
 
1101   } elsif ($form->{item} eq 'service') {
 
1102     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost);
 
1106     # this section applies to invoices and orders
 
1107     # remove any empty numbers
 
1108     if ($form->{rowcount}) {
 
1109       for my $i (1 .. $form->{rowcount} - 1) {
 
1110         if ($form->{"partnumber_$i"}) {
 
1114           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1117             if ($form->{"licensenumber_$i"} == -1) {
 
1125       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
1126       $form->{rowcount} = $count;
 
1128       $form->{creditremaining} -= &invoicetotal;
 
1135   if (   $form->{type} =~ (/sales_quotation/)
 
1136       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
1137       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
1138       or ($form->{type} =~ /sales_order/)) {
 
1140     # get pricegroups for parts
 
1141     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1143     # build up html code for prices_$i
 
1144     set_pricegroup($form->{rowcount});
 
1150   $lxdebug->leave_sub();
 
1154   $lxdebug->enter_sub();
 
1156   $form->{oldinvtotal} = 0;
 
1158   # add all parts and deduct paid
 
1159   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
1161   my ($amount, $sellprice, $discount, $qty);
 
1163   for my $i (1 .. $form->{rowcount}) {
 
1164     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
1165     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
1166     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1168     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
1170     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
1171     map { $form->{"${_}_base"} += $amount }
 
1172       (split (/ /, $form->{"taxaccounts_$i"}));
 
1173     $form->{oldinvtotal} += $amount;
 
1176   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1177     split(/ /, $form->{taxaccounts})
 
1178     if !$form->{taxincluded};
 
1180   $form->{oldtotalpaid} = 0;
 
1181   for $i (1 .. $form->{paidaccounts}) {
 
1182     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
1185   $lxdebug->leave_sub();
 
1188   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1191 sub validate_items {
 
1192   $lxdebug->enter_sub();
 
1194   # check if items are valid
 
1195   if ($form->{rowcount} == 1) {
 
1200   for $i (1 .. $form->{rowcount} - 1) {
 
1201     $form->isblank("partnumber_$i",
 
1202                    $locale->text('Number missing in Row') . " $i");
 
1205   $lxdebug->leave_sub();
 
1209   $lxdebug->enter_sub();
 
1210   if ($form->{second_run}) {
 
1211     $form->{print_and_post} = 0;
 
1213   $form->{ordnumber} = $form->{invnumber};
 
1215   $form->{old_employee_id} = $form->{employee_id};
 
1216   $form->{old_salesman_id} = $form->{salesman_id};
 
1218   map { delete $form->{$_} } qw(id printed emailed queued);
 
1219   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
1220     $form->{title} = $locale->text('Add Purchase Order');
 
1221     $form->{vc}    = 'vendor';
 
1222     $form->{type}  = 'purchase_order';
 
1225   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
1226     $form->{title} = $locale->text('Add Sales Order');
 
1227     $form->{vc}    = 'customer';
 
1228     $form->{type}  = 'sales_order';
 
1231   $form->{script} = 'oe.pl';
 
1233   $form->{shipto} = 1;
 
1235   $form->{rowcount}--;
 
1237   $form->{cp_id} *= 1;
 
1239   require "bin/mozilla/$form->{script}";
 
1240   my $script = $form->{"script"};
 
1242   $script =~ s|.pl$||;
 
1243   $locale = new Locale($language, $script);
 
1245   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1247   $currency = $form->{currency};
 
1251   $form->{currency}     = $currency;
 
1252   $form->{exchangerate} = "";
 
1253   $form->{forex}        = "";
 
1254   $form->{exchangerate} = $exchangerate
 
1258                     $form->check_exchangerate(
 
1259                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1262   for $i (1 .. $form->{rowcount}) {
 
1263     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
1264                                                      $form->{"${_}_${i}"})
 
1265             if ($form->{"${_}_${i}"}) }
 
1266         qw(ship qty sellprice listprice basefactor));
 
1272   $lxdebug->leave_sub();
 
1276   $lxdebug->enter_sub();
 
1277   if ($form->{second_run}) {
 
1278     $form->{print_and_post} = 0;
 
1280   map { delete $form->{$_} } qw(id printed emailed queued);
 
1282   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
1283     $form->{title} = $locale->text('Add Request for Quotation');
 
1284     $form->{vc}    = 'vendor';
 
1285     $form->{type}  = 'request_quotation';
 
1288   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
1289     $form->{title} = $locale->text('Add Quotation');
 
1290     $form->{vc}    = 'customer';
 
1291     $form->{type}  = 'sales_quotation';
 
1295   $form->{cp_id} *= 1;
 
1297   $form->{script} = 'oe.pl';
 
1299   $form->{shipto} = 1;
 
1301   $form->{rowcount}--;
 
1303   require "bin/mozilla/$form->{script}";
 
1305   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1307   $currency = $form->{currency};
 
1311   $form->{currency}     = $currency;
 
1312   $form->{exchangerate} = "";
 
1313   $form->{forex}        = "";
 
1314   $form->{exchangerate} = $exchangerate
 
1318                     $form->check_exchangerate(
 
1319                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1322   for $i (1 .. $form->{rowcount}) {
 
1323     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
1324                                                      $form->{"${_}_${i}"})
 
1325             if ($form->{"${_}_${i}"}) }
 
1326         qw(ship qty sellprice listprice basefactor));
 
1332   $lxdebug->leave_sub();
 
1335 sub request_for_quotation {
 
1340   $lxdebug->enter_sub();
 
1341   if ($form->{second_run}) {
 
1342     $form->{print_and_post} = 0;
 
1343     $form->{resubmit}       = 0;
 
1346   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
 
1348   if ($form->{"cp_id"} && !$form->{"email"}) {
 
1349     CT->get_contact(\%myconfig, $form);
 
1350     $form->{"email"} = $form->{"cp_email"};
 
1353   $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
 
1355   $form->{oldmedia} = $form->{media};
 
1356   $form->{media}    = "email";
 
1358   my $attachment_filename = $form->generate_attachment_filename();
 
1360   $form->{"fokus"} = $form->{"email"} ? "Form.subject" : "Form.email";
 
1363   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
 
1364   @dont_hide_key_list = qw(action email cc bcc subject message formname sendmode format header override);
 
1365   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
 
1366   @hidden_keys = grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
 
1368   print $form->parse_html_template('generic/edit_email', 
 
1370                                     a_filename      => $attachment_filename,
 
1371                                     _print_options_ => print_options({ 'inline' => 1 }),
 
1372                                     HIDDEN          => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
 
1373                                     SHOW_BCC        => $myconfig{role} eq 'admin' });
 
1375   $lxdebug->leave_sub();
 
1379   $lxdebug->enter_sub();
 
1381   my $callback = $form->{script} . "?action=edit";
 
1382   map({ $callback .= "\&${_}=" . E($form->{$_}); }
 
1383       qw(login password type id));
 
1385   print_form("return");
 
1387   Common->save_email_status(\%myconfig, $form);
 
1389   $form->{callback} = $callback;
 
1392   $lxdebug->leave_sub();
 
1395 # generate the printing options displayed at the bottom of oe and is forms.
 
1396 # this function will attempt to guess what type of form is displayed, and will generate according options
 
1399 # this version builds the arrays of options pretty directly. if you have trouble understanding how,
 
1400 # the opthash function builds hashrefs which are then pieced together for the template arrays.
 
1401 # unneeded options are "undef"ed out, and then grepped out. 
 
1403 # the inline options is untested, but intended to be used later in metatemplating
 
1405   $lxdebug->enter_sub();
 
1411   # names 3 parameters and returns a hashref, for use in templates
 
1412   sub opthash { +{ value => shift, selected => shift, oname => shift } }
 
1413   (@FORMNAME, @FORMNAME, @LANGUAGE_ID, @FORMAT, @SENDMODE, @MEDIA, @PRINTER_ID, @SELECTS) = ();
 
1415   # note: "||"-selection is only correct for values where "0" is _not_ a correct entry
 
1416   $form->{sendmode}   = "attachment";
 
1417   $form->{format}     = $form->{format} || $myconfig{template_format} || "pdf";
 
1418   $form->{copies}     = $form->{copies} || $myconfig{copies} || 3;
 
1419   $form->{media}      = $form->{media} || $myconfig{default_media} || "screen";
 
1420   $form->{printer_id} = defined $form->{printer_id}           ? $form->{printer_id} :
 
1421                         defined $myconfig{default_printer_id} ? $myconfig{default_printer_id} : "";
 
1423   $form->{PD}{ $form->{formname} } = "selected";
 
1424   $form->{DF}{ $form->{format} }   = "selected";
 
1425   $form->{OP}{ $form->{media} }    = "selected";
 
1426   $form->{SM}{ $form->{formname} } = "selected";
 
1428   push @FORMNAME, grep $_,
 
1429     ($form->{type} eq 'purchase_order') ? (
 
1430       opthash("purchase_order", $form->{PD}{purchase_order}, $locale->text('Purchase Order')),
 
1431       opthash("bin_list", $form->{PD}{bin_list}, $locale->text('Bin List')) 
 
1433     ($form->{type} eq 'credit_note') ?
 
1434       opthash("credit_note", $form->{PD}{credit_note}, $locale->text('Credit Note')) : undef,
 
1435     ($form->{type} eq 'sales_order') ? (
 
1436       opthash("sales_order", $form->{PD}{sales_order}, $locale->text('Confirmation')),
 
1437       opthash("proforma", $form->{PD}{proforma}, $locale->text('Proforma Invoice')),
 
1438       opthash("pick_list", $form->{PD}{pick_list}, $locale->text('Pick List')),
 
1439       opthash("packing_list", $form->{PD}{packing_list}, $locale->text('Packing List')) 
 
1441     ($form->{type} =~ /_quotation$/) ?
 
1442       opthash("$`_quotation", $form->{PD}{"$`_quotation"}, $locale->text('Quotation')) : undef,
 
1443     ($form->{type} eq 'invoice') ? (
 
1444       opthash("invoice", $form->{PD}{invoice}, $locale->text('Invoice')),
 
1445       opthash("proforma", $form->{PD}{proforma}, $locale->text('Proforma Invoice')),
 
1446       opthash("packing_list", $form->{PD}{packing_list}, $locale->text('Packing List'))
 
1448     ($form->{type} eq 'invoice' && $form->{storno}) ? (
 
1449       opthash("storno_invoice", $form->{PD}{storno_invoice}, $locale->text('Storno Invoice')),
 
1450       opthash("storno_packing_list", $form->{PD}{storno_packing_list}, $locale->text('Storno Packing List')) 
 
1452     ($form->{type} eq 'credit_note') ?
 
1453       opthash("credit_note", $form->{PD}{credit_note}, $locale->text('Credit Note')) : undef;
 
1456     opthash("attachment", $form->{SM}{attachment}, $locale->text('Attachment')),
 
1457     opthash("inline", $form->{SM}{inline}, $locale->text('In-line'))
 
1458       if ($form->{media} eq 'email');
 
1460   push @MEDIA, grep $_,
 
1461       opthash("screen", $form->{OP}{screen}, $locale->text('Screen')),
 
1462     (scalar @{ $form->{printers} } && $latex_templates) ?
 
1463       opthash("printer", $form->{OP}{printer}, $locale->text('Printer')) : undef,
 
1464     ($latex_templates && !$options->{no_queue}) ?
 
1465       opthash("queue", $form->{OP}{queue}, $locale->text('Queue')) : undef
 
1466         if ($form->{media} ne 'email');
 
1468   push @FORMAT, grep $_,
 
1469     ($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)
 
1470      && !$options->{no_opendocument_pdf}) ?
 
1471       opthash("opendocument_pdf", $form->{DF}{"opendocument_pdf"}, $locale->text("PDF (OpenDocument/OASIS)")) : undef,
 
1472     ($latex_templates) ?
 
1473       opthash("pdf", $form->{DF}{pdf}, $locale->text('PDF')) : undef,
 
1474     ($latex_templates && !$options->{no_postscript}) ?
 
1475       opthash("postscript", $form->{DF}{postscript}, $locale->text('Postscript')) : undef,
 
1476     (!$options->{no_html}) ?
 
1477       opthash("html", $form->{DF}{html}, "HTML") : undef,
 
1478     ($opendocument_templates && !$options->{no_opendocument}) ?
 
1479       opthash("opendocument", $form->{DF}{opendocument}, $locale->text("OpenDocument/OASIS")) : undef;
 
1482     map { opthash($_->{id}, ($_->{id} eq $form->{language_id} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} }
 
1483       if (ref $form->{languages} eq 'ARRAY');
 
1486     map { opthash($_->{id}, ($_->{id} eq $form->{printer_id} ? 'selected' : ''), $_->{printer_description}) } +{}, @{ $form->{printers} }
 
1487       if ((ref $form->{printers} eq 'ARRAY') && scalar @{ $form->{printers } });
 
1489   @SELECTS = map { sname => lc $_, DATA => \@$_, show => scalar @$_ }, qw(FORMNAME LANGUAGE_ID FORMAT SENDMODE MEDIA PRINTER_ID);
 
1491   my %dont_display_groupitems = (
 
1496     display_copies       => scalar @{ $form->{printers} } && $latex_templates && $form->{media} ne 'email',
 
1497     display_remove_draft => (!$form->{id} && $form->{draft_id}),
 
1498     display_groupitems   => !$dont_display_groupitems{$form->{type}},
 
1499     groupitems_checked   => $form->{groupitems} ? "checked" : '',
 
1500     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
 
1503   my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
 
1505   if ($options->{inline}) {
 
1506     $lxdebug->leave_sub() and return $print_options;
 
1508     print $print_options; $lxdebug->leave_sub();
 
1513   $lxdebug->enter_sub();
 
1515   if ($form->{print_nextsub}) {
 
1516     call_sub($form->{print_nextsub});
 
1517     $lxdebug->leave_sub();
 
1521   # if this goes to the printer pass through
 
1522   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1523     $form->error($locale->text('Select postscript or PDF!'))
 
1524       if ($form->{format} !~ /(postscript|pdf)/);
 
1526     $old_form = new Form;
 
1527     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1530   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1531     if ($form->{formname} eq "proforma") {
 
1532       $form->{proforma} = 1;
 
1534     $form->{print_and_save} = 1;
 
1535     my $formname = $form->{formname};
 
1537     $form->{formname} = $formname;
 
1542   &print_form($old_form);
 
1544   $lxdebug->leave_sub();
 
1548   $lxdebug->enter_sub();
 
1549   my ($old_form) = @_;
 
1553   $numberfld = "invnumber";
 
1556     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1558   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1559   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1561   if ($form->{formname} eq "invoice") {
 
1562     $form->{label} = $locale->text('Invoice');
 
1564   if ($form->{formname} eq "packing_list") {
 
1566     # this is from an invoice
 
1567     $form->{label} = $locale->text('Packing List');
 
1569   if ($form->{formname} eq 'sales_order') {
 
1572     $form->{"${inv}date"} = $form->{transdate};
 
1573     $form->{label}        = $locale->text('Confirmation');
 
1574     $numberfld            = "sonumber";
 
1578   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1581     $form->{"${inv}date"} = $form->{invdate};
 
1582     $form->{label}        = $locale->text('Proforma Invoice');
 
1583     $numberfld            = "sonumber";
 
1587   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1590     $form->{"${inv}date"} = $form->{transdate};
 
1591     $form->{"invdate"}    = $form->{transdate};
 
1592     $form->{invnumber}    = $form->{ordnumber};
 
1593     $form->{label}        = $locale->text('Proforma Invoice');
 
1594     $numberfld            = "sonumber";
 
1598   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1600     # we use the same packing list as from an invoice
 
1603     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1604     $form->{label} = $locale->text('Packing List');
 
1606     # set invnumber for template packing_list 
 
1607     $form->{invnumber}   = $form->{ordnumber};
 
1609   if ($form->{formname} eq 'pick_list') {
 
1612     $form->{"${inv}date"} =
 
1613       ($form->{transdate}) ? $form->{transdate} : $form->{invdate};
 
1614     $form->{label} = $locale->text('Pick List');
 
1615     $order = 1 unless $form->{type} eq 'invoice';
 
1617   if ($form->{formname} eq 'purchase_order') {
 
1620     $form->{"${inv}date"} = $form->{transdate};
 
1621     $form->{label}        = $locale->text('Purchase Order');
 
1622     $numberfld            = "ponumber";
 
1625   if ($form->{formname} eq 'bin_list') {
 
1628     $form->{"${inv}date"} = $form->{transdate};
 
1629     $form->{label}        = $locale->text('Bin List');
 
1632   if ($form->{formname} eq 'sales_quotation') {
 
1635     $form->{"${inv}date"} = $form->{transdate};
 
1636     $form->{label}        = $locale->text('Quotation');
 
1637     $numberfld            = "sqnumber";
 
1641   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1644     $form->{"${inv}date"} = $form->{transdate};
 
1645     $form->{"invdate"}    = $form->{transdate};
 
1646     $form->{label}        = $locale->text('Proforma Invoice');
 
1647     $numberfld            = "sqnumber";
 
1651   if ($form->{formname} eq 'request_quotation') {
 
1654     $form->{"${inv}date"} = $form->{transdate};
 
1655     $form->{label}        = $locale->text('RFQ');
 
1656     $numberfld            = "rfqnumber";
 
1660   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1661     if ($form->{media} eq 'email');
 
1662   $form->isblank("${inv}date",
 
1663            $locale->text($form->{label}) 
 
1665            . $locale->text(' Date missing!'));
 
1667   # $locale->text('Invoice Number missing!')
 
1668   # $locale->text('Invoice Date missing!')
 
1669   # $locale->text('Packing List Number missing!')
 
1670   # $locale->text('Packing List Date missing!')
 
1671   # $locale->text('Order Number missing!')
 
1672   # $locale->text('Order Date missing!')
 
1673   # $locale->text('Quotation Number missing!')
 
1674   # $locale->text('Quotation Date missing!')
 
1677   $form->{what_done} = $form->{formname};
 
1678   if (!$form->{"${inv}number"} && !$form->{preview} && !$form->{id}) {
 
1679     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1680     if ($form->{media} ne 'email') {
 
1682       # get pricegroups for parts
 
1683       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1685       # build up html code for prices_$i
 
1686       set_pricegroup($form->{rowcount});
 
1688       $form->{rowcount}--;
 
1690       call_sub($display_form);
 
1691       # saving the history
 
1692           if(!exists $form->{addition}) {
 
1693         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber}; 
 
1694             $form->{addition} = "PRINTED";
 
1695             $form->save_history($form->dbconnect(\%myconfig));
 
1697       # /saving the history
 
1704   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1705   my ($saved_email, $saved_cc, $saved_bcc) =
 
1706     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1708   $language_saved = $form->{language_id};
 
1709   $payment_id_saved = $form->{payment_id};
 
1710   $salesman_id_saved = $form->{salesman_id};
 
1711   $cp_id_saved = $form->{cp_id};
 
1713   call_sub("$form->{vc}_details");
 
1715   $form->{language_id} = $language_saved;
 
1716   $form->{payment_id} = $payment_id_saved;
 
1718   $form->{"email"} = $saved_email if ($saved_email);
 
1719   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1720   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1722   if (!$cp_id_saved) {
 
1723     # No contact was selected. Delete all contact variables because
 
1724     # IS->customer_details() and IR->vendor_details() get the default
 
1726     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1729   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
1730   if ($form->{"language_id"}) {
 
1731     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
1732       AM->get_language_details(\%myconfig, $form, $form->{language_id});
 
1734     $output_dateformat = $myconfig{"dateformat"};
 
1735     $output_numberformat = $myconfig{"numberformat"};
 
1736     $output_longdates = 1;
 
1739   ($form->{employee}) = split /--/, $form->{employee};
 
1741   # create the form variables
 
1743     OE->order_details(\%myconfig, \%$form);
 
1745     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1748   $form->get_salesman(\%myconfig, $salesman_id_saved);
 
1750   if ($form->{shipto_id}) {
 
1751     $form->get_shipto(\%myconfig);
 
1754   @a = qw(name street zipcode city country);
 
1758   # if there is no shipto fill it in from billto
 
1759   foreach $item (@a) {
 
1760     if ($form->{"shipto$item"}) {
 
1767     if (   $form->{formname} eq 'purchase_order'
 
1768         || $form->{formname} eq 'request_quotation') {
 
1769       $form->{shiptoname}   = $myconfig{company};
 
1770       $form->{shiptostreet} = $myconfig{address};
 
1772       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1776   $form->{notes} =~ s/^\s+//g;
 
1778   $form->{templates} = "$myconfig{templates}";
 
1780   delete $form->{printer_command};
 
1782   $form->{language} = $form->get_template_language(\%myconfig);
 
1785   if ($form->{media} ne 'email') {
 
1786     $printer_code = $form->get_printer_code(\%myconfig);
 
1787     if ($printer_code ne "") {
 
1788       $printer_code = "_" . $printer_code;
 
1792   if ($form->{language} ne "") {
 
1793     map({ $form->{"unit"}->[$_] =
 
1794             AM->translate_units($form, $form->{"language"},
 
1795                                 $form->{"unit"}->[$_], $form->{"qty"}->[$_]); }
 
1796         (0..scalar(@{$form->{"unit"}}) - 1));
 
1797     $form->{language} = "_" . $form->{language};
 
1801   format_dates($output_dateformat, $output_longdates,
 
1802                qw(invdate orddate quodate pldate duedate reqdate transdate
 
1803                   shippingdate deliverydate validitydate paymentdate
 
1804                   datepaid transdate_oe deliverydate_oe
 
1805                   employee_startdate employee_enddate
 
1807                grep({ /^datepaid_\d+$/ ||
 
1808                         /^transdate_oe_\d+$/ ||
 
1809                         /^deliverydate_oe_\d+$/ ||
 
1811                         /^deliverydate_\d+$/ ||
 
1815   reformat_numbers($output_numberformat, 2,
 
1816                    qw(invtotal ordtotal quototal subtotal linetotal
 
1817                       listprice sellprice netprice discount
 
1818                       tax taxbase total paid),
 
1819                    grep({ /^linetotal_\d+$/ ||
 
1820                             /^listprice_\d+$/ ||
 
1821                             /^sellprice_\d+$/ ||
 
1831   reformat_numbers($output_numberformat, undef,
 
1832                    qw(qty price_factor),
 
1836   $form->{IN} = "$form->{formname}$form->{language}${printer_code}.html";
 
1837   if ($form->{format} eq 'postscript') {
 
1838     $form->{postscript} = 1;
 
1839     $form->{IN} =~ s/html$/tex/;
 
1840   } elsif ($form->{"format"} =~ /pdf/) {
 
1842     if ($form->{"format"} =~ /opendocument/) {
 
1843       $form->{IN} =~ s/html$/odt/;
 
1845       $form->{IN} =~ s/html$/tex/;
 
1847   } elsif ($form->{"format"} =~ /opendocument/) {
 
1848     $form->{"opendocument"} = 1;
 
1849     $form->{"IN"} =~ s/html$/odt/;
 
1852   delete $form->{OUT};
 
1854   if ($form->{media} eq 'printer') {
 
1855     $form->{OUT} = "| $form->{printer_command} &>/dev/null";
 
1856     $form->{printed} .= " $form->{formname}";
 
1857     $form->{printed} =~ s/^ //;
 
1859   $printed = $form->{printed};
 
1861   if ($form->{media} eq 'email') {
 
1862     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1863       unless $form->{subject};
 
1865     $form->{emailed} .= " $form->{formname}";
 
1866     $form->{emailed} =~ s/^ //;
 
1868   $emailed = $form->{emailed};
 
1870   if ($form->{media} eq 'queue') {
 
1871     %queued = map { s|.*/|| } split / /, $form->{queued};
 
1873     if ($filename = $queued{ $form->{formname} }) {
 
1874       $form->{queued} =~ s/$form->{formname} $filename//;
 
1875       unlink "$spool/$filename";
 
1876       $filename =~ s/\..*$//g;
 
1882     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1883     $form->{OUT} = ">$spool/$filename";
 
1886     $form->{queued} .= " $form->{formname} $filename";
 
1888     $form->{queued} =~ s/^ //;
 
1890   $queued = $form->{queued};
 
1892 # saving the history
 
1893   if(!exists $form->{addition}) {
 
1894     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1895     if($form->{media} =~ /printer/) {
 
1896         $form->{addition} = "PRINTED";
 
1898     elsif($form->{media} =~ /email/) {
 
1899         $form->{addition} = "MAILED";
 
1901     elsif($form->{media} =~ /queue/) {
 
1902         $form->{addition} = "QUEUED";
 
1904     elsif($form->{media} =~ /screen/) {
 
1905         $form->{addition} = "SCREENED";
 
1907     $form->save_history($form->dbconnect(\%myconfig));
 
1909   # /saving the history
 
1911   $form->parse_template(\%myconfig, $userspath);
 
1913   $form->{callback} = "";
 
1915   if ($form->{media} eq 'email') {
 
1916     $form->{message} = $locale->text('sent') unless $form->{message};
 
1918   $message = $form->{message};
 
1920   # if we got back here restore the previous form
 
1921   if ($form->{media} =~ /(printer|email|queue)/) {
 
1923     $form->update_status(\%myconfig)
 
1924       if ($form->{media} eq 'queue' && $form->{id});
 
1926     return $lxdebug->leave_sub() if ($old_form eq "return");
 
1930       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1932       # restore and display form
 
1933       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1935       $form->{queued}  = $queued;
 
1936       $form->{printed} = $printed;
 
1937       $form->{emailed} = $emailed;
 
1938       $form->{message} = $message;
 
1940       $form->{rowcount}--;
 
1941       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1942         qw(exchangerate creditlimit creditremaining);
 
1944       for $i (1 .. $form->{paidaccounts}) {
 
1946           $form->{"${_}_$i"} =
 
1947             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1948         } qw(paid exchangerate);
 
1951       call_sub($display_form);
 
1956       ($form->{media} eq 'printer')
 
1957       ? $locale->text('sent to printer')
 
1958       : $locale->text('emailed to') . " $form->{email}";
 
1959     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1961   if ($form->{printing}) {
 
1962    call_sub($display_form);
 
1966   $lxdebug->leave_sub();
 
1969 sub customer_details {
 
1970   $lxdebug->enter_sub();
 
1971   IS->customer_details(\%myconfig, \%$form, @_);
 
1972   $lxdebug->leave_sub();
 
1975 sub vendor_details {
 
1976   $lxdebug->enter_sub();
 
1978   IR->vendor_details(\%myconfig, \%$form, @_);
 
1980   $lxdebug->leave_sub();
 
1984   $lxdebug->enter_sub();
 
1986   $form->{postasnew} = 1;
 
1987   map { delete $form->{$_} } qw(printed emailed queued);
 
1991   $lxdebug->leave_sub();
 
1995   $lxdebug->enter_sub();
 
1996   if ($form->{second_run}) {
 
1997     $form->{print_and_post} = 0;
 
2000   $title = $form->{title};
 
2001   $form->{title} = $locale->text('Ship to');
 
2003   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
2004     qw(exchangerate creditlimit creditremaining);
 
2007     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
 
2008        shiptocontact shiptophone shiptofax shiptoemail
 
2009        shiptodepartment_1 shiptodepartment_2);
 
2012     (qw(name department_1 department_2 street zipcode city country
 
2013         contact email phone fax));
 
2015   # get details for name
 
2016   call_sub("$form->{vc}_details", @addr_vars);
 
2019     ($form->{vc} eq 'customer')
 
2020     ? $locale->text('Customer Number')
 
2021     : $locale->text('Vendor Number');
 
2023   # get pricegroups for parts
 
2024   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
2026   # build up html code for prices_$i
 
2027   set_pricegroup($form->{rowcount});
 
2029   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
2031   $form->{rowcount}--;
 
2038 <form method="post" action="$form->{script}">
 
2040 <table width="100%">
 
2044         <tr class="listheading">
 
2045           <th class="listheading" colspan="2" width="50%">|
 
2046     . $locale->text('Billing Address') . qq|</th>
 
2047           <th class="listheading" width="50%">|
 
2048     . $locale->text('Shipping Address') . qq|</th>
 
2050         <tr height="5"></tr>
 
2052           <th align="right" nowrap>$number</th>
 
2053           <td>$form->{"$form->{vc}number"}</td>
 
2056           <th align="right" nowrap>| . $locale->text('Company Name') . qq|</th>
 
2057           <td>$form->{name}</td>
 
2058           <td><input name="shiptoname" size="35" value="$form->{shiptoname}"></td>
 
2061           <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
2062           <td>$form->{department_1}</td>
 
2063           <td><input name="shiptodepartment_1" size="35" value="$form->{shiptodepartment_1}"></td>
 
2066           <th align="right" nowrap> </th>
 
2067           <td>$form->{department_2}</td>
 
2068           <td><input name="shiptodepartment_2" size="35" value="$form->{shiptodepartment_2}"></td>
 
2071           <th align="right" nowrap>| . $locale->text('Street') . qq|</th>
 
2072           <td>$form->{street}</td>
 
2073           <td><input name="shiptostreet" size="35" value="$form->{shiptostreet}"></td>
 
2076           <th align="right" nowrap>| . $locale->text('Zipcode') . qq|</th>
 
2077           <td>$form->{zipcode}</td>
 
2078           <td><input name="shiptozipcode" size="35" value="$form->{shiptozipcode}"></td>
 
2081           <th align="right" nowrap>| . $locale->text('City') . qq|</th>
 
2082           <td>$form->{city}</td>
 
2083           <td><input name="shiptocity" size="35" value="$form->{shiptocity}"></td>
 
2086           <th align="right" nowrap>| . $locale->text('Country') . qq|</th>
 
2087           <td>$form->{country}</td>
 
2088           <td><input name="shiptocountry" size="35" value="$form->{shiptocountry}"></td>
 
2091           <th align="right" nowrap>| . $locale->text('Contact') . qq|</th>
 
2092           <td>$form->{contact}</td>
 
2093           <td><input name="shiptocontact" size="35" value="$form->{shiptocontact}"></td>
 
2096           <th align="right" nowrap>| . $locale->text('Phone') . qq|</th>
 
2097           <td>$form->{phone}</td>
 
2098           <td><input name="shiptophone" size="20" value="$form->{shiptophone}"></td>
 
2101           <th align="right" nowrap>| . $locale->text('Fax') . qq|</th>
 
2102           <td>$form->{fax}</td>
 
2103           <td><input name="shiptofax" size="20" value="$form->{shiptofax}"></td>
 
2106           <th align="right" nowrap>| . $locale->text('E-mail') . qq|</th>
 
2107           <td>$form->{email}</td>
 
2108           <td><input name="shiptoemail" size="35" value="$form->{shiptoemail}"></td>
 
2114 | . $cgi->hidden("-name" => "nextsub", "-value" => $nextsub);
 
2120   map({ delete $form->{$_} } (@shipto_vars, qw(header)));
 
2121   $form->{title} = $title;
 
2123   foreach $key (keys %$form) {
 
2124     $form->{$key} =~ s/\"/"/g;
 
2125     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
 
2130 <hr size="3" noshade>
 
2133 <input class="submit" type="submit" name="action" value="|
 
2134     . $locale->text('Continue') . qq|">
 
2141   $lxdebug->leave_sub();
 
2145   $lxdebug->enter_sub();
 
2150   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
2151   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
2152   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
2155   delete $form->{action};
 
2156   $customer = $form->{customer};
 
2157   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
2159   # save all other form variables in a previousform variable
 
2160   $form->{row} = $row;
 
2161   foreach $key (keys %$form) {
 
2164     $form->{$key} =~ s/&/%26/g;
 
2165     $previousform .= qq|$key=$form->{$key}&|;
 
2168   $previousform = $form->escape($previousform, 1);
 
2170   $form->{script} = "licenses.pl";
 
2172   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
2173   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
2174     qw(partnumber description);
 
2176     qq|$form->{script}?login=$form->{login}&password=$form->{password}&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|;
 
2179   $lxdebug->leave_sub();
 
2182 sub relink_accounts {
 
2183   $lxdebug->enter_sub();
 
2185   $form->{"taxaccounts"} =~ s/\s*$//;
 
2186   $form->{"taxaccounts"} =~ s/^\s*//;
 
2187   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
2188     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
2190   $form->{"taxaccounts"} = "";
 
2192   for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
 
2193     if ($form->{"id_$i"}) {
 
2194       IC->retrieve_accounts(\%myconfig, $form, $form->{"id_$i"}, $i, 1);
 
2198   $lxdebug->leave_sub();
 
2202   $lxdebug->enter_sub();
 
2204   $form->get_duedate(\%myconfig);
 
2207   $result = "$form->{duedate}";
 
2210   $lxdebug->leave_sub();