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 #######################################################################
 
  42 require "bin/mozilla/common.pl";
 
  44 # any custom scripts for this one
 
  45 if (-f "bin/mozilla/custom_io.pl") {
 
  46   eval { require "bin/mozilla/custom_io.pl"; };
 
  48 if (-f "bin/mozilla/$form->{login}_io.pl") {
 
  49   eval { require "bin/mozilla/$form->{login}_io.pl"; };
 
  56 # this is for our long dates
 
  57 # $locale->text('January')
 
  58 # $locale->text('February')
 
  59 # $locale->text('March')
 
  60 # $locale->text('April')
 
  61 # $locale->text('May ')
 
  62 # $locale->text('June')
 
  63 # $locale->text('July')
 
  64 # $locale->text('August')
 
  65 # $locale->text('September')
 
  66 # $locale->text('October')
 
  67 # $locale->text('November')
 
  68 # $locale->text('December')
 
  70 # this is for our short month
 
  71 # $locale->text('Jan')
 
  72 # $locale->text('Feb')
 
  73 # $locale->text('Mar')
 
  74 # $locale->text('Apr')
 
  75 # $locale->text('May')
 
  76 # $locale->text('Jun')
 
  77 # $locale->text('Jul')
 
  78 # $locale->text('Aug')
 
  79 # $locale->text('Sep')
 
  80 # $locale->text('Oct')
 
  81 # $locale->text('Nov')
 
  82 # $locale->text('Dec')
 
  87 ########################################
 
  88 # Eintrag fuer Version 2.2.0 geaendert #
 
  89 # neue Optik im Rechnungsformular      #
 
  90 ########################################
 
  92   $lxdebug->enter_sub();
 
  96     (substr($form->{type}, 0, 6) eq "sales_")
 
  97     || (($form->{type} eq "invoice") && ($form->{script} eq "is.pl"))
 
  98     || ($form->{type} eq 'credit_note');
 
 100   if ($lizenzen && $form->{vc} eq "customer") {
 
 101     if ($form->{type} =~ /sales_order/) {
 
 102       @column_index = (runningnumber, partnumber, description, ship, qty);
 
 103     } elsif ($form->{type} =~ /sales_quotation/) {
 
 104       @column_index = (runningnumber, partnumber, description, qty);
 
 106       @column_index = (runningnumber, partnumber, description, qty);
 
 109     if (   ($form->{type} =~ /purchase_order/)
 
 110         || ($form->{type} =~ /sales_order/)) {
 
 111       @column_index = (runningnumber, partnumber, description, ship, qty);
 
 113       @column_index = (runningnumber, partnumber, description, qty);
 
 116 ############## ENDE Neueintrag ##################
 
 118   my $dimension_units = AM->retrieve_units(\%myconfig, $form, "dimension");
 
 119   my $service_units = AM->retrieve_units(\%myconfig, $form, "service");
 
 120   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 122   push @column_index, qw(unit);
 
 124   #for pricegroups column
 
 125   if (   $form->{type} =~ (/sales_quotation/)
 
 126       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 127       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 128       or ($form->{type} =~ /sales_order/)) {
 
 129     push @column_index, qw(sellprice_pg);
 
 132   push @column_index, qw(sellprice);
 
 134   if ($form->{vc} eq 'customer') {
 
 135     push @column_index, qw(discount);
 
 138   push @column_index, "linetotal";
 
 140   my $colspan = $#column_index + 1;
 
 142   $form->{invsubtotal} = 0;
 
 143   map { $form->{"${_}_base"} = 0 } (split(/ /, $form->{taxaccounts}));
 
 145 ########################################
 
 146   # Eintrag fuer Version 2.2.0 geaendert #
 
 147   # neue Optik im Rechnungsformular      #
 
 148 ########################################
 
 149   $column_data{runningnumber} =
 
 150       qq|<th align="left" nowrap width="5" class="listheading">|
 
 151     . $locale->text('No.')
 
 153   $column_data{partnumber} =
 
 154       qq|<th align="left" nowrap width="12" class="listheading">|
 
 155     . $locale->text('Number')
 
 157   $column_data{description} =
 
 158       qq|<th align="left" nowrap width="30" class="listheading">|
 
 159     . $locale->text('Part Description')
 
 161   if ($form->{"type"} eq "purchase_order") {
 
 163       qq|<th align="left" nowrap width="5" class="listheading">|
 
 164       . $locale->text('Ship rcvd')
 
 168       qq|<th align="left" nowrap width="5" class="listheading">|
 
 169       . $locale->text('Ship')
 
 173       qq|<th align="left" nowrap width="5" class="listheading">|
 
 174     . $locale->text('Qty')
 
 177       qq|<th align="left" nowrap width="5" class="listheading">|
 
 178     . $locale->text('Unit')
 
 180   $column_data{license} =
 
 181       qq|<th align="left" nowrap width="10" class="listheading">|
 
 182     . $locale->text('License')
 
 184   $column_data{serialnr} =
 
 185       qq|<th align="left" nowrap width="10" class="listheading">|
 
 186     . $locale->text('Serial No.')
 
 188   $column_data{projectnr} =
 
 189       qq|<th align="left" nowrap width="10" class="listheading">|
 
 190     . $locale->text('Project')
 
 192   $column_data{sellprice} =
 
 193       qq|<th align="left" nowrap width="15" class="listheading">|
 
 194     . $locale->text('Price')
 
 196   $column_data{sellprice_pg} =
 
 197       qq|<th align="left" nowrap width="15" class="listheading">|
 
 198     . $locale->text('Pricegroup')
 
 200   $column_data{discount} =
 
 201       qq|<th align="left" class="listheading">|
 
 202     . $locale->text('Discount')
 
 204   $column_data{linetotal} =
 
 205       qq|<th align="left" nowrap width="10" class="listheading">|
 
 206     . $locale->text('Extended')
 
 209       qq|<th align="left" nowrap width="10" class="listheading">|
 
 210     . $locale->text('Bin')
 
 212 ############## ENDE Neueintrag ##################
 
 214   $myconfig{"show_form_details"} = 1
 
 215     unless (defined($myconfig{"show_form_details"}));
 
 216   $form->{"show_details"} = $myconfig{"show_form_details"}
 
 217     unless (defined($form->{"show_details"}));
 
 218   $form->{"show_details"} = $form->{"show_details"} ? 1 : 0;
 
 219   my $show_details_new = 1 - $form->{"show_details"};
 
 220   my $show_details_checked = $form->{"show_details"} ? "checked" : "";
 
 224     <td>| . $cgi->hidden("-name" => "show_details", "-value" => $form->{show_details}) . qq|
 
 225       <input type="checkbox" id="cb_show_details" onclick="show_form_details($show_details_new);" $show_details_checked>
 
 226       <label for="cb_show_details">| . $locale->text("Show details") . qq|</label><br>
 
 228         <tr class="listheading">|;
 
 230   map { print "\n$column_data{$_}" } @column_index;
 
 236   $runningnumber = $locale->text('No.');
 
 237   $deliverydate  = $locale->text('Delivery Date');
 
 238   $serialnumber  = $locale->text('Serial No.');
 
 239   $projectnumber = $locale->text('Project');
 
 240   $partsgroup    = $locale->text('Group');
 
 241   $reqdate       = $locale->text('Reqdate');
 
 243   $delvar = 'deliverydate';
 
 245   if ($form->{type} =~ /_order$/ || $form->{type} =~ /_quotation$/) {
 
 246     $deliverydate = $locale->text('Required by');
 
 250   $form->{marge_total} = 0;
 
 251   $form->{sellprice_total} = 0;
 
 252   $form->{lastcost_total} = 0;
 
 253   my %projectnumber_labels = ();
 
 254   my @projectnumber_values = ("");
 
 255   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 256     push(@projectnumber_values, $item->{"id"});
 
 257     $projectnumber_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 260   for $i (1 .. $numrows) {
 
 265         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 266     } qw(qty ship discount sellprice price_new price_old) unless ($form->{simple_save});
 
 268     if (!$form->{"unit_old_$i"}) {
 
 269       # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
 
 270       # Einheit, wie sie in den Stammdaten hinterlegt wurde.
 
 271       # Es sollte also angenommen werden, dass diese ausgewaehlt war.
 
 272       $form->{"unit_old_$i"} = $form->{"unit_$i"};
 
 275     # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
 
 276     # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
 
 277     $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
 
 279     my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
 
 280     if (!$check_units->{$form->{"selected_unit_$i"}} ||
 
 281         ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
 
 282          $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
 
 283       # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 284       # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 285       # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 286       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
 
 288     if ((!$form->{"prices_$i"}) || ($form->{"new_pricegroup_$i"} == $form->{"old_pricegroup_$i"})) {
 
 289       if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
 
 291         if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
 
 292             $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
 
 293           $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
 
 294             $all_units->{$form->{"unit_old_$i"}}->{"factor"};
 
 296         $form->{"sellprice_$i"} *= $basefactor;
 
 297         $form->{"unit_old_$i"} = $form->{"selected_unit_$i"};
 
 300     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 302     $decimalplaces = ($dec > 2) ? $dec : 2;
 
 306                         $form->{"sellprice_$i"} * $form->{"discount_$i"} / 100,
 
 310       $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
 
 311     $linetotal = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
 
 312     my $real_sellprice = $form->{"sellprice_$i"} - $discount;
 
 315     my ($marge_font_start, $marge_font_end);
 
 317     $form->{"lastcost_$i"} *= 1;
 
 319     if ($real_sellprice && ($form->{"qty_$i"} * 1)) {
 
 320       $form->{"marge_percent_$i"}     = ($real_sellprice - $form->{"lastcost_$i"}) * 100 / $real_sellprice;
 
 321       $myconfig{"marge_percent_warn"} = 15 unless (defined($myconfig{"marge_percent_warn"}));
 
 323       if ($form->{"id_$i"} &&
 
 324           ($form->{"marge_percent_$i"} < (1 * $myconfig{"marge_percent_warn"}))) {
 
 325         $marge_font_start = "<font color=\"#ff0000\">";
 
 326         $marge_font_end   = "</font>";
 
 330       $form->{"marge_percent_$i"} = 0;
 
 333     my $marge_adjust_credit_note = $form->{type} eq 'credit_note' ? -1 : 1;
 
 334     $form->{"marge_absolut_$i"}  = ($real_sellprice - $form->{"lastcost_$i"}) * $form->{"qty_$i"} * $marge_adjust_credit_note;
 
 335     $form->{"marge_total"}      += $form->{"marge_absolut_$i"};
 
 336     $form->{"lastcost_total"}   += $form->{"lastcost_$i"} * $form->{"qty_$i"};
 
 337     $form->{"sellprice_total"}  += $real_sellprice * $form->{"qty_$i"};
 
 339     map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(marge_absolut marge_percent);
 
 341     # convert " to "
 
 342     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 343       qw(partnumber description unit unit_old);
 
 345 ########################################
 
 346     # Eintrag fuer Version 2.2.0 geaendert #
 
 347     # neue Optik im Rechnungsformular      #
 
 348 ########################################
 
 349     $column_data{runningnumber} =
 
 350       qq|<td><input name="runningnumber_$i" size="5" value="$i"></td>|;    # HuT
 
 351 ############## ENDE Neueintrag ##################
 
 353     $column_data{partnumber} =
 
 354       qq|<td><input name="partnumber_$i" size=12 value="$form->{"partnumber_$i"}"></td>|;
 
 356     if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
 
 357       $column_data{description} =
 
 358         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>|;
 
 360       $column_data{description} =
 
 361         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>|;
 
 364     (my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 365     $qty_dec = length $qty_dec;
 
 368         qq|<td align="right"><input name="qty_$i" size="5" value="|
 
 369       . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec) .qq|">|;
 
 370     if ($form->{"formel_$i"}) {
 
 371       $column_data{qty} .= qq|<button type="button" onclick="calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)">| . $locale->text('*/') . qq|</button>|
 
 372         . $cgi->hidden("-name" => "formel_$i", "-value" => $form->{"formel_$i"}) . $cgi->hidden("-name" => "alu_$i", "-value" => $form->{"alu_$i"});
 
 374     $column_data{qty} .= qq|</td>|;
 
 376         qq|<td align="right"><input name="ship_$i" size=5 value="|
 
 377       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
 
 380     my $is_part     = $form->{"inventory_accno_$i"};
 
 381     my $is_assembly = $form->{"assembly_$i"};
 
 382     my $is_assigned = $form->{"id_$i"};
 
 383     my $this_unit = $form->{"unit_$i"};
 
 384     if ($form->{"selected_unit_$i"} && $this_unit &&
 
 385         $all_units->{$form->{"selected_unit_$i"}} && $all_units->{$this_unit} &&
 
 386         ($all_units->{$form->{"selected_unit_$i"}}->{"base_unit"} eq $all_units->{$this_unit}->{"base_unit"})) {
 
 387       $this_unit = $form->{"selected_unit_$i"};
 
 388     } elsif (!$is_assigned ||
 
 389              ($is_part && !$this_unit && ($all_units->{$this_unit} && ($all_units->{$this_unit}->{"base_unit"} eq $all_units->{"kg"}->{"base_unit"})))) {
 
 393     $column_data{"unit"} = "<td>" .
 
 394        AM->unit_select_html($is_part || $is_assembly ? $dimension_units :
 
 395                             $is_assigned ? $service_units : $all_units,
 
 396                             "unit_$i", $this_unit,
 
 397                             $is_assigned ? $form->{"unit_$i"} : undef)
 
 400     # build in drop down list for pricesgroups
 
 401     if ($form->{"prices_$i"}) {
 
 402       if  ($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"}) {
 
 403         $price_tmp = $form->format_amount(\%myconfig, $form->{"price_new_$i"}, $decimalplaces);
 
 405         $price_tmp = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 408       $column_data{sellprice_pg} =
 
 409       qq|<td align="right"><select name="sellprice_pg_$i">$form->{"prices_$i"}</select></td>|;
 
 410       $column_data{sellprice} =
 
 411       qq|<td><input name="sellprice_$i" size="10" value="$price_tmp" onBlur=\"check_right_number_format(this)\"></td>|;
 
 414       # for last row and report
 
 415       # set pricegroup drop down list from report menu
 
 416       if ($form->{"sellprice_$i"} != 0) {
 
 418           qq|<option value="$form->{"sellprice_$i"}--$form->{"pricegroup_id_$i"}" selected>$form->{"pricegroup_$i"}</option>\n|;
 
 420         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 422         $column_data{sellprice_pg} =
 
 423           qq|<td align="right"><select name="sellprice_pg_$i">$prices</select></td>|;
 
 428         $column_data{sellprice_pg} = qq|<td align="right"> </td>|;
 
 431       $column_data{sellprice} =
 
 432       qq|<td><input name="sellprice_$i" size="10" onBlur=\"check_right_number_format(this)\" value="|
 
 433         . $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 437     $column_data{discount} =
 
 438         qq|<td align="right"><input name="discount_$i" size=3 value="|
 
 439       . $form->format_amount(\%myconfig, $form->{"discount_$i"})
 
 441     $column_data{linetotal} =
 
 442         qq|<td align="right">|
 
 443       . $form->format_amount(\%myconfig, $linetotal, 2)
 
 445     $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
 
 447 ########################################
 
 448     # Eintrag fuer Version 2.2.0 geaendert #
 
 449     # neue Optik im Rechnungsformular      #
 
 450 ########################################
 
 451     #     if ($lizenzen &&  $form->{type} eq "invoice" &&  $form->{vc} eq "customer") {
 
 452     #     $column_data{license} = qq|<td><select name="licensenumber_$i">$form->{"lizenzen_$i"}></select></td>|;
 
 455     #     if ($form->{type} !~ /_quotation/) {
 
 456     #     $column_data{serialnr} = qq|<td><input name="serialnumber_$i" size=10 value="$form->{"serialnumber_$i"}"></td>|;
 
 459     #     $column_data{projectnr} = qq|<td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}"></td>|;
 
 460 ############## ENDE Neueintrag ##################
 
 464         <tr valign="top" class="listrow$j">|;
 
 466     map { print "\n$column_data{$_}" } @column_index;
 
 469           $cgi->hidden("-name" => "unit_old_$i",
 
 470                        "-value" => $form->{"selected_unit_$i"})
 
 472           $cgi->hidden("-name" => "price_new_$i",
 
 473                        "-value" => $form->format_amount(\%myconfig, $form->{"price_new_$i"}))
 
 475     map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_}) . "\n"); }
 
 476         ("orderitems_id_$i", "bo_$i", "pricegroup_old_$i", "price_old_$i",
 
 477          "id_$i", "inventory_accno_$i", "bin_$i", "partsgroup_$i", "partnotes_$i",
 
 478          "income_accno_$i", "expense_accno_$i", "listprice_$i", "assembly_$i",
 
 479          "taxaccounts_$i", "ordnumber_$i", "transdate_$i", "cusordnumber_$i",
 
 480          "longdescription_$i", "basefactor_$i", "marge_absolut_$i", "marge_percent_$i", "lastcost_$i"));
 
 482 ########################################
 
 483     # Eintrag fuer Version 2.2.0 geaendert #
 
 484     # neue Optik im Rechnungsformular      #
 
 485 ########################################
 
 488       'style="display:none;"' if (!$form->{"show_details"});
 
 492         <tr  class="listrow$j" $row_style_attr>
 
 493           <td colspan="$colspan">
 
 495     if ($lizenzen && $form->{type} eq "invoice" && $form->{vc} eq "customer") {
 
 496       my $selected = $form->{"licensenumber_$i"};
 
 498       $form->{"lizenzen_$i"} =~ s/ selected//g;
 
 499       $form->{"lizenzen_$i"} =~
 
 500         s/value="${selected}"\>/value="${selected}" selected\>/;
 
 501       $lizenzen_quoted = $form->{"lizenzen_$i"};
 
 502       $lizenzen_quoted =~ s/\"/"/g;
 
 504         <b>Lizenz\#</b> <select name="licensenumber_$i" size="1">
 
 505         $form->{"lizenzen_$i"}
 
 507         <input type="hidden" name="lizenzen_$i" value="${lizenzen_quoted}">
 
 510     if ($form->{type} !~ /_quotation/) {
 
 512           <b>$serialnumber</b> <input name="serialnumber_$i" size="15" value="$form->{"serialnumber_$i"}">|;
 
 515     print qq|<b>$projectnumber</b> | .
 
 516       NTI($cgi->popup_menu('-name' => "project_id_$i",
 
 517                            '-values' => \@projectnumber_values,
 
 518                            '-labels' => \%projectnumber_labels,
 
 519                            '-default' => $form->{"project_id_$i"}));
 
 521     if ($form->{type} eq 'invoice' or $form->{type} =~ /order/) {
 
 523         ($form->{type} eq 'invoice')
 
 525         : 'reqdate';    # invoice uses a different term for the same thing.
 
 527         <b>${$reqdate_term}</b> <input name="${reqdate_term}_$i" size="11" onBlur="check_right_date_format(this)" value="$form->{"${reqdate_term}_$i"}">
 
 530     my $subtotalchecked = ($form->{"subtotal_$i"}) ? "checked" : "";
 
 532           <b>|.$locale->text('Subtotal').qq|</b> <input type="checkbox" name="subtotal_$i" value="1" "$subtotalchecked">
 
 535     if ($form->{"id_$i"} && $is_sales) {
 
 537           ${marge_font_start}<b>| . $locale->text('Ertrag') . qq|</b> $form->{"marge_absolut_$i"}  $form->{"marge_percent_$i"} % ${marge_font_end}
 
 538            <b>| . $locale->text('LP') . qq|</b> | . $form->format_amount(\%myconfig, $form->{"listprice_$i"}, 2) . qq|
 
 539            <b>| . $locale->text('EK') . qq|</b> | . $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, 2);
 
 547 ############## ENDE Neueintrag ##################
 
 549     map { $form->{"${_}_base"} += $linetotal }
 
 550       (split(/ /, $form->{"taxaccounts_$i"}));
 
 552     $form->{invsubtotal} += $linetotal;
 
 561   if (0 != ($form->{sellprice_total} * 1)) {
 
 562     $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100;
 
 565   $lxdebug->leave_sub();
 
 568 ##################################################
 
 569 # build html-code for pricegroups in variable $form->{prices_$j}
 
 572   $lxdebug->enter_sub();
 
 573   my $rowcount = shift;
 
 574   for $j (1 .. $rowcount) {
 
 575     my $pricegroup_old = $form->{"pricegroup_old_$i"};
 
 576     if ($form->{PRICES}{$j}) {
 
 578       $prices = '<option value="--">' . $locale->text("none (pricegroup)") . '</option>';
 
 580       foreach $item (@{ $form->{PRICES}{$j} }) {
 
 582         #$price = $form->round_amount($myconfig,  $item->{price}, 5);
 
 583         #$price = $form->format_amount($myconfig, $item->{price}, 2);
 
 584         $price         = $item->{price};
 
 585         $pricegroup_id = $item->{pricegroup_id};
 
 586         $pricegroup    = $item->{pricegroup};
 
 588         # build drop down list for pricegroups
 
 590           qq|<option value="$price--$pricegroup_id"$item->{selected}>$pricegroup</option>\n|;
 
 595         #               $form->{"${_}_$j"} =
 
 596         #               $form->format_amount(\%myconfig, $form->{"${_}_$j"})
 
 597         #              } qw(sellprice price_new price_old);
 
 599         # set new selectedpricegroup_id and prices for "Preis"
 
 600         if ($item->{selected} && ($pricegroup_id != 0)) {
 
 601           $form->{"pricegroup_old_$j"} = $pricegroup_id;
 
 602           $form->{"price_new_$j"}      = $price;
 
 603           $form->{"sellprice_$j"}      = $price;
 
 605         if ($pricegroup_id == 0) {
 
 606           $form->{"price_new_$j"} = $form->{"sellprice_$j"};
 
 609       $form->{"prices_$j"} = $prices;
 
 612   $lxdebug->leave_sub();
 
 616   $lxdebug->enter_sub();
 
 617   @column_index = qw(ndx partnumber description onhand unit sellprice);
 
 619   $column_data{ndx}        = qq|<th> </th>|;
 
 620   $column_data{partnumber} =
 
 621     qq|<th class="listheading">| . $locale->text('Number') . qq|</th>|;
 
 622   $column_data{description} =
 
 623     qq|<th class="listheading">| . $locale->text('Part Description') . qq|</th>|;
 
 624   $column_data{sellprice} =
 
 625     qq|<th class="listheading">| . $locale->text('Price') . qq|</th>|;
 
 626   $column_data{onhand} =
 
 627     qq|<th class="listheading">| . $locale->text('Qty') . qq|</th>|;
 
 629     qq|<th class="listheading">| . $locale->text('Unit') . qq|</th>|;
 
 630   # list items with radio button on a form
 
 633   $title   = $locale->text('Select from one of the items below');
 
 634   $colspan = $#column_index + 1;
 
 639 <form method="post" action="$form->{script}">
 
 643     <th class="listtop" colspan="$colspan">$title</th>
 
 646   <tr class="listheading">|;
 
 648   map { print "\n$column_data{$_}" } @column_index;
 
 653   foreach $ref (@{ $form->{item_list} }) {
 
 654     $checked = ($i++) ? "" : "checked";
 
 657       if ($ref->{inventory_accno} > 0) {
 
 658         $ref->{"lizenzen"} = qq|<option></option>|;
 
 659         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 660           $ref->{"lizenzen"} .=
 
 661             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 663         $ref->{"lizenzen"} .= qq|<option value="-1">Neue Lizenz</option>|;
 
 664         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 668     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 672       $form->round_amount($ref->{sellprice} * (1 - $form->{tradediscount}), 2);
 
 674       qq|<td><input name="ndx" class="radio" type="radio" value="$i" $checked></td>|;
 
 675     $column_data{partnumber} =
 
 676       qq|<td><input name="new_partnumber_$i" type="hidden" value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 677     $column_data{description} =
 
 678       qq|<td><input name="new_description_$i" type="hidden" value="$ref->{description}">$ref->{description}</td>|;
 
 679     $column_data{sellprice} =
 
 680       qq|<td align="right"><input name="new_sellprice_$i" type="hidden" value="$ref->{sellprice}">|
 
 681       . $form->format_amount(\%myconfig, $ref->{sellprice}, 2, " ")
 
 683     $column_data{onhand} =
 
 684       qq|<td align="right"><input name="new_onhand_$i" type="hidden" value="$ref->{onhand}">|
 
 685       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 688       qq|<td>$ref->{unit}</td>|;
 
 692 <tr class=listrow$j>|;
 
 694     map { print "\n$column_data{$_}" } @column_index;
 
 699       qw(bin listprice inventory_accno income_accno expense_accno unit weight
 
 700          assembly taxaccounts partsgroup formel longdescription not_discountable
 
 701          part_payment_id partnotes id lastcost);
 
 702     push(@new_fields, "lizenzen") if ($lizenzen);
 
 704     print join "\n", map { $cgi->hidden("-name" => "new_${_}_$i", "-value" => $ref->{$_}) } @new_fields;
 
 709 <tr><td colspan="8"><hr size="3" noshade></td></tr>
 
 712 <input name="lastndx" type="hidden" value="$i">
 
 716   # delete action variable
 
 717   map { delete $form->{$_} } qw(action item_list header);
 
 719   # save all other form variables
 
 720   foreach $key (keys %${form}) {
 
 721     $form->{$key} =~ s/\"/"/g;
 
 722     print qq|<input name="$key" type="hidden" value="$form->{$key}">\n|;
 
 726 <input type="hidden" name="nextsub" value="item_selected">
 
 729 <input class="submit" type="submit" name="action" value="|
 
 730     . $locale->text('Continue') . qq|">
 
 737   $lxdebug->leave_sub();
 
 741   $lxdebug->enter_sub();
 
 743   # replace the last row with the checked row
 
 744   $i = $form->{rowcount};
 
 745   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 751   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 752   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 754   # if there was a price entered, override it
 
 755   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 757   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} }
 
 758     qw(id partnumber description sellprice listprice inventory_accno
 
 759        income_accno expense_accno bin unit weight assembly taxaccounts
 
 760        partsgroup formel longdescription not_discountable partnotes lastcost);
 
 761   if ($form->{"part_payment_id_$i"} ne "") {
 
 762     $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 766     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 769   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 771   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 774     $form->{"sellprice_$i"} = $sellprice;
 
 777     # if there is an exchange rate adjust sellprice
 
 778     if (($form->{exchangerate} * 1) != 0) {
 
 779       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 780       $form->{"sellprice_$i"} =
 
 781         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 785   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 786     qw(sellprice listprice weight);
 
 788   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 789   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 791   if ($form->{"not_discountable_$i"}) {
 
 792     $form->{"discount_$i"} = 0;
 
 796     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 798   map { $form->{"${_}_base"} += $amount }
 
 799     (split / /, $form->{"taxaccounts_$i"});
 
 800   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 801     $form->{"taxaccounts_$i"}
 
 802     if !$form->{taxincluded};
 
 804   $form->{creditremaining} -= $amount;
 
 806   $form->{"runningnumber_$i"} = $i;
 
 808   # delete all the new_ variables
 
 809   for $i (1 .. $form->{lastndx}) {
 
 810     map { delete $form->{"new_${_}_$i"} }
 
 811       qw(partnumber description sellprice bin listprice inventory_accno income_accno expense_accno unit assembly taxaccounts id);
 
 814   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 819       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 820   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 822   # get pricegroups for parts
 
 823   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 825   # build up html code for prices_$i
 
 826   set_pricegroup($form->{rowcount});
 
 830   $lxdebug->leave_sub();
 
 834   $lxdebug->enter_sub();
 
 837   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 838   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
 841   delete $form->{action};
 
 843   # save all other form variables in a previousform variable
 
 844   foreach $key (keys %$form) {
 
 847     $form->{$key} =~ s/&/%26/g;
 
 848     $previousform .= qq|$key=$form->{$key}&|;
 
 851   $previousform = $form->escape($previousform, 1);
 
 853   $i = $form->{rowcount};
 
 854   map { $form->{"${_}_$i"} =~ s/\"/"/g } qw(partnumber description);
 
 861 <h4 class="error">| . $locale->text('Item not on file!') . qq|
 
 864 | . $locale->text('What type of item is this?') . qq|</h4>
 
 866 <form method="post" action="ic.pl">
 
 870   <input class="radio" type="radio" name="item" value="part" checked> |
 
 871     . $locale->text('Part') . qq|<br>
 
 872   <input class="radio" type="radio" name="item" value="service"> |
 
 873     . $locale->text('Service');
 
 874 print $cgi->hidden("-name" => "previousform", "-value" => $previousform);
 
 875 map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } 
 
 876      qw(rowcount vc login password));
 
 877      map({ print($cgi->hidden("-name" => $_, "-value" => $form->{"$__$i"})); }
 
 878      ("partnumber", "description"));
 
 879 print $cgi->hidden("-name" => "taxaccount2", "-value" => $form->{taxaccounts});
 
 882 <input type="hidden" name="nextsub" value="add">
 
 885 <input class="submit" type="submit" name="action" value="|
 
 886     . $locale->text('Continue') . qq|">
 
 893   $lxdebug->leave_sub();
 
 897   $lxdebug->enter_sub();
 
 901   my $new_rowcount = $form->{"rowcount"} * 1 + 1;
 
 902   $form->{"project_id_${new_rowcount}"} = $form->{"globalproject_id"};
 
 904   $form->language_payment(\%myconfig);
 
 906   # if we have a display_form
 
 907   if ($form->{display_form}) {
 
 908     call_sub($form->{"display_form"});
 
 912   Common::webdav_folder($form) if ($webdav);
 
 914   #   if (   $form->{print_and_post}
 
 915   #       && $form->{second_run}
 
 916   #       && ($form->{action} eq "display_form")) {
 
 917   #     for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
 918   #     $old_form->{rowcount}++;
 
 920   #     #$form->{rowcount}--;
 
 921   #     #$form->{rowcount}--;
 
 923   #     $form->{print_and_post} = 0;
 
 925   #     &print_form($old_form);
 
 929   #   $form->{action}   = "";
 
 930   #   $form->{resubmit} = 0;
 
 932   #   if ($form->{print_and_post} && !$form->{second_run}) {
 
 933   #     $form->{second_run} = 1;
 
 934   #     $form->{action}     = "display_form";
 
 935   #     $form->{rowcount}--;
 
 936   #     my $rowcount = $form->{rowcount};
 
 938   #     # get pricegroups for parts
 
 939   #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 941   #     # build up html code for prices_$i
 
 942   #     set_pricegroup($rowcount);
 
 944   #     $form->{resubmit} = 1;
 
 949   $numrows    = ++$form->{rowcount};
 
 950   $subroutine = "display_row";
 
 952   if ($form->{item} eq 'part') {
 
 954     #set preisgruppenanzahl
 
 955     $numrows    = $form->{price_rows};
 
 956     $subroutine = "price_row";
 
 958     &{$subroutine}($numrows);
 
 960     $numrows    = ++$form->{makemodel_rows};
 
 961     $subroutine = "makemodel_row";
 
 963   if ($form->{item} eq 'assembly') {
 
 964     $numrows    = $form->{price_rows};
 
 965     $subroutine = "price_row";
 
 967     &{$subroutine}($numrows);
 
 969     $numrows    = ++$form->{makemodel_rows};
 
 970     $subroutine = "makemodel_row";
 
 972     # create makemodel rows
 
 973     &{$subroutine}($numrows);
 
 975     $numrows    = ++$form->{assembly_rows};
 
 976     $subroutine = "assembly_row";
 
 978   if ($form->{item} eq 'service') {
 
 979     $numrows    = $form->{price_rows};
 
 980     $subroutine = "price_row";
 
 982     &{$subroutine}($numrows);
 
 988   &{$subroutine}($numrows) if $numrows;
 
 992   $lxdebug->leave_sub();
 
 996   $lxdebug->enter_sub();
 
1000     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_absolut marge_percent lastcost )
 
1004   # remove any makes or model rows
 
1005   if ($form->{item} eq 'part') {
 
1006     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1007       qw(listprice sellprice lastcost weight rop);
 
1009     @flds = (make, model);
 
1010     for my $i (1 .. ($form->{makemodel_rows})) {
 
1011       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
1015         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1020     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
1021     $form->{makemodel_rows} = $count;
 
1023   } elsif ($form->{item} eq 'assembly') {
 
1025     $form->{sellprice} = 0;
 
1026     $form->{weight}    = 0;
 
1027     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1028       qw(listprice rop stock);
 
1031       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
 
1033     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
1034       if ($form->{"qty_$i"}) {
 
1038         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1040         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1042         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
1044         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
 
1045         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
1050     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
1052     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
1053     $form->{assembly_rows} = $count;
 
1056     @flds  = qw(make model);
 
1059     for my $i (1 .. ($form->{makemodel_rows})) {
 
1060       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
1064         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1069     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
1070     $form->{makemodel_rows} = $count;
 
1072   } elsif ($form->{item} eq 'service') {
 
1073     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(listprice sellprice lastcost);
 
1077     # this section applies to invoices and orders
 
1078     # remove any empty numbers
 
1079     if ($form->{rowcount}) {
 
1080       for my $i (1 .. $form->{rowcount} - 1) {
 
1081         if ($form->{"partnumber_$i"}) {
 
1085           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1088             if ($form->{"licensenumber_$i"} == -1) {
 
1096       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
1097       $form->{rowcount} = $count;
 
1099       $form->{creditremaining} -= &invoicetotal;
 
1106   if (   $form->{type} =~ (/sales_quotation/)
 
1107       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
1108       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
1109       or ($form->{type} =~ /sales_order/)) {
 
1111     # get pricegroups for parts
 
1112     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1114     # build up html code for prices_$i
 
1115     set_pricegroup($form->{rowcount});
 
1121   $lxdebug->leave_sub();
 
1125   $lxdebug->enter_sub();
 
1127   $form->{oldinvtotal} = 0;
 
1129   # add all parts and deduct paid
 
1130   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
1132   my ($amount, $sellprice, $discount, $qty);
 
1134   for my $i (1 .. $form->{rowcount}) {
 
1135     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
1136     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
1137     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1139     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
1141     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
1142     map { $form->{"${_}_base"} += $amount }
 
1143       (split (/ /, $form->{"taxaccounts_$i"}));
 
1144     $form->{oldinvtotal} += $amount;
 
1147   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1148     split(/ /, $form->{taxaccounts})
 
1149     if !$form->{taxincluded};
 
1151   $form->{oldtotalpaid} = 0;
 
1152   for $i (1 .. $form->{paidaccounts}) {
 
1153     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
1156   $lxdebug->leave_sub();
 
1159   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1162 sub validate_items {
 
1163   $lxdebug->enter_sub();
 
1165   # check if items are valid
 
1166   if ($form->{rowcount} == 1) {
 
1171   for $i (1 .. $form->{rowcount} - 1) {
 
1172     $form->isblank("partnumber_$i",
 
1173                    $locale->text('Number missing in Row') . " $i");
 
1176   $lxdebug->leave_sub();
 
1180   $lxdebug->enter_sub();
 
1181   if ($form->{second_run}) {
 
1182     $form->{print_and_post} = 0;
 
1184   $form->{ordnumber} = $form->{invnumber};
 
1186   $form->{old_employee_id} = $form->{employee_id};
 
1187   $form->{old_salesman_id} = $form->{salesman_id};
 
1189   map { delete $form->{$_} } qw(id printed emailed queued);
 
1190   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
1191     $form->{title} = $locale->text('Add Purchase Order');
 
1192     $form->{vc}    = 'vendor';
 
1193     $form->{type}  = 'purchase_order';
 
1196   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
1197     $form->{title} = $locale->text('Add Sales Order');
 
1198     $form->{vc}    = 'customer';
 
1199     $form->{type}  = 'sales_order';
 
1202   $form->{script} = 'oe.pl';
 
1204   $form->{shipto} = 1;
 
1206   $form->{rowcount}--;
 
1208   $form->{cp_id} *= 1;
 
1210   require "bin/mozilla/$form->{script}";
 
1211   my $script = $form->{"script"};
 
1213   $script =~ s|.pl$||;
 
1214   $locale = new Locale($language, $script);
 
1216   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1218   $currency = $form->{currency};
 
1222   $form->{currency}     = $currency;
 
1223   $form->{exchangerate} = "";
 
1224   $form->{forex}        = "";
 
1225   $form->{exchangerate} = $exchangerate
 
1229                     $form->check_exchangerate(
 
1230                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1233   for $i (1 .. $form->{rowcount}) {
 
1234     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
1235                                                      $form->{"${_}_${i}"})
 
1236             if ($form->{"${_}_${i}"}) }
 
1237         qw(ship qty sellprice listprice basefactor));
 
1243   $lxdebug->leave_sub();
 
1247   $lxdebug->enter_sub();
 
1248   if ($form->{second_run}) {
 
1249     $form->{print_and_post} = 0;
 
1251   map { delete $form->{$_} } qw(id printed emailed queued);
 
1253   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
1254     $form->{title} = $locale->text('Add Request for Quotation');
 
1255     $form->{vc}    = 'vendor';
 
1256     $form->{type}  = 'request_quotation';
 
1259   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
1260     $form->{title} = $locale->text('Add Quotation');
 
1261     $form->{vc}    = 'customer';
 
1262     $form->{type}  = 'sales_quotation';
 
1266   $form->{cp_id} *= 1;
 
1268   $form->{script} = 'oe.pl';
 
1270   $form->{shipto} = 1;
 
1272   $form->{rowcount}--;
 
1274   require "bin/mozilla/$form->{script}";
 
1276   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1278   $currency = $form->{currency};
 
1282   $form->{currency}     = $currency;
 
1283   $form->{exchangerate} = "";
 
1284   $form->{forex}        = "";
 
1285   $form->{exchangerate} = $exchangerate
 
1289                     $form->check_exchangerate(
 
1290                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1293   for $i (1 .. $form->{rowcount}) {
 
1294     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
1295                                                      $form->{"${_}_${i}"})
 
1296             if ($form->{"${_}_${i}"}) }
 
1297         qw(ship qty sellprice listprice basefactor));
 
1303   $lxdebug->leave_sub();
 
1306 sub request_for_quotation {
 
1311   $lxdebug->enter_sub();
 
1312   if ($form->{second_run}) {
 
1313     $form->{print_and_post} = 0;
 
1314     $form->{resubmit}       = 0;
 
1317   $form->{email} = $form->{shiptoemail} if $form->{shiptoemail} && $form->{formname} =~ /(pick|packing|bin)_list/;
 
1319   if ($form->{"cp_id"} && !$form->{"email"}) {
 
1320     CT->get_contact(\%myconfig, $form);
 
1321     $form->{"email"} = $form->{"cp_email"};
 
1324   $title = $locale->text('E-mail') . " " . $form->get_formname_translation();
 
1326   $form->{oldmedia} = $form->{media};
 
1327   $form->{media}    = "email";
 
1329   my $attachment_filename = $form->generate_attachment_filename();
 
1331   $form->{"fokus"} = $form->{"email"} ? "Form.subject" : "Form.email";
 
1334   my (@dont_hide_key_list, %dont_hide_key, @hidden_keys);
 
1335   @dont_hide_key_list = qw(action email cc bcc subject message formname sendmode format header override);
 
1336   @dont_hide_key{@dont_hide_key_list} = (1) x @dont_hide_key_list;
 
1337   @hidden_keys = grep { !$dont_hide_key{$_} } grep { !ref $form->{$_} } keys %$form;
 
1339   print $form->parse_html_template('generic/edit_email', 
 
1341                                     a_filename      => $attachment_filename,
 
1342                                     _print_options_ => print_options({ 'inline' => 1 }),
 
1343                                     HIDDEN          => [ map +{ name => $_, value => $form->{$_} }, @hidden_keys ],
 
1344                                     SHOW_BCC        => $myconfig{role} eq 'admin' });
 
1346   $lxdebug->leave_sub();
 
1350   $lxdebug->enter_sub();
 
1352   my $callback = $form->{script} . "?action=edit";
 
1353   map({ $callback .= "\&${_}=" . E($form->{$_}); }
 
1354       qw(login password type id));
 
1356   print_form("return");
 
1358   Common->save_email_status(\%myconfig, $form);
 
1360   $form->{callback} = $callback;
 
1363   $lxdebug->leave_sub();
 
1366 # generate the printing options displayed at the bottom of oe and is forms.
 
1367 # this function will attempt to guess what type of form is displayed, and will generate according options
 
1370 # this version builds the arrays of options pretty directly. if you have trouble understanding how,
 
1371 # the opthash function builds hashrefs which are then pieced together for the template arrays.
 
1372 # unneeded options are "undef"ed out, and then grepped out. 
 
1374 # the inline options is untested, but intended to be used later in metatemplating
 
1376   $lxdebug->enter_sub();
 
1382   # names 3 parameters and returns a hashref, for use in templates
 
1383   sub opthash { +{ value => shift, selected => shift, oname => shift } }
 
1384   (@FORMNAME, @FORMNAME, @LANGUAGE_ID, @FORMAT, @SENDMODE, @MEDIA, @PRINTER_ID, @SELECTS) = ();
 
1386   # note: "||"-selection is only correct for values where "0" is _not_ a correct entry
 
1387   $form->{sendmode}   = "attachment";
 
1388   $form->{format}     = $form->{format} || $myconfig{template_format} || "pdf";
 
1389   $form->{copies}     = $form->{copies} || $myconfig{copies} || 3;
 
1390   $form->{media}      = $form->{media} || $myconfig{default_media} || "screen";
 
1391   $form->{printer_id} = defined $form->{printer_id}           ? $form->{printer_id} :
 
1392                         defined $myconfig{default_printer_id} ? $myconfig{default_printer_id} : "";
 
1394   $form->{PD}{ $form->{formname} } = "selected";
 
1395   $form->{DF}{ $form->{format} }   = "selected";
 
1396   $form->{OP}{ $form->{media} }    = "selected";
 
1397   $form->{SM}{ $form->{formname} } = "selected";
 
1399   push @FORMNAME, grep $_,
 
1400     ($form->{type} eq 'purchase_order') ? (
 
1401       opthash("purchase_order", $form->{PD}{purchase_order}, $locale->text('Purchase Order')),
 
1402       opthash("bin_list", $form->{PD}{bin_list}, $locale->text('Bin List')) 
 
1404     ($form->{type} eq 'credit_note') ?
 
1405       opthash("credit_note", $form->{PD}{credit_note}, $locale->text('Credit Note')) : undef,
 
1406     ($form->{type} eq 'sales_order') ? (
 
1407       opthash("sales_order", $form->{PD}{sales_order}, $locale->text('Confirmation')),
 
1408       opthash("proforma", $form->{PD}{proforma}, $locale->text('Proforma Invoice')),
 
1409       opthash("pick_list", $form->{PD}{pick_list}, $locale->text('Pick List')),
 
1410       opthash("packing_list", $form->{PD}{packing_list}, $locale->text('Packing List')) 
 
1412     ($form->{type} =~ /_quotation$/) ?
 
1413       opthash("$`_quotation", $form->{PD}{"$`_quotation"}, $locale->text('Quotation')) : undef,
 
1414     ($form->{type} eq 'invoice') ? (
 
1415       opthash("invoice", $form->{PD}{invoice}, $locale->text('Invoice')),
 
1416       opthash("proforma", $form->{PD}{proforma}, $locale->text('Proforma Invoice')),
 
1417       opthash("packing_list", $form->{PD}{packing_list}, $locale->text('Packing List'))
 
1419     ($form->{type} eq 'invoice' && $form->{storno}) ? (
 
1420       opthash("storno_invoice", $form->{PD}{storno_invoice}, $locale->text('Storno Invoice')),
 
1421       opthash("storno_packing_list", $form->{PD}{storno_packing_list}, $locale->text('Storno Packing List')) 
 
1423     ($form->{type} eq 'credit_note') ?
 
1424       opthash("credit_note", $form->{PD}{credit_note}, $locale->text('Credit Note')) : undef;
 
1427     opthash("attachment", $form->{SM}{attachment}, $locale->text('Attachment')),
 
1428     opthash("inline", $form->{SM}{inline}, $locale->text('In-line'))
 
1429       if ($form->{media} eq 'email');
 
1431   push @MEDIA, grep $_,
 
1432       opthash("screen", $form->{OP}{screen}, $locale->text('Screen')),
 
1433     (scalar @{ $form->{printers} } && $latex_templates) ?
 
1434       opthash("printer", $form->{OP}{printer}, $locale->text('Printer')) : undef,
 
1435     ($latex_templates && !$options->{no_queue}) ?
 
1436       opthash("queue", $form->{OP}{queue}, $locale->text('Queue')) : undef
 
1437         if ($form->{media} ne 'email');
 
1439   push @FORMAT, grep $_,
 
1440     ($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)
 
1441      && !$options->{no_opendocument_pdf}) ?
 
1442       opthash("opendocument_pdf", $form->{DF}{"opendocument_pdf"}, $locale->text("PDF (OpenDocument/OASIS)")) : undef,
 
1443     ($latex_templates) ?
 
1444       opthash("pdf", $form->{DF}{pdf}, $locale->text('PDF')) : undef,
 
1445     ($latex_templates && !$options->{no_postscript}) ?
 
1446       opthash("postscript", $form->{DF}{postscript}, $locale->text('Postscript')) : undef,
 
1447     (!$options->{no_html}) ?
 
1448       opthash("html", $form->{DF}{html}, "HTML") : undef,
 
1449     ($opendocument_templates && !$options->{no_opendocument}) ?
 
1450       opthash("opendocument", $form->{DF}{opendocument}, $locale->text("OpenDocument/OASIS")) : undef;
 
1453     map { opthash($_->{id}, ($_->{id} eq $form->{language} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} }
 
1454       if (ref $form->{languages} eq 'ARRAY');
 
1457     map { opthash($_->{id}, ($_->{id} eq $form->{printer_id} ? 'selected' : ''), $_->{printer_description}) } +{}, @{ $form->{printers} }
 
1458       if ((ref $form->{printers} eq 'ARRAY') && scalar @{ $form->{printers } });
 
1460   @SELECTS = map { sname => lc $_, DATA => \@$_, show => scalar @$_ }, qw(FORMNAME LANGUAGE_ID FORMAT SENDMODE MEDIA PRINTER_ID);
 
1462   my %dont_display_groupitems = (
 
1467     display_copies       => scalar @{ $form->{printers} } && $latex_templates && $form->{media} ne 'email',
 
1468     display_remove_draft => (!$form->{id} && $form->{draft_id}),
 
1469     display_groupitems   => !$dont_display_groupitems{$form->{type}},
 
1470     groupitems_checked   => $form->{groupitems} ? "checked" : '',
 
1471     remove_draft_checked => $form->{remove_draft} ? "checked" : ''
 
1474   my $print_options = $form->parse_html_template("generic/print_options", { SELECTS  => \@SELECTS, %template_vars } );
 
1476   if ($options->{inline}) {
 
1477     $lxdebug->leave_sub() and return $print_options;
 
1479     print $print_options; $lxdebug->leave_sub();
 
1484   $lxdebug->enter_sub();
 
1486   if ($form->{print_nextsub}) {
 
1487     call_sub($form->{print_nextsub});
 
1488     $lxdebug->leave_sub();
 
1492   # if this goes to the printer pass through
 
1493   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1494     $form->error($locale->text('Select postscript or PDF!'))
 
1495       if ($form->{format} !~ /(postscript|pdf)/);
 
1497     $old_form = new Form;
 
1498     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1501   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1502     if ($form->{formname} eq "proforma") {
 
1503       $form->{proforma} = 1;
 
1505     $form->{print_and_save} = 1;
 
1506     my $formname = $form->{formname};
 
1508     $form->{formname} = $formname;
 
1513   &print_form($old_form);
 
1515   $lxdebug->leave_sub();
 
1519   $lxdebug->enter_sub();
 
1520   my ($old_form) = @_;
 
1524   $numberfld = "invnumber";
 
1527     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1529   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1530   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1532   if ($form->{formname} eq "invoice") {
 
1533     $form->{label} = $locale->text('Invoice');
 
1535   if ($form->{formname} eq "packing_list") {
 
1537     # this is from an invoice
 
1538     $form->{label} = $locale->text('Packing List');
 
1540   if ($form->{formname} eq 'sales_order') {
 
1543     $form->{"${inv}date"} = $form->{transdate};
 
1544     $form->{label}        = $locale->text('Confirmation');
 
1545     $numberfld            = "sonumber";
 
1549   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1552     $form->{"${inv}date"} = $form->{invdate};
 
1553     $form->{label}        = $locale->text('Proforma Invoice');
 
1554     $numberfld            = "sonumber";
 
1558   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1561     $form->{"${inv}date"} = $form->{transdate};
 
1562     $form->{"invdate"}    = $form->{transdate};
 
1563     $form->{invnumber}    = $form->{ordnumber};
 
1564     $form->{label}        = $locale->text('Proforma Invoice');
 
1565     $numberfld            = "sonumber";
 
1569   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1571     # we use the same packing list as from an invoice
 
1574     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1575     $form->{label} = $locale->text('Packing List');
 
1577     # set invnumber for template packing_list 
 
1578     $form->{invnumber}   = $form->{ordnumber};
 
1580   if ($form->{formname} eq 'pick_list') {
 
1583     $form->{"${inv}date"} =
 
1584       ($form->{transdate}) ? $form->{transdate} : $form->{invdate};
 
1585     $form->{label} = $locale->text('Pick List');
 
1586     $order = 1 unless $form->{type} eq 'invoice';
 
1588   if ($form->{formname} eq 'purchase_order') {
 
1591     $form->{"${inv}date"} = $form->{transdate};
 
1592     $form->{label}        = $locale->text('Purchase Order');
 
1593     $numberfld            = "ponumber";
 
1596   if ($form->{formname} eq 'bin_list') {
 
1599     $form->{"${inv}date"} = $form->{transdate};
 
1600     $form->{label}        = $locale->text('Bin List');
 
1603   if ($form->{formname} eq 'sales_quotation') {
 
1606     $form->{"${inv}date"} = $form->{transdate};
 
1607     $form->{label}        = $locale->text('Quotation');
 
1608     $numberfld            = "sqnumber";
 
1612   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1615     $form->{"${inv}date"} = $form->{transdate};
 
1616     $form->{"invdate"}    = $form->{transdate};
 
1617     $form->{label}        = $locale->text('Proforma Invoice');
 
1618     $numberfld            = "sqnumber";
 
1622   if ($form->{formname} eq 'request_quotation') {
 
1625     $form->{"${inv}date"} = $form->{transdate};
 
1626     $form->{label}        = $locale->text('RFQ');
 
1627     $numberfld            = "rfqnumber";
 
1631   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1632     if ($form->{media} eq 'email');
 
1633   $form->isblank("${inv}date",
 
1634            $locale->text($form->{label}) 
 
1636            . $locale->text(' Date missing!'));
 
1638   # $locale->text('Invoice Number missing!')
 
1639   # $locale->text('Invoice Date missing!')
 
1640   # $locale->text('Packing List Number missing!')
 
1641   # $locale->text('Packing List Date missing!')
 
1642   # $locale->text('Order Number missing!')
 
1643   # $locale->text('Order Date missing!')
 
1644   # $locale->text('Quotation Number missing!')
 
1645   # $locale->text('Quotation Date missing!')
 
1648   $form->{what_done} = $form->{formname};
 
1649   if (!$form->{"${inv}number"} && !$form->{preview} && !$form->{id}) {
 
1650     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1651     if ($form->{media} ne 'email') {
 
1653       # get pricegroups for parts
 
1654       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1656       # build up html code for prices_$i
 
1657       set_pricegroup($form->{rowcount});
 
1659       $form->{rowcount}--;
 
1661       call_sub($display_form);
 
1662       # saving the history
 
1663           if(!exists $form->{addition}) {
 
1664         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber}; 
 
1665             $form->{addition} = "PRINTED";
 
1666             $form->save_history($form->dbconnect(\%myconfig));
 
1668       # /saving the history
 
1675   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1676   my ($saved_email, $saved_cc, $saved_bcc) =
 
1677     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1679   $language_saved = $form->{language_id};
 
1680   $payment_id_saved = $form->{payment_id};
 
1681   $salesman_id_saved = $form->{salesman_id};
 
1682   $cp_id_saved = $form->{cp_id};
 
1684   call_sub("$form->{vc}_details");
 
1686   $form->{language_id} = $language_saved;
 
1687   $form->{payment_id} = $payment_id_saved;
 
1689   $form->{"email"} = $saved_email if ($saved_email);
 
1690   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1691   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1693   if (!$cp_id_saved) {
 
1694     # No contact was selected. Delete all contact variables because
 
1695     # IS->customer_details() and IR->vendor_details() get the default
 
1697     map({ delete($form->{$_}); } grep(/^cp_/, keys(%{ $form })));
 
1700   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
1701   if ($form->{"language_id"}) {
 
1702     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) =
 
1703       AM->get_language_details(\%myconfig, $form, $form->{language_id});
 
1705     $output_dateformat = $myconfig{"dateformat"};
 
1706     $output_numberformat = $myconfig{"numberformat"};
 
1707     $output_longdates = 1;
 
1710   ($form->{employee}) = split /--/, $form->{employee};
 
1712   # create the form variables
 
1714     OE->order_details(\%myconfig, \%$form);
 
1716     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1719   $form->get_salesman(\%myconfig, $salesman_id_saved);
 
1721   if ($form->{shipto_id}) {
 
1722     $form->get_shipto(\%myconfig);
 
1725   @a = qw(name street zipcode city country);
 
1729   # if there is no shipto fill it in from billto
 
1730   foreach $item (@a) {
 
1731     if ($form->{"shipto$item"}) {
 
1738     if (   $form->{formname} eq 'purchase_order'
 
1739         || $form->{formname} eq 'request_quotation') {
 
1740       $form->{shiptoname}   = $myconfig{company};
 
1741       $form->{shiptostreet} = $myconfig{address};
 
1743       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1747   $form->{notes} =~ s/^\s+//g;
 
1749   $form->{templates} = "$myconfig{templates}";
 
1751   delete $form->{printer_command};
 
1753   $form->{language} = $form->get_template_language(\%myconfig);
 
1756   if ($form->{media} ne 'email') {
 
1757     $printer_code = $form->get_printer_code(\%myconfig);
 
1758     if ($printer_code ne "") {
 
1759       $printer_code = "_" . $printer_code;
 
1763   if ($form->{language} ne "") {
 
1764     map({ $form->{"unit"}->[$_] =
 
1765             AM->translate_units($form, $form->{"language"},
 
1766                                 $form->{"unit"}->[$_], $form->{"qty"}->[$_]); }
 
1767         (0..scalar(@{$form->{"unit"}}) - 1));
 
1768     $form->{language} = "_" . $form->{language};
 
1772   format_dates($output_dateformat, $output_longdates,
 
1773                qw(invdate orddate quodate pldate duedate reqdate transdate
 
1774                   shippingdate deliverydate validitydate paymentdate
 
1775                   datepaid transdate_oe deliverydate_oe
 
1776                   employee_startdate employee_enddate
 
1778                grep({ /^datepaid_\d+$/ ||
 
1779                         /^transdate_oe_\d+$/ ||
 
1780                         /^deliverydate_oe_\d+$/ ||
 
1782                         /^deliverydate_\d+$/ ||
 
1786   reformat_numbers($output_numberformat, 2,
 
1787                    qw(invtotal ordtotal quototal subtotal linetotal
 
1788                       listprice sellprice netprice discount
 
1789                       tax taxbase total paid),
 
1790                    grep({ /^linetotal_\d+$/ ||
 
1791                             /^listprice_\d+$/ ||
 
1792                             /^sellprice_\d+$/ ||
 
1802   reformat_numbers($output_numberformat, undef,
 
1807   $form->{IN} = "$form->{formname}$form->{language}${printer_code}.html";
 
1808   if ($form->{format} eq 'postscript') {
 
1809     $form->{postscript} = 1;
 
1810     $form->{IN} =~ s/html$/tex/;
 
1811   } elsif ($form->{"format"} =~ /pdf/) {
 
1813     if ($form->{"format"} =~ /opendocument/) {
 
1814       $form->{IN} =~ s/html$/odt/;
 
1816       $form->{IN} =~ s/html$/tex/;
 
1818   } elsif ($form->{"format"} =~ /opendocument/) {
 
1819     $form->{"opendocument"} = 1;
 
1820     $form->{"IN"} =~ s/html$/odt/;
 
1823   delete $form->{OUT};
 
1825   if ($form->{media} eq 'printer') {
 
1826     $form->{OUT} = "| $form->{printer_command} &>/dev/null";
 
1827     $form->{printed} .= " $form->{formname}";
 
1828     $form->{printed} =~ s/^ //;
 
1830   $printed = $form->{printed};
 
1832   if ($form->{media} eq 'email') {
 
1833     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1834       unless $form->{subject};
 
1836     $form->{emailed} .= " $form->{formname}";
 
1837     $form->{emailed} =~ s/^ //;
 
1839   $emailed = $form->{emailed};
 
1841   if ($form->{media} eq 'queue') {
 
1842     %queued = map { s|.*/|| } split / /, $form->{queued};
 
1844     if ($filename = $queued{ $form->{formname} }) {
 
1845       $form->{queued} =~ s/$form->{formname} $filename//;
 
1846       unlink "$spool/$filename";
 
1847       $filename =~ s/\..*$//g;
 
1853     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1854     $form->{OUT} = ">$spool/$filename";
 
1857     $form->{queued} .= " $form->{formname} $filename";
 
1859     $form->{queued} =~ s/^ //;
 
1861   $queued = $form->{queued};
 
1863 # saving the history
 
1864   if(!exists $form->{addition}) {
 
1865     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1866     if($form->{media} =~ /printer/) {
 
1867         $form->{addition} = "PRINTED";
 
1869     elsif($form->{media} =~ /email/) {
 
1870         $form->{addition} = "MAILED";
 
1872     elsif($form->{media} =~ /queue/) {
 
1873         $form->{addition} = "QUEUED";
 
1875     elsif($form->{media} =~ /screen/) {
 
1876         $form->{addition} = "SCREENED";
 
1878     $form->save_history($form->dbconnect(\%myconfig));
 
1880   # /saving the history
 
1882   $form->parse_template(\%myconfig, $userspath);
 
1884   $form->{callback} = "";
 
1886   if ($form->{media} eq 'email') {
 
1887     $form->{message} = $locale->text('sent') unless $form->{message};
 
1889   $message = $form->{message};
 
1891   # if we got back here restore the previous form
 
1892   if ($form->{media} =~ /(printer|email|queue)/) {
 
1894     $form->update_status(\%myconfig)
 
1895       if ($form->{media} eq 'queue' && $form->{id});
 
1897     return $lxdebug->leave_sub() if ($old_form eq "return");
 
1901       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1903       # restore and display form
 
1904       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1906       $form->{queued}  = $queued;
 
1907       $form->{printed} = $printed;
 
1908       $form->{emailed} = $emailed;
 
1909       $form->{message} = $message;
 
1911       $form->{rowcount}--;
 
1912       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1913         qw(exchangerate creditlimit creditremaining);
 
1915       for $i (1 .. $form->{paidaccounts}) {
 
1917           $form->{"${_}_$i"} =
 
1918             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1919         } qw(paid exchangerate);
 
1922       call_sub($display_form);
 
1927       ($form->{media} eq 'printer')
 
1928       ? $locale->text('sent to printer')
 
1929       : $locale->text('emailed to') . " $form->{email}";
 
1930     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1932   if ($form->{printing}) {
 
1933    call_sub($display_form);
 
1937   $lxdebug->leave_sub();
 
1940 sub customer_details {
 
1941   $lxdebug->enter_sub();
 
1942   IS->customer_details(\%myconfig, \%$form, @_);
 
1943   $lxdebug->leave_sub();
 
1946 sub vendor_details {
 
1947   $lxdebug->enter_sub();
 
1949   IR->vendor_details(\%myconfig, \%$form, @_);
 
1951   $lxdebug->leave_sub();
 
1955   $lxdebug->enter_sub();
 
1957   $form->{postasnew} = 1;
 
1958   map { delete $form->{$_} } qw(printed emailed queued);
 
1962   $lxdebug->leave_sub();
 
1966   $lxdebug->enter_sub();
 
1967   if ($form->{second_run}) {
 
1968     $form->{print_and_post} = 0;
 
1971   $title = $form->{title};
 
1972   $form->{title} = $locale->text('Ship to');
 
1974   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1975     qw(exchangerate creditlimit creditremaining);
 
1978     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry
 
1979        shiptocontact shiptophone shiptofax shiptoemail
 
1980        shiptodepartment_1 shiptodepartment_2);
 
1983     (qw(name department_1 department_2 street zipcode city country
 
1984         contact email phone fax));
 
1986   # get details for name
 
1987   call_sub("$form->{vc}_details", @addr_vars);
 
1990     ($form->{vc} eq 'customer')
 
1991     ? $locale->text('Customer Number')
 
1992     : $locale->text('Vendor Number');
 
1994   # get pricegroups for parts
 
1995   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1997   # build up html code for prices_$i
 
1998   set_pricegroup($form->{rowcount});
 
2000   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
2002   $form->{rowcount}--;
 
2009 <form method="post" action="$form->{script}">
 
2011 <table width="100%">
 
2015         <tr class="listheading">
 
2016           <th class="listheading" colspan="2" width="50%">|
 
2017     . $locale->text('Billing Address') . qq|</th>
 
2018           <th class="listheading" width="50%">|
 
2019     . $locale->text('Shipping Address') . qq|</th>
 
2021         <tr height="5"></tr>
 
2023           <th align="right" nowrap>$number</th>
 
2024           <td>$form->{"$form->{vc}number"}</td>
 
2027           <th align="right" nowrap>| . $locale->text('Company Name') . qq|</th>
 
2028           <td>$form->{name}</td>
 
2029           <td><input name="shiptoname" size="35" value="$form->{shiptoname}"></td>
 
2032           <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
2033           <td>$form->{department_1}</td>
 
2034           <td><input name="shiptodepartment_1" size="35" value="$form->{shiptodepartment_1}"></td>
 
2037           <th align="right" nowrap> </th>
 
2038           <td>$form->{department_2}</td>
 
2039           <td><input name="shiptodepartment_2" size="35" value="$form->{shiptodepartment_2}"></td>
 
2042           <th align="right" nowrap>| . $locale->text('Street') . qq|</th>
 
2043           <td>$form->{street}</td>
 
2044           <td><input name="shiptostreet" size="35" value="$form->{shiptostreet}"></td>
 
2047           <th align="right" nowrap>| . $locale->text('Zipcode') . qq|</th>
 
2048           <td>$form->{zipcode}</td>
 
2049           <td><input name="shiptozipcode" size="35" value="$form->{shiptozipcode}"></td>
 
2052           <th align="right" nowrap>| . $locale->text('City') . qq|</th>
 
2053           <td>$form->{city}</td>
 
2054           <td><input name="shiptocity" size="35" value="$form->{shiptocity}"></td>
 
2057           <th align="right" nowrap>| . $locale->text('Country') . qq|</th>
 
2058           <td>$form->{country}</td>
 
2059           <td><input name="shiptocountry" size="35" value="$form->{shiptocountry}"></td>
 
2062           <th align="right" nowrap>| . $locale->text('Contact') . qq|</th>
 
2063           <td>$form->{contact}</td>
 
2064           <td><input name="shiptocontact" size="35" value="$form->{shiptocontact}"></td>
 
2067           <th align="right" nowrap>| . $locale->text('Phone') . qq|</th>
 
2068           <td>$form->{phone}</td>
 
2069           <td><input name="shiptophone" size="20" value="$form->{shiptophone}"></td>
 
2072           <th align="right" nowrap>| . $locale->text('Fax') . qq|</th>
 
2073           <td>$form->{fax}</td>
 
2074           <td><input name="shiptofax" size="20" value="$form->{shiptofax}"></td>
 
2077           <th align="right" nowrap>| . $locale->text('E-mail') . qq|</th>
 
2078           <td>$form->{email}</td>
 
2079           <td><input name="shiptoemail" size="35" value="$form->{shiptoemail}"></td>
 
2085 | . $cgi->hidden("-name" => "nextsub", "-value" => $nextsub);
 
2091   map({ delete $form->{$_} } (@shipto_vars, qw(header)));
 
2092   $form->{title} = $title;
 
2094   foreach $key (keys %$form) {
 
2095     $form->{$key} =~ s/\"/"/g;
 
2096     print qq|<input type="hidden" name="$key" value="$form->{$key}">\n|;
 
2101 <hr size="3" noshade>
 
2104 <input class="submit" type="submit" name="action" value="|
 
2105     . $locale->text('Continue') . qq|">
 
2112   $lxdebug->leave_sub();
 
2116   $lxdebug->enter_sub();
 
2121   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
2122   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
2123   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
2126   delete $form->{action};
 
2127   $customer = $form->{customer};
 
2128   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
2130   # save all other form variables in a previousform variable
 
2131   $form->{row} = $row;
 
2132   foreach $key (keys %$form) {
 
2135     $form->{$key} =~ s/&/%26/g;
 
2136     $previousform .= qq|$key=$form->{$key}&|;
 
2139   $previousform = $form->escape($previousform, 1);
 
2141   $form->{script} = "licenses.pl";
 
2143   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
2144   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
2145     qw(partnumber description);
 
2147     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|;
 
2150   $lxdebug->leave_sub();
 
2153 sub relink_accounts {
 
2154   $lxdebug->enter_sub();
 
2156   $form->{"taxaccounts"} =~ s/\s*$//;
 
2157   $form->{"taxaccounts"} =~ s/^\s*//;
 
2158   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
2159     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
2161   $form->{"taxaccounts"} = "";
 
2163   for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
 
2164     if ($form->{"id_$i"}) {
 
2165       IC->retrieve_accounts(\%myconfig, $form, $form->{"id_$i"}, $i, 1);
 
2169   $lxdebug->leave_sub();
 
2173   $lxdebug->enter_sub();
 
2175   $form->get_duedate(\%myconfig);
 
2178   $result = "$form->{duedate}";
 
2181   $lxdebug->leave_sub();