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 #######################################################################
 
  36 # any custom scripts for this one
 
  37 if (-f "$form->{path}/custom_io.pl") {
 
  38   eval { require "$form->{path}/custom_io.pl"; };
 
  40 if (-f "$form->{path}/$form->{login}_io.pl") {
 
  41   eval { require "$form->{path}/$form->{login}_io.pl"; };
 
  48 # this is for our long dates
 
  49 # $locale->text('January')
 
  50 # $locale->text('February')
 
  51 # $locale->text('March')
 
  52 # $locale->text('April')
 
  53 # $locale->text('May ')
 
  54 # $locale->text('June')
 
  55 # $locale->text('July')
 
  56 # $locale->text('August')
 
  57 # $locale->text('September')
 
  58 # $locale->text('October')
 
  59 # $locale->text('November')
 
  60 # $locale->text('December')
 
  62 # this is for our short month
 
  63 # $locale->text('Jan')
 
  64 # $locale->text('Feb')
 
  65 # $locale->text('Mar')
 
  66 # $locale->text('Apr')
 
  67 # $locale->text('May')
 
  68 # $locale->text('Jun')
 
  69 # $locale->text('Jul')
 
  70 # $locale->text('Aug')
 
  71 # $locale->text('Sep')
 
  72 # $locale->text('Oct')
 
  73 # $locale->text('Nov')
 
  74 # $locale->text('Dec')
 
  79 ########################################
 
  80 # Eintrag fuer Version 2.2.0 geaendert #
 
  81 # neue Optik im Rechnungsformular      #
 
  82 ########################################
 
  84   $lxdebug->enter_sub();
 
  86   if ($lizenzen && $form->{vc} eq "customer") {
 
  87     if ($form->{type} =~ /sales_order/) {
 
  88       @column_index = (runningnumber, partnumber, description, ship, qty);
 
  89     } elsif ($form->{type} =~ /sales_quotation/) {
 
  90       @column_index = (runningnumber, partnumber, description, qty);
 
  92       @column_index = (runningnumber, partnumber, description, qty);
 
  95     if (   ($form->{type} =~ /purchase_order/)
 
  96         || ($form->{type} =~ /sales_order/)) {
 
  97       @column_index = (runningnumber, partnumber, description, ship, qty);
 
  99       @column_index = (runningnumber, partnumber, description, qty);
 
 102 ############## ENDE Neueintrag ##################
 
 104   my $dimension_units = AM->retrieve_units(\%myconfig, $form, "dimension");
 
 105   my $service_units = AM->retrieve_units(\%myconfig, $form, "service");
 
 106   my $all_units = AM->retrieve_units(\%myconfig, $form);
 
 108   push @column_index, qw(unit);
 
 110   #for pricegroups column
 
 111   if (   $form->{type} =~ (/sales_quotation/)
 
 112       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 113       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 114       or ($form->{type} =~ /sales_order/)) {
 
 115     push @column_index, qw(sellprice_pg);
 
 118   push @column_index, qw(sellprice);
 
 120   if ($form->{vc} eq 'customer') {
 
 121     push @column_index, qw(discount);
 
 124   push @column_index, "linetotal";
 
 126   my $colspan = $#column_index + 1;
 
 128   $form->{invsubtotal} = 0;
 
 129   map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
 
 131 ########################################
 
 132   # Eintrag fuer Version 2.2.0 geaendert #
 
 133   # neue Optik im Rechnungsformular      #
 
 134 ########################################
 
 135   $column_data{runningnumber} =
 
 136       qq|<th align=left nowrap width=5 class=listheading>|
 
 137     . $locale->text('No.')
 
 139   $column_data{partnumber} =
 
 140       qq|<th align=left nowrap width=12 class=listheading>|
 
 141     . $locale->text('Number')
 
 143   $column_data{description} =
 
 144       qq|<th align=left nowrap width=30 class=listheading>|
 
 145     . $locale->text('Part Description')
 
 148       qq|<th align=left nowrap width=5 class=listheading>|
 
 149     . $locale->text('Ship')
 
 152       qq|<th align=left nowrap width=5 class=listheading>|
 
 153     . $locale->text('Qty')
 
 156       qq|<th align=left nowrap width=5 class=listheading>|
 
 157     . $locale->text('Unit')
 
 159   $column_data{license} =
 
 160       qq|<th align=left nowrap width=10 class=listheading>|
 
 161     . $locale->text('License')
 
 163   $column_data{serialnr} =
 
 164       qq|<th align=left nowrap width=10 class=listheading>|
 
 165     . $locale->text('Serial No.')
 
 167   $column_data{projectnr} =
 
 168       qq|<th align=left nowrap width=10 class=listheading>|
 
 169     . $locale->text('Project')
 
 171   $column_data{sellprice} =
 
 172       qq|<th align=left nowrap width=15 class=listheading>|
 
 173     . $locale->text('Price')
 
 175   $column_data{sellprice_pg} =
 
 176       qq|<th align=left nowrap width=15 class=listheading>|
 
 177     . $locale->text('Pricegroup')
 
 179   $column_data{discount} =
 
 180       qq|<th align=left class=listheading>|
 
 181     . $locale->text('Discount')
 
 183   $column_data{linetotal} =
 
 184       qq|<th align=left nowrap width=10 class=listheading>|
 
 185     . $locale->text('Extended')
 
 188       qq|<th align=left nowrap width=10 class=listheading>|
 
 189     . $locale->text('Bin')
 
 191 ############## ENDE Neueintrag ##################
 
 197         <tr class=listheading>|;
 
 199   map { print "\n$column_data{$_}" } @column_index;
 
 205   $runningnumber = $locale->text('No.');
 
 206   $deliverydate  = $locale->text('Delivery Date');
 
 207   $serialnumber  = $locale->text('Serial No.');
 
 208   $projectnumber = $locale->text('Project');
 
 209   $partsgroup    = $locale->text('Group');
 
 210   $reqdate       = $locale->text('Reqdate');
 
 212   $delvar = 'deliverydate';
 
 214   if ($form->{type} =~ /_order$/ || $form->{type} =~ /_quotation$/) {
 
 215     $deliverydate = $locale->text('Required by');
 
 219   for $i (1 .. $numrows) {
 
 224         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 225     } qw(qty ship discount sellprice price_new price_old) unless ($form->{simple_save});
 
 227     if (!$form->{"unit_old_$i"}) {
 
 228       # Neue Ware aus der Datenbank. In diesem Fall ist unit_$i die
 
 229       # Einheit, wie sie in den Stammdaten hinterlegt wurde.
 
 230       # Es sollte also angenommen werden, dass diese ausgewaehlt war.
 
 231       $form->{"unit_old_$i"} = $form->{"unit_$i"};
 
 236     # Die zuletzt ausgewaehlte mit der aktuell ausgewaehlten Einheit
 
 237     # vergleichen und bei Unterschied den Preis entsprechend umrechnen.
 
 238     $form->{"selected_unit_$i"} = $form->{"unit_$i"} unless ($form->{"selected_unit_$i"});
 
 240     my $check_units = $form->{"inventory_accno_$i"} ? $dimension_units : $service_units;
 
 241     if (!$check_units->{$form->{"selected_unit_$i"}} ||
 
 242         ($check_units->{$form->{"selected_unit_$i"}}->{"base_unit"} ne
 
 243          $all_units->{$form->{"unit_old_$i"}}->{"base_unit"})) {
 
 244       # Die ausgewaehlte Einheit ist fuer diesen Artikel nicht gueltig
 
 245       # (z.B. Dimensionseinheit war ausgewaehlt, es handelt sich aber
 
 246       # um eine Dienstleistung). Dann keinerlei Umrechnung vornehmen.
 
 247       $form->{"unit_old_$i"} = $form->{"selected_unit_$i"} = $form->{"unit_$i"};
 
 249     if ((!$form->{"prices_$i"}) || ($form->{"new_pricegroup_$i"} == $form->{"old_pricegroup_$i"})) {
 
 250       if ($form->{"unit_old_$i"} ne $form->{"selected_unit_$i"}) {
 
 252         if (defined($all_units->{$form->{"unit_old_$i"}}->{"factor"}) &&
 
 253             $all_units->{$form->{"unit_old_$i"}}->{"factor"}) {
 
 254           $basefactor = $all_units->{$form->{"selected_unit_$i"}}->{"factor"} /
 
 255             $all_units->{$form->{"unit_old_$i"}}->{"factor"};
 
 257         $form->{"sellprice_$i"} *= $basefactor;
 
 258         $form->{"unit_old_$i"} = $form->{"selected_unit_$i"};
 
 261     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 263     $decimalplaces = ($dec > 2) ? $dec : 2;
 
 267                         $form->{"sellprice_$i"} * $form->{"discount_$i"} / 100,
 
 271       $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
 
 272     $linetotal = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
 
 274     # convert " to "
 
 275     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 276       qw(partnumber description unit unit_old);
 
 278 ########################################
 
 279     # Eintrag fuer Version 2.2.0 geaendert #
 
 280     # neue Optik im Rechnungsformular      #
 
 281 ########################################
 
 282     $column_data{runningnumber} =
 
 283       qq|<td><input name="runningnumber_$i" size=5 value=$i></td>|;    # HuT
 
 284 ############## ENDE Neueintrag ##################
 
 286     $column_data{partnumber} =
 
 287       qq|<td><input name="partnumber_$i" size=12 value="$form->{"partnumber_$i"}"></td>|;
 
 289     if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
 
 290       $column_data{description} =
 
 291         qq|<td><textarea name="description_$i" rows=$rows cols=30 wrap=soft>$form->{"description_$i"}</textarea><button type="button" onclick="set_longdescription_window('longdescription_$i')">| . $locale->text('L') . qq|</button></td>|;
 
 293       $column_data{description} =
 
 294         qq|<td><input name="description_$i" size=30 value="$form->{"description_$i"}"><button type="button" onclick="set_longdescription_window('longdescription_$i')">| . $locale->text('L') . qq|</button></td>|;
 
 297     (my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 298     $qty_dec = length $qty_dec;
 
 301         qq|<td align=right><input name="qty_$i" size=5 value=|
 
 302       . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec) .qq|>|;
 
 303     if ($form->{"formel_$i"}) {
 
 304     $column_data{qty} .= qq|<button type="button" onclick="calculate_qty_selection_window('qty_$i','alu_$i', 'formel_$i', $i)">| . $locale->text('*/') . qq|</button>
 
 305           <input type=hidden name="formel_$i" value="$form->{"formel_$i"}"><input type=hidden name="alu_$i" value="$form->{"alu_$i"}"></td>|;
 
 308         qq|<td align=right><input name="ship_$i" size=5 value=|
 
 309       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
 
 312     my $is_part = $form->{"inventory_accno_$i"};
 
 313     my $is_assigned = $form->{"id_$i"};
 
 314     my $this_unit = $form->{"unit_$i"};
 
 315     if ($form->{"selected_unit_$i"} && $this_unit &&
 
 316         $all_units->{$form->{"selected_unit_$i"}} && $all_units->{$this_unit} &&
 
 317         ($all_units->{$form->{"selected_unit_$i"}}->{"base_unit"} eq $all_units->{$this_unit}->{"base_unit"})) {
 
 318       $this_unit = $form->{"selected_unit_$i"};
 
 319     } elsif (!$is_assigned ||
 
 320              ($is_part && !$this_unit && ($all_units->{$this_unit} && ($all_units->{$this_unit}->{"base_unit"} eq $all_units->{"kg"}->{"base_unit"})))) {
 
 324     $column_data{"unit"} = "<td>" .
 
 325       ($qty_readonly ? " " :
 
 326        AM->unit_select_html($is_part ? $dimension_units :
 
 327                             $is_assigned ? $service_units : $all_units,
 
 328                             "unit_$i", $this_unit,
 
 329                             $is_assigned ? $form->{"unit_$i"} : undef))
 
 332     # build in drop down list for pricesgroups
 
 333     if ($form->{"prices_$i"}) {
 
 334       if  ($form->{"new_pricegroup_$i"} != $form->{"old_pricegroup_$i"}) {
 
 335         $price_tmp = $form->format_amount(\%myconfig, $form->{"price_new_$i"}, $decimalplaces);
 
 337         $price_tmp = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 340       $column_data{sellprice_pg} =
 
 341         qq|<td align=right><select name="sellprice_pg_$i">$form->{"prices_$i"}</select></td>|;
 
 342       $column_data{sellprice} =
 
 343         qq|<td><input name="sellprice_$i" size=10 value=$price_tmp></td>|;
 
 346       # for last row and report
 
 347       # set pricegroup drop down list from report menu
 
 348       if ($form->{"sellprice_$i"} != 0) {
 
 350           qq|<option value="$form->{"sellprice_$i"}--$form->{"pricegroup_id_$i"}" selected>$form->{"pricegroup_$i"}</option>\n|;
 
 352         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 354         $column_data{sellprice_pg} =
 
 355           qq|<td align=right><select name="sellprice_pg_$i">$prices</select></td>|;
 
 360         $column_data{sellprice_pg} = qq|<td align=right> </td>|;
 
 363       $column_data{sellprice} =
 
 364         qq|<td><input name="sellprice_$i" size=10 value=|
 
 365         . $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 369     $column_data{discount} =
 
 370         qq|<td align=right><input name="discount_$i" size=3 value=|
 
 371       . $form->format_amount(\%myconfig, $form->{"discount_$i"})
 
 373     $column_data{linetotal} =
 
 375       . $form->format_amount(\%myconfig, $linetotal, 2)
 
 377     $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
 
 379 ########################################
 
 380     # Eintrag fuer Version 2.2.0 geaendert #
 
 381     # neue Optik im Rechnungsformular      #
 
 382 ########################################
 
 383     #     if ($lizenzen &&  $form->{type} eq "invoice" &&  $form->{vc} eq "customer") {
 
 384     #     $column_data{license} = qq|<td><select name="licensenumber_$i">$form->{"lizenzen_$i"}></select></td>|;
 
 387     #     if ($form->{type} !~ /_quotation/) {
 
 388     #     $column_data{serialnr} = qq|<td><input name="serialnumber_$i" size=10 value="$form->{"serialnumber_$i"}"></td>|;
 
 391     #     $column_data{projectnr} = qq|<td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}"></td>|;
 
 392 ############## ENDE Neueintrag ##################
 
 396         <tr valign=top class=listrow$j>|;
 
 398     map { print "\n$column_data{$_}" } @column_index;
 
 403 <input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
 
 404 <input type=hidden name="bo_$i" value=$form->{"bo_$i"}>
 
 406 <input type=hidden name="pricegroup_old_$i" value=$form->{"pricegroup_old_$i"}>
 
 407 <input type=hidden name="price_old_$i" value=$form->{"price_old_$i"}>
 
 408 <input type=hidden name="unit_old_$i" value="$form->{"selected_unit_$i"}">
 
 409 <input type=hidden name="price_new_$i" value=|
 
 410       . $form->format_amount(\%myconfig, $form->{"price_new_$i"}) . qq|>
 
 412 <input type=hidden name="id_$i" value=$form->{"id_$i"}>
 
 413 <input type=hidden name="inventory_accno_$i" value=$form->{"inventory_accno_$i"}>
 
 414 <input type=hidden name="bin_$i" value="$form->{"bin_$i"}">
 
 415 <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">
 
 416 <input type=hidden name="partnotes_$i" value="$form->{"partnotes_$i"}">
 
 417 <input type=hidden name="income_accno_$i" value=$form->{"income_accno_$i"}>
 
 418 <input type=hidden name="expense_accno_$i" value=$form->{"expense_accno_$i"}>
 
 419 <input type=hidden name="listprice_$i" value="$form->{"listprice_$i"}">
 
 420 <input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
 
 421 <input type=hidden name="taxaccounts_$i" value="$form->{"taxaccounts_$i"}">
 
 422 <input type=hidden name="ordnumber_$i" value="$form->{"ordnumber_$i"}">
 
 423 <input type=hidden name="transdate_$i" value="$form->{"transdate_$i"}">
 
 424 <input type=hidden name="cusordnumber_$i" value="$form->{"cusordnumber_$i"}">
 
 425 <input type=hidden name="longdescription_$i" value="$form->{"longdescription_$i"}">
 
 426 <input type=hidden name="basefactor_$i" value="$form->{"basefactor_$i"}">
 
 430 ########################################
 
 431     # Eintrag fuer Version 2.2.0 geaendert #
 
 432     # neue Optik im Rechnungsformular      #
 
 433 ########################################
 
 437           <td colspan=$colspan>
 
 439     if ($lizenzen && $form->{type} eq "invoice" && $form->{vc} eq "customer") {
 
 440       my $selected = $form->{"licensenumber_$i"};
 
 442       $form->{"lizenzen_$i"} =~ s/ selected//g;
 
 443       $form->{"lizenzen_$i"} =~
 
 444         s/value="${selected}"\>/value="${selected}" selected\>/;
 
 445       $lizenzen_quoted = $form->{"lizenzen_$i"};
 
 446       $lizenzen_quoted =~ s/\"/"/g;
 
 448         <b>Lizenz\#</b> <select name="licensenumber_$i" size=1>
 
 449         $form->{"lizenzen_$i"}
 
 451         <input type=hidden name="lizenzen_$i" value="${lizenzen_quoted}">
 
 454     if ($form->{type} !~ /_quotation/) {
 
 456           <b>$serialnumber</b> <input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}">|;
 
 460           <b>$projectnumber</b> <input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}">
 
 461                   <input type=hidden name="oldprojectnumber_$i" value="$form->{"oldprojectnumber_$i"}">
 
 462                   <input type=hidden name="project_id_$i" value="$form->{"project_id_$i"}">
 
 464     if ($form->{type} eq 'invoice' or $form->{type} =~ /order/) {
 
 466         ($form->{type} eq 'invoice')
 
 468         : 'reqdate';    # invoice uses a different term for the same thing.
 
 470         <b>${$reqdate_term}</b> <input name="${reqdate_term}_$i" size=11 value="$form->{"${reqdate_term}_$i"}">
 
 473     my $subtotalchecked = ($form->{"subtotal_$i"}) ? "checked" : "";
 
 475           <b>|.$locale->text('Subtotal').qq|</b> <input type="checkbox" name="subtotal_$i" value="1" "$subtotalchecked">
 
 481 ############## ENDE Neueintrag ##################
 
 483     map { $form->{"${_}_base"} += $linetotal }
 
 484       (split / /, $form->{"taxaccounts_$i"});
 
 486     $form->{invsubtotal} += $linetotal;
 
 495   $lxdebug->leave_sub();
 
 498 ##################################################
 
 499 # build html-code for pricegroups in variable $form->{prices_$j}
 
 502   $lxdebug->enter_sub();
 
 503   my $rowcount = shift;
 
 504   for $j (1 .. $rowcount) {
 
 505     my $pricegroup_old = $form->{"pricegroup_old_$i"};
 
 506     if ($form->{PRICES}{$j}) {
 
 508       $prices = '<option value="--">' . $locale->text("none (pricegroup)") . '</option>';
 
 510       foreach $item (@{ $form->{PRICES}{$j} }) {
 
 512         #$price = $form->round_amount($myconfig,  $item->{price}, 5);
 
 513         #$price = $form->format_amount($myconfig, $item->{price}, 2);
 
 514         $price         = $item->{price};
 
 515         $pricegroup_id = $item->{pricegroup_id};
 
 516         $pricegroup    = $item->{pricegroup};
 
 518         # build drop down list for pricegroups
 
 520           qq|<option value="$price--$pricegroup_id"$item->{selected}>$pricegroup</option>\n|;
 
 525         #               $form->{"${_}_$j"} =
 
 526         #               $form->format_amount(\%myconfig, $form->{"${_}_$j"})
 
 527         #              } qw(sellprice price_new price_old);
 
 529         # set new selectedpricegroup_id and prices for "Preis"
 
 530         if ($item->{selected} && ($pricegroup_id != 0)) {
 
 531           $form->{"pricegroup_old_$j"} = $pricegroup_id;
 
 532           $form->{"price_new_$j"}      = $price;
 
 533           $form->{"sellprice_$j"}      = $price;
 
 535         if ($pricegroup_id == 0) {
 
 536           $form->{"price_new_$j"} = $form->{"sellprice_$j"};
 
 539       $form->{"prices_$j"} = $prices;
 
 542   $lxdebug->leave_sub();
 
 546   $lxdebug->enter_sub();
 
 547   @column_index = qw(ndx partnumber description onhand sellprice);
 
 549   $column_data{ndx}        = qq|<th> </th>|;
 
 550   $column_data{partnumber} =
 
 551     qq|<th class=listheading>| . $locale->text('Number') . qq|</th>|;
 
 552   $column_data{description} =
 
 553     qq|<th class=listheading>| . $locale->text('Part Description') . qq|</th>|;
 
 554   $column_data{sellprice} =
 
 555     qq|<th class=listheading>| . $locale->text('Price') . qq|</th>|;
 
 556   $column_data{onhand} =
 
 557     qq|<th class=listheading>| . $locale->text('Qty') . qq|</th>|;
 
 559   # list items with radio button on a form
 
 562   $title   = $locale->text('Select from one of the items below');
 
 563   $colspan = $#column_index + 1;
 
 568 <form method=post action=$form->{script}>
 
 572     <th class=listtop colspan=$colspan>$title</th>
 
 575   <tr class=listheading>|;
 
 577   map { print "\n$column_data{$_}" } @column_index;
 
 582   foreach $ref (@{ $form->{item_list} }) {
 
 583     $checked = ($i++) ? "" : "checked";
 
 586       if ($ref->{inventory_accno} > 0) {
 
 587         $ref->{"lizenzen"} = qq|<option></option>|;
 
 588         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 589           $ref->{"lizenzen"} .=
 
 590             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 592         $ref->{"lizenzen"} .= qq|<option value=-1>Neue Lizenz</option>|;
 
 593         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 597     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 601       $form->round_amount($ref->{sellprice} * (1 - $form->{tradediscount}), 2);
 
 603       qq|<td><input name=ndx class=radio type=radio value=$i $checked></td>|;
 
 604     $column_data{partnumber} =
 
 605       qq|<td><input name="new_partnumber_$i" type=hidden value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 606     $column_data{description} =
 
 607       qq|<td><input name="new_description_$i" type=hidden value="$ref->{description}">$ref->{description}</td>|;
 
 608     $column_data{sellprice} =
 
 609       qq|<td align=right><input name="new_sellprice_$i" type=hidden value=$ref->{sellprice}>|
 
 610       . $form->format_amount(\%myconfig, $ref->{sellprice}, 2, " ")
 
 612     $column_data{onhand} =
 
 613       qq|<td align=right><input name="new_onhand_$i" type=hidden value=$ref->{onhand}>|
 
 614       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 620 <tr class=listrow$j>|;
 
 622     map { print "\n$column_data{$_}" } @column_index;
 
 627 <input name="new_bin_$i" type=hidden value="$ref->{bin}">
 
 628 <input name="new_listprice_$i" type=hidden value=$ref->{listprice}>
 
 629 <input name="new_inventory_accno_$i" type=hidden value=$ref->{inventory_accno}>
 
 630 <input name="new_income_accno_$i" type=hidden value=$ref->{income_accno}>
 
 631 <input name="new_expense_accno_$i" type=hidden value=$ref->{expense_accno}>
 
 632 <input name="new_unit_$i" type=hidden value="$ref->{unit}">
 
 633 <input name="new_weight_$i" type=hidden value="$ref->{weight}">
 
 634 <input name="new_assembly_$i" type=hidden value="$ref->{assembly}">
 
 635 <input name="new_taxaccounts_$i" type=hidden value="$ref->{taxaccounts}">
 
 636 <input name="new_partsgroup_$i" type=hidden value="$ref->{partsgroup}">
 
 637 <input name="new_formel_$i" type=hidden value="$ref->{formel}">
 
 638 <input name="new_longdescription_$i" type=hidden value="$ref->{longdescription}">
 
 639 <input name="new_not_discountable_$i" type=hidden value="$ref->{not_discountable}">
 
 640 <input name="new_part_payment_id_$i" type=hidden value="$ref->{part_payment_id}">
 
 642 <input name="new_id_$i" type=hidden value=$ref->{id}>
 
 647 <input name="new_lizenzen_$i" type=hidden value="$ref->{lizenzen}">
 
 654 <tr><td colspan=8><hr size=3 noshade></td></tr>
 
 657 <input name=lastndx type=hidden value=$i>
 
 661   # delete action variable
 
 662   map { delete $form->{$_} } qw(action item_list header);
 
 664   # save all other form variables
 
 665   foreach $key (keys %${form}) {
 
 666     $form->{$key} =~ s/\"/"/g;
 
 667     print qq|<input name=$key type=hidden value="$form->{$key}">\n|;
 
 671 <input type=hidden name=nextsub value=item_selected>
 
 674 <input class=submit type=submit name=action value="|
 
 675     . $locale->text('Continue') . qq|">
 
 682   $lxdebug->leave_sub();
 
 686   $lxdebug->enter_sub();
 
 688   # replace the last row with the checked row
 
 689   $i = $form->{rowcount};
 
 690   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 696   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 697   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 699   # if there was a price entered, override it
 
 700   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 702   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} }
 
 703     qw(id partnumber description sellprice listprice inventory_accno income_accno expense_accno bin unit weight assembly taxaccounts partsgroup formel longdescription not_discountable);
 
 704   if ($form->{"part_payment_id_$i"} ne "") {
 
 705     $form->{payment_id} = $form->{"part_payment_id_$i"};
 
 709     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 712   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 714   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 717     $form->{"sellprice_$i"} = $sellprice;
 
 720     # if there is an exchange rate adjust sellprice
 
 721     if (($form->{exchangerate} * 1) != 0) {
 
 722       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 723       $form->{"sellprice_$i"} =
 
 724         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 728   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 729     qw(sellprice listprice weight);
 
 731   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 732   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 734   if ($form->{"not_discountable_$i"}) {
 
 735     $form->{"discount_$i"} = 0;
 
 739     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 741   map { $form->{"${_}_base"} += $amount }
 
 742     (split / /, $form->{"taxaccounts_$i"});
 
 743   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 744     $form->{"taxaccounts_$i"}
 
 745     if !$form->{taxincluded};
 
 747   $form->{creditremaining} -= $amount;
 
 749   $form->{"runningnumber_$i"} = $i;
 
 751   # delete all the new_ variables
 
 752   for $i (1 .. $form->{lastndx}) {
 
 753     map { delete $form->{"new_${_}_$i"} }
 
 754       qw(partnumber description sellprice bin listprice inventory_accno income_accno expense_accno unit assembly taxaccounts id);
 
 757   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 762       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 763   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 765   # get pricegroups for parts
 
 766   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 768   # build up html code for prices_$i
 
 769   set_pricegroup($form->{rowcount});
 
 773   $lxdebug->leave_sub();
 
 777   $lxdebug->enter_sub();
 
 780   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 781   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
 784   delete $form->{action};
 
 786   # save all other form variables in a previousform variable
 
 787   foreach $key (keys %$form) {
 
 790     $form->{$key} =~ s/&/%26/g;
 
 791     $previousform .= qq|$key=$form->{$key}&|;
 
 794   $previousform = $form->escape($previousform, 1);
 
 796   $i = $form->{rowcount};
 
 797   map { $form->{"${_}_$i"} =~ s/\"/"/g } qw(partnumber description);
 
 804 <h4 class=error>| . $locale->text('Item not on file!') . qq|
 
 807 | . $locale->text('What type of item is this?') . qq|</h4>
 
 809 <form method=post action=ic.pl>
 
 813   <input class=radio type=radio name=item value=part checked> |
 
 814     . $locale->text('Part') . qq|<br>
 
 815   <input class=radio type=radio name=item value=service> |
 
 816     . $locale->text('Service')
 
 819 <input type=hidden name=previousform value="$previousform">
 
 820 <input type=hidden name=partnumber value="$form->{"partnumber_$i"}">
 
 821 <input type=hidden name=description value="$form->{"description_$i"}">
 
 822 <input type=hidden name=rowcount value=$form->{rowcount}>
 
 823 <input type=hidden name=taxaccount2 value=$form->{taxaccounts}>
 
 824 <input type=hidden name=vc value=$form->{vc}>
 
 826 <input type=hidden name=path value=$form->{path}>
 
 827 <input type=hidden name=login value=$form->{login}>
 
 828 <input type=hidden name=password value=$form->{password}>
 
 830 <input type=hidden name=nextsub value=add>
 
 833 <input class=submit type=submit name=action value="|
 
 834     . $locale->text('Continue') . qq|">
 
 841   $lxdebug->leave_sub();
 
 845   $lxdebug->enter_sub();
 
 846   $form->language_payment(\%myconfig);
 
 848   # if we have a display_form
 
 849   if ($form->{display_form}) {
 
 850     &{"$form->{display_form}"};
 
 854   #   if (   $form->{print_and_post}
 
 855   #       && $form->{second_run}
 
 856   #       && ($form->{action} eq "display_form")) {
 
 857   #     for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
 858   #     $old_form->{rowcount}++;
 
 860   #     #$form->{rowcount}--;
 
 861   #     #$form->{rowcount}--;
 
 863   #     $form->{print_and_post} = 0;
 
 865   #     &print_form($old_form);
 
 869   #   $form->{action}   = "";
 
 870   #   $form->{resubmit} = 0;
 
 872   #   if ($form->{print_and_post} && !$form->{second_run}) {
 
 873   #     $form->{second_run} = 1;
 
 874   #     $form->{action}     = "display_form";
 
 875   #     $form->{rowcount}--;
 
 876   #     my $rowcount = $form->{rowcount};
 
 878   #     # get pricegroups for parts
 
 879   #     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 881   #     # build up html code for prices_$i
 
 882   #     set_pricegroup($rowcount);
 
 884   #     $form->{resubmit} = 1;
 
 889   $numrows    = ++$form->{rowcount};
 
 890   $subroutine = "display_row";
 
 892   if ($form->{item} eq 'part') {
 
 894     #set preisgruppenanzahl
 
 895     $numrows    = $form->{price_rows};
 
 896     $subroutine = "price_row";
 
 898     &{$subroutine}($numrows);
 
 900     $numrows    = ++$form->{makemodel_rows};
 
 901     $subroutine = "makemodel_row";
 
 903   if ($form->{item} eq 'assembly') {
 
 904     $numrows    = $form->{price_rows};
 
 905     $subroutine = "price_row";
 
 907     &{$subroutine}($numrows);
 
 909     $numrows    = ++$form->{makemodel_rows};
 
 910     $subroutine = "makemodel_row";
 
 912     # create makemodel rows
 
 913     &{$subroutine}($numrows);
 
 915     $numrows    = ++$form->{assembly_rows};
 
 916     $subroutine = "assembly_row";
 
 918   if ($form->{item} eq 'service') {
 
 919     $numrows    = $form->{price_rows};
 
 920     $subroutine = "price_row";
 
 922     &{$subroutine}($numrows);
 
 928   &{$subroutine}($numrows) if $numrows;
 
 932   $lxdebug->leave_sub();
 
 936   $lxdebug->enter_sub();
 
 940     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)
 
 944   # remove any makes or model rows
 
 945   if ($form->{item} eq 'part') {
 
 946     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 947       qw(listprice sellprice lastcost weight rop);
 
 949     @flds = (make, model);
 
 950     for my $i (1 .. ($form->{makemodel_rows})) {
 
 951       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
 955         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 960     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
 961     $form->{makemodel_rows} = $count;
 
 963   } elsif ($form->{item} eq 'assembly') {
 
 965     $form->{sellprice} = 0;
 
 967     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 968       qw(listprice rop stock);
 
 971       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
 
 973     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 974       if ($form->{"qty_$i"}) {
 
 978         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 980         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 982         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 984         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
 
 985         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
 990     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 992     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 993     $form->{assembly_rows} = $count;
 
 996     @flds  = qw(make model);
 
 999     for my $i (1 .. ($form->{makemodel_rows})) {
 
1000       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
1004         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1009     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
1010     $form->{makemodel_rows} = $count;
 
1014     # this section applies to invoices and orders
 
1015     # remove any empty numbers
 
1016     if ($form->{rowcount}) {
 
1017       for my $i (1 .. $form->{rowcount} - 1) {
 
1018         if ($form->{"partnumber_$i"}) {
 
1022           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1025             if ($form->{"licensenumber_$i"} == -1) {
 
1033       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
1034       $form->{rowcount} = $count;
 
1036       $form->{creditremaining} -= &invoicetotal;
 
1043   if (   $form->{type} =~ (/sales_quotation/)
 
1044       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
1045       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
1046       or ($form->{type} =~ /sales_order/)) {
 
1048     # get pricegroups for parts
 
1049     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1051     # build up html code for prices_$i
 
1052     set_pricegroup($form->{rowcount});
 
1058   $lxdebug->leave_sub();
 
1062   $lxdebug->enter_sub();
 
1064   $form->{oldinvtotal} = 0;
 
1066   # add all parts and deduct paid
 
1067   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
1069   my ($amount, $sellprice, $discount, $qty);
 
1071   for my $i (1 .. $form->{rowcount}) {
 
1072     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
1073     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
1074     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1076     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
1078     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
1079     map { $form->{"${_}_base"} += $amount }
 
1080       (split / /, $form->{"taxaccounts_$i"});
 
1081     $form->{oldinvtotal} += $amount;
 
1084   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1085     split / /, $form->{taxaccounts}
 
1086     if !$form->{taxincluded};
 
1088   $form->{oldtotalpaid} = 0;
 
1089   for $i (1 .. $form->{paidaccounts}) {
 
1090     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
1093   $lxdebug->leave_sub();
 
1096   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1099 sub validate_items {
 
1100   $lxdebug->enter_sub();
 
1102   # check if items are valid
 
1103   if ($form->{rowcount} == 1) {
 
1108   for $i (1 .. $form->{rowcount} - 1) {
 
1109     $form->isblank("partnumber_$i",
 
1110                    $locale->text('Number missing in Row') . " $i");
 
1113   $lxdebug->leave_sub();
 
1117   $lxdebug->enter_sub();
 
1118   if ($form->{second_run}) {
 
1119     $form->{print_and_post} = 0;
 
1121   $form->{ordnumber} = $form->{invnumber};
 
1123   map { delete $form->{$_} } qw(id printed emailed queued);
 
1124   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
1125     $form->{title} = $locale->text('Add Purchase Order');
 
1126     $form->{vc}    = 'vendor';
 
1127     $form->{type}  = 'purchase_order';
 
1130   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
1131     $form->{title} = $locale->text('Add Sales Order');
 
1132     $form->{vc}    = 'customer';
 
1133     $form->{type}  = 'sales_order';
 
1136   $form->{script} = 'oe.pl';
 
1138   $form->{shipto} = 1;
 
1140   $form->{rowcount}--;
 
1142   $form->{cp_id} *= 1;
 
1144   require "$form->{path}/$form->{script}";
 
1146   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1148   $currency = $form->{currency};
 
1152   $form->{currency}     = $currency;
 
1153   $form->{exchangerate} = "";
 
1154   $form->{forex}        = "";
 
1155   $form->{exchangerate} = $exchangerate
 
1159                     $form->check_exchangerate(
 
1160                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1166   $lxdebug->leave_sub();
 
1170   $lxdebug->enter_sub();
 
1171   if ($form->{second_run}) {
 
1172     $form->{print_and_post} = 0;
 
1174   map { delete $form->{$_} } qw(id printed emailed queued);
 
1176   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
1177     $form->{title} = $locale->text('Add Request for Quotation');
 
1178     $form->{vc}    = 'vendor';
 
1179     $form->{type}  = 'request_quotation';
 
1182   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
1183     $form->{title} = $locale->text('Add Quotation');
 
1184     $form->{vc}    = 'customer';
 
1185     $form->{type}  = 'sales_quotation';
 
1189   $form->{cp_id} *= 1;
 
1191   $form->{script} = 'oe.pl';
 
1193   $form->{shipto} = 1;
 
1195   $form->{rowcount}--;
 
1197   require "$form->{path}/$form->{script}";
 
1199   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1201   $currency = $form->{currency};
 
1205   $form->{currency}     = $currency;
 
1206   $form->{exchangerate} = "";
 
1207   $form->{forex}        = "";
 
1208   $form->{exchangerate} = $exchangerate
 
1212                     $form->check_exchangerate(
 
1213                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1219   $lxdebug->leave_sub();
 
1223   $lxdebug->enter_sub();
 
1224   if ($form->{second_run}) {
 
1225     $form->{print_and_post} = 0;
 
1226     $form->{resubmit}       = 0;
 
1228   if ($myconfig{role} eq 'admin') {
 
1230           <th align=right nowrap=true>| . $locale->text('Bcc') . qq|</th>
 
1231           <td><input name=bcc size=30 value="$form->{bcc}"></td>
 
1235   if ($form->{formname} =~ /(pick|packing|bin)_list/) {
 
1236     $form->{email} = $form->{shiptoemail} if $form->{shiptoemail};
 
1239   $name = $form->{ $form->{vc} };
 
1241   $title = $locale->text('E-mail') . " $name";
 
1243   $form->{oldmedia} = $form->{media};
 
1244   $form->{media}    = "email";
 
1251 <form method=post action=$form->{script}>
 
1255     <th class=listtop>$title</th>
 
1257   <tr height="5"></tr>
 
1262           <th align=right nowrap>| . $locale->text('To') . qq|</th>
 
1263           <td><input name=email size=30 value="$form->{email}"></td>
 
1264           <th align=right nowrap>| . $locale->text('Cc') . qq|</th>
 
1265           <td><input name=cc size=30 value="$form->{cc}"></td>
 
1268           <th align=right nowrap>| . $locale->text('Subject') . qq|</th>
 
1269           <td><input name=subject size=30 value="$form->{subject}"></td>
 
1279           <th align=left nowrap>| . $locale->text('Message') . qq|</th>
 
1282           <td><textarea name=message rows=15 cols=60 wrap=soft>$form->{message}</textarea></td>
 
1293   map { delete $form->{$_} }
 
1294     qw(action email cc bcc subject message formname sendmode format header override);
 
1296   # save all other variables
 
1297   foreach $key (keys %$form) {
 
1298     $form->{$key} =~ s/\"/"/g;
 
1299     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1306     <td><hr size=3 noshade></td>
 
1310 <input type=hidden name=nextsub value=send_email>
 
1313 <input name=action class=submit type=submit value="|
 
1314     . $locale->text('Continue') . qq|">
 
1321   $lxdebug->leave_sub();
 
1325   $lxdebug->enter_sub();
 
1327   $old_form = new Form;
 
1329   map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1330   $old_form->{media} = $form->{oldmedia};
 
1332   &print_form($old_form);
 
1334   $lxdebug->leave_sub();
 
1338   $lxdebug->enter_sub();
 
1339   $form->{sendmode} = "attachment";
 
1340   $form->{copies}   = 3 unless $form->{copies};
 
1342   $form->{PD}{ $form->{formname} } = "selected";
 
1343   $form->{DF}{ $form->{format} }   = "selected";
 
1344   $form->{OP}{ $form->{media} }    = "selected";
 
1345   $form->{SM}{ $form->{sendmode} } = "selected";
 
1347   if ($form->{type} eq 'purchase_order') {
 
1348     $type = qq|<select name=formname>
 
1349             <option value=purchase_order $form->{PD}{purchase_order}>|
 
1350       . $locale->text('Purchase Order') . qq|
 
1351             <option value=bin_list $form->{PD}{bin_list}>|
 
1352       . $locale->text('Bin List');
 
1355   if ($form->{type} eq 'credit_note') {
 
1356     $type = qq|<select name=formname>
 
1357             <option value=credit_note $form->{PD}{credit_note}>|
 
1358       . $locale->text('Credit Note');
 
1361   if ($form->{type} eq 'sales_order') {
 
1362     $type = qq|<select name=formname>
 
1363             <option value=sales_order $form->{PD}{sales_order}>|
 
1364       . $locale->text('Confirmation') . qq|
 
1365       <option value=proforma $form->{PD}{proforma}>|
 
1366       . $locale->text('Proforma Invoice') . qq|
 
1367             <option value=pick_list $form->{PD}{pick_list}>|
 
1368       . $locale->text('Pick List') . qq|
 
1369             <option value=packing_list $form->{PD}{packing_list}>|
 
1370       . $locale->text('Packing List');
 
1373   if ($form->{type} =~ /_quotation$/) {
 
1374     $type = qq|<select name=formname>
 
1375             <option value="$`_quotation" $form->{PD}{"$`_quotation"}>|
 
1376       . $locale->text('Quotation');
 
1379   if ($form->{type} eq 'invoice') {
 
1380     $type = qq|<select name=formname>
 
1381             <option value=invoice $form->{PD}{invoice}>|
 
1382       . $locale->text('Invoice') . qq|
 
1383       <option value=proforma $form->{PD}{proforma}>|
 
1384       . $locale->text('Proforma Invoice') . qq|
 
1385       <option value=packing_list $form->{PD}{packing_list}>|
 
1386       . $locale->text('Packing List');
 
1389   if ($form->{type} eq 'invoice' && $form->{storno}) {
 
1390     $type = qq|<select name=formname>
 
1391             <option value=storno_invoice $form->{PD}{storno_invoice}>|
 
1392       . $locale->text('Storno Invoice') . qq|
 
1393       <option value=storno_packing_list $form->{PD}{storno_packing_list}>|
 
1394       . $locale->text('Storno Packing List');
 
1397   if ($form->{type} eq 'credit_note') {
 
1398     $type = qq|<select name=formname>
 
1399             <option value=credit_note $form->{PD}{credit_note}>|
 
1400       . $locale->text('Credit Note');
 
1403   if ($form->{type} eq 'ship_order') {
 
1404     $type = qq|<select name=formname>
 
1405             <option value=pick_list $form->{PD}{pick_list}>|
 
1406       . $locale->text('Pick List') . qq|
 
1407             <option value=packing_list $form->{PD}{packing_list}>|
 
1408       . $locale->text('Packing List');
 
1411   if ($form->{type} eq 'receive_order') {
 
1412     $type = qq|<select name=formname>
 
1413             <option value=bin_list $form->{PD}{bin_list}>|
 
1414       . $locale->text('Bin List');
 
1417   if ($form->{media} eq 'email') {
 
1418     $media = qq|<select name=sendmode>
 
1419             <option value=attachment $form->{SM}{attachment}>|
 
1420       . $locale->text('Attachment') . qq|
 
1421             <option value=inline $form->{SM}{inline}>| . $locale->text('In-line');
 
1423     $media = qq|<select name=media>
 
1424             <option value=screen $form->{OP}{screen}>| . $locale->text('Screen');
 
1425     if (scalar(keys (%{ $form->{printers} })) !=0 && $latex_templates) {
 
1427             <option value=printer $form->{OP}{printer}>|
 
1428         . $locale->text('Printer');
 
1430     if ($latex_templates) {
 
1432             <option value=queue $form->{OP}{queue}>| . $locale->text('Queue');
 
1436   $format = qq|<select name=format>|;
 
1437   if ($opendocument_templates && $openofficeorg_writer_bin &&
 
1438       $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)) {
 
1439     $format .= qq|<option value=opendocument_pdf | .
 
1440       $form->{DF}{"opendocument_pdf"} . qq|>| .
 
1441       $locale->text("PDF (OpenDocument/OASIS)") . qq|</option>|;
 
1444   if ($latex_templates) {
 
1445     $format .= qq|<option value=pdf $form->{DF}{pdf}>| .
 
1446       $locale->text('PDF') . qq|</option>|;
 
1449   $format .= qq|<option value=html $form->{DF}{html}>HTML</option>|;
 
1452     $format .= qq|<option value=postscript $form->{DF}{postscript}>| .
 
1453       $locale->text('Postscript') . qq|</option>|;
 
1456   if ($opendocument_templates) {
 
1457     $format .= qq|<option value=opendocument $form->{DF}{opendocument}>| .
 
1458       $locale->text("OpenDocument/OASIS") . qq|</option>|;
 
1460   $format .= qq|</select>|;
 
1462   if (scalar(keys (%{ $form->{languages} })) !=0) {
 
1464     $language_select = qq|<select name=language_id>|;
 
1465     foreach $item (@{ $form->{languages} }) {
 
1466       if ($form->{language_id} eq $item->{id}) {
 
1467         $language_select .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
 
1469         $language_select .= qq|<option value="$item->{id}">$item->{description}</option>|;
 
1474   if (scalar(keys (%{ $form->{printers} })) !=0) {
 
1476     $printer_select = qq|<select name=printer_id>
 
1477                   <option value=""></option>|;
 
1478     foreach $item (@{ $form->{printers} }) {
 
1479       $printer_select .= qq|<option value="$item->{id}">$item->{printer_description}</option>|;
 
1486 <table width=100% cellspacing=0 cellpadding=0>
 
1491           <td>$type</select></td>|;
 
1492   if (scalar(keys (%{ $form->{languages} })) !=0) {
 
1494           <td>${language_select}</select></td>|;
 
1497           <td>$format</select></td>
 
1498           <td>$media</select></td>|;
 
1499   if (scalar(keys (%{ $form->{printers} })) !=0) {
 
1501           <td>$printer_select</select></td>
 
1505   if (scalar(keys (%{ $form->{printers} })) !=0 && $latex_templates && $form->{media} ne 'email') {
 
1507           <td>| . $locale->text('Copies') . qq|
 
1508           <input name=copies size=2 value=$form->{copies}></td>
 
1512   $form->{groupitems} = "checked" if $form->{groupitems};
 
1515           <td>| . $locale->text('Group Items') . qq|</td>
 
1516           <td><input name=groupitems type=checkbox class=checkbox $form->{groupitems}></td>
 
1525   if ($form->{printed} =~ /$form->{formname}/) {
 
1527           <th>\|| . $locale->text('Printed') . qq|\|</th>
 
1531   if ($form->{emailed} =~ /$form->{formname}/) {
 
1533           <th>\|| . $locale->text('E-mailed') . qq|\|</th>
 
1537   if ($form->{queued} =~ /$form->{formname}/) {
 
1539           <th>\|| . $locale->text('Queued') . qq|\|</th>
 
1551   $lxdebug->leave_sub();
 
1555   $lxdebug->enter_sub();
 
1557   # if this goes to the printer pass through
 
1558   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1559     $form->error($locale->text('Select postscript or PDF!'))
 
1560       if ($form->{format} !~ /(postscript|pdf)/);
 
1562     $old_form = new Form;
 
1563     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1566   if (!$form->{id} || (($form->{formname} eq "proforma") && !$form->{proforma} && (($form->{type} =~ /_order$/) || ($form->{type} =~ /_quotation$/)))) {
 
1567     if ($form->{formname} eq "proforma") {
 
1568       $form->{proforma} = 1;
 
1570     $form->{print_and_save} = 1;
 
1571     my $formname = $form->{formname};
 
1573     $form->{formname} = $formname;
 
1578   &print_form($old_form);
 
1580   $lxdebug->leave_sub();
 
1584   $lxdebug->enter_sub();
 
1585   my ($old_form) = @_;
 
1589   $numberfld = "invnumber";
 
1592     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1594   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1595   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1597   if ($form->{formname} eq "invoice") {
 
1598     $form->{label} = $locale->text('Invoice');
 
1600   if ($form->{formname} eq "packing_list") {
 
1602     # this is from an invoice
 
1603     $form->{label} = $locale->text('Packing List');
 
1605   if ($form->{formname} eq 'sales_order') {
 
1608     $form->{"${inv}date"} = $form->{transdate};
 
1609     $form->{label}        = $locale->text('Sales Order');
 
1610     $numberfld            = "sonumber";
 
1614   if (($form->{type} eq 'invoice') && ($form->{formname} eq 'proforma') ) {
 
1617     $form->{"${inv}date"} = $form->{transdate};
 
1618     $form->{"invdate"}    = $form->{transdate};
 
1619     $form->{label}        = $locale->text('Proforma Invoice');
 
1620     $numberfld            = "sonumber";
 
1624   if (($form->{type} eq 'sales_order') && ($form->{formname} eq 'proforma') ) {
 
1627     $form->{"${inv}date"} = $form->{transdate};
 
1628     $form->{"invdate"}    = $form->{transdate};
 
1629     $form->{invnumber}    = $form->{ordnumber};
 
1630     $form->{label}        = $locale->text('Proforma Invoice');
 
1631     $numberfld            = "sonumber";
 
1635   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1637     # we use the same packing list as from an invoice
 
1640     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1641     $form->{label} = $locale->text('Packing List');
 
1643     # set invnumber for template packing_list 
 
1644     $form->{invnumber}   = $form->{ordnumber};
 
1646   if ($form->{formname} eq 'pick_list') {
 
1649     $form->{"${inv}date"} =
 
1650       ($form->{transdate}) ? $form->{transdate} : $form->{invdate};
 
1651     $form->{label} = $locale->text('Pick List');
 
1652     $order = 1 unless $form->{type} eq 'invoice';
 
1654   if ($form->{formname} eq 'purchase_order') {
 
1657     $form->{"${inv}date"} = $form->{transdate};
 
1658     $form->{label}        = $locale->text('Purchase Order');
 
1659     $numberfld            = "ponumber";
 
1662   if ($form->{formname} eq 'bin_list') {
 
1665     $form->{"${inv}date"} = $form->{transdate};
 
1666     $form->{label}        = $locale->text('Bin List');
 
1669   if ($form->{formname} eq 'sales_quotation') {
 
1672     $form->{"${inv}date"} = $form->{transdate};
 
1673     $form->{label}        = $locale->text('Quotation');
 
1674     $numberfld            = "sqnumber";
 
1678   if (($form->{type} eq 'sales_quotation') && ($form->{formname} eq 'proforma') ) {
 
1681     $form->{"${inv}date"} = $form->{transdate};
 
1682     $form->{"invdate"} = $form->{transdate};
 
1683     $form->{label}        = $locale->text('Proforma Invoice');
 
1684     $numberfld            = "sqnumber";
 
1688   if ($form->{formname} eq 'request_quotation') {
 
1691     $form->{"${inv}date"} = $form->{transdate};
 
1692     $form->{label}        = $locale->text('Quotation');
 
1693     $numberfld            = "rfqnumber";
 
1697   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1698     if ($form->{media} eq 'email');
 
1699   $form->isblank("${inv}date",
 
1700                  $locale->text($form->{label} . ' Date missing!'));
 
1702   # $locale->text('Invoice Number missing!')
 
1703   # $locale->text('Invoice Date missing!')
 
1704   # $locale->text('Packing List Number missing!')
 
1705   # $locale->text('Packing List Date missing!')
 
1706   # $locale->text('Order Number missing!')
 
1707   # $locale->text('Order Date missing!')
 
1708   # $locale->text('Quotation Number missing!')
 
1709   # $locale->text('Quotation Date missing!')
 
1712   if (!$form->{"${inv}number"} && !$form->{preview}) {
 
1713     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1714     if ($form->{media} ne 'email') {
 
1716       # get pricegroups for parts
 
1717       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1719       # build up html code for prices_$i
 
1720       set_pricegroup($form->{rowcount});
 
1722       $form->{rowcount}--;
 
1731   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1732   my ($saved_email, $saved_cc, $saved_bcc) =
 
1733     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1735   $language_saved = $form->{language_id};
 
1736   &{"$form->{vc}_details"};
 
1737   $form->{language_id} = $language_saved;
 
1739   $form->{"email"} = $saved_email if ($saved_email);
 
1740   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1741   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1743   # format payment dates
 
1744   for $i (1 .. $form->{paidaccounts} - 1) {
 
1745     $form->{"datepaid_$i"} = $locale->date(\%myconfig, $form->{"datepaid_$i"});
 
1748   ($form->{employee}) = split /--/, $form->{employee};
 
1749   ($form->{warehouse}, $form->{warehouse_id}) = split /--/, $form->{warehouse};
 
1751   # create the form variables
 
1753     OE->order_details(\%myconfig, \%$form);
 
1755     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1758   # format global dates
 
1759   map { $form->{$_} = $locale->date(\%myconfig, $form->{$_}, 1) }
 
1760     ("${inv}date", "${due}date", "shippingdate", "deliverydate");
 
1763   for my $field (qw(transdate_oe deliverydate_oe)) {
 
1765       $form->{$field}[$_] = $locale->date(\%myconfig, $form->{$field}[$_], 1);
 
1766     } 0 .. $#{ $form->{$field} };
 
1769   if ($form->{shipto_id}) {
 
1770     $form->get_shipto(\%myconfig);
 
1773   @a = qw(name street zipcode city country);
 
1777   # if there is no shipto fill it in from billto
 
1778   foreach $item (@a) {
 
1779     if ($form->{"shipto$item"}) {
 
1786     if (   $form->{formname} eq 'purchase_order'
 
1787         || $form->{formname} eq 'request_quotation') {
 
1788       $form->{shiptoname}   = $myconfig{company};
 
1789       $form->{shiptostreet} = $myconfig{address};
 
1791       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1795   $form->{notes} =~ s/^\s+//g;
 
1797   map({ $form->{$_} =~ s/\\n/\n/g; } qw(company address));
 
1799   $form->{templates} = "$myconfig{templates}";
 
1801   $form->{language} = $form->get_template_language(\%myconfig);
 
1802   $form->{printer_code} = $form->get_printer_code(\%myconfig);
 
1804   if ($form->{language} ne "") {
 
1805     $form->{language} = "_" . $form->{language};
 
1808   if ($form->{printer_code} ne "") {
 
1809     $form->{printer_code} = "_" . $form->{printer_code};
 
1812   $form->{IN} = "$form->{formname}$form->{language}$form->{printer_code}.html";
 
1813   if ($form->{format} eq 'postscript') {
 
1814     $form->{postscript} = 1;
 
1815     $form->{IN} =~ s/html$/tex/;
 
1816   } elsif ($form->{"format"} =~ /pdf/) {
 
1818     if ($form->{"format"} =~ /opendocument/) {
 
1819       $form->{IN} =~ s/html$/odt/;
 
1821       $form->{IN} =~ s/html$/tex/;
 
1823   } elsif ($form->{"format"} =~ /opendocument/) {
 
1824     $form->{"opendocument"} = 1;
 
1825     $form->{"IN"} =~ s/html$/odt/;
 
1828   if ($form->{media} eq 'printer') {
 
1829     $form->{OUT} = "| $form->{printer_command} &>/dev/null";
 
1830     $form->{printed} .= " $form->{formname}";
 
1831     $form->{printed} =~ s/^ //;
 
1833   $printed = $form->{printed};
 
1835   if ($form->{media} eq 'email') {
 
1836     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1837       unless $form->{subject};
 
1839     $form->{OUT} = "$sendmail";
 
1841     $form->{emailed} .= " $form->{formname}";
 
1842     $form->{emailed} =~ s/^ //;
 
1844   $emailed = $form->{emailed};
 
1846   if ($form->{media} eq 'queue') {
 
1847     %queued = split / /, $form->{queued};
 
1849     if ($filename = $queued{ $form->{formname} }) {
 
1850       $form->{queued} =~ s/$form->{formname} $filename//;
 
1851       unlink "$spool/$filename";
 
1852       $filename =~ s/\..*$//g;
 
1858     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1859     $form->{OUT} = ">$spool/$filename";
 
1862     $form->{queued} .= " $form->{formname} $filename";
 
1864     $form->{queued} =~ s/^ //;
 
1866   $queued = $form->{queued};
 
1868   $form->parse_template(\%myconfig, $userspath);
 
1870   $form->{callback} = "";
 
1872   if ($form->{media} eq 'email') {
 
1873     $form->{message} = $locale->text('sent') unless $form->{message};
 
1875   $message = $form->{message};
 
1877   # if we got back here restore the previous form
 
1878   if ($form->{media} =~ /(printer|email|queue)/) {
 
1880     $form->update_status(\%myconfig)
 
1881       if ($form->{media} eq 'queue' && $form->{id});
 
1885       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1887       # restore and display form
 
1888       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1890       $form->{queued}  = $queued;
 
1891       $form->{printed} = $printed;
 
1892       $form->{emailed} = $emailed;
 
1893       $form->{message} = $message;
 
1895       $form->{rowcount}--;
 
1896       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1897         qw(exchangerate creditlimit creditremaining);
 
1899       for $i (1 .. $form->{paidaccounts}) {
 
1901           $form->{"${_}_$i"} =
 
1902             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1903         } qw(paid exchangerate);
 
1911       ($form->{media} eq 'printer')
 
1912       ? $locale->text('sent to printer')
 
1913       : $locale->text('emailed to') . " $form->{email}";
 
1914     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1916   if ($form->{printing}) {
 
1921   $lxdebug->leave_sub();
 
1924 sub customer_details {
 
1925   $lxdebug->enter_sub();
 
1926   IS->customer_details(\%myconfig, \%$form);
 
1927   $lxdebug->leave_sub();
 
1930 sub vendor_details {
 
1931   $lxdebug->enter_sub();
 
1933   IR->vendor_details(\%myconfig, \%$form);
 
1935   $lxdebug->leave_sub();
 
1939   $lxdebug->enter_sub();
 
1941   $form->{postasnew} = 1;
 
1942   map { delete $form->{$_} } qw(printed emailed queued);
 
1946   $lxdebug->leave_sub();
 
1950   $lxdebug->enter_sub();
 
1951   if ($form->{second_run}) {
 
1952     $form->{print_and_post} = 0;
 
1955   $title = $form->{title};
 
1956   $form->{title} = $locale->text('Ship to');
 
1958   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1959     qw(exchangerate creditlimit creditremaining);
 
1961   # get details for name
 
1962   &{"$form->{vc}_details"};
 
1965     ($form->{vc} eq 'customer')
 
1966     ? $locale->text('Customer Number')
 
1967     : $locale->text('Vendor Number');
 
1969   # get pricegroups for parts
 
1970   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1972   # build up html code for prices_$i
 
1973   set_pricegroup($form->{rowcount});
 
1975   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1977   $form->{rowcount}--;
 
1984 <form method=post action=$form->{script}>
 
1990         <tr class=listheading>
 
1991           <th class=listheading colspan=2 width=50%>|
 
1992     . $locale->text('Billing Address') . qq|</th>
 
1993           <th class=listheading width=50%>|
 
1994     . $locale->text('Shipping Address') . qq|</th>
 
1996         <tr height="5"></tr>
 
1998           <th align=right nowrap>$number</th>
 
1999           <td>$form->{"$form->{vc}number"}</td>
 
2002           <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
 
2003           <td>$form->{name}</td>
 
2004           <td><input name=shiptoname size=35 value="$form->{shiptoname}"></td>
 
2007           <th align=right nowrap>| . $locale->text('Street') . qq|</th>
 
2008           <td>$form->{street}</td>
 
2009           <td><input name=shiptostreet size=35 value="$form->{shiptostreet}"></td>
 
2012           <th align=right nowrap>| . $locale->text('Zipcode') . qq|</th>
 
2013           <td>$form->{zipcode}</td>
 
2014           <td><input name=shiptozipcode size=35 value="$form->{shiptozipcode}"></td>
 
2017           <th align=right nowrap>| . $locale->text('City') . qq|</th>
 
2018           <td>$form->{city}</td>
 
2019           <td><input name=shiptocity size=35 value="$form->{shiptocity}"></td>
 
2022           <th align=right nowrap>| . $locale->text('Country') . qq|</th>
 
2023           <td>$form->{country}</td>
 
2024           <td><input name=shiptocountry size=35 value="$form->{shiptocountry}"></td>
 
2027           <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
 
2028           <td>$form->{contact}</td>
 
2029           <td><input name=shiptocontact size=35 value="$form->{shiptocontact}"></td>
 
2032           <th align=right nowrap>| . $locale->text('Phone') . qq|</th>
 
2033           <td>$form->{"$form->{vc}phone"}</td>
 
2034           <td><input name=shiptophone size=20 value="$form->{shiptophone}"></td>
 
2037           <th align=right nowrap>| . $locale->text('Fax') . qq|</th>
 
2038           <td>$form->{"$form->{vc}fax"}</td>
 
2039           <td><input name=shiptofax size=20 value="$form->{shiptofax}"></td>
 
2042           <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
 
2043           <td>$form->{email}</td>
 
2044           <td><input name=shiptoemail size=35 value="$form->{shiptoemail}"></td>
 
2051 <input type=hidden name=nextsub value=$nextsub>
 
2055   map { delete $form->{$_} }
 
2056     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail header);
 
2057   $form->{title} = $title;
 
2059   foreach $key (keys %$form) {
 
2060     $form->{$key} =~ s/\"/"/g;
 
2061     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
2069 <input class=submit type=submit name=action value="|
 
2070     . $locale->text('Continue') . qq|">
 
2077   $lxdebug->leave_sub();
 
2081   $lxdebug->enter_sub();
 
2086   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
2087   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
2088   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
2091   delete $form->{action};
 
2092   $customer = $form->{customer};
 
2093   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
2095   # save all other form variables in a previousform variable
 
2096   $form->{row} = $row;
 
2097   foreach $key (keys %$form) {
 
2100     $form->{$key} =~ s/&/%26/g;
 
2101     $previousform .= qq|$key=$form->{$key}&|;
 
2104   $previousform = $form->escape($previousform, 1);
 
2106   $form->{script} = "licenses.pl";
 
2108   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
2109   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
2110     qw(partnumber description);
 
2112     qq|$form->{script}?login=$form->{login}&path=$form->{path}&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|;
 
2115   $lxdebug->leave_sub();