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_1}</option>";
440 $form->{selectshipto} =~ s/ selected//g;
441 if ($form->{shipto_id} ne "") {
442 $form->{selectshipto} =~ s/value=$form->{shipto_id}/value=$form->{shipto_id} selected/;
447 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
448 <td><select name=shipto_id>$form->{selectshipto}</select></td>
449 <input type=hidden name=selectshipto value="$form->{selectshipto}">|;
454 $form->{exchangerate} =
455 $form->format_amount(\%myconfig, $form->{exchangerate});
457 if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
463 $form->{creditlimit} =
464 $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
465 $form->{creditremaining} =
466 $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
469 ($form->{selectcontact})
470 ? qq|<select name=cp_id>$form->{selectcontact}</select>\n<input type=hidden name="selectcontact" value="$form->{selectcontact}">|
471 : qq|<input name=contact value="$form->{contact}" size=35>|;
474 <input type=hidden name=forex value=$form->{forex}>
477 if ($form->{currency} ne $form->{defaultcurrency}) {
478 if ($form->{forex}) {
481 . $locale->text('Exchangerate')
482 . qq|</th><td>$form->{exchangerate}</td>
483 <input type=hidden name=exchangerate value=$form->{exchangerate}>
488 . $locale->text('Exchangerate')
489 . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
493 $vclabel = ucfirst $form->{vc};
494 $vclabel = $locale->text($vclabel);
496 $terms = qq|<input name=terms size="3" maxlength="3" value="| .
497 $form->quote($form->{terms}) . qq|">|;
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">$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}">
633 <th align=right nowrap>| . $locale->text('Quotation Date') . qq|</th>
637 <th align=right nowrap=true>$reqlabel</th>
641 $creditremaining = qq| <tr>
648 ($form->{"select$form->{vc}"})
649 ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}</select>\n<input type=hidden name="select$form->{vc}" value="$form->{"select$form->{vc}"}">|
650 : qq|<input name=$form->{vc} value="$form->{$form->{vc}}" size=35>|;
654 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
655 <td colspan=3><select name=department>$form->{selectdepartment}</select>
656 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
659 | if $form->{selectdepartment};
662 <input type=hidden name=employee value="$form->{employee}">
665 if ($form->{type} eq 'sales_order') {
666 if ($form->{selectemployee}) {
668 <input type=hidden name=customer_klass value=$form->{customer_klass}>
670 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
671 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
672 <input type=hidden name=selectemployee value="$form->{selectemployee}">
679 <input type=hidden name=customer_klass value=$form->{customer_klass}>
681 <th align=right nowrap>| . $locale->text('Employee') . qq|</th>
682 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
683 <input type=hidden name=selectemployee value="$form->{selectemployee}">
688 if ($form->{resubmit} && ($form->{format} eq "html")) {
690 qq|window.open('about:blank','Beleg'); document.oe.target = 'Beleg';document.oe.submit()|;
691 } elsif ($form->{resubmit}) {
692 $onload = qq|document.oe.submit()|;
697 $credittext = $locale->text('Credit Limit exceeded!!!');
698 if ($creditwarning) {
699 $onload = qq|alert('$credittext')|;
705 <body onLoad="$onload">
707 <form method=post name=oe action=$form->{script}>
708 <script type="text/javascript" src="js/common.js"></script>
709 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
710 <script type="text/javascript" src="js/vendor_selection.js"></script>
711 <script type="text/javascript" src="js/calculate_qty.js"></script>
713 <input type=hidden name=id value=$form->{id}>
714 <input type=hidden name=action value=$form->{action}>
716 <input type=hidden name=type value=$form->{type}>
717 <input type=hidden name=formname value=$form->{formname}>
718 <input type=hidden name=media value=$form->{media}>
719 <input type=hidden name=format value=$form->{format}>
720 <input type=hidden name=proforma value=$form->{proforma}>
722 <input type=hidden name=queued value="$form->{queued}">
723 <input type=hidden name=printed value="$form->{printed}">
724 <input type=hidden name=emailed value="$form->{emailed}">
726 <input type=hidden name=vc value=$form->{vc}>
728 <input type=hidden name=title value="$form->{title}">
730 <input type=hidden name=discount value=$form->{discount}>
731 <input type=hidden name=creditlimit value=$form->{creditlimit}>
732 <input type=hidden name=creditremaining value=$form->{creditremaining}>
734 <input type=hidden name=tradediscount value=$form->{tradediscount}>
735 <input type=hidden name=business value=$form->{business}>
736 <input type=hidden name=webdav value=$webdav>
740 <th class=listtop>$form->{title}</th>
750 <th align=right>$vclabel</th>
751 <td colspan=3>$vc</td>
752 <input type=hidden name=$form->{vc}_id value=$form->{"$form->{vc}_id"}>
753 <input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}">
754 <th align=richt nowrap>|
755 . $locale->text('Contact Person') . qq|</th>
756 <td colspan=3>$contact</td>
764 <th align=right>| . $locale->text('Currency') . qq|</th>
765 <td><select name=currency>$form->{selectcurrency}</select></td>
766 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
767 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
771 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
772 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
775 <th align=right>| . $locale->text('Ship via') . qq|</th>
776 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
783 # <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
785 # <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
786 # <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
790 # <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
792 # <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
793 # <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 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|">
1105 if ($form->{menubar}) {
1106 require "$form->{path}/menu.pl";
1112 <input type=hidden name=rowcount value=$form->{rowcount}>
1114 <input name=callback type=hidden value="$form->{callback}">
1116 <input type=hidden name=path value=$form->{path}>
1117 <input type=hidden name=login value=$form->{login}>
1118 <input type=hidden name=password value=$form->{password}>
1125 $lxdebug->leave_sub();
1129 $lxdebug->enter_sub();
1131 set_headings($form->{"id"} ? "edit" : "add");
1133 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1134 qw(exchangerate creditlimit creditremaining);
1135 $form->{update} = 1;
1137 &check_name($form->{vc});
1142 $buysell = 'sell' if ($form->{vc} eq 'vendor');
1143 $form->{exchangerate} = $exchangerate
1147 $form->check_exchangerate(
1148 \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1152 $i = $form->{rowcount};
1154 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1156 if ( ($form->{"partnumber_$i"} eq "")
1157 && ($form->{"description_$i"} eq "")
1158 && ($form->{"partsgroup_$i"} eq "")) {
1160 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1165 if ( $form->{type} eq 'purchase_order'
1166 || $form->{type} eq 'request_quotation') {
1167 IR->retrieve_item(\%myconfig, \%$form);
1169 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
1170 IS->retrieve_item(\%myconfig, \%$form);
1173 my $rows = scalar @{ $form->{item_list} };
1175 $form->{"discount_$i"} =
1176 $form->format_amount(\%myconfig, $form->{discount} * 100);
1179 $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
1188 $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1189 if ($form->{"not_discountable_$i"}) {
1190 $form->{"discount_$i"} = 0;
1192 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
1193 qw(partnumber description unit);
1194 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1195 keys %{ $form->{item_list}[0] };
1196 if ($form->{"part_payment_id_$i"} ne "") {
1197 $form->{payment_id} = $form->{"part_payment_id_$i"};
1200 $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1202 ($dec) = ($s =~ /\.(\d+)/);
1204 $decimalplaces = ($dec > 2) ? $dec : 2;
1207 $form->{"sellprice_$i"} = $sellprice;
1210 $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1212 # if there is an exchange rate adjust sellprice
1213 $form->{"sellprice_$i"} /= $exchangerate;
1217 $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1218 (1 - $form->{"discount_$i"} / 100);
1219 map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1220 map { $form->{"${_}_base"} += $amount }
1221 (split / /, $form->{"taxaccounts_$i"});
1222 map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1223 split / /, $form->{taxaccounts}
1224 if !$form->{taxincluded};
1226 $form->{creditremaining} -= $amount;
1228 $form->{"sellprice_$i"} =
1229 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
1232 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
1234 # get pricegroups for parts
1235 IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1237 # build up html code for prices_$i
1238 &set_pricegroup($i);
1245 # ok, so this is a new part
1246 # ask if it is a part or service item
1248 if ( $form->{"partsgroup_$i"}
1249 && ($form->{"partsnumber_$i"} eq "")
1250 && ($form->{"description_$i"} eq "")) {
1251 $form->{rowcount}--;
1252 $form->{"discount_$i"} = "";
1256 $form->{"id_$i"} = 0;
1257 $form->{"unit_$i"} = $locale->text('ea');
1265 $lxdebug->leave_sub();
1269 $lxdebug->enter_sub();
1271 if ($form->{type} eq 'purchase_order') {
1272 $form->{title} = $locale->text('Purchase Orders');
1273 $form->{vc} = 'vendor';
1274 $ordlabel = $locale->text('Order Number');
1275 $ordnumber = 'ordnumber';
1276 $employee = $locale->text('Employee');
1278 if ($form->{type} eq 'request_quotation') {
1279 $form->{title} = $locale->text('Request for Quotations');
1280 $form->{vc} = 'vendor';
1281 $ordlabel = $locale->text('RFQ Number');
1282 $ordnumber = 'quonumber';
1283 $employee = $locale->text('Employee');
1285 if ($form->{type} eq 'receive_order') {
1286 $form->{title} = $locale->text('Receive Merchandise');
1287 $form->{vc} = 'vendor';
1288 $ordlabel = $locale->text('Order Number');
1289 $ordnumber = 'ordnumber';
1290 $employee = $locale->text('Employee');
1292 if ($form->{type} eq 'sales_order') {
1293 $form->{title} = $locale->text('Sales Orders');
1294 $form->{vc} = 'customer';
1295 $ordlabel = $locale->text('Order Number');
1296 $ordnumber = 'ordnumber';
1297 $employee = $locale->text('Salesperson');
1299 if ($form->{type} eq 'ship_order') {
1300 $form->{title} = $locale->text('Ship Merchandise');
1301 $form->{vc} = 'customer';
1302 $ordlabel = $locale->text('Order Number');
1303 $ordnumber = 'ordnumber';
1304 $employee = $locale->text('Salesperson');
1308 if ($form->{type} eq 'sales_quotation') {
1309 $form->{title} = $locale->text('Quotations');
1310 $form->{vc} = 'customer';
1311 $ordlabel = $locale->text('Quotation Number');
1312 $ordnumber = 'quonumber';
1313 $employee = $locale->text('Employee');
1316 if ($form->{type} =~ /(ship|receive)_order/) {
1317 OE->get_warehouses(\%myconfig, \%$form);
1320 if (@{ $form->{all_warehouses} }) {
1321 $form->{selectwarehouse} = "<option>\n";
1322 $form->{warehouse} = qq|$form->{warehouse}--$form->{warehouse_id}|;
1325 $form->{selectwarehouse} .=
1326 "<option>$_->{description}--$_->{id}\n"
1327 } (@{ $form->{all_warehouses} });
1331 <th align=right>| . $locale->text('Warehouse') . qq|</th>
1332 <td colspan=3><select name=warehouse>$form->{selectwarehouse}</select></td>
1333 <input type=hidden name=selectwarehouse value="$form->{selectwarehouse}">
1340 # setup vendor / customer selection
1341 $form->all_vc(\%myconfig, $form->{vc},
1342 ($form->{vc} eq 'customer') ? "AR" : "AP");
1344 map { $vc .= "<option>$_->{name}--$_->{id}\n" }
1345 @{ $form->{"all_$form->{vc}"} };
1347 $vclabel = ucfirst $form->{vc};
1348 $vclabel = $locale->text($vclabel);
1350 # $locale->text('Vendor')
1351 # $locale->text('Customer')
1355 ? qq|<select name=$form->{vc}><option>\n$vc</select>|
1356 : qq|<input name=$form->{vc} size=35>|;
1359 if (@{ $form->{all_departments} }) {
1360 $form->{selectdepartment} = "<option>\n";
1363 $form->{selectdepartment} .=
1364 "<option>$_->{description}--$_->{id}\n"
1365 } (@{ $form->{all_departments} });
1370 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1371 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1373 | if $form->{selectdepartment};
1375 if ($form->{type} !~ /(ship_order|receive_order)/) {
1378 <td><input name="open" class=checkbox type=checkbox value=1 checked> |
1379 . $locale->text('Open') . qq|</td>
1380 <td><input name="closed" class=checkbox type=checkbox value=1 $form->{closed}> |
1381 . $locale->text('Closed') . qq|</td>
1387 <input type=hidden name="open" value=1>
1391 # use JavaScript Calendar or not
1392 $form->{jsscript} = $jscalendar;
1394 if ($form->{jsscript}) {
1396 # with JavaScript Calendar
1398 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}">
1399 <input type=button name=transdatefrom id="trigger3" value=|
1400 . $locale->text('button') . qq|></td>
1403 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}">
1404 <input type=button name=transdateto name=transdateto id="trigger4" value=|
1405 . $locale->text('button') . qq|></td>
1410 Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger3",
1411 "transdateto", "BL", "trigger4");
1414 # without JavaScript Calendar
1416 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
1418 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}"></td>|;
1426 <form method=post action=$form->{script}>
1430 <th class=listtop>$form->{title}</th>
1432 <tr height="5"></tr>
1437 <th align=right>$vclabel</th>
1438 <td colspan=3>$vc</td>
1443 <th align=right>$ordlabel</th>
1444 <td colspan=3><input name="$ordnumber" size=20></td>
1447 <th align=right>| . $locale->text('From') . qq|</th>
1449 <th align=right>| . $locale->text('Bis') . qq|</th>
1452 <input type=hidden name=sort value=transdate>
1454 <th align=right>| . $locale->text('Include in Report') . qq|</th>
1459 <td><input name="l_id" class=checkbox type=checkbox value=Y>
1460 | . $locale->text('ID') . qq|</td>
1461 <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td>
1462 <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |
1463 . $locale->text('Date') . qq|</td>
1464 <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |
1465 . $locale->text('Required by') . qq|</td>
1468 <td><input name="l_name" class=checkbox type=checkbox value=Y checked> $vclabel</td>
1469 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1470 <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |
1471 . $locale->text('Ship via') . qq|</td>
1474 <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |
1475 . $locale->text('Amount') . qq|</td>
1476 <td><input name="l_tax" class=checkbox type=checkbox value=Y> |
1477 . $locale->text('Tax') . qq|</td>
1478 <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |
1479 . $locale->text('Total') . qq|</td>
1482 <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |
1483 . $locale->text('Subtotal') . qq|</td>
1491 <tr><td colspan=4><hr size=3 noshade></td></tr>
1497 <input type=hidden name=nextsub value=orders>
1498 <input type=hidden name=path value=$form->{path}>
1499 <input type=hidden name=login value=$form->{login}>
1500 <input type=hidden name=password value=$form->{password}>
1501 <input type=hidden name=vc value=$form->{vc}>
1502 <input type=hidden name=type value=$form->{type}>
1504 <input class=submit type=submit name=action value="|
1505 . $locale->text('Continue') . qq|">
1512 $lxdebug->leave_sub();
1516 $lxdebug->enter_sub();
1518 # split vendor / customer
1519 ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) =
1520 split(/--/, $form->{ $form->{vc} });
1522 OE->transactions(\%myconfig, \%$form);
1524 $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
1526 $number = $form->escape($form->{$ordnumber});
1527 $name = $form->escape($form->{ $form->{vc} });
1528 $department = $form->escape($form->{department});
1529 $warehouse = $form->escape($form->{warehouse});
1533 "$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";
1535 # construct callback
1536 $number = $form->escape($form->{$ordnumber}, 1);
1537 $name = $form->escape($form->{ $form->{vc} }, 1);
1538 $department = $form->escape($form->{department}, 1);
1539 $warehouse = $form->escape($form->{warehouse}, 1);
1542 "$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";
1545 $form->sort_columns("transdate", "reqdate", "id", "$ordnumber",
1546 "name", "netamount", "tax", "amount",
1547 "curr", "employee", "shipvia", "open",
1550 $form->{l_open} = $form->{l_closed} = "Y"
1551 if ($form->{open} && $form->{closed});
1553 foreach $item (@columns) {
1554 if ($form->{"l_$item"} eq "Y") {
1555 push @column_index, $item;
1557 # add column to href and callback
1558 $callback .= "&l_$item=Y";
1559 $href .= "&l_$item=Y";
1563 # only show checkboxes if gotten here via sales_order form.
1564 if ($form->{type} =~ /sales_order/) {
1565 unshift @column_index, "ids";
1568 if ($form->{l_subtotal} eq 'Y') {
1569 $callback .= "&l_subtotal=Y";
1570 $href .= "&l_subtotal=Y";
1573 if ($form->{vc} eq 'vendor') {
1574 if ($form->{type} eq 'receive_order') {
1575 $form->{title} = $locale->text('Receive Merchandise');
1576 } elsif ($form->{type} eq 'purchase_order') {
1577 $form->{title} = $locale->text('Purchase Orders');
1579 $form->{title} = $locale->text('Request for Quotations');
1581 $name = $locale->text('Vendor');
1582 $employee = $locale->text('Employee');
1584 if ($form->{vc} eq 'customer') {
1585 if ($form->{type} eq 'sales_order') {
1586 $form->{title} = $locale->text('Sales Orders');
1587 $employee = $locale->text('Salesperson');
1588 } elsif ($form->{type} eq 'ship_order') {
1589 $form->{title} = $locale->text('Ship Merchandise');
1590 $employee = $locale->text('Salesperson');
1592 $form->{title} = $locale->text('Quotations');
1593 $employee = $locale->text('Employee');
1595 $name = $locale->text('Customer');
1598 $column_header{id} =
1599 qq|<th><a class=listheading href=$href&sort=id>|
1600 . $locale->text('ID')
1602 $column_header{transdate} =
1603 qq|<th><a class=listheading href=$href&sort=transdate>|
1604 . $locale->text('Date')
1606 $column_header{reqdate} =
1607 qq|<th><a class=listheading href=$href&sort=reqdate>|
1608 . $locale->text('Required by')
1610 $column_header{ordnumber} =
1611 qq|<th><a class=listheading href=$href&sort=ordnumber>|
1612 . $locale->text('Order')
1614 $column_header{quonumber} =
1615 qq|<th><a class=listheading href=$href&sort=quonumber>|
1616 . ($form->{"type"} eq "request_quotation" ?
1617 $locale->text('RFQ') :
1618 $locale->text('Quotation'))
1620 $column_header{name} =
1621 qq|<th><a class=listheading href=$href&sort=name>$name</a></th>|;
1622 $column_header{netamount} =
1623 qq|<th class=listheading>| . $locale->text('Amount') . qq|</th>|;
1624 $column_header{tax} =
1625 qq|<th class=listheading>| . $locale->text('Tax') . qq|</th>|;
1626 $column_header{amount} =
1627 qq|<th class=listheading>| . $locale->text('Total') . qq|</th>|;
1628 $column_header{curr} =
1629 qq|<th class=listheading>| . $locale->text('Curr') . qq|</th>|;
1630 $column_header{shipvia} =
1631 qq|<th><a class=listheading href=$href&sort=shipvia>|
1632 . $locale->text('Ship via')
1634 $column_header{open} =
1635 qq|<th class=listheading>| . $locale->text('O') . qq|</th>|;
1636 $column_header{closed} =
1637 qq|<th class=listheading>| . $locale->text('C') . qq|</th>|;
1639 $column_header{employee} =
1640 qq|<th><a class=listheading href=$href&sort=employee>$employee</a></th>|;
1642 $column_header{ids} = qq|<th></th>|;
1644 if ($form->{ $form->{vc} }) {
1645 $option = $locale->text(ucfirst $form->{vc});
1646 $option .= " : $form->{$form->{vc}}";
1648 if ($form->{warehouse}) {
1649 ($warehouse) = split /--/, $form->{warehouse};
1650 $option .= "\n<br>" if ($option);
1651 $option .= $locale->text('Warehouse');
1652 $option .= " : $warehouse";
1654 if ($form->{department}) {
1655 $option .= "\n<br>" if ($option);
1656 ($department) = split /--/, $form->{department};
1657 $option .= $locale->text('Department') . " : $department";
1659 if ($form->{transdatefrom}) {
1661 . $locale->text('From') . " "
1662 . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1664 if ($form->{transdateto}) {
1666 . $locale->text('Bis') . " "
1667 . $locale->date(\%myconfig, $form->{transdateto}, 1);
1669 if ($form->{open}) {
1670 $option .= "\n<br>" if ($option);
1671 $option .= $locale->text('Open');
1673 if ($form->{closed}) {
1674 $option .= "\n<br>" if ($option);
1675 $option .= $locale->text('Closed');
1683 <form method="post" action="oe.pl">
1686 <th class=listtop>$form->{title}</th>
1688 <tr height="5"></tr>
1695 <tr class=listheading>|;
1697 map { print "\n$column_header{$_}" } @column_index;
1703 # add sort and escape callback
1704 $callback_escaped = $form->escape($callback . "&sort=$form->{sort}");
1706 if (@{ $form->{OE} }) {
1707 $sameitem = $form->{OE}->[0]->{ $form->{sort} };
1711 $action = "ship_receive" if ($form->{type} =~ /(ship|receive)_order/);
1713 $warehouse = $form->escape($form->{warehouse});
1715 foreach $oe (@{ $form->{OE} }) {
1716 $form->{rowcount} = ++$j;
1718 if ($form->{l_subtotal} eq 'Y') {
1719 if ($sameitem ne $oe->{ $form->{sort} }) {
1721 $sameitem = $oe->{ $form->{sort} };
1725 map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount));
1727 $column_data{netamount} =
1729 . $form->format_amount(\%myconfig, $oe->{netamount}, 2, " ")
1731 $column_data{tax} = "<td align=right>"
1732 . $form->format_amount(\%myconfig, $oe->{amount} - $oe->{netamount},
1735 $column_data{amount} =
1737 . $form->format_amount(\%myconfig, $oe->{amount}, 2, " ") . "</td>";
1739 $totalnetamount += $oe->{netamount};
1740 $totalamount += $oe->{amount};
1742 $subtotalnetamount += $oe->{netamount};
1743 $subtotalamount += $oe->{amount};
1746 qq|<td><input name="id_$j" class=checkbox type=checkbox><input type="hidden" name="trans_id_$j" value="$oe->{id}"></td>|;
1747 $column_data{id} = "<td>$oe->{id}</td>";
1748 $column_data{transdate} = "<td>$oe->{transdate} </td>";
1749 $column_data{reqdate} = "<td>$oe->{reqdate} </td>";
1751 $column_data{$ordnumber} =
1752 "<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>";
1753 $column_data{name} = "<td>$oe->{name}</td>";
1755 $column_data{employee} = "<td>$oe->{employee} </td>";
1756 $column_data{shipvia} = "<td>$oe->{shipvia} </td>";
1758 if ($oe->{closed}) {
1759 $column_data{closed} = "<td align=center>X</td>";
1760 $column_data{open} = "<td> </td>";
1762 $column_data{closed} = "<td> </td>";
1763 $column_data{open} = "<td align=center>X</td>";
1769 <tr class=listrow$i>";
1771 map { print "\n$column_data{$_}" } @column_index;
1779 if ($form->{l_subtotal} eq 'Y') {
1785 <tr class=listtotal>|;
1787 map { $column_data{$_} = "<td> </td>" } @column_index;
1789 $column_data{netamount} =
1790 "<th class=listtotal align=right>"
1791 . $form->format_amount(\%myconfig, $totalnetamount, 2, " ") . "</th>";
1792 $column_data{tax} = "<th class=listtotal align=right>"
1793 . $form->format_amount(\%myconfig, $totalamount - $totalnetamount,
1796 $column_data{amount} =
1797 "<th class=listtotal align=right>"
1798 . $form->format_amount(\%myconfig, $totalamount, 2, " ") . "</th>";
1800 map { print "\n$column_data{$_}" } @column_index;
1808 <td><hr size=3 noshade></td>
1812 # multiple invoice edit button only if gotten there via sales_order form.
1814 if ($form->{type} =~ /sales_order/) {
1816 <input type="hidden" name="path" value="$form->{path}">
1817 <input class"submit" type="submit" name="action" value="|
1818 . $locale->text('Continue') . qq|">
1819 <input type="hidden" name="nextsub" value="edit">
1820 <input type="hidden" name="type" value="$form->{type}">
1821 <input type="hidden" name="warehouse" value="$warehouse">
1822 <input type="hidden" name="vc" value="$form->{vc}">
1823 <input type="hidden" name="login" value="$form->{login}">
1824 <input type="hidden" name="password" value="$form->{password}">
1825 <input type="hidden" name="callback" value="$callback">
1826 <input type="hidden" name="rowcount" value="$form->{rowcount}">|;
1833 <form method=post action=$form->{script}>
1835 <input name=callback type=hidden value="$form->{callback}">
1837 <input type=hidden name=type value=$form->{type}>
1838 <input type=hidden name=vc value=$form->{vc}>
1840 <input type=hidden name=path value=$form->{path}>
1841 <input type=hidden name=login value=$form->{login}>
1842 <input type=hidden name=password value=$form->{password}>
1845 if ($form->{type} !~ /(ship|receive)_order/) {
1847 <input class=submit type=submit name=action value="|
1848 . $locale->text('Add') . qq|">|;
1851 if ($form->{menubar}) {
1852 require "$form->{path}/menu.pl";
1863 $lxdebug->leave_sub();
1867 $lxdebug->enter_sub();
1869 map { $column_data{$_} = "<td> </td>" } @column_index;
1871 $column_data{netamount} =
1872 "<th class=listsubtotal align=right>"
1873 . $form->format_amount(\%myconfig, $subtotalnetamount, 2, " ")
1875 $column_data{tax} = "<td class=listsubtotal align=right>"
1876 . $form->format_amount(\%myconfig, $subtotalamount - $subtotalnetamount,
1879 $column_data{amount} =
1880 "<th class=listsubtotal align=right>"
1881 . $form->format_amount(\%myconfig, $subtotalamount, 2, " ") . "</th>";
1883 $subtotalnetamount = 0;
1884 $subtotalamount = 0;
1887 <tr class=listsubtotal>
1890 map { print "\n$column_data{$_}" } @column_index;
1896 $lxdebug->leave_sub();
1899 sub save_and_close {
1900 $lxdebug->enter_sub();
1902 if ($form->{type} =~ /_order$/) {
1903 $form->isblank("transdate", $locale->text('Order Date missing!'));
1905 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1908 $msg = ucfirst $form->{vc};
1909 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1911 # $locale->text('Customer missing!');
1912 # $locale->text('Vendor missing!');
1914 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1915 if ($form->{currency} ne $form->{defaultcurrency});
1919 # if the name changed get new values
1920 if (&check_name($form->{vc})) {
1925 $form->{id} = 0 if $form->{saveasnew};
1927 # this is for the internal notes section for the [email] Subject
1928 if ($form->{type} =~ /_order$/) {
1929 if ($form->{type} eq 'sales_order') {
1930 $form->{label} = $locale->text('Sales Order');
1932 $numberfld = "sonumber";
1933 $ordnumber = "ordnumber";
1935 $form->{label} = $locale->text('Purchase Order');
1937 $numberfld = "ponumber";
1938 $ordnumber = "ordnumber";
1941 $err = $locale->text('Cannot save order!');
1944 if ($form->{type} eq 'sales_quotation') {
1945 $form->{label} = $locale->text('Quotation');
1947 $numberfld = "sqnumber";
1948 $ordnumber = "quonumber";
1950 $form->{label} = $locale->text('Request for Quotation');
1952 $numberfld = "rfqnumber";
1953 $ordnumber = "quonumber";
1956 $err = $locale->text('Cannot save quotation!');
1960 # get new number in sequence if no number is given or if saveasnew was requested
1961 if (!$form->{$ordnumber} || $form->{saveasnew}) {
1962 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
1968 $form->{label} . " $form->{$ordnumber} " . $locale->text('saved!'))
1969 if (OE->save(\%myconfig, \%$form));
1972 $lxdebug->leave_sub();
1976 $lxdebug->enter_sub();
1978 if ($form->{type} =~ /_order$/) {
1979 $form->isblank("transdate", $locale->text('Order Date missing!'));
1981 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1984 $msg = ucfirst $form->{vc};
1985 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1987 # $locale->text('Customer missing!');
1988 # $locale->text('Vendor missing!');
1990 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1991 if ($form->{currency} ne $form->{defaultcurrency});
1995 # if the name changed get new values
1996 if (&check_name($form->{vc})) {
2001 $form->{id} = 0 if $form->{saveasnew};
2003 # this is for the internal notes section for the [email] Subject
2004 if ($form->{type} =~ /_order$/) {
2005 if ($form->{type} eq 'sales_order') {
2006 $form->{label} = $locale->text('Sales Order');
2008 $numberfld = "sonumber";
2009 $ordnumber = "ordnumber";
2011 $form->{label} = $locale->text('Purchase Order');
2013 $numberfld = "ponumber";
2014 $ordnumber = "ordnumber";
2017 $err = $locale->text('Cannot save order!');
2020 if ($form->{type} eq 'sales_quotation') {
2021 $form->{label} = $locale->text('Quotation');
2023 $numberfld = "sqnumber";
2024 $ordnumber = "quonumber";
2026 $form->{label} = $locale->text('Request for Quotation');
2028 $numberfld = "rfqnumber";
2029 $ordnumber = "quonumber";
2032 $err = $locale->text('Cannot save quotation!');
2036 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
2037 unless $form->{$ordnumber};
2041 OE->save(\%myconfig, \%$form);
2042 $form->{simple_save} = 1;
2043 if(!$form->{print_and_save}) {
2044 set_headings("edit");
2048 $lxdebug->leave_sub();
2052 $lxdebug->enter_sub();
2056 if ($form->{type} =~ /_order$/) {
2057 $msg = $locale->text('Are you sure you want to delete Order Number');
2058 $ordnumber = 'ordnumber';
2060 $msg = $locale->text('Are you sure you want to delete Quotation Number');
2061 $ordnumber = 'quonumber';
2067 <form method=post action=$form->{script}>
2070 # delete action variable
2071 map { delete $form->{$_} } qw(action header);
2073 foreach $key (keys %$form) {
2074 $form->{$key} =~ s/\"/"/g;
2075 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2079 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
2081 <h4>$msg $form->{$ordnumber}</h4>
2083 <input name=action class=submit type=submit value="|
2084 . $locale->text('Yes') . qq|">
2091 $lxdebug->leave_sub();
2095 $lxdebug->enter_sub();
2097 if ($form->{type} =~ /_order$/) {
2098 $msg = $locale->text('Order deleted!');
2099 $err = $locale->text('Cannot delete order!');
2101 $msg = $locale->text('Quotation deleted!');
2102 $err = $locale->text('Cannot delete quotation!');
2105 $form->redirect($msg) if (OE->delete(\%myconfig, \%$form, $spool));
2108 $lxdebug->leave_sub();
2112 $lxdebug->enter_sub();
2114 if ($form->{type} =~ /_order$/) {
2116 # these checks only apply if the items don't bring their own ordnumbers/transdates.
2117 # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
2118 $form->isblank("ordnumber", $locale->text('Order Number missing!'))
2119 if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
2121 $form->isblank("transdate", $locale->text('Order Date missing!'))
2122 if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
2125 # also copy deliverydate from the order
2126 $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
2128 $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
2129 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2130 $form->{ordnumber} = "";
2133 # if the name changed get new values
2134 if (&check_name($form->{vc})) {
2139 $form->{cp_id} *= 1;
2141 for $i (1 .. $form->{rowcount}) {
2142 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2143 $form->{"${_}_${i}"})
2144 if ($form->{"${_}_${i}"}) }
2145 qw(ship qty sellprice listprice basefactor));
2148 if ( $form->{type} =~ /_order/
2149 && $form->{currency} ne $form->{defaultcurrency}) {
2151 # check if we need a new exchangerate
2152 $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
2154 $orddate = $form->current_date(\%myconfig);
2156 $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
2159 if (!$exchangerate) {
2160 &backorder_exchangerate($orddate, $buysell);
2165 # close orders/quotations
2166 $form->{closed} = 1;
2168 # save order if one ordnumber has been given
2169 # if not it's most likely a collective order, which can't be saved back
2170 # so they just have to be closed
2171 if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) {
2172 OE->close_order(\%myconfig, \%$form);
2174 OE->close_orders(\%myconfig, \%$form);
2177 $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
2179 $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
2182 $form->{closed} = 0;
2183 $form->{rowcount}--;
2184 $form->{shipto} = 1;
2186 if ($form->{type} =~ /_order$/) {
2187 $form->{exchangerate} = $exchangerate;
2191 if ( $form->{type} eq 'purchase_order'
2192 || $form->{type} eq 'request_quotation') {
2193 $form->{title} = $locale->text('Add Vendor Invoice');
2194 $form->{script} = 'ir.pl';
2198 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
2199 $form->{title} = $locale->text('Add Sales Invoice');
2200 $form->{script} = 'is.pl';
2205 # bo creates the id, reset it
2206 map { delete $form->{$_} }
2207 qw(id subject message cc bcc printed emailed queued);
2208 $form->{ $form->{vc} } =~ s/--.*//g;
2209 $form->{type} = "invoice";
2212 $locale = new Locale "$myconfig{countrycode}", "$script";
2214 require "$form->{path}/$form->{script}";
2216 map { $form->{"select$_"} = "" } ($form->{vc}, currency);
2218 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
2219 qw(creditlimit creditremaining);
2221 $currency = $form->{currency};
2224 $form->{currency} = $currency;
2225 $form->{exchangerate} = "";
2226 $form->{forex} = "";
2227 $form->{exchangerate} = $exchangerate
2231 $form->check_exchangerate(
2232 \%myconfig, $form->{currency}, $form->{invdate}, $buysell
2235 $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
2240 for $i (1 .. $form->{rowcount}) {
2241 $form->{"discount_$i"} =
2242 $form->format_amount(\%myconfig, $form->{"discount_$i"});
2244 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
2246 $decimalplaces = ($dec > 2) ? $dec : 2;
2248 # copy delivery date from reqdate for order -> invoice conversion
2249 $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
2250 unless $form->{"deliverydate_$i"};
2252 $form->{"sellprice_$i"} =
2253 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
2256 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
2257 $dec_qty = length $dec_qty;
2259 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
2261 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2262 qw(partnumber description unit);
2268 $lxdebug->leave_sub();
2271 sub backorder_exchangerate {
2272 $lxdebug->enter_sub();
2273 my ($orddate, $buysell) = @_;
2280 <form method=post action=$form->{script}>
2283 # delete action variable
2284 map { delete $form->{$_} } qw(action header exchangerate);
2286 foreach $key (keys %$form) {
2287 $form->{$key} =~ s/\"/"/g;
2288 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2291 $form->{title} = $locale->text('Add Exchangerate');
2295 <input type=hidden name=path value=$form->{path}>
2296 <input type=hidden name=login value=$form->{login}>
2297 <input type=hidden name=password value=$form->{password}>
2299 <input type=hidden name=exchangeratedate value=$orddate>
2300 <input type=hidden name=buysell value=$buysell>
2303 <tr><th class=listtop>$form->{title}</th></tr>
2304 <tr height="5"></tr>
2309 <th align=right>| . $locale->text('Currency') . qq|</th>
2310 <td>$form->{currency}</td>
2313 <th align=right>| . $locale->text('Date') . qq|</th>
2317 <th align=right>| . $locale->text('Exchangerate') . qq|</th>
2318 <td><input name=exchangerate size=11></td>
2328 <input type=hidden name=nextsub value=save_exchangerate>
2330 <input name=action class=submit type=submit value="|
2331 . $locale->text('Continue') . qq|">
2339 $lxdebug->leave_sub();
2342 sub save_exchangerate {
2343 $lxdebug->enter_sub();
2345 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
2346 $form->{exchangerate} =
2347 $form->parse_amount(\%myconfig, $form->{exchangerate});
2348 $form->save_exchangerate(\%myconfig, $form->{currency},
2349 $form->{exchangeratedate},
2350 $form->{exchangerate}, $form->{buysell});
2354 $lxdebug->leave_sub();
2357 sub create_backorder {
2358 $lxdebug->enter_sub();
2360 $form->{shipped} = 1;
2362 # figure out if we need to create a backorder
2363 # items aren't saved if qty != 0
2365 for $i (1 .. $form->{rowcount}) {
2366 $totalqty += $qty = $form->{"qty_$i"};
2367 $totalship += $ship = $form->{"ship_$i"};
2369 $form->{"qty_$i"} = $qty - $ship;
2372 if ($totalship == 0) {
2373 map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
2374 $form->{ordtotal} = 0;
2375 $form->{shipped} = 0;
2379 if ($totalqty == $totalship) {
2380 map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
2381 $form->{ordtotal} = 0;
2386 qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
2389 for $i (1 .. $form->{rowcount}) {
2391 $form->{"${_}_$i"} =
2392 $form->format_amount(\%myconfig, $form->{"${_}_$i"})
2393 } qw(sellprice discount);
2398 OE->save(\%myconfig, \%$form);
2400 # rebuild rows for invoice
2404 for $i (1 .. $form->{rowcount}) {
2405 $form->{"qty_$i"} = $form->{"ship_$i"};
2407 if ($form->{"qty_$i"}) {
2410 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2415 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2416 $form->{rowcount} = $count;
2418 $lxdebug->leave_sub();
2422 $lxdebug->enter_sub();
2424 $form->{saveasnew} = 1;
2425 $form->{closed} = 0;
2426 map { delete $form->{$_} } qw(printed emailed queued ordnumber quonumber);
2430 $lxdebug->leave_sub();
2433 sub purchase_order {
2434 $lxdebug->enter_sub();
2436 if ( $form->{type} eq 'sales_quotation'
2437 || $form->{type} eq 'request_quotation') {
2438 OE->close_order(\%myconfig, \%$form);
2441 $form->{cp_id} *= 1;
2443 $form->{title} = $locale->text('Add Purchase Order');
2444 $form->{vc} = "vendor";
2445 $form->{type} = "purchase_order";
2449 $lxdebug->leave_sub();
2453 $lxdebug->enter_sub();
2455 if ( $form->{type} eq 'sales_quotation'
2456 || $form->{type} eq 'request_quotation') {
2457 OE->close_order(\%myconfig, $form);
2460 $form->{cp_id} *= 1;
2462 $form->{title} = $locale->text('Add Sales Order');
2463 $form->{vc} = "customer";
2464 $form->{type} = "sales_order";
2468 $lxdebug->leave_sub();
2472 $lxdebug->enter_sub();
2474 $form->{transdate} = $form->current_date(\%myconfig);
2475 delete $form->{duedate};
2477 $form->{closed} = 0;
2480 map { delete $form->{$_} }
2481 qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal);
2483 for $i (1 .. $form->{rowcount}) {
2484 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2485 $form->{"${_}_${i}"})
2486 if ($form->{"${_}_${i}"}) }
2487 qw(ship qty sellprice listprice basefactor));
2495 for $i (1 .. $form->{rowcount} - 1) {
2496 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2497 qw(partnumber description unit);
2500 map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") }
2501 qw(creditlimit creditremaining);
2505 $lxdebug->leave_sub();
2509 $lxdebug->enter_sub();
2515 OE->get_warehouses(\%myconfig, \%$form);
2518 if (@{ $form->{all_warehouses} }) {
2519 $form->{selectwarehouse} = "<option>\n";
2521 map { $form->{selectwarehouse} .= "<option>$_->{description}--$_->{id}\n" }
2522 (@{ $form->{all_warehouses} });
2524 if ($form->{warehouse}) {
2525 $form->{selectwarehouse} = "<option>$form->{warehouse}";
2529 $form->{shippingdate} = $form->current_date(\%myconfig);
2530 $form->{"$form->{vc}"} =~ s/--.*//;
2535 foreach $key (keys %$form) {
2536 if ($key =~ /_1$/) {
2542 for $i (1 .. $form->{rowcount}) {
2544 # undo formatting from prepare_order
2546 $form->{"${_}_$i"} =
2547 $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
2549 $n = ($form->{"qty_$i"} -= $form->{"ship_$i"});
2551 && ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"})) {
2552 $form->{"ship_$i"} = "";
2553 $form->{"serialnumber_$i"} = "";
2558 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2563 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2564 $form->{rowcount} = $count;
2566 &display_ship_receive;
2568 $lxdebug->leave_sub();
2571 sub display_ship_receive {
2572 $lxdebug->enter_sub();
2574 $vclabel = ucfirst $form->{vc};
2575 $vclabel = $locale->text($vclabel);
2577 $form->{rowcount}++;
2579 if ($form->{vc} eq 'customer') {
2580 $form->{title} = $locale->text('Ship Merchandise');
2581 $shipped = $locale->text('Shipping Date');
2583 $form->{title} = $locale->text('Receive Merchandise');
2584 $shipped = $locale->text('Date Received');
2587 # set option selected
2588 foreach $item (warehouse, employee) {
2589 $form->{"select$item"} =~ s/ selected//;
2590 $form->{"select$item"} =~
2591 s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
2596 <th align=right>| . $locale->text('Warehouse') . qq|</th>
2597 <td><select name=warehouse>$form->{selectwarehouse}</select></td>
2598 <input type=hidden name=selectwarehouse value="$form->{selectwarehouse}">
2600 | if $form->{selectwarehouse};
2604 <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
2605 <td><select name=employee>$form->{selectemployee}</select></td>
2606 <input type=hidden name=selectemployee value="$form->{selectemployee}">
2615 <form method=post action=$form->{script}>
2617 <input type=hidden name=id value=$form->{id}>
2619 <input type=hidden name=display_form value=display_ship_receive>
2621 <input type=hidden name=type value=$form->{type}>
2622 <input type=hidden name=media value=$form->{media}>
2623 <input type=hidden name=format value=$form->{format}>
2625 <input type=hidden name=queued value="$form->{queued}">
2626 <input type=hidden name=printed value="$form->{printed}">
2627 <input type=hidden name=emailed value="$form->{emailed}">
2629 <input type=hidden name=vc value=$form->{vc}>
2633 <th class=listtop>$form->{title}</th>
2635 <tr height="5"></tr>
2638 <table width="100%">
2643 <th align=right>$vclabel</th>
2644 <td colspan=3>$form->{$form->{vc}}</td>
2645 <input type=hidden name=$form->{vc} value="$form->{$form->{vc}}">
2646 <input type=hidden name="$form->{vc}_id" value=$form->{"$form->{vc}_id"}>
2650 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
2652 <input name=shippingpoint size=35 value="$form->{shippingpoint}">
2655 <th align=right>| . $locale->text('Ship via') . qq|</th>
2657 <input name=shipvia size=35 value="$form->{shipvia}">
2666 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
2667 <td>$form->{ordnumber}</td>
2668 <input type=hidden name=ordnumber value="$form->{ordnumber}">
2671 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
2672 <td>$form->{transdate}</td>
2673 <input type=hidden name=transdate value=$form->{transdate}>
2676 <th align=right nowrap>$shipped</th>
2677 <td><input name=shippingdate size=11 value=$form->{shippingdate}></td>
2686 <!-- shipto are in hidden variables -->
2688 <input type=hidden name=shiptoname value="$form->{shiptoname}">
2689 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
2690 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
2691 <input type=hidden name=shiptocity value="$form->{shiptocity}">
2692 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
2693 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
2694 <input type=hidden name=shiptophone value="$form->{shiptophone}">
2695 <input type=hidden name=shiptofax value="$form->{shiptofax}">
2696 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
2697 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
2698 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
2700 <!-- email variables -->
2701 <input type=hidden name=message value="$form->{message}">
2702 <input type=hidden name=email value="$form->{email}">
2703 <input type=hidden name=subject value="$form->{subject}">
2704 <input type=hidden name=cc value="$form->{cc}">
2705 <input type=hidden name=bcc value="$form->{bcc}">
2710 (partnumber, description, qty, ship, unit, bin, serialnumber);
2712 if ($form->{type} eq "ship_order") {
2713 $column_data{ship} =
2714 qq|<th class=listheading align=center width="auto">|
2715 . $locale->text('Ship')
2718 if ($form->{type} eq "receive_order") {
2719 $column_data{ship} =
2720 qq|<th class=listheading align=center width="auto">|
2721 . $locale->text('Recd')
2725 my $colspan = $#column_index + 1;
2727 $column_data{partnumber} =
2728 qq|<th class=listheading nowrap>| . $locale->text('Number') . qq|</th>|;
2729 $column_data{description} =
2730 qq|<th class=listheading nowrap>|
2731 . $locale->text('Description')
2734 qq|<th class=listheading nowrap>| . $locale->text('Qty') . qq|</th>|;
2735 $column_data{unit} =
2736 qq|<th class=listheading nowrap>| . $locale->text('Unit') . qq|</th>|;
2738 qq|<th class=listheading nowrap>| . $locale->text('Bin') . qq|</th>|;
2739 $column_data{serialnumber} =
2740 qq|<th class=listheading nowrap>|
2741 . $locale->text('Serial No.')
2748 <tr class=listheading>|;
2750 map { print "\n$column_data{$_}" } @column_index;
2756 for $i (1 .. $form->{rowcount} - 1) {
2759 $form->{"ship_$i"} = $form->parse_amount(\%myconfig, $form->{"ship_$i"});
2761 # convert " to "
2762 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2763 qw(partnumber description unit bin serialnumber);
2765 $description = $form->{"description_$i"};
2766 $description =~ s/\n/<br>/g;
2768 $column_data{partnumber} =
2769 qq|<td>$form->{"partnumber_$i"}<input type=hidden name="partnumber_$i" value="$form->{"partnumber_$i"}"></td>|;
2770 $column_data{description} =
2771 qq|<td>$description<input type=hidden name="description_$i" value="$form->{"description_$i"}"></td>|;
2773 qq|<td align=right>|
2774 . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty)
2775 . qq|<input type=hidden name="qty_$i" value="$form->{"qty_$i"}"></td>|;
2776 $column_data{ship} =
2777 qq|<td align=right><input name="ship_$i" size=5 value=|
2778 . $form->format_amount(\%myconfig, $form->{"ship_$i"})
2780 $column_data{unit} =
2781 qq|<td>$form->{"unit_$i"}<input type=hidden name="unit_$i" value="$form->{"unit_$i"}"></td>|;
2783 qq|<td>$form->{"bin_$i"}<input type=hidden name="bin_$i" value="$form->{"bin_$i"}"></td>|;
2785 $column_data{serialnumber} =
2786 qq|<td><input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}"></td>|;
2791 map { print "\n$column_data{$_}" } @column_index;
2796 <input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
2797 <input type=hidden name="id_$i" value=$form->{"id_$i"}>
2798 <input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
2799 <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">
2810 <td><hr size=3 noshade></td>
2816 $form->{copies} = 1;
2825 <input class=submit type=submit name=action value="|
2826 . $locale->text('Update') . qq|">
2827 <input class=submit type=submit name=action value="|
2828 . $locale->text('Print') . qq|">
2831 if ($form->{type} eq 'ship_order') {
2833 <input class=submit type=submit name=action value="|
2834 . $locale->text('Ship to') . qq|">
2835 <input class=submit type=submit name=action value="|
2836 . $locale->text('E-mail') . qq|">
2842 <input class=submit type=submit name=action value="|
2843 . $locale->text('Done') . qq|">
2846 if ($form->{menubar}) {
2847 require "$form->{path}/menu.pl";
2853 <input type=hidden name=rowcount value=$form->{rowcount}>
2855 <input name=callback type=hidden value="$callback">
2857 <input type=hidden name=path value=$form->{path}>
2858 <input type=hidden name=login value=$form->{login}>
2859 <input type=hidden name=password value=$form->{password}>
2867 $lxdebug->leave_sub();
2871 $lxdebug->enter_sub();
2873 if ($form->{type} eq 'ship_order') {
2874 $form->isblank("shippingdate", $locale->text('Shipping Date missing!'));
2876 $form->isblank("shippingdate", $locale->text('Date received missing!'));
2881 $total += $form->{"ship_$_"} =
2882 $form->parse_amount(\%myconfig, $form->{"ship_$_"})
2883 } (1 .. $form->{rowcount} - 1);
2885 $form->error($locale->text('Nothing entered!')) unless $total;
2887 $form->redirect($locale->text('Inventory saved!'))
2888 if OE->save_inventory(\%myconfig, \%$form);
2889 $form->error($locale->text('Could not save!'));
2891 $lxdebug->leave_sub();
2894 sub search_transfer {
2895 $lxdebug->enter_sub();
2897 OE->get_warehouses(\%myconfig, \%$form);
2900 if (@{ $form->{all_warehouses} }) {
2901 $form->{selectwarehouse} = "<option>\n";
2902 $form->{warehouse} = qq|$form->{warehouse}--$form->{warehouse_id}|;
2904 map { $form->{selectwarehouse} .= "<option>$_->{description}--$_->{id}\n" }
2905 (@{ $form->{all_warehouses} });
2907 $form->error($locale->text('Nothing to transfer!'));
2910 $form->{title} = $locale->text('Transfer Inventory');
2917 <form method=post action=$form->{script}>
2921 <th class=listtop>$form->{title}</th>
2923 <tr height="5"></tr>
2928 <th align=right nowrap>| . $locale->text('Transfer to') . qq|</th>
2929 <td><select name=warehouse>$form->{selectwarehouse}</select></td>
2932 <th align="right" nowrap="true">| . $locale->text('Part Number') . qq|</th>
2933 <td><input name=partnumber size=20></td>
2936 <th align="right" nowrap="true">| . $locale->text('Description') . qq|</th>
2937 <td><input name=description size=40></td>
2940 <th align=right nowrap>| . $locale->text('Group') . qq|</th>
2941 <td><input name=partsgroup size=20></td>
2947 <td><hr size=3 noshade></td>
2952 <input type=hidden name=sort value=partnumber>
2953 <input type=hidden name=nextsub value=list_transfer>
2955 <input type=hidden name=path value=$form->{path}>
2956 <input type=hidden name=login value=$form->{login}>
2957 <input type=hidden name=password value=$form->{password}>
2959 <input class=submit type=submit name=action value="|
2960 . $locale->text('Continue') . qq|">
2967 $lxdebug->leave_sub();
2971 $lxdebug->enter_sub();
2973 OE->get_inventory(\%myconfig, \%$form);
2975 $partnumber = $form->escape($form->{partnumber});
2976 $warehouse = $form->escape($form->{warehouse});
2977 $description = $form->escape($form->{description});
2978 $partsgroup = $form->escape($form->{partsgroup});
2982 "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&password=$form->{password}";
2984 # construct callback
2985 $partnumber = $form->escape($form->{partnumber}, 1);
2986 $warehouse = $form->escape($form->{warehouse}, 1);
2987 $description = $form->escape($form->{description}, 1);
2988 $partsgroup = $form->escape($form->{partsgroup}, 1);
2991 "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&password=$form->{password}";
2994 $form->sort_columns(
2995 qw(partnumber description partsgroup make model warehouse qty transfer));
2997 $column_header{partnumber} =
2998 qq|<th><a class=listheading href=$href&sort=partnumber>|
2999 . $locale->text('Part Number')
3001 $column_header{description} =
3002 qq|<th><a class=listheading href=$href&sort=description>|
3003 . $locale->text('Description')
3005 $column_header{partsgroup} =
3006 qq|<th><a class=listheading href=$href&sort=partsgroup>|
3007 . $locale->text('Group')
3009 $column_header{warehouse} =
3010 qq|<th><a class=listheading href=$href&sort=warehouse>|
3011 . $locale->text('From')
3013 $column_header{qty} =
3014 qq|<th><a class=listheading>| . $locale->text('Qty') . qq|</a></th>|;
3015 $column_header{transfer} =
3016 qq|<th><a class=listheading>| . $locale->text('Transfer') . qq|</a></th>|;
3018 $option = $locale->text('Transfer to');
3020 ($warehouse, $warehouse_id) = split /--/, $form->{warehouse};
3022 if ($form->{warehouse}) {
3023 $option .= " : $warehouse";
3025 if ($form->{partnumber}) {
3026 $option .= "\n<br>" if ($option);
3027 $option .= $locale->text('Part Number') . " : $form->{partnumber}";
3029 if ($form->{description}) {
3030 $option .= "\n<br>" if ($option);
3031 $option .= $locale->text('Description') . " : $form->{description}";
3033 if ($form->{partsgroup}) {
3034 $option .= "\n<br>" if ($option);
3035 $option .= $locale->text('Group') . " : $form->{partsgroup}";
3038 $form->{title} = $locale->text('Transfer Inventory');
3045 <form method=post action=$form->{script}>
3047 <input type=hidden name=warehouse_id value=$warehouse_id>
3051 <th class=listtop>$form->{title}</th>
3053 <tr height="5"></tr>
3060 <tr class=listheading>|;
3062 map { print "\n$column_header{$_}" } @column_index;
3068 if (@{ $form->{all_inventory} }) {
3069 $sameitem = $form->{all_inventory}->[0]->{ $form->{sort} };
3073 foreach $ref (@{ $form->{all_inventory} }) {
3077 $column_data{partnumber} =
3078 qq|<td><input type=hidden name="id_$i" value=$ref->{id}>$ref->{partnumber}</td>|;
3079 $column_data{description} = "<td>$ref->{description} </td>";
3080 $column_data{partsgroup} = "<td>$ref->{partsgroup} </td>";
3081 $column_data{warehouse} =
3082 qq|<td><input type=hidden name="warehouse_id_$i" value=$ref->{warehouse_id}>$ref->{warehouse} </td>|;
3084 qq|<td><input type=hidden name="qty_$i" value=$ref->{qty}>|
3085 . $form->format_amount(\%myconfig, $ref->{qty}, $dec_qty)
3087 $column_data{transfer} = qq|<td><input name="transfer_$i" size=4></td>|;
3092 <tr class=listrow$j>";
3094 map { print "\n$column_data{$_}" } @column_index;
3108 <td><hr size=3 noshade></td>
3114 <input name=callback type=hidden value="$callback">
3116 <input type=hidden name=rowcount value=$i>
3118 <input type=hidden name=path value=$form->{path}>
3119 <input type=hidden name=login value=$form->{login}>
3120 <input type=hidden name=password value=$form->{password}>
3122 <input class=submit type=submit name=action value="|
3123 . $locale->text('Transfer') . qq|">|;
3125 if ($form->{menubar}) {
3126 require "$form->{path}/menu.pl";
3137 $lxdebug->leave_sub();
3141 $lxdebug->enter_sub();
3143 $form->redirect($locale->text('Inventory transferred!'))
3144 if OE->transfer(\%myconfig, \%$form);
3145 $form->error($locale->text('Could not transfer Inventory!'));
3147 $lxdebug->leave_sub();