1 # #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger, Accounting
 
   9 # Copyright (c) 1998-2003
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  16 # This program is free software; you can redistribute it and/or modify
 
  17 # it under the terms of the GNU General Public License as published by
 
  18 # the Free Software Foundation; either version 2 of the License, or
 
  19 # (at your option) any later version.
 
  21 # This program is distributed in the hope that it will be useful,
 
  22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  24 # GNU General Public License for more details.
 
  25 # You should have received a copy of the GNU General Public License
 
  26 # along with this program; if not, write to the Free Software
 
  27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  28 #======================================================================
 
  32 #======================================================================
 
  40 require "$form->{path}/io.pl";
 
  41 require "$form->{path}/arap.pl";
 
  48 # $locale->text('Edit the purchase_order');
 
  49 # $locale->text('Edit the sales_order');
 
  50 # $locale->text('Edit the request_quotation');
 
  51 # $locale->text('Edit the sales_quotation');
 
  53 # $locale->text('Workflow purchase_order');
 
  54 # $locale->text('Workflow sales_order');
 
  55 # $locale->text('Workflow request_quotation');
 
  56 # $locale->text('Workflow sales_quotation');
 
  59   $lxdebug->enter_sub();
 
  63   if ($form->{type} eq 'purchase_order') {
 
  64     $form->{title}   = $action eq "edit" ?
 
  65       $locale->text('Edit Purchase Order') :
 
  66       $locale->text('Add Purchase Order');
 
  67     $form->{heading} = $locale->text('Purchase Order');
 
  68     $form->{vc}      = 'vendor';
 
  70   if ($form->{type} eq 'sales_order') {
 
  71     $form->{title}   = $action eq "edit" ?
 
  72       $locale->text('Edit Sales Order') :
 
  73       $locale->text('Add Sales Order');
 
  74     $form->{heading} = $locale->text('Sales Order');
 
  75     $form->{vc}      = 'customer';
 
  77   if ($form->{type} eq 'request_quotation') {
 
  78     $form->{title}   = $action eq "edit" ?
 
  79       $locale->text('Edit Request for Quotation') :
 
  80       $locale->text('Add Request for Quotation');
 
  81     $form->{heading} = $locale->text('Request for Quotation');
 
  82     $form->{vc}      = 'vendor';
 
  84   if ($form->{type} eq 'sales_quotation') {
 
  85     $form->{title}   = $action eq "edit" ?
 
  86       $locale->text('Edit Quotation') :
 
  87       $locale->text('Add Quotation');
 
  88     $form->{heading} = $locale->text('Quotation');
 
  89     $form->{vc}      = 'customer';
 
  92   $lxdebug->leave_sub();
 
  96   $lxdebug->enter_sub();
 
 101     "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&path=$form->{path}&password=$form->{password}"
 
 102     unless $form->{callback};
 
 108   $lxdebug->leave_sub();
 
 112   $lxdebug->enter_sub();
 
 114   $form->{simple_save} = 0;
 
 116   set_headings("edit");
 
 118   # editing without stuff to edit? try adding it first
 
 119   if ($form->{rowcount}) {
 
 120     map { $id++ if $form->{"id_$_"} } (1 .. $form->{rowcount});
 
 124       undef $form->{rowcount};
 
 135   if ($form->{print_and_save}) {
 
 136     $form->{action}   = "print";
 
 137     $form->{resubmit} = 1;
 
 138     $language_id = $form->{language_id};
 
 139     $printer_id = $form->{printer_id};
 
 142   set_headings("edit");
 
 146   if ($form->{print_and_save}) {
 
 147     $form->{language_id} = $language_id;
 
 148     $form->{printer_id} = $printer_id;
 
 152   $lxdebug->leave_sub();
 
 156   $lxdebug->enter_sub();
 
 158   # get customer/vendor
 
 159   $form->all_vc(\%myconfig, $form->{vc},
 
 160                 ($form->{vc} eq 'customer') ? "AR" : "AP");
 
 162   # retrieve order/quotation
 
 163   $form->{webdav} = $webdav;
 
 165   $form->{jscalendar} = $jscalendar;
 
 167   OE->retrieve(\%myconfig, \%$form);
 
 169   if ($form->{payment_id}) {
 
 170     $payment_id = $form->{payment_id};
 
 172   if ($form->{language_id}) {
 
 173     $language_id = $form->{language_id};
 
 175   if ($form->{taxzone_id}) {
 
 176     $taxzone_id = $form->{taxzone_id};
 
 180   # if multiple rowcounts (== collective order) then check if the
 
 181   # there were more than one customer (in that case OE::retrieve removes
 
 182   # the content from the field)
 
 183   if (   $form->{rowcount}
 
 184       && $form->{type} eq 'sales_order'
 
 185       && defined $form->{customer}
 
 186       && $form->{customer} eq '') {
 
 188     #    $main::lxdebug->message(0, "Detected Edit order with concurrent customers");
 
 191                    'Collective Orders only work for orders from one customer!')
 
 195   $taxincluded = $form->{taxincluded};
 
 196   $form->{shipto} = 1 if $form->{id};
 
 198   if ($form->{"all_$form->{vc}"}) {
 
 199     unless ($form->{"$form->{vc}_id"}) {
 
 200       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
 
 204   $cp_id    = $form->{cp_id};
 
 205   $intnotes = $form->{intnotes};
 
 207   # get customer / vendor
 
 208   if ($form->{type} =~ /(purchase_order|request_quotation|receive_order)/) {
 
 209     IR->get_vendor(\%myconfig, \%$form);
 
 211     #quote all_vendor Bug 133
 
 212     foreach $ref (@{ $form->{all_vendor} }) {
 
 213       $ref->{name} = $form->quote($ref->{name});
 
 217   if ($form->{type} =~ /(sales|ship)_(order|quotation)/) {
 
 218     IS->get_customer(\%myconfig, \%$form);
 
 220     #quote all_vendor Bug 133
 
 221     foreach $ref (@{ $form->{all_customer} }) {
 
 222       $ref->{name} = $form->quote($ref->{name});
 
 226   $form->{cp_id} = $cp_id;
 
 228     $form->{payment_id} = $payment_id;
 
 231     $form->{language_id} = $language_id;
 
 234     $form->{taxzone_id} = $taxzone_id;
 
 236   $form->{intnotes} = $intnotes;
 
 237   ($form->{ $form->{vc} }) = split /--/, $form->{ $form->{vc} };
 
 238   $form->{"old$form->{vc}"} =
 
 239     qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
 
 241   # build the popup menus
 
 242   if (@{ $form->{"all_$form->{vc}"} }) {
 
 243     $form->{ $form->{vc} } =
 
 244       qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
 
 245     map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" }
 
 246       (@{ $form->{"all_$form->{vc}"} });
 
 250   @curr = split(/:/, $form->{currencies});
 
 252   $form->{defaultcurrency} = $curr[0];
 
 253   $form->{currency}        = $form->{defaultcurrency} unless $form->{currency};
 
 255   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 257   $form->{taxincluded} = $taxincluded if ($form->{id});
 
 260   if (@{ $form->{all_departments} }) {
 
 261     $form->{selectdepartment} = "<option>\n";
 
 262     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 265       $form->{selectdepartment} .=
 
 266         "<option>$_->{description}--$_->{id}\n"
 
 267     } (@{ $form->{all_departments} });
 
 270   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 273   if (@{ $form->{all_employees} }) {
 
 274     $form->{selectemployee} = "";
 
 275     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
 
 276       (@{ $form->{all_employees} });
 
 280   $form->{forex} = $form->{exchangerate};
 
 282   $lxdebug->leave_sub();
 
 286   $lxdebug->enter_sub();
 
 287   $form->{media}    = "screen";
 
 288   $form->{formname} = $form->{type} unless $form->{formname};
 
 291   foreach $ref (@{ $form->{form_details} }) {
 
 292     $form->{rowcount} = ++$i;
 
 294     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
 
 296   for my $i (1 .. $form->{rowcount}) {
 
 298       $form->{"discount_$i"} =
 
 299         $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
 
 301       $form->{"discount_$i"} =
 
 302         $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
 304     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 306     $decimalplaces = ($dec > 2) ? $dec : 2;
 
 308     # copy reqdate from deliverydate for invoice -> order conversion
 
 309     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"}
 
 310       unless $form->{"reqdate_$i"};
 
 312     $form->{"sellprice_$i"} =
 
 313       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 316     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 317     $dec_qty = length $dec_qty;
 
 319       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
 321     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
 322       qw(partnumber description unit);
 
 325   $lxdebug->leave_sub();
 
 329   $lxdebug->enter_sub();
 
 331   $checkedopen   = ($form->{closed}) ? ""        : "checked";
 
 332   $checkedclosed = ($form->{closed}) ? "checked" : "";
 
 334   map { $form->{$_} =~ s/\"/"/g }
 
 335     qw(ordnumber quonumber shippingpoint shipvia notes intnotes shiptoname
 
 336        shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact
 
 337        shiptophone shiptofax shiptodepartment_1 shiptodepartment_2);
 
 339   # use JavaScript Calendar or not
 
 340   $form->{jsscript} = $form->{jscalendar};
 
 343   $payment = qq|<option value=""></option>|;
 
 344   foreach $item (@{ $form->{payment_terms} }) {
 
 345     if ($form->{payment_id} eq $item->{id}) {
 
 346       $payment .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
 
 348       $payment .= qq|<option value="$item->{id}">$item->{description}</option>|;
 
 351   if ($form->{jsscript}) {
 
 353     # with JavaScript Calendar
 
 355        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>
 
 356        <td><input type=button name=transdate id="trigger1" value=|
 
 357       . $locale->text('button') . qq|></td>
 
 360        <td width="13"><input name=reqdate id=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td>
 
 361        <td width="4"><input type=button name=reqdate name=reqdate id="trigger2" value=|
 
 362       . $locale->text('button') . qq|></td>
 
 367       Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
 
 368                           "reqdate", "BL", "trigger2");
 
 372     # without JavaScript Calendar
 
 374                               <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>|;
 
 376                               <td width="13"><input name=reqdate id=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td>|;
 
 382         <td colspan=2 align=center>
 
 385               <th nowrap><input name=closed type=radio class=radio value=0 $checkedopen> |
 
 386       . $locale->text('Open') . qq|</th>
 
 387               <th nowrap><input name=closed type=radio class=radio value=1 $checkedclosed> |
 
 388       . $locale->text('Closed') . qq|</th>
 
 396   # set option selected
 
 397   foreach $item ($form->{vc}, currency, department, employee) {
 
 398     $form->{"select$item"} =~ s/ selected//;
 
 399     $form->{"select$item"} =~
 
 400       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 403   #quote select[customer|vendor] Bug 133
 
 404   $form->{"select$form->{vc}"} = $form->quote($form->{"select$form->{vc}"});
 
 407   if ($form->{all_contacts}) {
 
 409     $form->{selectcontact} = "<option></option>";
 
 410     foreach $item (@{ $form->{all_contacts} }) {
 
 411       my $department = ($item->{cp_abteilung}) ? "--$item->{cp_abteilung}" : "";
 
 412       if ($form->{cp_id} == $item->{cp_id}) {
 
 413         $form->{selectcontact} .=
 
 414           "<option value=$item->{cp_id} selected>$item->{cp_name}$department</option>";
 
 416         $form->{selectcontact} .= "<option value=$item->{cp_id}>$item->{cp_name}$department</option>";
 
 420     $form->{selectcontact} =~ s/ selected//g;
 
 421     if ($form->{cp_id} ne "") {
 
 422       $form->{selectcontact} =~ s/value=$form->{cp_id}/value=$form->{cp_id} selected/;
 
 427   if (@{ $form->{SHIPTO} }) {
 
 428     $form->{selectshipto} = "<option value=0></option>";
 
 429     foreach $item (@{ $form->{SHIPTO} }) {
 
 430       if ($item->{shipto_id} == $form->{shipto_id}) {
 
 431         $form->{selectshipto} .=
 
 432           "<option value=$item->{shipto_id} selected>$item->{shiptoname} $item->{shiptodepartment_1}</option>";
 
 434         $form->{selectshipto} .=
 
 435           "<option value=$item->{shipto_id}>$item->{shiptoname} $item->{shiptodepartment}</option>";
 
 440     $form->{selectshipto} = $form->unquote($form->{selectshipto});
 
 441     $form->{selectshipto} =~ s/ selected//g;
 
 442     if ($form->{shipto_id} ne "") {
 
 443       $form->{selectshipto} =~ s/value=$form->{shipto_id}/value=$form->{shipto_id} selected/;
 
 448                 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
 
 449                 <td><select name=shipto_id style="width:200px;">$form->{selectshipto}</select></td>|;
 
 450   $form->{selectshipto} = $form->quote($form->{selectshipto});
 
 451   $shipto .= qq| <input type=hidden name=selectshipto value="$form->{selectshipto}">|;
 
 455   $form->{exchangerate} =
 
 456     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 458   if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
 
 464   $form->{creditlimit} =
 
 465     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 466   $form->{creditremaining} =
 
 467     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 470     ($form->{selectcontact})
 
 471     ? qq|<select name=cp_id>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
 
 472     : qq|<input name=contact value="$form->{contact}" size=35>|;
 
 475 <input type=hidden name=forex value=$form->{forex}>
 
 478   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 479     if ($form->{forex}) {
 
 482         . $locale->text('Exchangerate')
 
 483         . qq|</th><td>$form->{exchangerate}</td>
 
 484       <input type=hidden name=exchangerate value=$form->{exchangerate}>
 
 489         . $locale->text('Exchangerate')
 
 490         . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
 
 494   $vclabel = ucfirst $form->{vc};
 
 495   $vclabel = $locale->text($vclabel);
 
 499   if ($form->{business}) {
 
 502                 <th align=right>| . $locale->text('Business') . qq|</th>
 
 503                 <td>$form->{business}</td>
 
 504                 <th align=right>| . $locale->text('Trade Discount') . qq|</th>
 
 506       . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
 
 512   if ($form->{max_dunning_level}) {
 
 518                 <th align=right>| . $locale->text('Max. Dunning Level') . qq|:</th>
 
 519                 <td><b>$form->{max_dunning_level}</b></td>
 
 520                 <th align=right>| . $locale->text('Dunning Amount') . qq|:</th>
 
 522       . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
 
 531   if (@{ $form->{TAXZONE} }) {
 
 532     $form->{selecttaxzone} = "";
 
 533     foreach $item (@{ $form->{TAXZONE} }) {
 
 534       if ($item->{id} == $form->{taxzone_id}) {
 
 535         $form->{selecttaxzone} .=
 
 536           "<option value=$item->{id} selected>" . H($item->{description}) .
 
 539         $form->{selecttaxzone} .=
 
 540           "<option value=$item->{id}>" . H($item->{description}) . "</option>";
 
 545     $form->{selecttaxzone} =~ s/ selected//g;
 
 546     if ($form->{taxzone_id} ne "") {
 
 547       $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}>/value=$form->{taxzone_id} selected>/;
 
 553                 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
 
 554                 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
 
 555                 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
 
 559   if ($form->{type} !~ /_quotation$/) {
 
 562                 <th width=70% align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 563                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
 
 566                 <th width=70% align=right nowrap>|
 
 567       . $locale->text('Quotation Number') . qq|</th>
 
 568                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
 
 571                 <th width=70% align=right nowrap>|
 
 572       . $locale->text('Customer Order Number') . qq|</th>
 
 573                 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
 
 576                 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
 
 581                 <th align=right nowrap=true>| . $locale->text('Required by') . qq|</th>
 
 586     $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 588     $creditremaining = qq|
 
 594                       <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 595                       <td>$form->{creditlimit}</td>
 
 597                       <th nowrap>| . $locale->text('Remaining') . qq|</th>
 
 598                       <td class="plus$n" nowrap>$form->{creditremaining}</td>
 
 607       ($form->{type} eq 'sales_quotation')
 
 608       ? $locale->text('Valid until')
 
 609       : $locale->text('Required by');
 
 610     if ($form->{type} eq 'sales_quotation') {
 
 613                 <th width=70% align=right nowrap>|
 
 614         . $locale->text('Quotation Number') . qq|</th>
 
 615                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
 
 616                 <input type=hidden name=ordnumber value="$form->{ordnumber}">
 
 622                 <th width=70% align=right nowrap>| . $locale->text('RFQ Number') . qq|</th>
 
 623                 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
 
 624                 <input type=hidden name=ordnumber value="$form->{ordnumber}">
 
 632                 <th align=right nowrap>| . $locale->text('Quotation Date') . qq|</th>
 
 636                 <th align=right nowrap=true>$reqlabel</th>
 
 640     $creditremaining = qq| <tr>
 
 647     ($form->{"select$form->{vc}"})
 
 648     ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}</select>\n<input type=hidden name="select$form->{vc}" value="$form->{"select$form->{vc}"}">|
 
 649     : qq|<input name=$form->{vc} value="$form->{$form->{vc}}" size=35>|;
 
 653                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 654                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
 
 655                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
 658 | if $form->{selectdepartment};
 
 661               <input type=hidden name=employee value="$form->{employee}">
 
 664   if ($form->{type} eq 'sales_order') {
 
 665     if ($form->{selectemployee}) {
 
 667     <input type=hidden name=customer_klass value=$form->{customer_klass}>
 
 669                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
 
 670                 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
 
 671                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
 678     <input type=hidden name=customer_klass value=$form->{customer_klass}>
 
 680                 <th align=right nowrap>| . $locale->text('Employee') . qq|</th>
 
 681                 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
 
 682                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
 687   if ($form->{resubmit} && ($form->{format} eq "html")) {
 
 689       qq|window.open('about:blank','Beleg'); document.oe.target = 'Beleg';document.oe.submit()|;
 
 690   } elsif ($form->{resubmit}) {
 
 691     $onload = qq|document.oe.submit()|;
 
 696   $credittext = $locale->text('Credit Limit exceeded!!!');
 
 697   if ($creditwarning) {
 
 698     $onload = qq|alert('$credittext')|;
 
 701   $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
 
 706 <body onLoad="$onload">
 
 708 <form method=post name=oe action=$form->{script}>
 
 709  <script type="text/javascript" src="js/common.js"></script>
 
 710  <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
 
 711  <script type="text/javascript" src="js/vendor_selection.js"></script>
 
 712  <script type="text/javascript" src="js/calculate_qty.js"></script>
 
 714 <input type=hidden name=id value=$form->{id}>
 
 715 <input type=hidden name=action value=$form->{action}>
 
 717 <input type=hidden name=type value=$form->{type}>
 
 718 <input type=hidden name=formname value=$form->{formname}>
 
 719 <input type=hidden name=media value=$form->{media}>
 
 720 <input type=hidden name=format value=$form->{format}>
 
 721 <input type=hidden name=proforma value=$form->{proforma}>
 
 723 <input type=hidden name=queued value="$form->{queued}">
 
 724 <input type=hidden name=printed value="$form->{printed}">
 
 725 <input type=hidden name=emailed value="$form->{emailed}">
 
 727 <input type=hidden name=vc value=$form->{vc}>
 
 729 <input type=hidden name=title value="$form->{title}">
 
 731 <input type=hidden name=discount value=$form->{discount}>
 
 732 <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 733 <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 735 <input type=hidden name=tradediscount value=$form->{tradediscount}>
 
 736 <input type=hidden name=business value=$form->{business}>
 
 737 <input type=hidden name=webdav value=$webdav>
 
 741     <th class=listtop>$form->{title}</th>
 
 751                 <th align=right>$vclabel</th>
 
 752                 <td colspan=3>$vc</td>
 
 753                 <input type=hidden name=$form->{vc}_id value=$form->{"$form->{vc}_id"}>
 
 754                 <input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}">
 
 755                 <th align=richt nowrap>|
 
 756     . $locale->text('Contact Person') . qq|</th>
 
 757                 <td colspan=3>$contact</td>
 
 765                 <th align=right>| . $locale->text('Currency') . qq|</th>
 
 766                 <td><select name=currency>$form->{selectcurrency}</select></td>
 
 767                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 
 768                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 
 772                 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
 
 773                 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
 
 776                 <th align=right>| . $locale->text('Ship via') . qq|</th>
 
 777                 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
 
 784 #                         <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
 
 786 #                       <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
 
 787 #                       <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
 
 791 #                         <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
 
 793 #                       <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
 
 794 #                       <input size=45 id=vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
 
 815 <!-- shipto are in hidden variables -->
 
 817 <input type=hidden name=shiptoname value="$form->{shiptoname}">
 
 818 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
 
 819 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
 
 820 <input type=hidden name=shiptocity value="$form->{shiptocity}">
 
 821 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
 
 822 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
 
 823 <input type=hidden name=shiptophone value="$form->{shiptophone}">
 
 824 <input type=hidden name=shiptofax value="$form->{shiptofax}">
 
 825 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
 
 826 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
 
 827 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
 
 829 <!-- email variables -->
 
 830 <input type=hidden name=message value="$form->{message}">
 
 831 <input type=hidden name=email value="$form->{email}">
 
 832 <input type=hidden name=subject value="$form->{subject}">
 
 833 <input type=hidden name=cc value="$form->{cc}">
 
 834 <input type=hidden name=bcc value="$form->{bcc}">
 
 836 <input type=hidden name=taxpart value="$form->{taxpart}">
 
 837 <input type=hidden name=taxservice value="$form->{taxservice}">
 
 839 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 842   foreach $item (split / /, $form->{taxaccounts}) {
 
 844 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
 
 845 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
 
 848   $lxdebug->leave_sub();
 
 852   $lxdebug->enter_sub();
 
 854   $form->{invtotal} = $form->{invsubtotal};
 
 856   if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
 
 859   if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
 
 862   $rows = ($rows > $introws) ? $rows : $introws;
 
 864     qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
 
 866     qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
 
 868   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
 
 871   if ($form->{taxaccounts}) {
 
 873               <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
 
 874       . $locale->text('Tax Included') . qq|</b><br><br>
 
 878   if (!$form->{taxincluded}) {
 
 880     foreach $item (split / /, $form->{taxaccounts}) {
 
 881       if ($form->{"${item}_base"}) {
 
 882         $form->{invtotal} += $form->{"${item}_total"} =
 
 884                              $form->{"${item}_base"} * $form->{"${item}_rate"},
 
 886         $form->{"${item}_total"} =
 
 887           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 891                 <th align=right>$form->{"${item}_description"}</th>
 
 892                 <td align=right>$form->{"${item}_total"}</td>
 
 898     $form->{invsubtotal} =
 
 899       $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
 
 903                 <th align=right>| . $locale->text('Subtotal') . qq|</th>
 
 904                 <td align=right>$form->{invsubtotal}</td>
 
 910   if ($form->{taxincluded}) {
 
 911     foreach $item (split / /, $form->{taxaccounts}) {
 
 912       if ($form->{"${item}_base"}) {
 
 913         $form->{"${item}_total"} =
 
 915                            ($form->{"${item}_base"} * $form->{"${item}_rate"} /
 
 916                               (1 + $form->{"${item}_rate"})
 
 919         $form->{"${item}_netto"} =
 
 921                           ($form->{"${item}_base"} - $form->{"${item}_total"}),
 
 923         $form->{"${item}_total"} =
 
 924           $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 925         $form->{"${item}_netto"} =
 
 926           $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
 
 930                 <th align=right>Enthaltene $form->{"${item}_description"}</th>
 
 931                 <td align=right>$form->{"${item}_total"}</td>
 
 934                 <th align=right>Nettobetrag</th>
 
 935                 <td align=right>$form->{"${item}_netto"}</td>
 
 943   $form->{oldinvtotal} = $form->{invtotal};
 
 945     $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
 
 955                 <th align=left>| . $locale->text('Notes') . qq|</th>
 
 956                 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
 
 962           <th align=right>| . $locale->text('Payment Terms') . qq|</th>
 
 963           <td><select name=payment_id tabindex=24>$payment
 
 967           <td align=right width=100%>
 
 973                 <th align=right>| . $locale->text('Total') . qq|</th>
 
 974                 <td align=right>$form->{invtotal}</td>
 
 982 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
 983 <input type=hidden name=oldtotalpaid value=$totalpaid>
 
 985     <td><hr size=3 noshade></td>
 
 993     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
 
 996       <td align=left width=30%><b>Dateiname</b></td>
 
 997       <td align=left width=70%><b>Webdavlink</b></td>
 
 999     foreach $file (keys %{ $form->{WEBDAV} }) {
 
1002         <td align=left>$file</td>
 
1003         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
 
1011     <td><hr size=3 noshade></td>
 
1018 <input type=hidden name=jscalendar value=$form->{jscalendar}>
 
1031 | . $locale->text("Edit the $form->{type}") . qq|<br>
 
1032 <input class=submit type=submit name=action id=update_button value="|
 
1033     . $locale->text('Update') . qq|">
 
1034 <input class=submit type=submit name=action value="|
 
1035     . $locale->text('Ship to') . qq|">
 
1036 <input class=submit type=submit name=action value="|
 
1037     . $locale->text('Print') . qq|">
 
1038 <input class=submit type=submit name=action value="|
 
1039     . $locale->text('E-mail') . qq|">
 
1040 <input class=submit type=submit name=action value="|
 
1041     . $locale->text('Save') . qq|">
 
1042 <input class=submit type=submit name=action value="|
 
1043     . $locale->text('Save and Close') . qq|">
 
1046   if (($form->{id})) {
 
1048 <br>| . $locale->text("Workflow $form->{type}") . qq|<br>
 
1049 <input class=submit type=submit name=action value="|
 
1050       . $locale->text('Save as new') . qq|">
 
1051 <input class=submit type=submit name=action value="|
 
1052       . $locale->text('Delete') . qq|">|;
 
1053     if (($form->{type} =~ /sales_quotation$/)) {
 
1055 <input class=submit type=submit name=action value="|
 
1056         . $locale->text('Sales Order') . qq|">|;
 
1058     if ($form->{type} =~ /request_quotation$/) {
 
1060 <input class=submit type=submit name=action value="|
 
1061         . $locale->text('Purchase Order') . qq|">|;
 
1065 <input class=submit type=submit name=action value="|
 
1066       . $locale->text('Invoice') . qq|">
 
1070     if ($form->{type} =~ /sales_order$/) {
 
1072 <br>$form->{heading} als neue Vorlage verwenden für<br>
 
1073 <input class=submit type=submit name=action value="|
 
1074         . $locale->text('Purchase Order') . qq|">
 
1075 <input class=submit type=submit name=action value="|
 
1076         . $locale->text('Quotation') . qq|">
 
1079     } elsif ($form->{type} =~ /purchase_order$/) {
 
1081 <br>$form->{heading} als neue Vorlage verwenden für<br>
 
1082 <input class=submit type=submit name=action value="|
 
1083         . $locale->text('Sales Order') . qq|">
 
1084 <input class=submit type=submit name=action value="|
 
1085         . $locale->text('Request for Quotation') . qq|">
 
1090 <br>$form->{heading} als neue Vorlage verwenden für<br>
 
1091 <input class=submit type=submit name=action value="|
 
1092         . $locale->text('Order') . qq|">
 
1095   } elsif ($form->{type} =~ /sales_order$/ && $form->{rowcount} && !$form->{proforma}) {
 
1097 <br>Workflow  $form->{heading}<br>
 
1098 <input class=submit type=submit name=action value="|
 
1099       . $locale->text('Save as new') . qq|">
 
1100 <input class=submit type=submit name=action value="|
 
1101       . $locale->text('Invoice') . qq|">
 
1107 <input type=hidden name=rowcount value=$form->{rowcount}>
 
1109 <input name=callback type=hidden value="$form->{callback}">
 
1111 <input type=hidden name=path value=$form->{path}>
 
1112 <input type=hidden name=login value=$form->{login}>
 
1113 <input type=hidden name=password value=$form->{password}>
 
1120   $lxdebug->leave_sub();
 
1124   $lxdebug->enter_sub();
 
1126   set_headings($form->{"id"} ? "edit" : "add");
 
1128   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
1129     qw(exchangerate creditlimit creditremaining);
 
1130   $form->{update} = 1;
 
1132   &check_name($form->{vc});
 
1137   $buysell              = 'sell' if ($form->{vc} eq 'vendor');
 
1138   $form->{exchangerate} = $exchangerate
 
1142                     $form->check_exchangerate(
 
1143                     \%myconfig, $form->{currency}, $form->{transdate}, $buysell
 
1147   $i = $form->{rowcount};
 
1149   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
 
1151   if (   ($form->{"partnumber_$i"} eq "")
 
1152       && ($form->{"description_$i"} eq "")
 
1153       && ($form->{"partsgroup_$i"}  eq "")) {
 
1155     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
1160     if (   $form->{type} eq 'purchase_order'
 
1161         || $form->{type} eq 'request_quotation') {
 
1162       IR->retrieve_item(\%myconfig, \%$form);
 
1164     if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
 
1165       IS->retrieve_item(\%myconfig, \%$form);
 
1168     my $rows = scalar @{ $form->{item_list} };
 
1170     $form->{"discount_$i"} =
 
1171       $form->format_amount(\%myconfig, $form->{discount} * 100);
 
1174       $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
 
1183         $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
1184         if ($form->{"not_discountable_$i"}) {
 
1185           $form->{"discount_$i"} = 0;
 
1187         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
 
1188           qw(partnumber description unit);
 
1189         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
 
1190           keys %{ $form->{item_list}[0] };
 
1191         if ($form->{"part_payment_id_$i"} ne "") {
 
1192           $form->{payment_id} = $form->{"part_payment_id_$i"};
 
1195         $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
 
1197         ($dec) = ($s =~ /\.(\d+)/);
 
1199         $decimalplaces = ($dec > 2) ? $dec : 2;
 
1202           $form->{"sellprice_$i"} = $sellprice;
 
1205           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
 
1207           # if there is an exchange rate adjust sellprice
 
1208           $form->{"sellprice_$i"} /= $exchangerate;
 
1212           $form->{"sellprice_$i"} * $form->{"qty_$i"} *
 
1213           (1 - $form->{"discount_$i"} / 100);
 
1214         map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
 
1215         map { $form->{"${_}_base"} += $amount }
 
1216           (split / /, $form->{"taxaccounts_$i"});
 
1217         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
 
1218           split / /, $form->{taxaccounts}
 
1219           if !$form->{taxincluded};
 
1221         $form->{creditremaining} -= $amount;
 
1223         $form->{"sellprice_$i"} =
 
1224           $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
1227           $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
1229         # get pricegroups for parts
 
1230         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
1232         # build up html code for prices_$i
 
1233         &set_pricegroup($i);
 
1240       # ok, so this is a new part
 
1241       # ask if it is a part or service item
 
1243       if (   $form->{"partsgroup_$i"}
 
1244           && ($form->{"partsnumber_$i"} eq "")
 
1245           && ($form->{"description_$i"} eq "")) {
 
1246         $form->{rowcount}--;
 
1247         $form->{"discount_$i"} = "";
 
1251         $form->{"id_$i"}   = 0;
 
1252         $form->{"unit_$i"} = $locale->text('ea');
 
1260   $lxdebug->leave_sub();
 
1264   $lxdebug->enter_sub();
 
1266   if ($form->{type} eq 'purchase_order') {
 
1267     $form->{title} = $locale->text('Purchase Orders');
 
1268     $form->{vc}    = 'vendor';
 
1269     $ordlabel      = $locale->text('Order Number');
 
1270     $ordnumber     = 'ordnumber';
 
1271     $employee      = $locale->text('Employee');
 
1273   if ($form->{type} eq 'request_quotation') {
 
1274     $form->{title} = $locale->text('Request for Quotations');
 
1275     $form->{vc}    = 'vendor';
 
1276     $ordlabel      = $locale->text('RFQ Number');
 
1277     $ordnumber     = 'quonumber';
 
1278     $employee      = $locale->text('Employee');
 
1280   if ($form->{type} eq 'receive_order') {
 
1281     $form->{title} = $locale->text('Receive Merchandise');
 
1282     $form->{vc}    = 'vendor';
 
1283     $ordlabel      = $locale->text('Order Number');
 
1284     $ordnumber     = 'ordnumber';
 
1285     $employee      = $locale->text('Employee');
 
1287   if ($form->{type} eq 'sales_order') {
 
1288     $form->{title} = $locale->text('Sales Orders');
 
1289     $form->{vc}    = 'customer';
 
1290     $ordlabel      = $locale->text('Order Number');
 
1291     $ordnumber     = 'ordnumber';
 
1292     $employee      = $locale->text('Salesperson');
 
1294   if ($form->{type} eq 'ship_order') {
 
1295     $form->{title} = $locale->text('Ship Merchandise');
 
1296     $form->{vc}    = 'customer';
 
1297     $ordlabel      = $locale->text('Order Number');
 
1298     $ordnumber     = 'ordnumber';
 
1299     $employee      = $locale->text('Salesperson');
 
1303   if ($form->{type} eq 'sales_quotation') {
 
1304     $form->{title} = $locale->text('Quotations');
 
1305     $form->{vc}    = 'customer';
 
1306     $ordlabel      = $locale->text('Quotation Number');
 
1307     $ordnumber     = 'quonumber';
 
1308     $employee      = $locale->text('Employee');
 
1311   if ($form->{type} =~ /(ship|receive)_order/) {
 
1312     OE->get_warehouses(\%myconfig, \%$form);
 
1315     if (@{ $form->{all_warehouses} }) {
 
1316       $form->{selectwarehouse} = "<option>\n";
 
1317       $form->{warehouse}       = qq|$form->{warehouse}--$form->{warehouse_id}|;
 
1320         $form->{selectwarehouse} .=
 
1321           "<option>$_->{description}--$_->{id}\n"
 
1322       } (@{ $form->{all_warehouses} });
 
1326                 <th align=right>| . $locale->text('Warehouse') . qq|</th>
 
1327                 <td colspan=3><select name=warehouse>$form->{selectwarehouse}</select></td>
 
1328                 <input type=hidden name=selectwarehouse value="$form->{selectwarehouse}">
 
1335   # setup vendor / customer selection
 
1336   $form->all_vc(\%myconfig, $form->{vc},
 
1337                 ($form->{vc} eq 'customer') ? "AR" : "AP");
 
1339   map { $vc .= "<option>$_->{name}--$_->{id}\n" }
 
1340     @{ $form->{"all_$form->{vc}"} };
 
1342   $vclabel = ucfirst $form->{vc};
 
1343   $vclabel = $locale->text($vclabel);
 
1345   # $locale->text('Vendor')
 
1346   # $locale->text('Customer')
 
1350     ? qq|<select name=$form->{vc}><option>\n$vc</select>|
 
1351     : qq|<input name=$form->{vc} size=35>|;
 
1354   if (@{ $form->{all_departments} }) {
 
1355     $form->{selectdepartment} = "<option>\n";
 
1358       $form->{selectdepartment} .=
 
1359         "<option>$_->{description}--$_->{id}\n"
 
1360     } (@{ $form->{all_departments} });
 
1365           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
 
1366           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
 
1368 | if $form->{selectdepartment};
 
1370   if ($form->{type} !~ /(ship_order|receive_order)/) {
 
1373                 <td><input name="open" class=checkbox type=checkbox value=1 checked> |
 
1374       . $locale->text('Open') . qq|</td>
 
1375                 <td><input name="closed" class=checkbox type=checkbox value=1 $form->{closed}> |
 
1376       . $locale->text('Closed') . qq|</td>
 
1382                 <input type=hidden name="open" value=1>
 
1386   # use JavaScript Calendar or not
 
1387   $form->{jsscript} = $jscalendar;
 
1389   if ($form->{jsscript}) {
 
1391     # with JavaScript Calendar
 
1393        <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}">
 
1394        <input type=button name=transdatefrom id="trigger3" value=|
 
1395       . $locale->text('button') . qq|></td>
 
1398        <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}">
 
1399        <input type=button name=transdateto name=transdateto id="trigger4" value=|
 
1400       . $locale->text('button') . qq|></td>
 
1405       Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger3",
 
1406                           "transdateto", "BL", "trigger4");
 
1409     # without JavaScript Calendar
 
1411                               <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
 
1413                               <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}"></td>|;
 
1421 <form method=post action=$form->{script}>
 
1425     <th class=listtop>$form->{title}</th>
 
1427   <tr height="5"></tr>
 
1432           <th align=right>$vclabel</th>
 
1433           <td colspan=3>$vc</td>
 
1438           <th align=right>$ordlabel</th>
 
1439           <td colspan=3><input name="$ordnumber" size=20></td>
 
1442           <th align=right>| . $locale->text('From') . qq|</th>
 
1444           <th align=right>| . $locale->text('Bis') . qq|</th>
 
1447         <input type=hidden name=sort value=transdate>
 
1449           <th align=right>| . $locale->text('Include in Report') . qq|</th>
 
1454                 <td><input name="l_id" class=checkbox type=checkbox value=Y>
 
1455                 | . $locale->text('ID') . qq|</td>
 
1456                 <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td>
 
1457                 <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |
 
1458     . $locale->text('Date') . qq|</td>
 
1459                 <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |
 
1460     . $locale->text('Required by') . qq|</td>
 
1463                 <td><input name="l_name" class=checkbox type=checkbox value=Y checked> $vclabel</td>
 
1464                 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
 
1465                 <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |
 
1466     . $locale->text('Ship via') . qq|</td>
 
1469                 <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |
 
1470     . $locale->text('Amount') . qq|</td>
 
1471                 <td><input name="l_tax" class=checkbox type=checkbox value=Y> |
 
1472     . $locale->text('Tax') . qq|</td>
 
1473                 <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |
 
1474     . $locale->text('Total') . qq|</td>
 
1477                 <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |
 
1478     . $locale->text('Subtotal') . qq|</td>
 
1486   <tr><td colspan=4><hr size=3 noshade></td></tr>
 
1492 <input type=hidden name=nextsub value=orders>
 
1493 <input type=hidden name=path value=$form->{path}>
 
1494 <input type=hidden name=login value=$form->{login}>
 
1495 <input type=hidden name=password value=$form->{password}>
 
1496 <input type=hidden name=vc value=$form->{vc}>
 
1497 <input type=hidden name=type value=$form->{type}>
 
1499 <input class=submit type=submit name=action value="|
 
1500     . $locale->text('Continue') . qq|">
 
1507   $lxdebug->leave_sub();
 
1511   $lxdebug->enter_sub();
 
1513   # split vendor / customer
 
1514   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) =
 
1515     split(/--/, $form->{ $form->{vc} });
 
1517   OE->transactions(\%myconfig, \%$form);
 
1519   $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
 
1521   $number     = $form->escape($form->{$ordnumber});
 
1522   $name       = $form->escape($form->{ $form->{vc} });
 
1523   $department = $form->escape($form->{department});
 
1524   $warehouse  = $form->escape($form->{warehouse});
 
1528     "$form->{script}?path=$form->{path}&action=orders&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}&transdatefrom=$form->{transdatefrom}&transdateto=$form->{transdateto}&open=$form->{open}&closed=$form->{closed}&$ordnumber=$number&$form->{vc}=$name&department=$department&warehouse=$warehouse";
 
1530   # construct callback
 
1531   $number     = $form->escape($form->{$ordnumber},    1);
 
1532   $name       = $form->escape($form->{ $form->{vc} }, 1);
 
1533   $department = $form->escape($form->{department},    1);
 
1534   $warehouse  = $form->escape($form->{warehouse},     1);
 
1537     "$form->{script}?path=$form->{path}&action=orders&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}&transdatefrom=$form->{transdatefrom}&transdateto=$form->{transdateto}&open=$form->{open}&closed=$form->{closed}&$ordnumber=$number&$form->{vc}=$name&department=$department&warehouse=$warehouse";
 
1540     $form->sort_columns("transdate", "reqdate",   "id",      "$ordnumber",
 
1541                         "name",      "netamount", "tax",     "amount",
 
1542                         "curr",      "employee",  "shipvia", "open",
 
1545   $form->{l_open} = $form->{l_closed} = "Y"
 
1546     if ($form->{open} && $form->{closed});
 
1548   foreach $item (@columns) {
 
1549     if ($form->{"l_$item"} eq "Y") {
 
1550       push @column_index, $item;
 
1552       # add column to href and callback
 
1553       $callback .= "&l_$item=Y";
 
1554       $href     .= "&l_$item=Y";
 
1558   # only show checkboxes if gotten here via sales_order form.
 
1559   if ($form->{type} =~ /sales_order/) {
 
1560     unshift @column_index, "ids";
 
1563   if ($form->{l_subtotal} eq 'Y') {
 
1564     $callback .= "&l_subtotal=Y";
 
1565     $href     .= "&l_subtotal=Y";
 
1568   if ($form->{vc} eq 'vendor') {
 
1569     if ($form->{type} eq 'receive_order') {
 
1570       $form->{title} = $locale->text('Receive Merchandise');
 
1571     } elsif ($form->{type} eq 'purchase_order') {
 
1572       $form->{title} = $locale->text('Purchase Orders');
 
1574       $form->{title} = $locale->text('Request for Quotations');
 
1576     $name     = $locale->text('Vendor');
 
1577     $employee = $locale->text('Employee');
 
1579   if ($form->{vc} eq 'customer') {
 
1580     if ($form->{type} eq 'sales_order') {
 
1581       $form->{title} = $locale->text('Sales Orders');
 
1582       $employee = $locale->text('Salesperson');
 
1583     } elsif ($form->{type} eq 'ship_order') {
 
1584       $form->{title} = $locale->text('Ship Merchandise');
 
1585       $employee = $locale->text('Salesperson');
 
1587       $form->{title} = $locale->text('Quotations');
 
1588       $employee = $locale->text('Employee');
 
1590     $name = $locale->text('Customer');
 
1593   $column_header{id} =
 
1594       qq|<th><a class=listheading href=$href&sort=id>|
 
1595     . $locale->text('ID')
 
1597   $column_header{transdate} =
 
1598       qq|<th><a class=listheading href=$href&sort=transdate>|
 
1599     . $locale->text('Date')
 
1601   $column_header{reqdate} =
 
1602       qq|<th><a class=listheading href=$href&sort=reqdate>|
 
1603     . $locale->text('Required by')
 
1605   $column_header{ordnumber} =
 
1606       qq|<th><a class=listheading href=$href&sort=ordnumber>|
 
1607     . $locale->text('Order')
 
1609   $column_header{quonumber} =
 
1610       qq|<th><a class=listheading href=$href&sort=quonumber>|
 
1611     . ($form->{"type"} eq "request_quotation" ?
 
1612        $locale->text('RFQ') :
 
1613        $locale->text('Quotation'))
 
1615   $column_header{name} =
 
1616     qq|<th><a class=listheading href=$href&sort=name>$name</a></th>|;
 
1617   $column_header{netamount} =
 
1618     qq|<th class=listheading>| . $locale->text('Amount') . qq|</th>|;
 
1619   $column_header{tax} =
 
1620     qq|<th class=listheading>| . $locale->text('Tax') . qq|</th>|;
 
1621   $column_header{amount} =
 
1622     qq|<th class=listheading>| . $locale->text('Total') . qq|</th>|;
 
1623   $column_header{curr} =
 
1624     qq|<th class=listheading>| . $locale->text('Curr') . qq|</th>|;
 
1625   $column_header{shipvia} =
 
1626       qq|<th><a class=listheading href=$href&sort=shipvia>|
 
1627     . $locale->text('Ship via')
 
1629   $column_header{open} =
 
1630     qq|<th class=listheading>| . $locale->text('O') . qq|</th>|;
 
1631   $column_header{closed} =
 
1632     qq|<th class=listheading>| . $locale->text('C') . qq|</th>|;
 
1634   $column_header{employee} =
 
1635     qq|<th><a class=listheading href=$href&sort=employee>$employee</a></th>|;
 
1637   $column_header{ids} = qq|<th></th>|;
 
1639   if ($form->{ $form->{vc} }) {
 
1640     $option = $locale->text(ucfirst $form->{vc});
 
1641     $option .= " : $form->{$form->{vc}}";
 
1643   if ($form->{warehouse}) {
 
1644     ($warehouse) = split /--/, $form->{warehouse};
 
1645     $option .= "\n<br>" if ($option);
 
1646     $option .= $locale->text('Warehouse');
 
1647     $option .= " : $warehouse";
 
1649   if ($form->{department}) {
 
1650     $option .= "\n<br>" if ($option);
 
1651     ($department) = split /--/, $form->{department};
 
1652     $option .= $locale->text('Department') . " : $department";
 
1654   if ($form->{transdatefrom}) {
 
1656       . $locale->text('From') . " "
 
1657       . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
 
1659   if ($form->{transdateto}) {
 
1661       . $locale->text('Bis') . " "
 
1662       . $locale->date(\%myconfig, $form->{transdateto}, 1);
 
1664   if ($form->{open}) {
 
1665     $option .= "\n<br>" if ($option);
 
1666     $option .= $locale->text('Open');
 
1668   if ($form->{closed}) {
 
1669     $option .= "\n<br>" if ($option);
 
1670     $option .= $locale->text('Closed');
 
1678 <form method="post" action="oe.pl">
 
1681     <th class=listtop>$form->{title}</th>
 
1683   <tr height="5"></tr>
 
1690         <tr class=listheading>|;
 
1692   map { print "\n$column_header{$_}" } @column_index;
 
1698   # add sort and escape callback
 
1699   $callback_escaped = $form->escape($callback . "&sort=$form->{sort}");
 
1701   if (@{ $form->{OE} }) {
 
1702     $sameitem = $form->{OE}->[0]->{ $form->{sort} };
 
1706   $action = "ship_receive" if ($form->{type} =~ /(ship|receive)_order/);
 
1708   $warehouse = $form->escape($form->{warehouse});
 
1710   foreach $oe (@{ $form->{OE} }) {
 
1711     $form->{rowcount} = ++$j;
 
1713     if ($form->{l_subtotal} eq 'Y') {
 
1714       if ($sameitem ne $oe->{ $form->{sort} }) {
 
1716         $sameitem = $oe->{ $form->{sort} };
 
1720     map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount));
 
1722     $column_data{netamount} =
 
1724       . $form->format_amount(\%myconfig, $oe->{netamount}, 2, " ")
 
1726     $column_data{tax} = "<td align=right>"
 
1727       . $form->format_amount(\%myconfig, $oe->{amount} - $oe->{netamount},
 
1730     $column_data{amount} =
 
1732       . $form->format_amount(\%myconfig, $oe->{amount}, 2, " ") . "</td>";
 
1734     $totalnetamount += $oe->{netamount};
 
1735     $totalamount    += $oe->{amount};
 
1737     $subtotalnetamount += $oe->{netamount};
 
1738     $subtotalamount    += $oe->{amount};
 
1741       qq|<td><input name="id_$j" class=checkbox type=checkbox><input type="hidden" name="trans_id_$j" value="$oe->{id}"></td>|;
 
1742     $column_data{id}        = "<td>$oe->{id}</td>";
 
1743     $column_data{transdate} = "<td>$oe->{transdate} </td>";
 
1744     $column_data{reqdate}   = "<td>$oe->{reqdate} </td>";
 
1746     $column_data{$ordnumber} =
 
1747       "<td><a href=oe.pl?path=$form->{path}&action=$action&type=$form->{type}&id=$oe->{id}&warehouse=$warehouse&vc=$form->{vc}&login=$form->{login}&password=$form->{password}&callback=$callback_escaped>$oe->{$ordnumber}</a></td>";
 
1748     $column_data{name} = "<td>$oe->{name}</td>";
 
1750     $column_data{employee} = "<td>$oe->{employee} </td>";
 
1751     $column_data{shipvia}  = "<td>$oe->{shipvia} </td>";
 
1753     if ($oe->{closed}) {
 
1754       $column_data{closed} = "<td align=center>X</td>";
 
1755       $column_data{open}   = "<td> </td>";
 
1757       $column_data{closed} = "<td> </td>";
 
1758       $column_data{open}   = "<td align=center>X</td>";
 
1764         <tr class=listrow$i>";
 
1766     map { print "\n$column_data{$_}" } @column_index;
 
1774   if ($form->{l_subtotal} eq 'Y') {
 
1780         <tr class=listtotal>|;
 
1782   map { $column_data{$_} = "<td> </td>" } @column_index;
 
1784   $column_data{netamount} =
 
1785     "<th class=listtotal align=right>"
 
1786     . $form->format_amount(\%myconfig, $totalnetamount, 2, " ") . "</th>";
 
1787   $column_data{tax} = "<th class=listtotal align=right>"
 
1788     . $form->format_amount(\%myconfig, $totalamount - $totalnetamount,
 
1791   $column_data{amount} =
 
1792     "<th class=listtotal align=right>"
 
1793     . $form->format_amount(\%myconfig, $totalamount, 2, " ") . "</th>";
 
1795   map { print "\n$column_data{$_}" } @column_index;
 
1803     <td><hr size=3 noshade></td>
 
1807   # multiple invoice edit button only if gotten there via sales_order form.
 
1809   if ($form->{type} =~ /sales_order/) {
 
1811   <input type="hidden" name="path" value="$form->{path}">
 
1812   <input class"submit" type="submit" name="action" value="|
 
1813       . $locale->text('Continue') . qq|">
 
1814   <input type="hidden" name="nextsub" value="edit">
 
1815   <input type="hidden" name="type" value="$form->{type}">
 
1816   <input type="hidden" name="warehouse" value="$warehouse">
 
1817   <input type="hidden" name="vc" value="$form->{vc}">
 
1818   <input type="hidden" name="login" value="$form->{login}">
 
1819   <input type="hidden" name="password" value="$form->{password}">
 
1820   <input type="hidden" name="callback" value="$callback">
 
1821   <input type="hidden" name="rowcount" value="$form->{rowcount}">|;
 
1828 <form method=post action=$form->{script}>
 
1830 <input name=callback type=hidden value="$form->{callback}">
 
1832 <input type=hidden name=type value=$form->{type}>
 
1833 <input type=hidden name=vc value=$form->{vc}>
 
1835 <input type=hidden name=path value=$form->{path}>
 
1836 <input type=hidden name=login value=$form->{login}>
 
1837 <input type=hidden name=password value=$form->{password}>
 
1840   if ($form->{type} !~ /(ship|receive)_order/) {
 
1842 <input class=submit type=submit name=action value="|
 
1843       . $locale->text('Add') . qq|">|;
 
1853   $lxdebug->leave_sub();
 
1857   $lxdebug->enter_sub();
 
1859   map { $column_data{$_} = "<td> </td>" } @column_index;
 
1861   $column_data{netamount} =
 
1862       "<th class=listsubtotal align=right>"
 
1863     . $form->format_amount(\%myconfig, $subtotalnetamount, 2, " ")
 
1865   $column_data{tax} = "<td class=listsubtotal align=right>"
 
1866     . $form->format_amount(\%myconfig, $subtotalamount - $subtotalnetamount,
 
1869   $column_data{amount} =
 
1870     "<th class=listsubtotal align=right>"
 
1871     . $form->format_amount(\%myconfig, $subtotalamount, 2, " ") . "</th>";
 
1873   $subtotalnetamount = 0;
 
1874   $subtotalamount    = 0;
 
1877         <tr class=listsubtotal>
 
1880   map { print "\n$column_data{$_}" } @column_index;
 
1886   $lxdebug->leave_sub();
 
1889 sub save_and_close {
 
1890   $lxdebug->enter_sub();
 
1892   if ($form->{type} =~ /_order$/) {
 
1893     $form->isblank("transdate", $locale->text('Order Date missing!'));
 
1895     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1898   $msg = ucfirst $form->{vc};
 
1899   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
 
1901   # $locale->text('Customer missing!');
 
1902   # $locale->text('Vendor missing!');
 
1904   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1905     if ($form->{currency} ne $form->{defaultcurrency});
 
1909   # if the name changed get new values
 
1910   if (&check_name($form->{vc})) {
 
1915   $form->{id} = 0 if $form->{saveasnew};
 
1917   # this is for the internal notes section for the [email] Subject
 
1918   if ($form->{type} =~ /_order$/) {
 
1919     if ($form->{type} eq 'sales_order') {
 
1920       $form->{label} = $locale->text('Sales Order');
 
1922       $numberfld = "sonumber";
 
1923       $ordnumber = "ordnumber";
 
1925       $form->{label} = $locale->text('Purchase Order');
 
1927       $numberfld = "ponumber";
 
1928       $ordnumber = "ordnumber";
 
1931     $err = $locale->text('Cannot save order!');
 
1934     if ($form->{type} eq 'sales_quotation') {
 
1935       $form->{label} = $locale->text('Quotation');
 
1937       $numberfld = "sqnumber";
 
1938       $ordnumber = "quonumber";
 
1940       $form->{label} = $locale->text('Request for Quotation');
 
1942       $numberfld = "rfqnumber";
 
1943       $ordnumber = "quonumber";
 
1946     $err = $locale->text('Cannot save quotation!');
 
1950   # get new number in sequence if no number is given or if saveasnew was requested
 
1951   if (!$form->{$ordnumber} || $form->{saveasnew}) {
 
1952     $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
 
1958             $form->{label} . " $form->{$ordnumber} " . $locale->text('saved!'))
 
1959     if (OE->save(\%myconfig, \%$form));
 
1962   $lxdebug->leave_sub();
 
1966   $lxdebug->enter_sub();
 
1968   if ($form->{type} =~ /_order$/) {
 
1969     $form->isblank("transdate", $locale->text('Order Date missing!'));
 
1971     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1974   $msg = ucfirst $form->{vc};
 
1975   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
 
1977   # $locale->text('Customer missing!');
 
1978   # $locale->text('Vendor missing!');
 
1980   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1981     if ($form->{currency} ne $form->{defaultcurrency});
 
1985   # if the name changed get new values
 
1986   if (&check_name($form->{vc})) {
 
1991   $form->{id} = 0 if $form->{saveasnew};
 
1993   # this is for the internal notes section for the [email] Subject
 
1994   if ($form->{type} =~ /_order$/) {
 
1995     if ($form->{type} eq 'sales_order') {
 
1996       $form->{label} = $locale->text('Sales Order');
 
1998       $numberfld = "sonumber";
 
1999       $ordnumber = "ordnumber";
 
2001       $form->{label} = $locale->text('Purchase Order');
 
2003       $numberfld = "ponumber";
 
2004       $ordnumber = "ordnumber";
 
2007     $err = $locale->text('Cannot save order!');
 
2010     if ($form->{type} eq 'sales_quotation') {
 
2011       $form->{label} = $locale->text('Quotation');
 
2013       $numberfld = "sqnumber";
 
2014       $ordnumber = "quonumber";
 
2016       $form->{label} = $locale->text('Request for Quotation');
 
2018       $numberfld = "rfqnumber";
 
2019       $ordnumber = "quonumber";
 
2022     $err = $locale->text('Cannot save quotation!');
 
2026   $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
 
2027     unless $form->{$ordnumber};
 
2031   OE->save(\%myconfig, \%$form);
 
2032   $form->{simple_save} = 1;
 
2033   if(!$form->{print_and_save}) {
 
2034     set_headings("edit");
 
2038   $lxdebug->leave_sub();
 
2042   $lxdebug->enter_sub();
 
2046   if ($form->{type} =~ /_order$/) {
 
2047     $msg       = $locale->text('Are you sure you want to delete Order Number');
 
2048     $ordnumber = 'ordnumber';
 
2050     $msg = $locale->text('Are you sure you want to delete Quotation Number');
 
2051     $ordnumber = 'quonumber';
 
2057 <form method=post action=$form->{script}>
 
2060   # delete action variable
 
2061   map { delete $form->{$_} } qw(action header);
 
2063   foreach $key (keys %$form) {
 
2064     $form->{$key} =~ s/\"/"/g;
 
2065     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
2069 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
 
2071 <h4>$msg $form->{$ordnumber}</h4>
 
2073 <input name=action class=submit type=submit value="|
 
2074     . $locale->text('Yes') . qq|">
 
2081   $lxdebug->leave_sub();
 
2085   $lxdebug->enter_sub();
 
2087   if ($form->{type} =~ /_order$/) {
 
2088     $msg = $locale->text('Order deleted!');
 
2089     $err = $locale->text('Cannot delete order!');
 
2091     $msg = $locale->text('Quotation deleted!');
 
2092     $err = $locale->text('Cannot delete quotation!');
 
2095   $form->redirect($msg) if (OE->delete(\%myconfig, \%$form, $spool));
 
2098   $lxdebug->leave_sub();
 
2102   $lxdebug->enter_sub();
 
2104   if ($form->{type} =~ /_order$/) {
 
2106     # these checks only apply if the items don't bring their own ordnumbers/transdates.
 
2107     # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
 
2108     $form->isblank("ordnumber", $locale->text('Order Number missing!'))
 
2109       if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
 
2111     $form->isblank("transdate", $locale->text('Order Date missing!'))
 
2112       if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
 
2115     # also copy deliverydate from the order
 
2116     $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
 
2118     $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
 
2119     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
2120     $form->{ordnumber} = "";
 
2123   # if the name changed get new values
 
2124   if (&check_name($form->{vc})) {
 
2129   $form->{cp_id} *= 1;
 
2131   for $i (1 .. $form->{rowcount}) {
 
2132     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
2133                                                      $form->{"${_}_${i}"})
 
2134             if ($form->{"${_}_${i}"}) }
 
2135         qw(ship qty sellprice listprice basefactor));
 
2138   if (   $form->{type} =~ /_order/
 
2139       && $form->{currency} ne $form->{defaultcurrency}) {
 
2141     # check if we need a new exchangerate
 
2142     $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
 
2144     $orddate      = $form->current_date(\%myconfig);
 
2146       $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
 
2149     if (!$exchangerate) {
 
2150       &backorder_exchangerate($orddate, $buysell);
 
2155   # close orders/quotations
 
2156   $form->{closed} = 1;
 
2158   # save order if one ordnumber has been given
 
2159   # if not it's most likely a collective order, which can't be saved back
 
2160   # so they just have to be closed
 
2161   if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) {
 
2162     OE->close_order(\%myconfig, \%$form);
 
2164     OE->close_orders(\%myconfig, \%$form);
 
2167   $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
 
2169     $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
2172   $form->{closed} = 0;
 
2173   $form->{rowcount}--;
 
2174   $form->{shipto} = 1;
 
2176   if ($form->{type} =~ /_order$/) {
 
2177     $form->{exchangerate} = $exchangerate;
 
2181   if (   $form->{type} eq 'purchase_order'
 
2182       || $form->{type} eq 'request_quotation') {
 
2183     $form->{title}  = $locale->text('Add Vendor Invoice');
 
2184     $form->{script} = 'ir.pl';
 
2188   if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
 
2189     $form->{title}  = $locale->text('Add Sales Invoice');
 
2190     $form->{script} = 'is.pl';
 
2195   # bo creates the id, reset it
 
2196   map { delete $form->{$_} }
 
2197     qw(id subject message cc bcc printed emailed queued);
 
2198   $form->{ $form->{vc} } =~ s/--.*//g;
 
2199   $form->{type} = "invoice";
 
2202   $locale = new Locale "$myconfig{countrycode}", "$script";
 
2204   require "$form->{path}/$form->{script}";
 
2206   map { $form->{"select$_"} = "" } ($form->{vc}, currency);
 
2208   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
2209     qw(creditlimit creditremaining);
 
2211   $currency = $form->{currency};
 
2214   $form->{currency}     = $currency;
 
2215   $form->{exchangerate} = "";
 
2216   $form->{forex}        = "";
 
2217   $form->{exchangerate} = $exchangerate
 
2221                       $form->check_exchangerate(
 
2222                       \%myconfig, $form->{currency}, $form->{invdate}, $buysell
 
2225   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
 
2230   for $i (1 .. $form->{rowcount}) {
 
2231     $form->{"discount_$i"} =
 
2232       $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
2234     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
2236     $decimalplaces = ($dec > 2) ? $dec : 2;
 
2238     # copy delivery date from reqdate for order -> invoice conversion
 
2239     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
 
2240       unless $form->{"deliverydate_$i"};
 
2242     $form->{"sellprice_$i"} =
 
2243       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
2246     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
2247     $dec_qty = length $dec_qty;
 
2249       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
2251     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
2252       qw(partnumber description unit);
 
2258   $lxdebug->leave_sub();
 
2261 sub backorder_exchangerate {
 
2262   $lxdebug->enter_sub();
 
2263   my ($orddate, $buysell) = @_;
 
2270 <form method=post action=$form->{script}>
 
2273   # delete action variable
 
2274   map { delete $form->{$_} } qw(action header exchangerate);
 
2276   foreach $key (keys %$form) {
 
2277     $form->{$key} =~ s/\"/"/g;
 
2278     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
2281   $form->{title} = $locale->text('Add Exchangerate');
 
2285 <input type=hidden name=path value=$form->{path}>
 
2286 <input type=hidden name=login value=$form->{login}>
 
2287 <input type=hidden name=password value=$form->{password}>
 
2289 <input type=hidden name=exchangeratedate value=$orddate>
 
2290 <input type=hidden name=buysell value=$buysell>
 
2293   <tr><th class=listtop>$form->{title}</th></tr>
 
2294   <tr height="5"></tr>
 
2299           <th align=right>| . $locale->text('Currency') . qq|</th>
 
2300           <td>$form->{currency}</td>
 
2303           <th align=right>| . $locale->text('Date') . qq|</th>
 
2307           <th align=right>| . $locale->text('Exchangerate') . qq|</th>
 
2308           <td><input name=exchangerate size=11></td>
 
2318 <input type=hidden name=nextsub value=save_exchangerate>
 
2320 <input name=action class=submit type=submit value="|
 
2321     . $locale->text('Continue') . qq|">
 
2329   $lxdebug->leave_sub();
 
2332 sub save_exchangerate {
 
2333   $lxdebug->enter_sub();
 
2335   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
 
2336   $form->{exchangerate} =
 
2337     $form->parse_amount(\%myconfig, $form->{exchangerate});
 
2338   $form->save_exchangerate(\%myconfig, $form->{currency},
 
2339                            $form->{exchangeratedate},
 
2340                            $form->{exchangerate}, $form->{buysell});
 
2344   $lxdebug->leave_sub();
 
2347 sub create_backorder {
 
2348   $lxdebug->enter_sub();
 
2350   $form->{shipped} = 1;
 
2352   # figure out if we need to create a backorder
 
2353   # items aren't saved if qty != 0
 
2355   for $i (1 .. $form->{rowcount}) {
 
2356     $totalqty  += $qty  = $form->{"qty_$i"};
 
2357     $totalship += $ship = $form->{"ship_$i"};
 
2359     $form->{"qty_$i"} = $qty - $ship;
 
2362   if ($totalship == 0) {
 
2363     map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
 
2364     $form->{ordtotal} = 0;
 
2365     $form->{shipped}  = 0;
 
2369   if ($totalqty == $totalship) {
 
2370     map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
 
2371     $form->{ordtotal} = 0;
 
2376     qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
 
2379   for $i (1 .. $form->{rowcount}) {
 
2381       $form->{"${_}_$i"} =
 
2382         $form->format_amount(\%myconfig, $form->{"${_}_$i"})
 
2383     } qw(sellprice discount);
 
2388   OE->save(\%myconfig, \%$form);
 
2390   # rebuild rows for invoice
 
2394   for $i (1 .. $form->{rowcount}) {
 
2395     $form->{"qty_$i"} = $form->{"ship_$i"};
 
2397     if ($form->{"qty_$i"}) {
 
2400       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
2405   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
2406   $form->{rowcount} = $count;
 
2408   $lxdebug->leave_sub();
 
2412   $lxdebug->enter_sub();
 
2414   $form->{saveasnew} = 1;
 
2415   $form->{closed}    = 0;
 
2416   map { delete $form->{$_} } qw(printed emailed queued ordnumber quonumber);
 
2420   $lxdebug->leave_sub();
 
2423 sub purchase_order {
 
2424   $lxdebug->enter_sub();
 
2426   if (   $form->{type} eq 'sales_quotation'
 
2427       || $form->{type} eq 'request_quotation') {
 
2428     OE->close_order(\%myconfig, \%$form);
 
2431   $form->{cp_id} *= 1;
 
2433   $form->{title} = $locale->text('Add Purchase Order');
 
2434   $form->{vc}    = "vendor";
 
2435   $form->{type}  = "purchase_order";
 
2439   $lxdebug->leave_sub();
 
2443   $lxdebug->enter_sub();
 
2445   if (   $form->{type} eq 'sales_quotation'
 
2446       || $form->{type} eq 'request_quotation') {
 
2447     OE->close_order(\%myconfig, $form);
 
2450   $form->{cp_id} *= 1;
 
2452   $form->{title} = $locale->text('Add Sales Order');
 
2453   $form->{vc}    = "customer";
 
2454   $form->{type}  = "sales_order";
 
2458   $lxdebug->leave_sub();
 
2462   $lxdebug->enter_sub();
 
2464   $form->{transdate} = $form->current_date(\%myconfig);
 
2465   delete $form->{duedate};
 
2467   $form->{closed} = 0;
 
2470   map { delete $form->{$_} }
 
2471     qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal);
 
2473   for $i (1 .. $form->{rowcount}) {
 
2474     map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
 
2475                                                      $form->{"${_}_${i}"})
 
2476             if ($form->{"${_}_${i}"}) }
 
2477         qw(ship qty sellprice listprice basefactor));
 
2485   for $i (1 .. $form->{rowcount} - 1) {
 
2486     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
2487       qw(partnumber description unit);
 
2490   map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") }
 
2491     qw(creditlimit creditremaining);
 
2495   $lxdebug->leave_sub();
 
2499   $lxdebug->enter_sub();
 
2505   OE->get_warehouses(\%myconfig, \%$form);
 
2508   if (@{ $form->{all_warehouses} }) {
 
2509     $form->{selectwarehouse} = "<option>\n";
 
2511     map { $form->{selectwarehouse} .= "<option>$_->{description}--$_->{id}\n" }
 
2512       (@{ $form->{all_warehouses} });
 
2514     if ($form->{warehouse}) {
 
2515       $form->{selectwarehouse} = "<option>$form->{warehouse}";
 
2519   $form->{shippingdate} = $form->current_date(\%myconfig);
 
2520   $form->{"$form->{vc}"} =~ s/--.*//;
 
2525   foreach $key (keys %$form) {
 
2526     if ($key =~ /_1$/) {
 
2532   for $i (1 .. $form->{rowcount}) {
 
2534     # undo formatting from prepare_order
 
2536       $form->{"${_}_$i"} =
 
2537         $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
2539     $n = ($form->{"qty_$i"} -= $form->{"ship_$i"});
 
2541         && ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"})) {
 
2542       $form->{"ship_$i"}         = "";
 
2543       $form->{"serialnumber_$i"} = "";
 
2548       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
2553   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
2554   $form->{rowcount} = $count;
 
2556   &display_ship_receive;
 
2558   $lxdebug->leave_sub();
 
2561 sub display_ship_receive {
 
2562   $lxdebug->enter_sub();
 
2564   $vclabel = ucfirst $form->{vc};
 
2565   $vclabel = $locale->text($vclabel);
 
2567   $form->{rowcount}++;
 
2569   if ($form->{vc} eq 'customer') {
 
2570     $form->{title} = $locale->text('Ship Merchandise');
 
2571     $shipped = $locale->text('Shipping Date');
 
2573     $form->{title} = $locale->text('Receive Merchandise');
 
2574     $shipped = $locale->text('Date Received');
 
2577   # set option selected
 
2578   foreach $item (warehouse, employee) {
 
2579     $form->{"select$item"} =~ s/ selected//;
 
2580     $form->{"select$item"} =~
 
2581       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
2586                 <th align=right>| . $locale->text('Warehouse') . qq|</th>
 
2587                 <td><select name=warehouse>$form->{selectwarehouse}</select></td>
 
2588                 <input type=hidden name=selectwarehouse value="$form->{selectwarehouse}">
 
2590 | if $form->{selectwarehouse};
 
2594                 <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
 
2595                 <td><select name=employee>$form->{selectemployee}</select></td>
 
2596                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
2605 <form method=post action=$form->{script}>
 
2607 <input type=hidden name=id value=$form->{id}>
 
2609 <input type=hidden name=display_form value=display_ship_receive>
 
2611 <input type=hidden name=type value=$form->{type}>
 
2612 <input type=hidden name=media value=$form->{media}>
 
2613 <input type=hidden name=format value=$form->{format}>
 
2615 <input type=hidden name=queued value="$form->{queued}">
 
2616 <input type=hidden name=printed value="$form->{printed}">
 
2617 <input type=hidden name=emailed value="$form->{emailed}">
 
2619 <input type=hidden name=vc value=$form->{vc}>
 
2623     <th class=listtop>$form->{title}</th>
 
2625   <tr height="5"></tr>
 
2628       <table width="100%">
 
2633                 <th align=right>$vclabel</th>
 
2634                 <td colspan=3>$form->{$form->{vc}}</td>
 
2635                 <input type=hidden name=$form->{vc} value="$form->{$form->{vc}}">
 
2636                 <input type=hidden name="$form->{vc}_id" value=$form->{"$form->{vc}_id"}>
 
2640                 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
 
2642                 <input name=shippingpoint size=35 value="$form->{shippingpoint}">
 
2645                 <th align=right>| . $locale->text('Ship via') . qq|</th>
 
2647                 <input name=shipvia size=35 value="$form->{shipvia}">
 
2656                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
2657                 <td>$form->{ordnumber}</td>
 
2658                 <input type=hidden name=ordnumber value="$form->{ordnumber}">
 
2661                 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
 
2662                 <td>$form->{transdate}</td>
 
2663                 <input type=hidden name=transdate value=$form->{transdate}>
 
2666                 <th align=right nowrap>$shipped</th>
 
2667                 <td><input name=shippingdate size=11 value=$form->{shippingdate}></td>
 
2676 <!-- shipto are in hidden variables -->
 
2678 <input type=hidden name=shiptoname value="$form->{shiptoname}">
 
2679 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
 
2680 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
 
2681 <input type=hidden name=shiptocity value="$form->{shiptocity}">
 
2682 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
 
2683 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
 
2684 <input type=hidden name=shiptophone value="$form->{shiptophone}">
 
2685 <input type=hidden name=shiptofax value="$form->{shiptofax}">
 
2686 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
 
2687 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
 
2688 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
 
2690 <!-- email variables -->
 
2691 <input type=hidden name=message value="$form->{message}">
 
2692 <input type=hidden name=email value="$form->{email}">
 
2693 <input type=hidden name=subject value="$form->{subject}">
 
2694 <input type=hidden name=cc value="$form->{cc}">
 
2695 <input type=hidden name=bcc value="$form->{bcc}">
 
2700     (partnumber, description, qty, ship, unit, bin, serialnumber);
 
2702   if ($form->{type} eq "ship_order") {
 
2703     $column_data{ship} =
 
2704         qq|<th class=listheading align=center width="auto">|
 
2705       . $locale->text('Ship')
 
2708   if ($form->{type} eq "receive_order") {
 
2709     $column_data{ship} =
 
2710         qq|<th class=listheading align=center width="auto">|
 
2711       . $locale->text('Recd')
 
2715   my $colspan = $#column_index + 1;
 
2717   $column_data{partnumber} =
 
2718     qq|<th class=listheading nowrap>| . $locale->text('Number') . qq|</th>|;
 
2719   $column_data{description} =
 
2720       qq|<th class=listheading nowrap>|
 
2721     . $locale->text('Description')
 
2724     qq|<th class=listheading nowrap>| . $locale->text('Qty') . qq|</th>|;
 
2725   $column_data{unit} =
 
2726     qq|<th class=listheading nowrap>| . $locale->text('Unit') . qq|</th>|;
 
2728     qq|<th class=listheading nowrap>| . $locale->text('Bin') . qq|</th>|;
 
2729   $column_data{serialnumber} =
 
2730       qq|<th class=listheading nowrap>|
 
2731     . $locale->text('Serial No.')
 
2738         <tr class=listheading>|;
 
2740   map { print "\n$column_data{$_}" } @column_index;
 
2746   for $i (1 .. $form->{rowcount} - 1) {
 
2749     $form->{"ship_$i"} = $form->parse_amount(\%myconfig, $form->{"ship_$i"});
 
2751     # convert " to "
 
2752     map { $form->{"${_}_$i"} =~ s/\"/"/g }
 
2753       qw(partnumber description unit bin serialnumber);
 
2755     $description = $form->{"description_$i"};
 
2756     $description =~ s/\n/<br>/g;
 
2758     $column_data{partnumber} =
 
2759       qq|<td>$form->{"partnumber_$i"}<input type=hidden name="partnumber_$i" value="$form->{"partnumber_$i"}"></td>|;
 
2760     $column_data{description} =
 
2761       qq|<td>$description<input type=hidden name="description_$i" value="$form->{"description_$i"}"></td>|;
 
2763         qq|<td align=right>|
 
2764       . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty)
 
2765       . qq|<input type=hidden name="qty_$i" value="$form->{"qty_$i"}"></td>|;
 
2766     $column_data{ship} =
 
2767         qq|<td align=right><input name="ship_$i" size=5 value=|
 
2768       . $form->format_amount(\%myconfig, $form->{"ship_$i"})
 
2770     $column_data{unit} =
 
2771       qq|<td>$form->{"unit_$i"}<input type=hidden name="unit_$i" value="$form->{"unit_$i"}"></td>|;
 
2773       qq|<td>$form->{"bin_$i"}<input type=hidden name="bin_$i" value="$form->{"bin_$i"}"></td>|;
 
2775     $column_data{serialnumber} =
 
2776       qq|<td><input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}"></td>|;
 
2781     map { print "\n$column_data{$_}" } @column_index;
 
2786 <input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
 
2787 <input type=hidden name="id_$i" value=$form->{"id_$i"}>
 
2788 <input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
 
2789 <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">
 
2800     <td><hr size=3 noshade></td>
 
2806   $form->{copies} = 1;
 
2815 <input class=submit type=submit name=action value="|
 
2816     . $locale->text('Update') . qq|">
 
2817 <input class=submit type=submit name=action value="|
 
2818     . $locale->text('Print') . qq|">
 
2821   if ($form->{type} eq 'ship_order') {
 
2823 <input class=submit type=submit name=action value="|
 
2824       . $locale->text('Ship to') . qq|">
 
2825 <input class=submit type=submit name=action value="|
 
2826       . $locale->text('E-mail') . qq|">
 
2832 <input class=submit type=submit name=action value="|
 
2833     . $locale->text('Done') . qq|">
 
2835 <input type=hidden name=rowcount value=$form->{rowcount}>
 
2837 <input name=callback type=hidden value="$callback">
 
2839 <input type=hidden name=path value=$form->{path}>
 
2840 <input type=hidden name=login value=$form->{login}>
 
2841 <input type=hidden name=password value=$form->{password}>
 
2849   $lxdebug->leave_sub();
 
2853   $lxdebug->enter_sub();
 
2855   if ($form->{type} eq 'ship_order') {
 
2856     $form->isblank("shippingdate", $locale->text('Shipping Date missing!'));
 
2858     $form->isblank("shippingdate", $locale->text('Date received missing!'));
 
2863     $total += $form->{"ship_$_"} =
 
2864       $form->parse_amount(\%myconfig, $form->{"ship_$_"})
 
2865   } (1 .. $form->{rowcount} - 1);
 
2867   $form->error($locale->text('Nothing entered!')) unless $total;
 
2869   $form->redirect($locale->text('Inventory saved!'))
 
2870     if OE->save_inventory(\%myconfig, \%$form);
 
2871   $form->error($locale->text('Could not save!'));
 
2873   $lxdebug->leave_sub();
 
2876 sub search_transfer {
 
2877   $lxdebug->enter_sub();
 
2879   OE->get_warehouses(\%myconfig, \%$form);
 
2882   if (@{ $form->{all_warehouses} }) {
 
2883     $form->{selectwarehouse} = "<option>\n";
 
2884     $form->{warehouse}       = qq|$form->{warehouse}--$form->{warehouse_id}|;
 
2886     map { $form->{selectwarehouse} .= "<option>$_->{description}--$_->{id}\n" }
 
2887       (@{ $form->{all_warehouses} });
 
2889     $form->error($locale->text('Nothing to transfer!'));
 
2892   $form->{title} = $locale->text('Transfer Inventory');
 
2899 <form method=post action=$form->{script}>
 
2903     <th class=listtop>$form->{title}</th>
 
2905   <tr height="5"></tr>
 
2910           <th align=right nowrap>| . $locale->text('Transfer to') . qq|</th>
 
2911           <td><select name=warehouse>$form->{selectwarehouse}</select></td>
 
2914           <th align="right" nowrap="true">| . $locale->text('Part Number') . qq|</th>
 
2915           <td><input name=partnumber size=20></td>
 
2918           <th align="right" nowrap="true">| . $locale->text('Description') . qq|</th>
 
2919           <td><input name=description size=40></td>
 
2922           <th align=right nowrap>| . $locale->text('Group') . qq|</th>
 
2923           <td><input name=partsgroup size=20></td>
 
2929     <td><hr size=3 noshade></td>
 
2934 <input type=hidden name=sort value=partnumber>
 
2935 <input type=hidden name=nextsub value=list_transfer>
 
2937 <input type=hidden name=path value=$form->{path}>
 
2938 <input type=hidden name=login value=$form->{login}>
 
2939 <input type=hidden name=password value=$form->{password}>
 
2941 <input class=submit type=submit name=action value="|
 
2942     . $locale->text('Continue') . qq|">
 
2949   $lxdebug->leave_sub();
 
2953   $lxdebug->enter_sub();
 
2955   OE->get_inventory(\%myconfig, \%$form);
 
2957   $partnumber  = $form->escape($form->{partnumber});
 
2958   $warehouse   = $form->escape($form->{warehouse});
 
2959   $description = $form->escape($form->{description});
 
2960   $partsgroup  = $form->escape($form->{partsgroup});
 
2964     "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&password=$form->{password}";
 
2966   # construct callback
 
2967   $partnumber  = $form->escape($form->{partnumber},  1);
 
2968   $warehouse   = $form->escape($form->{warehouse},   1);
 
2969   $description = $form->escape($form->{description}, 1);
 
2970   $partsgroup  = $form->escape($form->{partsgroup},  1);
 
2973     "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&password=$form->{password}";
 
2976     $form->sort_columns(
 
2977       qw(partnumber description partsgroup make model warehouse qty transfer));
 
2979   $column_header{partnumber} =
 
2980       qq|<th><a class=listheading href=$href&sort=partnumber>|
 
2981     . $locale->text('Part Number')
 
2983   $column_header{description} =
 
2984       qq|<th><a class=listheading href=$href&sort=description>|
 
2985     . $locale->text('Description')
 
2987   $column_header{partsgroup} =
 
2988       qq|<th><a class=listheading href=$href&sort=partsgroup>|
 
2989     . $locale->text('Group')
 
2991   $column_header{warehouse} =
 
2992       qq|<th><a class=listheading href=$href&sort=warehouse>|
 
2993     . $locale->text('From')
 
2995   $column_header{qty} =
 
2996     qq|<th><a class=listheading>| . $locale->text('Qty') . qq|</a></th>|;
 
2997   $column_header{transfer} =
 
2998     qq|<th><a class=listheading>| . $locale->text('Transfer') . qq|</a></th>|;
 
3000   $option = $locale->text('Transfer to');
 
3002   ($warehouse, $warehouse_id) = split /--/, $form->{warehouse};
 
3004   if ($form->{warehouse}) {
 
3005     $option .= " : $warehouse";
 
3007   if ($form->{partnumber}) {
 
3008     $option .= "\n<br>" if ($option);
 
3009     $option .= $locale->text('Part Number') . " : $form->{partnumber}";
 
3011   if ($form->{description}) {
 
3012     $option .= "\n<br>" if ($option);
 
3013     $option .= $locale->text('Description') . " : $form->{description}";
 
3015   if ($form->{partsgroup}) {
 
3016     $option .= "\n<br>" if ($option);
 
3017     $option .= $locale->text('Group') . " : $form->{partsgroup}";
 
3020   $form->{title} = $locale->text('Transfer Inventory');
 
3027 <form method=post action=$form->{script}>
 
3029 <input type=hidden name=warehouse_id value=$warehouse_id>
 
3033     <th class=listtop>$form->{title}</th>
 
3035   <tr height="5"></tr>
 
3042         <tr class=listheading>|;
 
3044   map { print "\n$column_header{$_}" } @column_index;
 
3050   if (@{ $form->{all_inventory} }) {
 
3051     $sameitem = $form->{all_inventory}->[0]->{ $form->{sort} };
 
3055   foreach $ref (@{ $form->{all_inventory} }) {
 
3059     $column_data{partnumber} =
 
3060       qq|<td><input type=hidden name="id_$i" value=$ref->{id}>$ref->{partnumber}</td>|;
 
3061     $column_data{description} = "<td>$ref->{description} </td>";
 
3062     $column_data{partsgroup}  = "<td>$ref->{partsgroup} </td>";
 
3063     $column_data{warehouse}   =
 
3064       qq|<td><input type=hidden name="warehouse_id_$i" value=$ref->{warehouse_id}>$ref->{warehouse} </td>|;
 
3066         qq|<td><input type=hidden name="qty_$i" value=$ref->{qty}>|
 
3067       . $form->format_amount(\%myconfig, $ref->{qty}, $dec_qty)
 
3069     $column_data{transfer} = qq|<td><input name="transfer_$i" size=4></td>|;
 
3074         <tr class=listrow$j>";
 
3076     map { print "\n$column_data{$_}" } @column_index;
 
3090     <td><hr size=3 noshade></td>
 
3096 <input name=callback type=hidden value="$callback">
 
3098 <input type=hidden name=rowcount value=$i>
 
3100 <input type=hidden name=path value=$form->{path}>
 
3101 <input type=hidden name=login value=$form->{login}>
 
3102 <input type=hidden name=password value=$form->{password}>
 
3104 <input class=submit type=submit name=action value="|
 
3105     . $locale->text('Transfer') . qq|">
 
3113   $lxdebug->leave_sub();
 
3117   $lxdebug->enter_sub();
 
3119   $form->redirect($locale->text('Inventory transferred!'))
 
3120     if OE->transfer(\%myconfig, \%$form);
 
3121   $form->error($locale->text('Could not transfer Inventory!'));
 
3123   $lxdebug->leave_sub();