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 print STDERR "io.pl-display_row\n";
 
  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   push @column_index, qw(unit);
 
 106   #for pricegroups column
 
 107   if ($form->{type} =~ (/sales_quotation/) or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/)) or (($form->{level} eq undef) and ($form->{type} =~ /invoice/)) or ($form->{type} =~ /sales_order/)) {
 
 108     push @column_index, qw(sellprice_drag);
 
 111   push @column_index, qw(sellprice);
 
 113   if ($form->{vc} eq 'customer') {
 
 114     push @column_index, qw(discount);
 
 117   push @column_index, "linetotal";
 
 119   my $colspan = $#column_index + 1;
 
 121   $form->{invsubtotal} = 0;
 
 122   map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
 
 124 ########################################
 
 125   # Eintrag fuer Version 2.2.0 geaendert #
 
 126   # neue Optik im Rechnungsformular      #
 
 127 ########################################
 
 128   $column_data{runningnumber} =
 
 129       qq|<th align=left nowrap width=5 class=listheading>|
 
 130     . $locale->text('No.')
 
 132   $column_data{partnumber} =
 
 133       qq|<th align=left nowrap width=12 class=listheading>|
 
 134     . $locale->text('Number')
 
 136   $column_data{description} =
 
 137       qq|<th align=left nowrap width=30 class=listheading>|
 
 138     . $locale->text('Part Description')
 
 141       qq|<th align=left nowrap width=5 class=listheading>|
 
 142     . $locale->text('Ship')
 
 145       qq|<th align=left nowrap width=5 class=listheading>|
 
 146     . $locale->text('Qty')
 
 149       qq|<th align=left nowrap width=5 class=listheading>|
 
 150     . $locale->text('Unit')
 
 152   $column_data{license} =
 
 153       qq|<th align=left nowrap width=10 class=listheading>|
 
 154     . $locale->text('License')
 
 156   $column_data{serialnr} =
 
 157       qq|<th align=left nowrap width=10 class=listheading>|
 
 158     . $locale->text('Serial No.')
 
 160   $column_data{projectnr} =
 
 161       qq|<th align=left nowrap width=10 class=listheading>|
 
 162     . $locale->text('Project')
 
 164   $column_data{sellprice} =
 
 165       qq|<th align=left nowrap width=15 class=listheading>|
 
 166     . $locale->text('Price')
 
 168   $column_data{sellprice_drag} =
 
 169       qq|<th align=left nowrap width=15 class=listheading>|
 
 170     . $locale->text('Pricegroup')
 
 172   $column_data{discount} =
 
 173       qq|<th align=left class=listheading>|
 
 174     . $locale->text('Discount')
 
 176   $column_data{linetotal} =
 
 177       qq|<th align=left nowrap width=10 class=listheading>|
 
 178     . $locale->text('Extended')
 
 181       qq|<th align=left nowrap width=10 class=listheading>|
 
 182     . $locale->text('Bin')
 
 184 ############## ENDE Neueintrag ##################
 
 190         <tr class=listheading>|;
 
 192   map { print "\n$column_data{$_}" } @column_index;
 
 198   $runningnumber = $locale->text('No.');
 
 199   $deliverydate  = $locale->text('Delivery Date');
 
 200   $serialnumber  = $locale->text('Serial No.');
 
 201   $projectnumber = $locale->text('Project');
 
 202   $partsgroup    = $locale->text('Group');
 
 204   $delvar = 'deliverydate';
 
 206   if ($form->{type} =~ /_order$/ || $form->{type} =~ /_quotation$/) {
 
 207     $deliverydate = $locale->text('Required by');
 
 211   for $i (1 .. $numrows) {
 
 216         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 217     } qw(qty ship discount sellprice price_new price_old);
 
 219     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 221     $decimalplaces = ($dec > 2) ? $dec : 2;
 
 225                         $form->{"sellprice_$i"} * $form->{"discount_$i"} / 100,
 
 229       $form->round_amount($form->{"sellprice_$i"} - $discount, $decimalplaces);
 
 230     $linetotal = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
 
 232     # convert " to "
 
 233     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 234       qw(partnumber description unit);
 
 236 ########################################
 
 237     # Eintrag fuer Version 2.2.0 geaendert #
 
 238     # neue Optik im Rechnungsformular      #
 
 239 ########################################
 
 240     $column_data{runningnumber} =
 
 241       qq|<td><input name="runningnumber_$i" size=5 value=$i></td>|;    # HuT
 
 242 ############## ENDE Neueintrag ##################
 
 244     $column_data{partnumber} =
 
 245       qq|<td><input name="partnumber_$i" size=12 value="$form->{"partnumber_$i"}"></td>|;
 
 247     if (($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) {
 
 248       $column_data{description} =
 
 249         qq|<td><textarea name="description_$i" rows=$rows cols=30 wrap=soft>$form->{"description_$i"}</textarea></td>|;
 
 251       $column_data{description} =
 
 252         qq|<td><input name="description_$i" size=30 value="$form->{"description_$i"}"></td>|;
 
 256         qq|<td align=right><input name="qty_$i" size=5 value=|.$form->format_amount(\%myconfig, $form->{"qty_$i"},0).qq|></td>|;
 
 258         qq|<td align=right><input name="ship_$i" size=5 value=|
 
 259       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
 
 262       qq|<td><input name="unit_$i" size=5 value="$form->{"unit_$i"}"></td>|;
 
 266  #print (STDERR "io.pl---111-i-$i", Dumper($form->{PRICES}));
 
 267     # build in dragdrop for pricesgroups
 
 268     if ($form->{"prices_$i"}) {
 
 269  print STDERR " YES  prices\n";
 
 270       $price_tmp = $form->format_amount(\%myconfig, $form->{"price_new_$i"}, 2);
 
 272       $column_data{sellprice_drag} =
 
 273         qq|<td align=right><select name="sellprice_drag_$i">$form->{"prices_$i"}</select></td>|;
 
 274       $column_data{sellprice} =
 
 275         qq|<td><input name="sellprice_$i" size=5 value=$price_tmp></td>|;
 
 277       print STDERR " NO prices\n";
 
 278       # for last row and report
 
 279       # set pricegroup dragdrop from report menu
 
 280       if ($form->{"sellprice_$i"} != 0) {
 
 281 print STDERR "   HIER NOCH FÜR RECHNUNGSAUFRUFE\n";
 
 282 print (STDERR "sellprice_$i   ", Dumper($form->{"sellprice_$i"}), " pricegroup_id_$i ", Dumper($form->{"pricegroup_id_$i"}));
 
 284              qq|<option value="$form->{"sellprice_$i"}--$form->{"pricegroup_id_$i"}" selected>$form->{"pricegroup_$i"}</option>\n|;
 
 286         $form->{"pricegroup_old_$i"} = $form->{"pricegroup_id_$i"};
 
 288         $column_data{sellprice_drag} =
 
 289           qq|<td align=right><select name="sellprice_drag_$i">$prices</select></td>|;
 
 293           $column_data{sellprice_drag} =
 
 294             qq|<td align=right><input name="sellprice_$i" size=9 value=|
 
 295               . $form->format_amount(\%myconfig, $form->{"prices_$i"},
 
 300       $column_data{sellprice} =
 
 301         qq|<td><input name="sellprice_$i" size=5 value=|
 
 302         . $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 306 #print (STDERR "io.pl---555-i-$i", Dumper($form->{"price_old_$i"}));
 
 307     $column_data{discount} =
 
 308         qq|<td align=right><input name="discount_$i" size=3 value=|
 
 309       . $form->format_amount(\%myconfig, $form->{"discount_$i"})
 
 311     $column_data{linetotal} =
 
 313       . $form->format_amount(\%myconfig, $linetotal, 2)
 
 315     $column_data{bin} = qq|<td>$form->{"bin_$i"}</td>|;
 
 317 ########################################
 
 318     # Eintrag fuer Version 2.2.0 geaendert #
 
 319     # neue Optik im Rechnungsformular      #
 
 320 ########################################
 
 321     #     if ($lizenzen &&  $form->{type} eq "invoice" &&  $form->{vc} eq "customer") {
 
 322     #     $column_data{license} = qq|<td><select name="licensenumber_$i">$form->{"lizenzen_$i"}></select></td>|;
 
 325     #     if ($form->{type} !~ /_quotation/) {
 
 326     #     $column_data{serialnr} = qq|<td><input name="serialnumber_$i" size=10 value="$form->{"serialnumber_$i"}"></td>|;
 
 329     #     $column_data{projectnr} = qq|<td><input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}"></td>|;
 
 330 ############## ENDE Neueintrag ##################
 
 335     map { print "\n$column_data{$_}" } @column_index;
 
 340 <input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
 
 341 <input type=hidden name="bo_$i" value=$form->{"bo_$i"}>
 
 343 <input type=hidden name="pricegroup_old_$i" value=$form->{"pricegroup_old_$i"}>
 
 344 <input type=hidden name="price_old_$i" value=$form->{"price_old_$i"}>
 
 345 <input type=hidden name="price_new_$i" value=|.$form->format_amount(\%myconfig,$form->{"price_new_$i"}).qq|>
 
 347 <input type=hidden name="id_$i" value=$form->{"id_$i"}>
 
 348 <input type=hidden name="inventory_accno_$i" value=$form->{"inventory_accno_$i"}>
 
 349 <input type=hidden name="bin_$i" value="$form->{"bin_$i"}">
 
 350 <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">
 
 351 <input type=hidden name="partnotes_$i" value="$form->{"partnotes_$i"}">
 
 352 <input type=hidden name="income_accno_$i" value=$form->{"income_accno_$i"}>
 
 353 <input type=hidden name="expense_accno_$i" value=$form->{"expense_accno_$i"}>
 
 354 <input type=hidden name="listprice_$i" value="$form->{"listprice_$i"}">
 
 355 <input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
 
 356 <input type=hidden name="taxaccounts_$i" value="$form->{"taxaccounts_$i"}">
 
 360 ########################################
 
 361     # Eintrag fuer Version 2.2.0 geaendert #
 
 362     # neue Optik im Rechnungsformular      #
 
 363 ########################################
 
 367           <td colspan=$colspan>
 
 369     if ($lizenzen && $form->{type} eq "invoice" && $form->{vc} eq "customer") {
 
 370       my $selected = $form->{"licensenumber_$i"};
 
 372       $form->{"lizenzen_$i"} =~ s/ selected//g;
 
 373       $form->{"lizenzen_$i"} =~
 
 374         s/value="${selected}"\>/value="${selected}" selected\>/;
 
 375       $lizenzen_quoted = $form->{"lizenzen_$i"};
 
 376       $lizenzen_quoted =~ s/\"/"/g;
 
 378         <b>Lizenz\#</b> <select name="licensenumber_$i" size=1>
 
 379         $form->{"lizenzen_$i"}
 
 381         <input type=hidden name="lizenzen_$i" value="${lizenzen_quoted}">
 
 384     if ($form->{type} !~ /_quotation/) {
 
 386           <b>$serialnumber</b> <input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}">|;
 
 390           <b>$projectnumber</b> <input name="projectnumber_$i" size=10 value="$form->{"projectnumber_$i"}">
 
 391                   <input type=hidden name="oldprojectnumber_$i" value="$form->{"oldprojectnumber_$i"}">
 
 392                   <input type=hidden name="project_id_$i" value="$form->{"project_id_$i"}">
 
 398 ############## ENDE Neueintrag ##################
 
 400     map { $form->{"${_}_base"} += $linetotal }
 
 401       (split / /, $form->{"taxaccounts_$i"});
 
 403     $form->{invsubtotal} += $linetotal;
 
 412   $lxdebug->leave_sub();
 
 415 ##################################################
 
 416 # build html-code for pricegroups in variable $form->{prices_$j}
 
 419   $lxdebug->enter_sub();
 
 420 print STDERR "io.pl-set_pricegroup-i-$i\n";
 
 423     my $pricegroup_old = $form->{"pricegroup_old_$i"};
 
 424     if ($form->{PRICES}{ $j }) {
 
 428       foreach $item (@{ $form->{PRICES}{ $j } }) {
 
 429 print STDERR "TEST--i--$i--jjj-$j\n";
 
 430 # print STDERR "-VOR   PREIS--$item->{price}--PREISGRUOP-$item->{pricegroup_id}\n";
 
 431         $price         = $form->round_amount($myconfig, $item->{price},5);
 
 432         $price         = $form->format_amount($myconfig, $item->{price},2);
 
 433         $price         = $item->{price};
 
 434 # print STDERR "-NACH PREIS--$price--PREISGRUOP-$item->{pricegroup_id}\n";
 
 435         $pricegroup_id = $item->{pricegroup_id};
 
 436         $pricegroup    = $item->{pricegroup};
 
 437         # build dragdrop for pricegroups
 
 439              qq|<option value="$price--$pricegroup_id"$item->{selected}>$pricegroup</option>\n|;
 
 442 # print STDERR "prices---$prices\n";
 
 443         # set new selectedpricegroup_id and prices for "Preis"
 
 444         if ($item->{selected}) {
 
 445           $form->{"pricegroup_old_$j"} = $pricegroup_id;
 
 446           $form->{"price_new_$j"} = $price;
 
 447            $form->{"sellprice_$j"} = $price;
 
 450           $form->{"prices_$j"} = $prices;
 
 455   print (STDERR "", Dumper($form->{PRICES}));
 
 456   $lxdebug->leave_sub();
 
 460   $lxdebug->enter_sub();
 
 461 print STDERR "io.pl-select_item\n";
 
 462   @column_index = qw(ndx partnumber description onhand sellprice);
 
 464   $column_data{ndx}        = qq|<th> </th>|;
 
 465   $column_data{partnumber} =
 
 466     qq|<th class=listheading>| . $locale->text('Number') . qq|</th>|;
 
 467   $column_data{description} =
 
 468     qq|<th class=listheading>| . $locale->text('Part Description') . qq|</th>|;
 
 469   $column_data{sellprice} =
 
 470     qq|<th class=listheading>| . $locale->text('Price') . qq|</th>|;
 
 471   $column_data{onhand} =
 
 472     qq|<th class=listheading>| . $locale->text('Qty') . qq|</th>|;
 
 474   # list items with radio button on a form
 
 477   $title   = $locale->text('Select from one of the items below');
 
 478   $colspan = $#column_index + 1;
 
 483 <form method=post action=$form->{script}>
 
 487     <th class=listtop colspan=$colspan>$title</th>
 
 490   <tr class=listheading>|;
 
 492   map { print "\n$column_data{$_}" } @column_index;
 
 497   foreach $ref (@{ $form->{item_list} }) {
 
 498     $checked = ($i++) ? "" : "checked";
 
 501       if ($ref->{inventory_accno} > 0) {
 
 502         $ref->{"lizenzen"} = qq|<option></option>|;
 
 503         foreach $item (@{ $form->{LIZENZEN}{ $ref->{"id"} } }) {
 
 504           $ref->{"lizenzen"} .=
 
 505             qq|<option value=\"$item->{"id"}\">$item->{"licensenumber"}</option>|;
 
 507         $ref->{"lizenzen"} .= qq|<option value=-1>Neue Lizenz</option>|;
 
 508         $ref->{"lizenzen"} =~ s/\"/"/g;
 
 512     map { $ref->{$_} =~ s/\"/"/g } qw(partnumber description unit);
 
 514 print STDERR "TRADEDISCOUNT $ref->{sellprice}\n";
 
 516       $form->round_amount($ref->{sellprice} * (1 - $form->{tradediscount}), 2);
 
 517 print STDERR "TRADEDISCOUNT $ref->{sellprice}\n";
 
 519       qq|<td><input name=ndx class=radio type=radio value=$i $checked></td>|;
 
 520     $column_data{partnumber} =
 
 521       qq|<td><input name="new_partnumber_$i" type=hidden value="$ref->{partnumber}">$ref->{partnumber}</td>|;
 
 522     $column_data{description} =
 
 523       qq|<td><input name="new_description_$i" type=hidden value="$ref->{description}">$ref->{description}</td>|;
 
 524     $column_data{sellprice} =
 
 525       qq|<td align=right><input name="new_sellprice_$i" type=hidden value=$ref->{sellprice}>|
 
 526       . $form->format_amount(\%myconfig, $ref->{sellprice}, 2, " ")
 
 528     $column_data{onhand} =
 
 529       qq|<td align=right><input name="new_onhand_$i" type=hidden value=$ref->{onhand}>|
 
 530       . $form->format_amount(\%myconfig, $ref->{onhand}, '', " ")
 
 536 <tr class=listrow$j>|;
 
 538     map { print "\n$column_data{$_}" } @column_index;
 
 543 <input name="new_bin_$i" type=hidden value="$ref->{bin}">
 
 544 <input name="new_listprice_$i" type=hidden value=$ref->{listprice}>
 
 545 <input name="new_inventory_accno_$i" type=hidden value=$ref->{inventory_accno}>
 
 546 <input name="new_income_accno_$i" type=hidden value=$ref->{income_accno}>
 
 547 <input name="new_expense_accno_$i" type=hidden value=$ref->{expense_accno}>
 
 548 <input name="new_unit_$i" type=hidden value="$ref->{unit}">
 
 549 <input name="new_weight_$i" type=hidden value="$ref->{weight}">
 
 550 <input name="new_assembly_$i" type=hidden value="$ref->{assembly}">
 
 551 <input name="new_taxaccounts_$i" type=hidden value="$ref->{taxaccounts}">
 
 552 <input name="new_partsgroup_$i" type=hidden value="$ref->{partsgroup}">
 
 554 <input name="new_id_$i" type=hidden value=$ref->{id}>
 
 559 <input name="new_lizenzen_$i" type=hidden value="$ref->{lizenzen}">
 
 566 <tr><td colspan=8><hr size=3 noshade></td></tr>
 
 569 <input name=lastndx type=hidden value=$i>
 
 573   # delete action variable
 
 574   map { delete $form->{$_} } qw(action item_list header);
 
 576   # save all other form variables
 
 577   foreach $key (keys %${form}) {
 
 578     $form->{$key} =~ s/\"/"/g;
 
 579     print qq|<input name=$key type=hidden value="$form->{$key}">\n|;
 
 583 <input type=hidden name=nextsub value=item_selected>
 
 586 <input class=submit type=submit name=action value="|
 
 587     . $locale->text('Continue') . qq|">
 
 594   $lxdebug->leave_sub();
 
 598   $lxdebug->enter_sub();
 
 599 print STDERR "io.pl-item_selected\n";
 
 600   # replace the last row with the checked row
 
 601   $i = $form->{rowcount};
 
 602   $i = $form->{assembly_rows} if ($form->{item} eq 'assembly');
 
 608   #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 609   #$form->{"sellprice_$i"} = $form->{"sellprice_$i"};
 
 611   # if there was a price entered, override it
 
 612   $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 614   map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} }
 
 615     qw(id partnumber description sellprice listprice inventory_accno income_accno expense_accno bin unit weight assembly taxaccounts partsgroup);
 
 618     map { $form->{"${_}_$i"} = $form->{"new_${_}_$j"} } qw(lizenzen);
 
 621   ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 623   $decimalplaces = ($dec > 2) ? $dec : 2;
 
 626     $form->{"sellprice_$i"} = $sellprice;
 
 629     # if there is an exchange rate adjust sellprice
 
 630     if (($form->{exchangerate} * 1) != 0) {
 
 631       $form->{"sellprice_$i"} /= $form->{exchangerate};
 
 632       $form->{"sellprice_$i"} =
 
 633         $form->round_amount($form->{"sellprice_$i"}, $decimalplaces);
 
 637   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 638     qw(sellprice listprice weight);
 
 640   $form->{sellprice} += ($form->{"sellprice_$i"} * $form->{"qty_$i"});
 
 641   $form->{weight}    += ($form->{"weight_$i"} * $form->{"qty_$i"});
 
 644     $form->{"sellprice_$i"} * (1 - $form->{"discount_$i"} / 100) *
 
 646   map { $form->{"${_}_base"} += $amount }
 
 647     (split / /, $form->{"taxaccounts_$i"});
 
 648   map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /,
 
 649     $form->{"taxaccounts_$i"}
 
 650     if !$form->{taxincluded};
 
 652   $form->{creditremaining} -= $amount;
 
 654   $form->{"runningnumber_$i"} = $i;
 
 656   # delete all the new_ variables
 
 657   for $i (1 .. $form->{lastndx}) {
 
 658     map { delete $form->{"new_${_}_$i"} }
 
 659       qw(partnumber description sellprice bin listprice inventory_accno income_accno expense_accno unit assembly taxaccounts id);
 
 662   map { delete $form->{$_} } qw(ndx lastndx nextsub);
 
 667       $form->format_amount(\%myconfig, $form->{"${_}_$i"}, $decimalplaces)
 
 668   } qw(sellprice listprice) if $form->{item} ne 'assembly';
 
 670   # get pricegroups for parts
 
 671   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 673   # build up html code for prices_$i
 
 678   $lxdebug->leave_sub();
 
 682   $lxdebug->enter_sub();
 
 685   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
 686   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
 689   delete $form->{action};
 
 691   # save all other form variables in a previousform variable
 
 692   foreach $key (keys %$form) {
 
 695     $form->{$key} =~ s/&/%26/g;
 
 696     $previousform .= qq|$key=$form->{$key}&|;
 
 699   $previousform = $form->escape($previousform, 1);
 
 701   $i = $form->{rowcount};
 
 702   map { $form->{"${_}_$i"} =~ s/\"/"/g } qw(partnumber description);
 
 709 <h4 class=error>| . $locale->text('Item not on file!') . qq|
 
 712 | . $locale->text('What type of item is this?') . qq|</h4>
 
 714 <form method=post action=ic.pl>
 
 718   <input class=radio type=radio name=item value=part checked> |
 
 719     . $locale->text('Part') . qq|<br>
 
 720   <input class=radio type=radio name=item value=service> |
 
 721     . $locale->text('Service')
 
 724 <input type=hidden name=previousform value="$previousform">
 
 725 <input type=hidden name=partnumber value="$form->{"partnumber_$i"}">
 
 726 <input type=hidden name=description value="$form->{"description_$i"}">
 
 727 <input type=hidden name=rowcount value=$form->{rowcount}>
 
 728 <input type=hidden name=taxaccount2 value=$form->{taxaccounts}>
 
 729 <input type=hidden name=vc value=$form->{vc}>
 
 731 <input type=hidden name=path value=$form->{path}>
 
 732 <input type=hidden name=login value=$form->{login}>
 
 733 <input type=hidden name=password value=$form->{password}>
 
 735 <input type=hidden name=nextsub value=add>
 
 738 <input class=submit type=submit name=action value="|
 
 739     . $locale->text('Continue') . qq|">
 
 746   $lxdebug->leave_sub();
 
 750   $lxdebug->enter_sub();
 
 751 print STDERR "io.pl-display_form\n";
 
 752   # if we have a display_form
 
 753   if ($form->{display_form}) {
 
 754     &{"$form->{display_form}"};
 
 755 print STDERR "        --------------------- exit\n";
 
 758   if (   $form->{print_and_post}
 
 759       && $form->{second_run}
 
 760       && ($form->{action} eq "display_form")) {
 
 761     for (keys %$form) { $old_form->{$_} = $form->{$_} }
 
 762     $old_form->{rowcount}++;
 
 764     #$form->{rowcount}--;
 
 765     #$form->{rowcount}--;
 
 767     $form->{print_and_post} = 0;
 
 769     &print_form($old_form);
 
 773   $form->{action}   = "";
 
 774   $form->{resubmit} = 0;
 
 776   if ($form->{print_and_post} && !$form->{second_run}) {
 
 777     $form->{second_run} = 1;
 
 778     $form->{action}     = "display_form";
 
 781     $form->{resubmit} = 1;
 
 786   $numrows    = ++$form->{rowcount};
 
 787   $subroutine = "display_row";
 
 789   if ($form->{item} eq 'part') {
 
 790 print STDERR "  part\n";
 
 791     #set preisgruppenanzahl
 
 792     $numrows    = $form->{price_rows};
 
 793     $subroutine = "price_row";
 
 795     &{$subroutine}($numrows);
 
 797     $numrows    = ++$form->{makemodel_rows};
 
 798     $subroutine = "makemodel_row";
 
 800   if ($form->{item} eq 'assembly') {
 
 801 print STDERR "  assembly\n";
 
 802     $numrows    = ++$form->{price_rows};
 
 803     $subroutine = "price_row";
 
 805     &{$subroutine}($numrows);
 
 807     $numrows    = ++$form->{makemodel_rows};
 
 808     $subroutine = "makemodel_row";
 
 810     # create makemodel rows
 
 811     &{$subroutine}($numrows);
 
 813     $numrows    = ++$form->{assembly_rows};
 
 814     $subroutine = "assembly_row";
 
 816   if ($form->{item} eq 'service') {
 
 817 print STDERR "  service\n";
 
 818     $numrows    = ++$form->{price_rows};
 
 819     $subroutine = "price_row";
 
 821     &{$subroutine}($numrows);
 
 827   &{$subroutine}($numrows) if $numrows;
 
 831   #   if ($form->{print_and_post}) {
 
 835   $lxdebug->leave_sub();
 
 839   $lxdebug->enter_sub();
 
 840 print STDERR "io.pl-check_form\n";
 
 844     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)
 
 847   # remove any makes or model rows
 
 848   if ($form->{item} eq 'part') {
 
 849     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 850       qw(listprice sellprice lastcost weight rop);
 
 852     @flds = (make, model);
 
 853     for my $i (1 .. ($form->{makemodel_rows})) {
 
 854       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
 858         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 863     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
 864     $form->{makemodel_rows} = $count;
 
 866   } elsif ($form->{item} eq 'assembly') {
 
 868     $form->{sellprice} = 0;
 
 870     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 871       qw(listprice rop stock);
 
 874       qw(id qty unit bom partnumber description sellprice weight runningnumber partsgroup);
 
 876     for my $i (1 .. ($form->{assembly_rows} - 1)) {
 
 877       if ($form->{"qty_$i"}) {
 
 881         $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 883         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 885         #($form->{"sellprice_$i"},$form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 887         $form->{sellprice} += ($form->{"qty_$i"} * $form->{"sellprice_$i"});
 
 888         $form->{weight}    += ($form->{"qty_$i"} * $form->{"weight_$i"});
 
 893     $form->{sellprice} = $form->round_amount($form->{sellprice}, 2);
 
 895     $form->redo_rows(\@flds, \@a, $count, $form->{assembly_rows});
 
 896     $form->{assembly_rows} = $count;
 
 899     @flds  = qw(make model);
 
 902     for my $i (1 .. ($form->{makemodel_rows})) {
 
 903       if (($form->{"make_$i"} ne "") || ($form->{"model_$i"} ne "")) {
 
 907         map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 912     $form->redo_rows(\@flds, \@a, $count, $form->{makemodel_rows});
 
 913     $form->{makemodel_rows} = $count;
 
 917     # this section applies to invoices and orders
 
 918     # remove any empty numbers
 
 919     if ($form->{rowcount}) {
 
 920       for my $i (1 .. $form->{rowcount} - 1) {
 
 921         if ($form->{"partnumber_$i"}) {
 
 925           map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 928             if ($form->{"licensenumber_$i"} == -1) {
 
 936       $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 937       $form->{rowcount} = $count;
 
 939       $form->{creditremaining} -= &invoicetotal;
 
 945 print STDERR "LEVEL--$form->{level}\n";
 
 946 print STDERR "Type--$form->{type}\n";
 
 948   if ($form->{type} =~ (/sales_quotation/) or (($form->{level} =~ /Sales/) and ($form->{type} =~ /invoice/)) or (($form->{level} eq undef) and ($form->{type} =~ /invoice/)) or ($form->{type} =~ /sales_order/)) {
 
 950   # get pricegroups for parts
 
 951   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 953   # build up html code for prices_$i
 
 960   $lxdebug->leave_sub();
 
 964   $lxdebug->enter_sub();
 
 966   $form->{oldinvtotal} = 0;
 
 968   # add all parts and deduct paid
 
 969   map { $form->{"${_}_base"} = 0 } split / /, $form->{taxaccounts};
 
 971   my ($amount, $sellprice, $discount, $qty);
 
 973   for my $i (1 .. $form->{rowcount}) {
 
 974     $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 975     $discount  = $form->parse_amount(\%myconfig, $form->{"discount_$i"});
 
 976     $qty       = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 978     #($form->{"sellprice_$i"}, $form->{"$pricegroup_old_$i"}) = split /--/, $form->{"sellprice_$i"};
 
 980     $amount = $sellprice * (1 - $discount / 100) * $qty;
 
 981     map { $form->{"${_}_base"} += $amount }
 
 982       (split / /, $form->{"taxaccounts_$i"});
 
 983     $form->{oldinvtotal} += $amount;
 
 986   map { $form->{oldinvtotal} += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
 987     split / /, $form->{taxaccounts}
 
 988     if !$form->{taxincluded};
 
 990   $form->{oldtotalpaid} = 0;
 
 991   for $i (1 .. $form->{paidaccounts}) {
 
 992     $form->{oldtotalpaid} += $form->{"paid_$i"};
 
 995   $lxdebug->leave_sub();
 
 998   return ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1001 sub validate_items {
 
1002   $lxdebug->enter_sub();
 
1003 print STDERR "io.pl-validate_items\n";
 
1004   # check if items are valid
 
1005   if ($form->{rowcount} == 1) {
 
1010   for $i (1 .. $form->{rowcount} - 1) {
 
1011     $form->isblank("partnumber_$i",
 
1012                    $locale->text('Number missing in Row') . " $i");
 
1015   $lxdebug->leave_sub();
 
1019   $lxdebug->enter_sub();
 
1021   $form->{ordnumber} = $form->{invnumber};
 
1023   map { delete $form->{$_} } qw(id printed emailed queued);
 
1025   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'request_quotation') {
 
1026     $form->{title} = $locale->text('Add Purchase Order');
 
1027     $form->{vc}    = 'vendor';
 
1028     $form->{type}  = 'purchase_order';
 
1031   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_quotation') {
 
1032     $form->{title} = $locale->text('Add Sales Order');
 
1033     $form->{vc}    = 'customer';
 
1034     $form->{type}  = 'sales_order';
 
1037   $form->{script} = 'oe.pl';
 
1039   $form->{shipto} = 1;
 
1041   $form->{rowcount}--;
 
1043   ($null, $form->{cp_id}) = split /--/, $form->{contact};
 
1044   $form->{cp_id} *= 1;
 
1046   require "$form->{path}/$form->{script}";
 
1048   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1050   $currency = $form->{currency};
 
1054   $form->{currency}     = $currency;
 
1055   $form->{exchangerate} = "";
 
1056   $form->{forex}        = "";
 
1057   $form->{exchangerate} = $exchangerate
 
1061                     $form->check_exchangerate(
 
1062                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1068   $lxdebug->leave_sub();
 
1072   $lxdebug->enter_sub();
 
1074   map { delete $form->{$_} } qw(id printed emailed queued);
 
1076   if ($form->{script} eq 'ir.pl' || $form->{type} eq 'purchase_order') {
 
1077     $form->{title} = $locale->text('Add Request for Quotation');
 
1078     $form->{vc}    = 'vendor';
 
1079     $form->{type}  = 'request_quotation';
 
1082   if ($form->{script} eq 'is.pl' || $form->{type} eq 'sales_order') {
 
1083     $form->{title} = $locale->text('Add Quotation');
 
1084     $form->{vc}    = 'customer';
 
1085     $form->{type}  = 'sales_quotation';
 
1089   ($null, $form->{cp_id}) = split /--/, $form->{contact};
 
1090   $form->{cp_id} *= 1;
 
1092   $form->{script} = 'oe.pl';
 
1094   $form->{shipto} = 1;
 
1096   $form->{rowcount}--;
 
1098   require "$form->{path}/$form->{script}";
 
1100   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
1102   $currency = $form->{currency};
 
1106   $form->{currency}     = $currency;
 
1107   $form->{exchangerate} = "";
 
1108   $form->{forex}        = "";
 
1109   $form->{exchangerate} = $exchangerate
 
1113                     $form->check_exchangerate(
 
1114                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1120   $lxdebug->leave_sub();
 
1124   $lxdebug->enter_sub();
 
1126   if ($myconfig{role} eq 'admin') {
 
1128           <th align=right nowrap=true>| . $locale->text('Bcc') . qq|</th>
 
1129           <td><input name=bcc size=30 value="$form->{bcc}"></td>
 
1133   if ($form->{formname} =~ /(pick|packing|bin)_list/) {
 
1134     $form->{email} = $form->{shiptoemail} if $form->{shiptoemail};
 
1137   $name = $form->{ $form->{vc} };
 
1139   $title = $locale->text('E-mail') . " $name";
 
1141   $form->{oldmedia} = $form->{media};
 
1142   $form->{media}    = "email";
 
1149 <form method=post action=$form->{script}>
 
1153     <th class=listtop>$title</th>
 
1155   <tr height="5"></tr>
 
1160           <th align=right nowrap>| . $locale->text('To') . qq|</th>
 
1161           <td><input name=email size=30 value="$form->{email}"></td>
 
1162           <th align=right nowrap>| . $locale->text('Cc') . qq|</th>
 
1163           <td><input name=cc size=30 value="$form->{cc}"></td>
 
1166           <th align=right nowrap>| . $locale->text('Subject') . qq|</th>
 
1167           <td><input name=subject size=30 value="$form->{subject}"></td>
 
1177           <th align=left nowrap>| . $locale->text('Message') . qq|</th>
 
1180           <td><textarea name=message rows=15 cols=60 wrap=soft>$form->{message}</textarea></td>
 
1191   map { delete $form->{$_} }
 
1192     qw(action email cc bcc subject message formname sendmode format header override);
 
1194   # save all other variables
 
1195   foreach $key (keys %$form) {
 
1196     $form->{$key} =~ s/\"/"/g;
 
1197     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1204     <td><hr size=3 noshade></td>
 
1208 <input type=hidden name=nextsub value=send_email>
 
1211 <input name=action class=submit type=submit value="|
 
1212     . $locale->text('Continue') . qq|">
 
1219   $lxdebug->leave_sub();
 
1223   $lxdebug->enter_sub();
 
1225   $old_form = new Form;
 
1227   map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1228   $old_form->{media} = $form->{oldmedia};
 
1230   &print_form($old_form);
 
1232   $lxdebug->leave_sub();
 
1236   $lxdebug->enter_sub();
 
1237 print STDERR "io.pl-print_options\n";
 
1238   $form->{sendmode} = "attachment";
 
1239   $form->{copies}   = 3 unless $form->{copies};
 
1241   $form->{PD}{ $form->{formname} } = "selected";
 
1242   $form->{DF}{ $form->{format} }   = "";
 
1243   $form->{OP}{ $form->{media} }    = "selected";
 
1244   $form->{SM}{ $form->{sendmode} } = "selected";
 
1246   if ($form->{type} eq 'purchase_order') {
 
1247     $type = qq|<select name=formname>
 
1248             <option value=purchase_order $form->{PD}{purchase_order}>|
 
1249       . $locale->text('Purchase Order') . qq|
 
1250             <option value=bin_list $form->{PD}{bin_list}>|
 
1251       . $locale->text('Bin List');
 
1254   if ($form->{type} eq 'sales_order') {
 
1255     $type = qq|<select name=formname>
 
1256             <option value=sales_order $form->{PD}{sales_order}>|
 
1257       . $locale->text('Confirmation') . qq|
 
1258             <option value=pick_list $form->{PD}{pick_list}>|
 
1259       . $locale->text('Pick List') . qq|
 
1260             <option value=packing_list $form->{PD}{packing_list}>|
 
1261       . $locale->text('Packing List');
 
1264   if ($form->{type} =~ /_quotation$/) {
 
1265     $type = qq|<select name=formname>
 
1266             <option value="$`_quotation" $form->{PD}{"$`_quotation"}>|
 
1267       . $locale->text('Quotation') . qq|
 
1271   if ($form->{type} eq 'invoice') {
 
1272     $type = qq|<select name=formname>
 
1273             <option value=invoice $form->{PD}{invoice}>| . $locale->text('Invoice');
 
1276   if ($form->{type} eq 'ship_order') {
 
1277     $type = qq|<select name=formname>
 
1278             <option value=pick_list $form->{PD}{pick_list}>|
 
1279       . $locale->text('Pick List') . qq|
 
1280             <option value=packing_list $form->{PD}{packing_list}>|
 
1281       . $locale->text('Packing List');
 
1284   if ($form->{type} eq 'receive_order') {
 
1285     $type = qq|<select name=formname>
 
1286             <option value=bin_list $form->{PD}{bin_list}>|
 
1287       . $locale->text('Bin List');
 
1290   if ($form->{media} eq 'email') {
 
1291     $media = qq|<select name=sendmode>
 
1292             <option value=attachment $form->{SM}{attachment}>|
 
1293       . $locale->text('Attachment') . qq|
 
1294             <option value=inline $form->{SM}{inline}>| . $locale->text('In-line');
 
1296     $media = qq|<select name=media>
 
1297             <option value=screen $form->{OP}{screen}>| . $locale->text('Screen');
 
1298     if ($myconfig{printer} && $latex) {
 
1300             <option value=printer $form->{OP}{printer}>|
 
1301         . $locale->text('Printer');
 
1305             <option value=queue $form->{OP}{queue}>| . $locale->text('Queue');
 
1309   $format = qq|<select name=format>
 
1310             <option value=html $form->{DF}{html}>html|;
 
1313     $format = qq|<select name=format>
 
1314             <option value=pdf $form->{DF}{pdf}>| . $locale->text('PDF') . qq|
 
1315             <option value=html $form->{DF}{html}>html
 
1316             <option value=postscript $form->{DF}{postscript}>|
 
1317       . $locale->text('Postscript');
 
1320   $language = qq|<select name=language>
 
1321                  <option value=""></option>|;
 
1322   %lang = (de => "deutsch", en => "englisch", fr => "französisch");
 
1323   foreach $item (keys %lang) {
 
1324     if ($form->{language} eq $item) {
 
1325       $language .= qq|<option value="$item" selected>$lang{$item}</option>|;
 
1327       $language .= qq|<option value="$item">$lang{$item}</option>|;
 
1332 <table width=100% cellspacing=0 cellpadding=0>
 
1337           <td>$type</select></td>
 
1338           <td>$language</select</td>
 
1339           <td>$format</select></td>
 
1340           <td>$media</select></td>
 
1343   if ($myconfig{printer} && $latex && $form->{media} ne 'email') {
 
1345           <td>| . $locale->text('Copies') . qq|
 
1346           <input name=copies size=2 value=$form->{copies}></td>
 
1350   $form->{groupitems} = "checked" if $form->{groupitems};
 
1353           <td>| . $locale->text('Group Items') . qq|</td>
 
1354           <td><input name=groupitems type=checkbox class=checkbox $form->{groupitems}></td>
 
1363   if ($form->{printed} =~ /$form->{formname}/) {
 
1365           <th>\|| . $locale->text('Printed') . qq|\|</th>
 
1369   if ($form->{emailed} =~ /$form->{formname}/) {
 
1371           <th>\|| . $locale->text('E-mailed') . qq|\|</th>
 
1375   if ($form->{queued} =~ /$form->{formname}/) {
 
1377           <th>\|| . $locale->text('Queued') . qq|\|</th>
 
1389   $lxdebug->leave_sub();
 
1393   $lxdebug->enter_sub();
 
1394 print STDERR "io.pl-print\n";
 
1395   # if this goes to the printer pass through
 
1396   if ($form->{media} eq 'printer' || $form->{media} eq 'queue') {
 
1397     $form->error($locale->text('Select postscript or PDF!'))
 
1398       if ($form->{format} !~ /(postscript|pdf)/);
 
1400     $old_form = new Form;
 
1401     map { $old_form->{$_} = $form->{$_} } keys %$form;
 
1404   &print_form($old_form);
 
1406   $lxdebug->leave_sub();
 
1410   $lxdebug->enter_sub();
 
1411   my ($old_form) = @_;
 
1412 print STDERR "io.pl-print_form\n";
 
1415 #print (STDERR "", Dumper($form));
 
1416   $numberfld = "invnumber";
 
1419     ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1421   # $form->{"notes"} will be overridden by the customer's/vendor's "notes" field. So save it here.
 
1422   $form->{ $form->{"formname"} . "notes" } = $form->{"notes"};
 
1424   if ($form->{formname} eq "invoice") {
 
1425     $form->{label} = $locale->text('Invoice');
 
1427   if ($form->{formname} eq "packing_list") {
 
1429     # this is from an invoice
 
1430     $form->{label} = $locale->text('Packing List');
 
1432   if ($form->{formname} eq 'sales_order') {
 
1435     $form->{"${inv}date"} = $form->{transdate};
 
1436     $form->{label}        = $locale->text('Sales Order');
 
1437     $numberfld            = "sonumber";
 
1440   if ($form->{formname} eq 'packing_list' && $form->{type} ne 'invoice') {
 
1442     # we use the same packing list as from an invoice
 
1445     $form->{invdate} = $form->{"${inv}date"} = $form->{transdate};
 
1446     $form->{label} = $locale->text('Packing List');
 
1449   if ($form->{formname} eq 'pick_list') {
 
1452     $form->{"${inv}date"} =
 
1453       ($form->{transdate}) ? $form->{transdate} : $form->{invdate};
 
1454     $form->{label} = $locale->text('Pick List');
 
1455     $order = 1 unless $form->{type} eq 'invoice';
 
1457   if ($form->{formname} eq 'purchase_order') {
 
1460     $form->{"${inv}date"} = $form->{transdate};
 
1461     $form->{label}        = $locale->text('Purchase Order');
 
1462     $numberfld            = "ponumber";
 
1465   if ($form->{formname} eq 'bin_list') {
 
1468     $form->{"${inv}date"} = $form->{transdate};
 
1469     $form->{label}        = $locale->text('Bin List');
 
1472   if ($form->{formname} eq 'sales_quotation') {
 
1475     $form->{"${inv}date"} = $form->{transdate};
 
1476     $form->{label}        = $locale->text('Quotation');
 
1477     $numberfld            = "sqnumber";
 
1480   if ($form->{formname} eq 'request_quotation') {
 
1483     $form->{"${inv}date"} = $form->{transdate};
 
1484     $form->{label}        = $locale->text('Quotation');
 
1485     $numberfld            = "rfqnumber";
 
1489   $form->isblank("email", $locale->text('E-mail address missing!'))
 
1490     if ($form->{media} eq 'email');
 
1491   $form->isblank("${inv}date",
 
1492                  $locale->text($form->{label} . ' Date missing!'));
 
1494   # $locale->text('Invoice Number missing!')
 
1495   # $locale->text('Invoice Date missing!')
 
1496   # $locale->text('Packing List Number missing!')
 
1497   # $locale->text('Packing List Date missing!')
 
1498   # $locale->text('Order Number missing!')
 
1499   # $locale->text('Order Date missing!')
 
1500   # $locale->text('Quotation Number missing!')
 
1501   # $locale->text('Quotation Date missing!')
 
1504   if (!$form->{"${inv}number"} && !$form->{preview}) {
 
1505     $form->{"${inv}number"} = $form->update_defaults(\%myconfig, $numberfld);
 
1506     if ($form->{media} ne 'email') {
 
1508         $i = $form->{rowcount};
 
1509         # get pricegroups for parts
 
1510         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1512         # build up html code for prices_$i
 
1515       $form->{rowcount}--;
 
1524   # Save the email address given in the form because it should override the setting saved for the customer/vendor.
 
1525   my ($saved_email, $saved_cc, $saved_bcc) =
 
1526     ($form->{"email"}, $form->{"cc"}, $form->{"bcc"});
 
1528   $language = $form->{language};
 
1529   &{"$form->{vc}_details"};
 
1530   $form->{language} = $language;
 
1532   $form->{"email"} = $saved_email if ($saved_email);
 
1533   $form->{"cc"}    = $saved_cc    if ($saved_cc);
 
1534   $form->{"bcc"}   = $saved_bcc   if ($saved_bcc);
 
1537   foreach $i (1 .. $form->{rowcount}) {
 
1539       ("partnumber_$i", "description_$i",
 
1540        "partsgroup_$i", "serialnumber_$i",
 
1541        "bin_$i",        "unit_$i");
 
1543   map { push @a, "${_}_description" } split / /, $form->{taxaccounts};
 
1545   $ARAP = ($form->{vc} eq 'customer') ? "AR" : "AP";
 
1548   # format payment dates
 
1549   for $i (1 .. $form->{paidaccounts} - 1) {
 
1550     $form->{"datepaid_$i"} = $locale->date(\%myconfig, $form->{"datepaid_$i"});
 
1551     push @a, "${ARAP}_paid_$i", "source_$i", "memo_$i";
 
1554   $form->format_string(@a);
 
1556   ($form->{employee}) = split /--/, $form->{employee};
 
1557   ($form->{warehouse}, $form->{warehouse_id}) = split /--/, $form->{warehouse};
 
1559   # create the form variables
 
1561     OE->order_details(\%myconfig, \%$form);
 
1563     IS->invoice_details(\%myconfig, \%$form, $locale);
 
1566   map { $form->{$_} = $locale->date(\%myconfig, $form->{$_}, 1) }
 
1567     ("${inv}date", "${due}date", "shippingdate");
 
1569   @a = qw(name street zipcode city country);
 
1573   # if there is no shipto fill it in from billto
 
1574   foreach $item (@a) {
 
1575     if ($form->{"shipto$item"}) {
 
1582     if (   $form->{formname} eq 'purchase_order'
 
1583         || $form->{formname} eq 'request_quotation') {
 
1584       $form->{shiptoname}   = $myconfig{company};
 
1585       $form->{shiptostreet} = $myconfig{address};
 
1587       map { $form->{"shipto$_"} = $form->{$_} } @a;
 
1591   $form->{notes} =~ s/^\s+//g;
 
1593   # some of the stuff could have umlauts so we translate them
 
1595     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptoemail shippingpoint shipvia company address signature employee contact);
 
1597   push @a, ("${inv}date", "${due}date", email, cc, bcc);
 
1599   $form->format_string(@a);
 
1601   $form->{templates} = "$myconfig{templates}";
 
1602   if ($form->{language} ne "") {
 
1603     $form->{language} = "_" . $form->{language};
 
1606   $form->{IN} = "$form->{formname}$form->{language}.html";
 
1607   if ($form->{format} eq 'postscript') {
 
1608     $form->{postscript} = 1;
 
1609     $form->{IN} =~ s/html$/tex/;
 
1611   if ($form->{format} eq 'pdf') {
 
1613     $form->{IN} =~ s/html$/tex/;
 
1616   if ($form->{media} eq 'printer') {
 
1617     $form->{OUT} = "| $myconfig{printer}";
 
1618     $form->{printed} .= " $form->{formname}";
 
1619     $form->{printed} =~ s/^ //;
 
1621   $printed = $form->{printed};
 
1623   if ($form->{media} eq 'email') {
 
1624     $form->{subject} = qq|$form->{label} $form->{"${inv}number"}|
 
1625       unless $form->{subject};
 
1627     $form->{OUT} = "$sendmail";
 
1629     $form->{emailed} .= " $form->{formname}";
 
1630     $form->{emailed} =~ s/^ //;
 
1632   $emailed = $form->{emailed};
 
1634   if ($form->{media} eq 'queue') {
 
1635     %queued = split / /, $form->{queued};
 
1637     if ($filename = $queued{ $form->{formname} }) {
 
1638       $form->{queued} =~ s/$form->{formname} $filename//;
 
1639       unlink "$spool/$filename";
 
1640       $filename =~ s/\..*$//g;
 
1646     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
 
1647     $form->{OUT} = ">$spool/$filename";
 
1650     $form->{queued} .= " $form->{formname} $filename";
 
1652     $form->{queued} =~ s/^ //;
 
1654   $queued = $form->{queued};
 
1656   $form->parse_template(\%myconfig, $userspath);
 
1658   $form->{callback} = "";
 
1660   if ($form->{media} eq 'email') {
 
1661     $form->{message} = $locale->text('sent') unless $form->{message};
 
1663   $message = $form->{message};
 
1665   # if we got back here restore the previous form
 
1666   if ($form->{media} =~ /(printer|email|queue)/) {
 
1668     $form->update_status(\%myconfig)
 
1669       if ($form->{media} eq 'queue' && $form->{id});
 
1673       $old_form->{"${inv}number"} = $form->{"${inv}number"};
 
1675       # restore and display form
 
1676       map { $form->{$_} = $old_form->{$_} } keys %$old_form;
 
1678       $form->{queued}  = $queued;
 
1679       $form->{printed} = $printed;
 
1680       $form->{emailed} = $emailed;
 
1681       $form->{message} = $message;
 
1683       $form->{rowcount}--;
 
1684       map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1685         qw(exchangerate creditlimit creditremaining);
 
1687       for $i (1 .. $form->{paidaccounts}) {
 
1689           $form->{"${_}_$i"} =
 
1690             $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
1691         } qw(paid exchangerate);
 
1699       ($form->{media} eq 'printer')
 
1700       ? $locale->text('sent to printer')
 
1701       : $locale->text('emailed to') . " $form->{email}";
 
1702     $form->redirect(qq|$form->{label} $form->{"${inv}number"} $msg|);
 
1707   $lxdebug->leave_sub();
 
1710 sub customer_details {
 
1711   $lxdebug->enter_sub();
 
1712 print STDERR "io.pl-customer_details\n";
 
1713   IS->customer_details(\%myconfig, \%$form);
 
1714   $lxdebug->leave_sub();
 
1717 sub vendor_details {
 
1718   $lxdebug->enter_sub();
 
1720   IR->vendor_details(\%myconfig, \%$form);
 
1722   $lxdebug->leave_sub();
 
1726   $lxdebug->enter_sub();
 
1728   $form->{postasnew} = 1;
 
1729   map { delete $form->{$_} } qw(printed emailed queued);
 
1733   $lxdebug->leave_sub();
 
1737   $lxdebug->enter_sub();
 
1738 print STDERR "io.pl-ship_to\n";
 
1739   $title = $form->{title};
 
1740   $form->{title} = $locale->text('Ship to');
 
1742   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1743     qw(exchangerate creditlimit creditremaining);
 
1746   # get details for name
 
1747   &{"$form->{vc}_details"};
 
1750     ($form->{vc} eq 'customer')
 
1751     ? $locale->text('Customer Number')
 
1752     : $locale->text('Vendor Number');
 
1754   $i = $form->{rowcount};
 
1755   # get pricegroups for parts
 
1756   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1758   # build up html code for prices_$i
 
1761   $nextsub = ($form->{display_form}) ? $form->{display_form} : "display_form";
 
1763   $form->{rowcount}--;
 
1770 <form method=post action=$form->{script}>
 
1776         <tr class=listheading>
 
1777           <th class=listheading colspan=2 width=50%>|
 
1778     . $locale->text('Billing Address') . qq|</th>
 
1779           <th class=listheading width=50%>|
 
1780     . $locale->text('Shipping Address') . qq|</th>
 
1782         <tr height="5"></tr>
 
1784           <th align=right nowrap>$number</th>
 
1785           <td>$form->{"$form->{vc}number"}</td>
 
1788           <th align=right nowrap>| . $locale->text('Company Name') . qq|</th>
 
1789           <td>$form->{name}</td>
 
1790           <td><input name=shiptoname size=35 value="$form->{shiptoname}"></td>
 
1793           <th align=right nowrap>| . $locale->text('Street') . qq|</th>
 
1794           <td>$form->{street}</td>
 
1795           <td><input name=shiptostreet size=35 value="$form->{shiptostreet}"></td>
 
1798           <th align=right nowrap>| . $locale->text('Zipcode') . qq|</th>
 
1799           <td>$form->{zipcode}</td>
 
1800           <td><input name=shiptozipcode size=35 value="$form->{shiptozipcode}"></td>
 
1803           <th align=right nowrap>| . $locale->text('City') . qq|</th>
 
1804           <td>$form->{city}</td>
 
1805           <td><input name=shiptocity size=35 value="$form->{shiptocity}"></td>
 
1808           <th align=right nowrap>| . $locale->text('Country') . qq|</th>
 
1809           <td>$form->{country}</td>
 
1810           <td><input name=shiptocountry size=35 value="$form->{shiptocountry}"></td>
 
1813           <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
 
1814           <td>$form->{contact}</td>
 
1815           <td><input name=shiptocontact size=35 value="$form->{shiptocontact}"></td>
 
1818           <th align=right nowrap>| . $locale->text('Phone') . qq|</th>
 
1819           <td>$form->{"$form->{vc}phone"}</td>
 
1820           <td><input name=shiptophone size=20 value="$form->{shiptophone}"></td>
 
1823           <th align=right nowrap>| . $locale->text('Fax') . qq|</th>
 
1824           <td>$form->{"$form->{vc}fax"}</td>
 
1825           <td><input name=shiptofax size=20 value="$form->{shiptofax}"></td>
 
1828           <th align=right nowrap>| . $locale->text('E-mail') . qq|</th>
 
1829           <td>$form->{email}</td>
 
1830           <td><input name=shiptoemail size=35 value="$form->{shiptoemail}"></td>
 
1837 <input type=hidden name=nextsub value=$nextsub>
 
1841   map { delete $form->{$_} }
 
1842     qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail header);
 
1843   $form->{title} = $title;
 
1845   foreach $key (keys %$form) {
 
1846     $form->{$key} =~ s/\"/"/g;
 
1847     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1855 <input class=submit type=submit name=action value="|
 
1856     . $locale->text('Continue') . qq|">
 
1863   $lxdebug->leave_sub();
 
1867   $lxdebug->enter_sub();
 
1872   $form->{old_callback} = $form->escape($form->{callback}, 1);
 
1873   $form->{callback} = $form->escape("$form->{script}?action=display_form", 1);
 
1874   $form->{old_callback} = $form->escape($form->{old_callback}, 1);
 
1877   delete $form->{action};
 
1878   $customer = $form->{customer};
 
1879   map { $form->{"old_$_"} = $form->{"${_}_$row"} } qw(partnumber description);
 
1881   # save all other form variables in a previousform variable
 
1882   $form->{row} = $row;
 
1883   foreach $key (keys %$form) {
 
1886     $form->{$key} =~ s/&/%26/g;
 
1887     $previousform .= qq|$key=$form->{$key}&|;
 
1890   $previousform = $form->escape($previousform, 1);
 
1892   $form->{script} = "licenses.pl";
 
1894   map { $form->{$_} = $form->{"old_$_"} } qw(partnumber description);
 
1895   map { $form->{$_} = $form->escape($form->{$_}, 1) }
 
1896     qw(partnumber description);
 
1898     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|;
 
1901   $lxdebug->leave_sub();