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')
 
  78 ########################################
 
  79 # Eintrag fuer Version 2.2.0 geaendert #
 
  80 # neue Optik im Rechnungsformular      #
 
  81 ########################################
 
  83   $lxdebug->enter_sub();
 
  85   if ($lizenzen && $form->{vc} eq "customer") {
 
  86     if ($form->{type} =~ /sales_order/) {
 
  87       @column_index = (runningnumber, partnumber, description, ship, qty);
 
  88     } elsif ($form->{type} =~ /sales_quotation/) {
 
  89       @column_index = (runningnumber, partnumber, description, qty);
 
  91       @column_index = (runningnumber, partnumber, description, qty);
 
  94     if (   ($form->{type} =~ /purchase_order/)
 
  95         || ($form->{type} =~ /sales_order/)) {
 
  96       @column_index = (runningnumber, partnumber, description, ship, qty);
 
  98       @column_index = (runningnumber, partnumber, description, qty);
 
 101 ############## ENDE Neueintrag ##################
 
 103   push @column_index, qw(unit);
 
 105   #for pricegroups column
 
 106   if (   $form->{type} =~ (/sales_quotation/)
 
 107       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 108       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 109       or ($form->{type} =~ /sales_order/)) {
 
 110     push @column_index, qw(sellprice_drag);
 
 113   push @column_index, qw(sellprice);
 
 115   if ($form->{vc} eq 'customer') {
 
 116     push @column_index, qw(discount);
 
 119   push @column_index, "linetotal";
 
 121   my $colspan = $#column_index + 1;
 
 123   $form->{invsubtotal} = 0;
 
 124   map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
 
 126 ########################################
 
 127   # Eintrag fuer Version 2.2.0 geaendert #
 
 128   # neue Optik im Rechnungsformular      #
 
 129 ########################################
 
 130   $column_data{runningnumber} =
 
 131       qq|<th align=left nowrap width=5 class=listheading>|
 
 132     . $locale->text('No.')
 
 134   $column_data{partnumber} =
 
 135       qq|<th align=left nowrap width=12 class=listheading>|
 
 136     . $locale->text('Number')
 
 138   $column_data{description} =
 
 139       qq|<th align=left nowrap width=30 class=listheading>|
 
 140     . $locale->text('Part Description')
 
 143       qq|<th align=left nowrap width=5 class=listheading>|
 
 144     . $locale->text('Ship')
 
 147       qq|<th align=left nowrap width=5 class=listheading>|
 
 148     . $locale->text('Qty')
 
 151       qq|<th align=left nowrap width=5 class=listheading>|
 
 152     . $locale->text('Unit')
 
 154   $column_data{license} =
 
 155       qq|<th align=left nowrap width=10 class=listheading>|
 
 156     . $locale->text('License')
 
 158   $column_data{serialnr} =
 
 159       qq|<th align=left nowrap width=10 class=listheading>|
 
 160     . $locale->text('Serial No.')
 
 162   $column_data{projectnr} =
 
 163       qq|<th align=left nowrap width=10 class=listheading>|
 
 164     . $locale->text('Project')
 
 166   $column_data{sellprice} =
 
 167       qq|<th align=left nowrap width=15 class=listheading>|
 
 168     . $locale->text('Price')
 
 170   $column_data{sellprice_drag} =
 
 171       qq|<th align=left nowrap width=15 class=listheading>|
 
 172     . $locale->text('Pricegroup')
 
 174   $column_data{discount} =
 
 175       qq|<th align=left class=listheading>|
 
 176     . $locale->text('Discount')
 
 178   $column_data{linetotal} =
 
 179       qq|<th align=left nowrap width=10 class=listheading>|
 
 180     . $locale->text('Extended')
 
 183       qq|<th align=left nowrap width=10 class=listheading>|
 
 184     . $locale->text('Bin')
 
 186 ############## ENDE Neueintrag ##################
 
 192         <tr class=listheading>|;
 
 194   map { print "\n$column_data{$_}" } @column_index;
 
 200   $runningnumber = $locale->text('No.');
 
 201   $deliverydate  = $locale->text('Delivery Date');
 
 202   $serialnumber  = $locale->text('Serial No.');
 
 203   $projectnumber = $locale->text('Project');
 
 204   $partsgroup    = $locale->text('Group');
 
 205   $reqdate       = $locale->text('Reqdate');
 
 207   $delvar = 'deliverydate';
 
 209   if ($form->{type} =~ /_order$/ || $form->{type} =~ /_quotation$/) {
 
 210     $deliverydate = $locale->text('Required by');
 
 214   for $i (1 .. $numrows) {
 
 219         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 220     } qw(qty ship discount sellprice price_new price_old);
 
 222     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 224     $decimalplaces = ($dec > 2) ? $dec : 2;
 
 228                         $form->{"sellprice_$i"} * $form->{"discount_$i"} / 100,
 
 232       $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
 
 233     $linetotal = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
 
 235     # convert " to "
 
 236     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 237       qw(partnumber description unit);
 
 239 ########################################
 
 240     # Eintrag fuer Version 2.2.0 geaendert #
 
 241     # neue Optik im Rechnungsformular      #
 
 242 ########################################
 
 243     $column_data{runningnumber} =
 
 244       qq|<td><input name="runningnumber_$i" size=5 value=$i></td>|;    # HuT
 
 245 ############## ENDE Neueintrag ##################
 
 247     $column_data{partnumber} =
 
 248       qq|<td><input name="partnumber_$i" size=12 value="$form->{"partnumber_$i"}"></td>|;
 
 250     if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
 
 251       $column_data{description} =
 
 252         qq|<td><textarea name="description_$i" rows=$rows cols=30 wrap=soft>$form->{"description_$i"}</textarea></td>|;
 
 254       $column_data{description} =
 
 255         qq|<td><input name="description_$i" size=30 value="$form->{"description_$i"}"></td>|;
 
 258     (my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 259     $qty_dec = length $qty_dec;
 
 262         qq|<td align=right><input name="qty_$i" size=5 value=|
 
 263       . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec)
 
 266         qq|<td align=right><input name="ship_$i" size=5 value=|
 
 267       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
 
 270       qq|<td><input name="unit_$i" size=5 value="$form->{"unit_$i"}"></td>|;
 
 272     # build in dragdrop for pricesgroups
 
 273     if ($form->{"prices_$i"}) {
 
 275         $form->format_amount(\%myconfig, $form->{"price_new_$i"}, 2);
 
 277       $column_data{sellprice_drag} =
 
 278         qq|<td align=right><select name="sellprice_drag_$i">$form->{"prices_$i"}</select></td>|;
 
 279       $column_data{sellprice} =
 
 280         qq|<td><input name="sellprice_$i" size=5 value=$price_tmp></td>|;
 
 283       # for last row and report
 
 284       # set pricegroup dragdrop from report menu
 
 285       if ($form->{"sellprice_$i"} != 0) {
 
 287           qq|<option value="$form->{"sellprice_$i"}--$form->{"pricegroup_id_$i"}" selected>$form->{"pricegroup_$i"}</option>\n|;
 
 289         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 291         $column_data{sellprice_drag} =
 
 292           qq|<td align=right><select name="sellprice_drag_$i">$prices</select></td>|;
 
 297         $column_data{sellprice_drag} =
 
 298           qq|<td align=right><input name="sellprice_$i" size=9 value=|
 
 299           . $form->format_amount(\%myconfig, $form->{"prices_$i"},
 
 304       $column_data{sellprice} =
 
 305         qq|<td><input name="sellprice_$i" size=5 value=|
 
 306         . $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 310     $column_data{discount} =
 
 311         qq|<td align=right><input name="discount_$i" size=3 value=|
 
 312       . $form->format_amount(\%myconfig, $form->{"discount_$i"})
 
 314     $column_data{linetotal} =
 
 316       . $form->format_amount(\%myconfig, $linetotal, 2)
 
 318     $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
 
 320 ########################################
 
 321     # Eintrag fuer Version 2.2.0 geaendert #
 
 322     # neue Optik im Rechnungsformular      #
 
 323 ########################################
 
 324     #     if ($lizenzen &&  $form->{type} eq "invoice" &&  $form->{vc} eq "customer") {
 
 325     #     $column_data{license} = qq|<td><select name="licensenumber_$i">$form->{"lizenzen_$i"}></select></td>|;
 
 328     #     if ($form->{type} !~ /_quotation/) {
 
 329     #     $column_data{serialnr} = qq|<td><input name="serialnumber_$i" size=10 value="$form->{"serialnumber_$i"}"></td>|;
 
 332     #     $column_data{projectnr} = qq|<td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}"></td>|;
 
 333 ############## ENDE Neueintrag ##################
 
 338     map { print "\n$column_data{$_}" } @column_index;
 
 343 <input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
 
 344 <input type=hidden name="bo_$i" value=$form->{"bo_$i"}>
 
 346 <input type=hidden name="pricegroup_old_$i" value=$form->{"pricegroup_old_$i"}>
 
 347 <input type=hidden name="price_old_$i" value=$form->{"price_old_$i"}>
 
 348 <input type=hidden name="price_new_$i" value=|
 
 349       . $form->format_amount(\%myconfig, $form->{"price_new_$i"}) . qq|>
 
 351 <input type=hidden name="id_$i" value=$form->{"id_$i"}>
 
 352 <input type=hidden name="inventory_accno_$i" value=$form->{"inventory_accno_$i"}>
 
 353 <input type=hidden name="bin_$i" value="$form->{"bin_$i"}">
 
 354 <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">
 
 355 <input type=hidden name="partnotes_$i" value="$form->{"partnotes_$i"}">
 
 356 <input type=hidden name="income_accno_$i" value=$form->{"income_accno_$i"}>
 
 357 <input type=hidden name="expense_accno_$i" value=$form->{"expense_accno_$i"}>
 
 358 <input type=hidden name="listprice_$i" value="$form->{"listprice_$i"}">
 
 359 <input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
 
 360 <input type=hidden name="taxaccounts_$i" value="$form->{"taxaccounts_$i"}">
 
 361 <input type=hidden name="ordnumber_$i" value="$form->{"ordnumber_$i"}">
 
 362 <input type=hidden name="transdate_$i" value="$form->{"transdate_$i"}">
 
 363 <input type=hidden name="cusordnumber_$i" value="$form->{"cusordnumber_$i"}">
 
 367 ########################################
 
 368     # Eintrag fuer Version 2.2.0 geaendert #
 
 369     # neue Optik im Rechnungsformular      #
 
 370 ########################################
 
 374           <td colspan=$colspan>
 
 376     if ($lizenzen && $form->{type} eq "invoice" && $form->{vc} eq "customer") {
 
 377       my $selected = $form->{"licensenumber_$i"};
 
 379       $form->{"lizenzen_$i"} =~ s/ selected//g;
 
 380       $form->{"lizenzen_$i"} =~
 
 381         s/value="${selected}"\>/value="${selected}" selected\>/;
 
 382       $lizenzen_quoted = $form->{"lizenzen_$i"};
 
 383       $lizenzen_quoted =~ s/\"/"/g;
 
 385         <b>Lizenz\#</b> <select name="licensenumber_$i" size=1>
 
 386         $form->{"lizenzen_$i"}
 
 388         <input type=hidden name="lizenzen_$i" value="${lizenzen_quoted}">
 
 391     if ($form->{type} !~ /_quotation/) {
 
 393           <b>$serialnumber</b> <input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}">|;
 
 397           <b>$projectnumber</b> <input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}">
 
 398                   <input type=hidden name="oldprojectnumber_$i" value="$form->{"oldprojectnumber_$i"}">
 
 399                   <input type=hidden name="project_id_$i" value="$form->{"project_id_$i"}">
 
 401     if ($form->{type} eq 'invoice' or $form->{type} =~ /order/) {
 
 402       my $reqdate_term = ($form->{type} eq 'invoice')?'deliverydate':'reqdate'; # invoice uses a different term for the same thing.
 
 404         <b>${$reqdate_term}</b> <input name="${reqdate_term}_$i" size=11 value="$form->{"${reqdate_term}_$i"}">
 
 414 ############## ENDE Neueintrag ##################
 
 416     map { $form->{"${_}_base"} += $linetotal }
 
 417       (split / /, $form->{"taxaccounts_$i"});
 
 419     $form->{invsubtotal} += $linetotal;
 
 428   $lxdebug->leave_sub();
 
 431 ##################################################
 
 432 # build html-code for pricegroups in variable $form->{prices_$j}
 
 435   my $rowcount = shift;
 
 436   $lxdebug->enter_sub();
 
 437   for $j (1 .. $rowcount) {
 
 438     my $pricegroup_old = $form->{"pricegroup_old_$i"};
 
 439     if ($form->{PRICES}{$j}) {
 
 443       foreach $item (@{ $form->{PRICES}{$j} }) {
 
 444         #$price = $form->round_amount($myconfig,  $item->{price}, 5);
 
 445         #$price = $form->format_amount($myconfig, $item->{price}, 2);
 
 446         $price = $item->{price};
 
 447         $pricegroup_id = $item->{pricegroup_id};
 
 448         $pricegroup    = $item->{pricegroup};
 
 450         # build dragdrop for pricegroups
 
 452           qq|<option value="$price--$pricegroup_id"$item->{selected}>$pricegroup</option>\n|;
 
 456 #               $form->{"${_}_$j"} =
 
 457 #               $form->format_amount(\%myconfig, $form->{"${_}_$j"})
 
 458 #              } qw(sellprice price_new price_old);
 
 460         # set new selectedpricegroup_id and prices for "Preis"
 
 461         if ($item->{selected} && ($pricegroup_id != 0)) {
 
 462           $form->{"pricegroup_old_$j"} = $pricegroup_id;
 
 463           $form->{"price_new_$j"}      = $price;
 
 464           $form->{"sellprice_$j"}      = $price;
 
 466         if ($pricegroup_id == 0) {
 
 467           $form->{"price_new_$j"} = $form->{"sellprice_$j"};
 
 470           $form->{"prices_$j"} = $prices;
 
 475   $lxdebug->leave_sub();
 
 479   $lxdebug->enter_sub();
 
 480   @column_index = qw(ndx partnumber description onhand sellprice);
 
 482   $column_data{ndx}        = qq|<th> </th>|;
 
 483   $column_data{partnumber} =
 
 484     qq|<th class=listheading>| . $locale->text('Number') . qq|</th>|;
 
 485   $column_data{description} =
 
 486     qq|<th class=listheading>| . $locale->text('Part Description') . qq|</th>|;
 
 487   $column_data{sellprice} =
 
 488     qq|<th class=listheading>| . $locale->text('Price') . qq|</th>|;
 
 489   $column_data{onhand} =
 
 490     qq|<th class=listheading>| . $locale->text('Qty') . qq|</th>|;
 
 492   # list items with radio button on a form
 
 495   $title   = $locale->text('Select from one of the items below');
 
 496   $colspan = $#column_index + 1;
 
 501 <form method=post action=$form->{script}>
 
 505     <th class=listtop colspan=$colspan>$title</th>
 
 508   <tr class=listheading>|;
 
 510   map { print "\n$column_data{$_}" } @column_index;
 
 515   foreach $ref (@{ $form->{item_list} }) {
 
 516     $checked = ($i++) ? "" : "checked";
 
 519       if ($ref->{inventory_accno} > 0) {
 
 520         $ref->{"lizenzen"} = qq|<option></option>|;
 
 521         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 522           $ref->{"lizenzen"} .=
 
 523             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 525         $ref->{"lizenzen"} .= qq|<option value=-1>Neue Lizenz</option>|;
 
 526         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 530     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 534       $form->round_amount($ref->{sellprice} * (1 - $form->{tradediscount}), 2);
 
 536       qq|<td><input name=ndx class=radio type=radio value=$i $checked></td>|;
 
 537     $column_data{partnumber} =
 
 538       qq|<td><input name="new_partnumber_$i" type=hidden value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 539     $column_data{description} =
 
 540       qq|<td><input name="new_description_$i" type=hidden value="$ref->{description}">$ref->{description}</td>|;
 
 541     $column_data{sellprice} =
 
 542       qq|<td align=right><input name="new_sellprice_$i" type=hidden value=$ref->{sellprice}>|
 
 543       . $form->format_amount(\%myconfig, $ref->{sellprice}, 2, " ")
 
 545     $column_data{onhand} =
 
 546       qq|<td align=right><input name="new_onhand_$i" type=hidden value=$ref->{onhand}>|
 
 547       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 553 <tr class=listrow$j>|;
 
 555     map { print "\n$column_data{$_}" } @column_index;
 
 560 <input name="new_bin_$i" type=hidden value="$ref->{bin}">
 
 561 <input name="new_listprice_$i" type=hidden value=$ref->{listprice}>
 
 562 <input name="new_inventory_accno_$i" type=hidden value=$ref->{inventory_accno}>
 
 563 <input name="new_income_accno_$i" type=hidden value=$ref->{income_accno}>
 
 564 <input name="new_expense_accno_$i" type=hidden value=$ref->{expense_accno}>
 
 565 <input name="new_unit_$i" type=hidden value="$ref->{unit}">
 
 566 <input name="new_weight_$i" type=hidden value="$ref->{weight}">
 
 567 <input name="new_assembly_$i" type=hidden value="$ref->{assembly}">
 
 568 <input name="new_taxaccounts_$i" type=hidden value="$ref->{taxaccounts}">
 
 569 <input name="new_partsgroup_$i" type=hidden value="$ref->{partsgroup}">
 
 571 <input name="new_id_$i" type=hidden value=$ref->{id}>
 
 576 <input name="new_lizenzen_$i" type=hidden value="$ref->{lizenzen}">
 
 583 <tr><td colspan=8><hr size=3 noshade></td></tr>
 
 586 <input name=lastndx type=hidden value=$i>
 
 590   # delete action variable
 
 591   map { delete $form->{$_} } qw(action item_list header);
 
 593   # save all other form variables
 
 594   foreach $key (keys %${form}) {
 
 595     $form->{$key} =~ s/\"/"/g;
 
 596     print qq|<input name=$key type=hidden value="$form->{$key}">\n|;
 
 600 <input type=hidden name=nextsub value=item_selected>
 
 603 <input class=submit type=submit name=action value="|
 
 604     . $locale->text('Continue') . qq|">
 
 611   $lxdebug->leave_sub();
 
 615   $lxdebug->enter_sub();
 
 617   # replace the last row with the checked row
 
 618   $i = $form->{rowcount};
 
 619   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 625   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 626   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 628   # if there was a price entered, override it
 
 629   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 631   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} }
 
 632     qw(id partnumber description sellprice listprice inventory_accno income_accno expense_accno bin unit weight assembly taxaccounts partsgroup);
 
 635     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 638   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 640   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 643     $form->{"sellprice_$i"} = $sellprice;
 
 646     # if there is an exchange rate adjust sellprice
 
 647     if (($form->{exchangerate} * 1) != 0) {
 
 648       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 649       $form->{"sellprice_$i"} =
 
 650         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 654   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 655     qw(sellprice listprice weight);
 
 657   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 658   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 661     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 663   map { $form->{"${_}_base"} += $amount }
 
 664     (split / /, $form->{"taxaccounts_$i"});
 
 665   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 666     $form->{"taxaccounts_$i"}
 
 667     if !$form->{taxincluded};
 
 669   $form->{creditremaining} -= $amount;
 
 671   $form->{"runningnumber_$i"} = $i;
 
 673   # delete all the new_ variables
 
 674   for $i (1 .. $form->{lastndx}) {
 
 675     map { delete $form->{"new_${_}_$i"} }
 
 676       qw(partnumber description sellprice bin listprice inventory_accno income_accno expense_accno unit assembly taxaccounts id);
 
 679   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 684       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 685   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 687   # get pricegroups for parts
 
 688   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 690   # build up html code for prices_$i
 
 691   set_pricegroup($form->{rowcount});
 
 695   $lxdebug->leave_sub();
 
 699   $lxdebug->enter_sub();
 
 702   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 703   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
 706   delete $form->{action};
 
 708   # save all other form variables in a previousform variable
 
 709   foreach $key (keys %$form) {
 
 712     $form->{$key} =~ s/&/%26/g;
 
 713     $previousform .= qq|$key=$form->{$key}&|;
 
 716   $previousform = $form->escape($previousform, 1);
 
 718   $i = $form->{rowcount};
 
 719   map { $form->{"${_}_$i"} =~ s/\"/"/g } qw(partnumber description);
 
 726 <h4 class=error>| . $locale->text('Item not on file!') . qq|
 
 729 | . $locale->text('What type of item is this?') . qq|</h4>
 
 731 <form method=post action=ic.pl>
 
 735   <input class=radio type=radio name=item value=part checked> |
 
 736     . $locale->text('Part') . qq|<br>
 
 737   <input class=radio type=radio name=item value=service> |
 
 738     . $locale->text('Service')
 
 741 <input type=hidden name=previousform value="$previousform">
 
 742 <input type=hidden name=partnumber value="$form->{"partnumber_$i"}">
 
 743 <input type=hidden name=description value="$form->{"description_$i"}">
 
 744 <input type=hidden name=rowcount value=$form->{rowcount}>
 
 745 <input type=hidden name=taxaccount2 value=$form->{taxaccounts}>
 
 746 <input type=hidden name=vc value=$form->{vc}>
 
 748 <input type=hidden name=path value=$form->{path}>
 
 749 <input type=hidden name=login value=$form->{login}>
 
 750 <input type=hidden name=password value=$form->{password}>
 
 752 <input type=hidden name=nextsub value=add>
 
 755 <input class=submit type=submit name=action value="|
 
 756     . $locale->text('Continue') . qq|">
 
 763   $lxdebug->leave_sub();
 
 767   $lxdebug->enter_sub();
 
 769   # if we have a display_form
 
 770   if ($form->{display_form}) {
 
 771     &{"$form->{display_form}"};
 
 774   if (   $form->{print_and_post}
 
 775       && $form->{second_run}
 
 776       && ($form->{action} eq "display_form")) {
 
 777     for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
 778     $old_form->{rowcount}++;
 
 780     #$form->{rowcount}--;
 
 781     #$form->{rowcount}--;
 
 783     $form->{print_and_post} = 0;
 
 785     &print_form($old_form);
 
 789   $form->{action}   = "";
 
 790   $form->{resubmit} = 0;
 
 792   if ($form->{print_and_post} && !$form->{second_run}) {
 
 793     $form->{second_run} = 1;
 
 794     $form->{action}     = "display_form";
 
 796     my $rowcount = $form->{rowcount};
 
 798     # get pricegroups for parts
 
 799     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 801     # build up html code for prices_$i
 
 802     set_pricegroup($rowcount);
 
 804     $form->{resubmit} = 1;
 
 809   $numrows    = ++$form->{rowcount};
 
 810   $subroutine = "display_row";
 
 812   if ($form->{item} eq 'part') {
 
 814     #set preisgruppenanzahl
 
 815     $numrows    = $form->{price_rows};
 
 816     $subroutine = "price_row";
 
 818     &{$subroutine}($numrows);
 
 820     $numrows    = ++$form->{makemodel_rows};
 
 821     $subroutine = "makemodel_row";
 
 823   if ($form->{item} eq 'assembly') {
 
 824     $numrows    = ++$form->{price_rows};
 
 825     $subroutine = "price_row";
 
 827     &{$subroutine}($numrows);
 
 829     $numrows    = ++$form->{makemodel_rows};
 
 830     $subroutine = "makemodel_row";
 
 832     # create makemodel rows
 
 833     &{$subroutine}($numrows);
 
 835     $numrows    = ++$form->{assembly_rows};
 
 836     $subroutine = "assembly_row";
 
 838   if ($form->{item} eq 'service') {
 
 839     $numrows    = $form->{price_rows};
 
 840     $subroutine = "price_row";
 
 842     &{$subroutine}($numrows);
 
 848   &{$subroutine}($numrows) if $numrows;
 
 852   $lxdebug->leave_sub();
 
 856   $lxdebug->enter_sub();
 
 860     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)
 
 863   # remove any makes or model rows
 
 864   if ($form->{item} eq 'part') {
 
 865     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 866       qw(listprice sellprice lastcost weight rop);
 
 868     @flds = (make, model);
 
 869     for my $i (1 .. ($form->{makemodel_rows})) {
 
 870       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
 874         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 879     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
 880     $form->{makemodel_rows} = $count;
 
 882   } elsif ($form->{item} eq 'assembly') {
 
 884     $form->{sellprice} = 0;
 
 886     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 887       qw(listprice rop stock);
 
 890       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
 
 892     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 893       if ($form->{"qty_$i"}) {
 
 897         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 899         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 901         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 903         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
 
 904         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
 909     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 911     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 912     $form->{assembly_rows} = $count;
 
 915     @flds  = qw(make model);
 
 918     for my $i (1 .. ($form->{makemodel_rows})) {
 
 919       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
 923         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 928     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
 929     $form->{makemodel_rows} = $count;
 
 933     # this section applies to invoices and orders
 
 934     # remove any empty numbers
 
 935     if ($form->{rowcount}) {
 
 936       for my $i (1 .. $form->{rowcount} - 1) {
 
 937         if ($form->{"partnumber_$i"}) {
 
 941           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 944             if ($form->{"licensenumber_$i"} == -1) {
 
 952       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 953       $form->{rowcount} = $count;
 
 955       $form->{creditremaining} -= &invoicetotal;
 
 962   if (   $form->{type} =~ (/sales_quotation/)
 
 963       or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/))
 
 964       or (($form->{level} eq undef) and ($form->{type} =~ /invoice/))
 
 965       or ($form->{type} =~ /sales_order/)) {
 
 967     # get pricegroups for parts
 
 968     IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 970     # build up html code for prices_$i
 
 971     set_pricegroup($form->{rowcount});
 
 977   $lxdebug->leave_sub();
 
 981   $lxdebug->enter_sub();
 
 983   $form->{oldinvtotal} = 0;
 
 985   # add all parts and deduct paid
 
 986   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
 988   my ($amount, $sellprice, $discount, $qty);
 
 990   for my $i (1 .. $form->{rowcount}) {
 
 991     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 992     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
 993     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 995     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 997     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
 998     map { $form->{"${_}_base"} += $amount }
 
 999       (split / /, $form->{"taxaccounts_$i"});
 
1000     $form->{oldinvtotal} += $amount;
 
1003   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1004     split / /, $form->{taxaccounts}
 
1005     if !$form->{taxincluded};
 
1007   $form->{oldtotalpaid} = 0;
 
1008   for $i (1 .. $form->{paidaccounts}) {
 
1009     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
1012   $lxdebug->leave_sub();
 
1015   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1018 sub validate_items {
 
1019   $lxdebug->enter_sub();
 
1021   # check if items are valid
 
1022   if ($form->{rowcount} == 1) {
 
1027   for $i (1 .. $form->{rowcount} - 1) {
 
1028     $form->isblank("partnumber_$i",
 
1029                    $locale->text('Number missing in Row') . " $i");
 
1032   $lxdebug->leave_sub();
 
1036   $lxdebug->enter_sub();
 
1037   if ($form->{second_run}) {
 
1038     $form->{print_and_post} = 0;
 
1040   $form->{ordnumber} = $form->{invnumber};
 
1042   map { delete $form->{$_} } qw(id printed emailed queued);
 
1043   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
1044     $form->{title} = $locale->text('Add Purchase Order');
 
1045     $form->{vc}    = 'vendor';
 
1046     $form->{type}  = 'purchase_order';
 
1049   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
1050     $form->{title} = $locale->text('Add Sales Order');
 
1051     $form->{vc}    = 'customer';
 
1052     $form->{type}  = 'sales_order';
 
1055   $form->{script} = 'oe.pl';
 
1057   $form->{shipto} = 1;
 
1059   $form->{rowcount}--;
 
1061   ($null, $form->{cp_id}) = split /--/, $form->{contact};
 
1062   $form->{cp_id} *= 1;
 
1064   require "$form->{path}/$form->{script}";
 
1066   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1068   $currency = $form->{currency};
 
1072   $form->{currency}     = $currency;
 
1073   $form->{exchangerate} = "";
 
1074   $form->{forex}        = "";
 
1075   $form->{exchangerate} = $exchangerate
 
1079                     $form->check_exchangerate(
 
1080                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1086   $lxdebug->leave_sub();
 
1090   $lxdebug->enter_sub();
 
1091   if ($form->{second_run}) {
 
1092     $form->{print_and_post} = 0;
 
1094   map { delete $form->{$_} } qw(id printed emailed queued);
 
1096   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
1097     $form->{title} = $locale->text('Add Request for Quotation');
 
1098     $form->{vc}    = 'vendor';
 
1099     $form->{type}  = 'request_quotation';
 
1102   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
1103     $form->{title} = $locale->text('Add Quotation');
 
1104     $form->{vc}    = 'customer';
 
1105     $form->{type}  = 'sales_quotation';
 
1109   ($null, $form->{cp_id}) = split /--/, $form->{contact};
 
1110   $form->{cp_id} *= 1;
 
1112   $form->{script} = 'oe.pl';
 
1114   $form->{shipto} = 1;
 
1116   $form->{rowcount}--;
 
1118   require "$form->{path}/$form->{script}";
 
1120   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1122   $currency = $form->{currency};
 
1126   $form->{currency}     = $currency;
 
1127   $form->{exchangerate} = "";
 
1128   $form->{forex}        = "";
 
1129   $form->{exchangerate} = $exchangerate
 
1133                     $form->check_exchangerate(
 
1134                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1140   $lxdebug->leave_sub();
 
1144   $lxdebug->enter_sub();
 
1145   if ($form->{second_run}) {
 
1146     $form->{print_and_post} = 0;
 
1147     $form->{resubmit}       = 0;
 
1149   if ($myconfig{role} eq 'admin') {
 
1151           <th align=right nowrap=true>| . $locale->text('Bcc') . qq|</th>
 
1152           <td><input name=bcc size=30 value="$form->{bcc}"></td>
 
1156   if ($form->{formname} =~ /(pick|packing|bin)_list/) {
 
1157     $form->{email} = $form->{shiptoemail} if $form->{shiptoemail};
 
1160   $name = $form->{ $form->{vc} };
 
1162   $title = $locale->text('E-mail') . " $name";
 
1164   $form->{oldmedia} = $form->{media};
 
1165   $form->{media}    = "email";
 
1172 <form method=post action=$form->{script}>
 
1176     <th class=listtop>$title</th>
 
1178   <tr height="5"></tr>
 
1183           <th align=right nowrap>| . $locale->text('To') . qq|</th>
 
1184           <td><input name=email size=30 value="$form->{email}"></td>
 
1185           <th align=right nowrap>| . $locale->text('Cc') . qq|</th>
 
1186           <td><input name=cc size=30 value="$form->{cc}"></td>
 
1189           <th align=right nowrap>| . $locale->text('Subject') . qq|</th>
 
1190           <td><input name=subject size=30 value="$form->{subject}"></td>
 
1200           <th align=left nowrap>| . $locale->text('Message') . qq|</th>
 
1203           <td><textarea name=message rows=15 cols=60 wrap=soft>$form->{message}</textarea></td>
 
1214   map { delete $form->{$_} }
 
1215     qw(action email cc bcc subject message formname sendmode format header override);
 
1217   # save all other variables
 
1218   foreach $key (keys %$form) {
 
1219     $form->{$key} =~ s/\"/"/g;
 
1220     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1227     <td><hr size=3 noshade></td>
 
1231 <input type=hidden name=nextsub value=send_email>
 
1234 <input name=action class=submit type=submit value="|
 
1235     . $locale->text('Continue') . qq|">
 
1242   $lxdebug->leave_sub();
 
1246   $lxdebug->enter_sub();
 
1248   $old_form = new Form;
 
1250   map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1251   $old_form->{media} = $form->{oldmedia};
 
1253   &print_form($old_form);
 
1255   $lxdebug->leave_sub();
 
1259   $lxdebug->enter_sub();
 
1260   $form->{sendmode} = "attachment";
 
1261   $form->{copies}   = 3 unless $form->{copies};
 
1263   $form->{PD}{ $form->{formname} } = "selected";
 
1264   $form->{DF}{ $form->{format} }   = "";
 
1265   $form->{OP}{ $form->{media} }    = "selected";
 
1266   $form->{SM}{ $form->{sendmode} } = "selected";
 
1268   if ($form->{type} eq 'purchase_order') {
 
1269     $type = qq|<select name=formname>
 
1270             <option value=purchase_order $form->{PD}{purchase_order}>|
 
1271       . $locale->text('Purchase Order') . qq|
 
1272             <option value=bin_list $form->{PD}{bin_list}>|
 
1273       . $locale->text('Bin List');
 
1276   if ($form->{type} eq 'sales_order') {
 
1277     $type = qq|<select name=formname>
 
1278             <option value=sales_order $form->{PD}{sales_order}>|
 
1279       . $locale->text('Confirmation') . qq|
 
1280             <option value=pick_list $form->{PD}{pick_list}>|
 
1281       . $locale->text('Pick List') . qq|
 
1282             <option value=packing_list $form->{PD}{packing_list}>|
 
1283       . $locale->text('Packing List');
 
1286   if ($form->{type} =~ /_quotation$/) {
 
1287     $type = qq|<select name=formname>
 
1288             <option value="$`_quotation" $form->{PD}{"$`_quotation"}>|
 
1289       . $locale->text('Quotation') . qq|
 
1293   if ($form->{type} eq 'invoice') {
 
1294     $type = qq|<select name=formname>
 
1295             <option value=invoice $form->{PD}{invoice}>| . $locale->text('Invoice');
 
1298   if ($form->{type} eq 'ship_order') {
 
1299     $type = qq|<select name=formname>
 
1300             <option value=pick_list $form->{PD}{pick_list}>|
 
1301       . $locale->text('Pick List') . qq|
 
1302             <option value=packing_list $form->{PD}{packing_list}>|
 
1303       . $locale->text('Packing List');
 
1306   if ($form->{type} eq 'receive_order') {
 
1307     $type = qq|<select name=formname>
 
1308             <option value=bin_list $form->{PD}{bin_list}>|
 
1309       . $locale->text('Bin List');
 
1312   if ($form->{media} eq 'email') {
 
1313     $media = qq|<select name=sendmode>
 
1314             <option value=attachment $form->{SM}{attachment}>|
 
1315       . $locale->text('Attachment') . qq|
 
1316             <option value=inline $form->{SM}{inline}>| . $locale->text('In-line');
 
1318     $media = qq|<select name=media>
 
1319             <option value=screen $form->{OP}{screen}>| . $locale->text('Screen');
 
1320     if ($myconfig{printer} && $latex) {
 
1322             <option value=printer $form->{OP}{printer}>|
 
1323         . $locale->text('Printer');
 
1327             <option value=queue $form->{OP}{queue}>| . $locale->text('Queue');
 
1331   $format = qq|<select name=format>
 
1332             <option value=html $form->{DF}{html}>html|;
 
1335     $format = qq|<select name=format>
 
1336             <option value=pdf $form->{DF}{pdf}>| . $locale->text('PDF') . qq|
 
1337             <option value=html $form->{DF}{html}>html
 
1338             <option value=postscript $form->{DF}{postscript}>|
 
1339       . $locale->text('Postscript');
 
1342   $language = qq|<select name=language>
 
1343                  <option value=""></option>|;
 
1344   %lang = (de => "deutsch", en => "englisch", fr => "französisch");
 
1345   foreach $item (keys %lang) {
 
1346     if ($form->{language} eq $item) {
 
1347       $language .= qq|<option value="$item" selected>$lang{$item}</option>|;
 
1349       $language .= qq|<option value="$item">$lang{$item}</option>|;
 
1354 <table width=100% cellspacing=0 cellpadding=0>
 
1359           <td>$type</select></td>
 
1360           <td>$language</select</td>
 
1361           <td>$format</select></td>
 
1362           <td>$media</select></td>
 
1365   if ($myconfig{printer} && $latex && $form->{media} ne 'email') {
 
1367           <td>| . $locale->text('Copies') . qq|
 
1368           <input name=copies size=2 value=$form->{copies}></td>
 
1372   $form->{groupitems} = "checked" if $form->{groupitems};
 
1375           <td>| . $locale->text('Group Items') . qq|</td>
 
1376           <td><input name=groupitems type=checkbox class=checkbox $form->{groupitems}></td>
 
1385   if ($form->{printed} =~ /$form->{formname}/) {
 
1387           <th>\|| . $locale->text('Printed') . qq|\|</th>
 
1391   if ($form->{emailed} =~ /$form->{formname}/) {
 
1393           <th>\|| . $locale->text('E-mailed') . qq|\|</th>
 
1397   if ($form->{queued} =~ /$form->{formname}/) {
 
1399           <th>\|| . $locale->text('Queued') . qq|\|</th>
 
1411   $lxdebug->leave_sub();
 
1415   $lxdebug->enter_sub();
 
1416   if ($form->{second_run}) {
 
1417     $form->{print_and_post} = 0;
 
1420   # if this goes to the printer pass through
 
1421   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1422     $form->error($locale->text('Select postscript or PDF!'))
 
1423       if ($form->{format} !~ /(postscript|pdf)/);
 
1425     $old_form = new Form;
 
1426     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1429   &print_form($old_form);
 
1431   $lxdebug->leave_sub();
 
1435   $lxdebug->enter_sub();
 
1436   my ($old_form) = @_;
 
1440   $numberfld = "invnumber";
 
1443     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1445   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1446   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1448   if ($form->{formname} eq "invoice") {
 
1449     $form->{label} = $locale->text('Invoice');
 
1451   if ($form->{formname} eq "packing_list") {
 
1453     # this is from an invoice
 
1454     $form->{label} = $locale->text('Packing List');
 
1456   if ($form->{formname} eq 'sales_order') {
 
1459     $form->{"${inv}date"} = $form->{transdate};
 
1460     $form->{label}        = $locale->text('Sales Order');
 
1461     $numberfld            = "sonumber";
 
1464   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1466     # we use the same packing list as from an invoice
 
1469     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1470     $form->{label} = $locale->text('Packing List');
 
1473   if ($form->{formname} eq 'pick_list') {
 
1476     $form->{"${inv}date"} =
 
1477       ($form->{transdate}) ? $form->{transdate} : $form->{invdate};
 
1478     $form->{label} = $locale->text('Pick List');
 
1479     $order = 1 unless $form->{type} eq 'invoice';
 
1481   if ($form->{formname} eq 'purchase_order') {
 
1484     $form->{"${inv}date"} = $form->{transdate};
 
1485     $form->{label}        = $locale->text('Purchase Order');
 
1486     $numberfld            = "ponumber";
 
1489   if ($form->{formname} eq 'bin_list') {
 
1492     $form->{"${inv}date"} = $form->{transdate};
 
1493     $form->{label}        = $locale->text('Bin List');
 
1496   if ($form->{formname} eq 'sales_quotation') {
 
1499     $form->{"${inv}date"} = $form->{transdate};
 
1500     $form->{label}        = $locale->text('Quotation');
 
1501     $numberfld            = "sqnumber";
 
1504   if ($form->{formname} eq 'request_quotation') {
 
1507     $form->{"${inv}date"} = $form->{transdate};
 
1508     $form->{label}        = $locale->text('Quotation');
 
1509     $numberfld            = "rfqnumber";
 
1513   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1514     if ($form->{media} eq 'email');
 
1515   $form->isblank("${inv}date",
 
1516                  $locale->text($form->{label} . ' Date missing!'));
 
1518   # $locale->text('Invoice Number missing!')
 
1519   # $locale->text('Invoice Date missing!')
 
1520   # $locale->text('Packing List Number missing!')
 
1521   # $locale->text('Packing List Date missing!')
 
1522   # $locale->text('Order Number missing!')
 
1523   # $locale->text('Order Date missing!')
 
1524   # $locale->text('Quotation Number missing!')
 
1525   # $locale->text('Quotation Date missing!')
 
1528   if (!$form->{"${inv}number"} && !$form->{preview}) {
 
1529     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1530     if ($form->{media} ne 'email') {
 
1532       # get pricegroups for parts
 
1533       IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1535       # build up html code for prices_$i
 
1536       set_pricegroup($form->{rowcount});
 
1538       $form->{rowcount}--;
 
1547   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1548   my ($saved_email, $saved_cc, $saved_bcc) =
 
1549     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1551   $language = $form->{language};
 
1552   &{"$form->{vc}_details"};
 
1553   $form->{language} = $language;
 
1555   $form->{"email"} = $saved_email if ($saved_email);
 
1556   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1557   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1560   foreach $i (1 .. $form->{rowcount}) {
 
1562       ("partnumber_$i", "description_$i",
 
1563        "partsgroup_$i", "serialnumber_$i",
 
1564        "bin_$i",        "unit_$i",
 
1565        "transdate_$i",  "ordnumber_$i");
 
1567   map { push @a, "${_}_description" } split / /, $form->{taxaccounts};
 
1569   $ARAP = ($form->{vc} eq 'customer') ? "AR" : "AP";
 
1572   # format payment dates
 
1573   for $i (1 .. $form->{paidaccounts} - 1) {
 
1574     $form->{"datepaid_$i"} = $locale->date(\%myconfig, $form->{"datepaid_$i"});
 
1575     push @a, "${ARAP}_paid_$i", "source_$i", "memo_$i";
 
1578   $form->format_string(@a);
 
1580   ($form->{employee}) = split /--/, $form->{employee};
 
1581   ($form->{warehouse}, $form->{warehouse_id}) = split /--/, $form->{warehouse};
 
1583   # create the form variables
 
1585     OE->order_details(\%myconfig, \%$form);
 
1587     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1590   map { $form->{$_} = $locale->date(\%myconfig, $form->{$_}, 1) }
 
1591     ("${inv}date", "${due}date", "shippingdate");
 
1593   @a = qw(name street zipcode city country);
 
1597   # if there is no shipto fill it in from billto
 
1598   foreach $item (@a) {
 
1599     if ($form->{"shipto$item"}) {
 
1606     if (   $form->{formname} eq 'purchase_order'
 
1607         || $form->{formname} eq 'request_quotation') {
 
1608       $form->{shiptoname}   = $myconfig{company};
 
1609       $form->{shiptostreet} = $myconfig{address};
 
1611       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1615   $form->{notes} =~ s/^\s+//g;
 
1617   # some of the stuff could have umlauts so we translate them
 
1619     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptoemail shippingpoint shipvia company address signature employee contact department_1 department_2);
 
1621   push @a, ("${inv}date", "${due}date", email, cc, bcc);
 
1623   $form->format_string(@a);
 
1625   $form->{templates} = "$myconfig{templates}";
 
1626   if ($form->{language} ne "") {
 
1627     $form->{language} = "_" . $form->{language};
 
1630   $form->{IN} = "$form->{formname}$form->{language}.html";
 
1631   if ($form->{format} eq 'postscript') {
 
1632     $form->{postscript} = 1;
 
1633     $form->{IN} =~ s/html$/tex/;
 
1635   if ($form->{format} eq 'pdf') {
 
1637     $form->{IN} =~ s/html$/tex/;
 
1640   if ($form->{media} eq 'printer') {
 
1641     $form->{OUT} = "| $myconfig{printer}";
 
1642     $form->{printed} .= " $form->{formname}";
 
1643     $form->{printed} =~ s/^ //;
 
1645   $printed = $form->{printed};
 
1647   if ($form->{media} eq 'email') {
 
1648     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1649       unless $form->{subject};
 
1651     $form->{OUT} = "$sendmail";
 
1653     $form->{emailed} .= " $form->{formname}";
 
1654     $form->{emailed} =~ s/^ //;
 
1656   $emailed = $form->{emailed};
 
1658   if ($form->{media} eq 'queue') {
 
1659     %queued = split / /, $form->{queued};
 
1661     if ($filename = $queued{ $form->{formname} }) {
 
1662       $form->{queued} =~ s/$form->{formname} $filename//;
 
1663       unlink "$spool/$filename";
 
1664       $filename =~ s/\..*$//g;
 
1670     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1671     $form->{OUT} = ">$spool/$filename";
 
1674     $form->{queued} .= " $form->{formname} $filename";
 
1676     $form->{queued} =~ s/^ //;
 
1678   $queued = $form->{queued};
 
1680   $form->parse_template(\%myconfig, $userspath);
 
1682   $form->{callback} = "";
 
1684   if ($form->{media} eq 'email') {
 
1685     $form->{message} = $locale->text('sent') unless $form->{message};
 
1687   $message = $form->{message};
 
1689   # if we got back here restore the previous form
 
1690   if ($form->{media} =~ /(printer|email|queue)/) {
 
1692     $form->update_status(\%myconfig)
 
1693       if ($form->{media} eq 'queue' && $form->{id});
 
1697       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1699       # restore and display form
 
1700       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1702       $form->{queued}  = $queued;
 
1703       $form->{printed} = $printed;
 
1704       $form->{emailed} = $emailed;
 
1705       $form->{message} = $message;
 
1707       $form->{rowcount}--;
 
1708       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1709         qw(exchangerate creditlimit creditremaining);
 
1711       for $i (1 .. $form->{paidaccounts}) {
 
1713           $form->{"${_}_$i"} =
 
1714             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1715         } qw(paid exchangerate);
 
1723       ($form->{media} eq 'printer')
 
1724       ? $locale->text('sent to printer')
 
1725       : $locale->text('emailed to') . " $form->{email}";
 
1726     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1731   $lxdebug->leave_sub();
 
1734 sub customer_details {
 
1735   $lxdebug->enter_sub();
 
1736   IS->customer_details(\%myconfig, \%$form);
 
1737   $lxdebug->leave_sub();
 
1740 sub vendor_details {
 
1741   $lxdebug->enter_sub();
 
1743   IR->vendor_details(\%myconfig, \%$form);
 
1745   $lxdebug->leave_sub();
 
1749   $lxdebug->enter_sub();
 
1751   $form->{postasnew} = 1;
 
1752   map { delete $form->{$_} } qw(printed emailed queued);
 
1756   $lxdebug->leave_sub();
 
1760   $lxdebug->enter_sub();
 
1761   if ($form->{second_run}) {
 
1762     $form->{print_and_post} = 0;
 
1765   $title = $form->{title};
 
1766   $form->{title} = $locale->text('Ship to');
 
1768   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1769     qw(exchangerate creditlimit creditremaining);
 
1771   # get details for name
 
1772   &{"$form->{vc}_details"};
 
1775     ($form->{vc} eq 'customer')
 
1776     ? $locale->text('Customer Number')
 
1777     : $locale->text('Vendor Number');
 
1779   # get pricegroups for parts
 
1780   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1782   # build up html code for prices_$i
 
1783   set_pricegroup($form->{rowcount});
 
1785   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1787   $form->{rowcount}--;
 
1794 <form method=post action=$form->{script}>
 
1800         <tr class=listheading>
 
1801           <th class=listheading colspan=2 width=50%>|
 
1802     . $locale->text('Billing Address') . qq|</th>
 
1803           <th class=listheading width=50%>|
 
1804     . $locale->text('Shipping Address') . qq|</th>
 
1806         <tr height="5"></tr>
 
1808           <th align=right nowrap>$number</th>
 
1809           <td>$form->{"$form->{vc}number"}</td>
 
1812           <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
 
1813           <td>$form->{name}</td>
 
1814           <td><input name=shiptoname size=35 value="$form->{shiptoname}"></td>
 
1817           <th align=right nowrap>| . $locale->text('Street') . qq|</th>
 
1818           <td>$form->{street}</td>
 
1819           <td><input name=shiptostreet size=35 value="$form->{shiptostreet}"></td>
 
1822           <th align=right nowrap>| . $locale->text('Zipcode') . qq|</th>
 
1823           <td>$form->{zipcode}</td>
 
1824           <td><input name=shiptozipcode size=35 value="$form->{shiptozipcode}"></td>
 
1827           <th align=right nowrap>| . $locale->text('City') . qq|</th>
 
1828           <td>$form->{city}</td>
 
1829           <td><input name=shiptocity size=35 value="$form->{shiptocity}"></td>
 
1832           <th align=right nowrap>| . $locale->text('Country') . qq|</th>
 
1833           <td>$form->{country}</td>
 
1834           <td><input name=shiptocountry size=35 value="$form->{shiptocountry}"></td>
 
1837           <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
 
1838           <td>$form->{contact}</td>
 
1839           <td><input name=shiptocontact size=35 value="$form->{shiptocontact}"></td>
 
1842           <th align=right nowrap>| . $locale->text('Phone') . qq|</th>
 
1843           <td>$form->{"$form->{vc}phone"}</td>
 
1844           <td><input name=shiptophone size=20 value="$form->{shiptophone}"></td>
 
1847           <th align=right nowrap>| . $locale->text('Fax') . qq|</th>
 
1848           <td>$form->{"$form->{vc}fax"}</td>
 
1849           <td><input name=shiptofax size=20 value="$form->{shiptofax}"></td>
 
1852           <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
 
1853           <td>$form->{email}</td>
 
1854           <td><input name=shiptoemail size=35 value="$form->{shiptoemail}"></td>
 
1861 <input type=hidden name=nextsub value=$nextsub>
 
1865   map { delete $form->{$_} }
 
1866     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail header);
 
1867   $form->{title} = $title;
 
1869   foreach $key (keys %$form) {
 
1870     $form->{$key} =~ s/\"/"/g;
 
1871     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1879 <input class=submit type=submit name=action value="|
 
1880     . $locale->text('Continue') . qq|">
 
1887   $lxdebug->leave_sub();
 
1891   $lxdebug->enter_sub();
 
1896   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
1897   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
1898   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
1901   delete $form->{action};
 
1902   $customer = $form->{customer};
 
1903   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
1905   # save all other form variables in a previousform variable
 
1906   $form->{row} = $row;
 
1907   foreach $key (keys %$form) {
 
1910     $form->{$key} =~ s/&/%26/g;
 
1911     $previousform .= qq|$key=$form->{$key}&|;
 
1914   $previousform = $form->escape($previousform, 1);
 
1916   $form->{script} = "licenses.pl";
 
1918   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
1919   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
1920     qw(partnumber description);
 
1922     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|;
 
1925   $lxdebug->leave_sub();