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);
497 $terms = qq|<input name=terms size="3" maxlength="3" value="| .
498 $form->quote($form->{terms}) . qq|">|;
500 if ($form->{business}) {
503 <th align=right>| . $locale->text('Business') . qq|</th>
504 <td>$form->{business}</td>
505 <th align=right>| . $locale->text('Trade Discount') . qq|</th>
507 . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
513 if ($form->{max_dunning_level}) {
519 <th align=right>| . $locale->text('Max. Dunning Level') . qq|:</th>
520 <td><b>$form->{max_dunning_level}</b></td>
521 <th align=right>| . $locale->text('Dunning Amount') . qq|:</th>
523 . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
532 if (@{ $form->{TAXZONE} }) {
533 $form->{selecttaxzone} = "";
534 foreach $item (@{ $form->{TAXZONE} }) {
535 if ($item->{id} == $form->{taxzone_id}) {
536 $form->{selecttaxzone} .=
537 "<option value=$item->{id} selected>" . H($item->{description}) .
540 $form->{selecttaxzone} .=
541 "<option value=$item->{id}>" . H($item->{description}) . "</option>";
546 $form->{selecttaxzone} =~ s/ selected//g;
547 if ($form->{taxzone_id} ne "") {
548 $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}>/value=$form->{taxzone_id} selected>/;
554 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
555 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
556 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
560 if ($form->{type} !~ /_quotation$/) {
563 <th width=70% align=right nowrap>| . $locale->text('Order Number') . qq|</th>
564 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
567 <th width=70% align=right nowrap>|
568 . $locale->text('Quotation Number') . qq|</th>
569 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
572 <th width=70% align=right nowrap>|
573 . $locale->text('Customer Order Number') . qq|</th>
574 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
577 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
582 <th align=right nowrap=true>| . $locale->text('Required by') . qq|</th>
587 $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
589 $creditremaining = qq|
595 <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
596 <td>$form->{creditlimit}</td>
598 <th nowrap>| . $locale->text('Remaining') . qq|</th>
599 <td class="plus$n" nowrap>$form->{creditremaining}</td>
608 ($form->{type} eq 'sales_quotation')
609 ? $locale->text('Valid until')
610 : $locale->text('Required by');
611 if ($form->{type} eq 'sales_quotation') {
614 <th width=70% align=right nowrap>|
615 . $locale->text('Quotation Number') . qq|</th>
616 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
617 <input type=hidden name=ordnumber value="$form->{ordnumber}">
623 <th width=70% align=right nowrap>| . $locale->text('RFQ Number') . qq|</th>
624 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
625 <input type=hidden name=ordnumber value="$form->{ordnumber}">
634 <th align=right nowrap>| . $locale->text('Quotation Date') . qq|</th>
638 <th align=right nowrap=true>$reqlabel</th>
642 $creditremaining = qq| <tr>
649 ($form->{"select$form->{vc}"})
650 ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}</select>\n<input type=hidden name="select$form->{vc}" value="$form->{"select$form->{vc}"}">|
651 : qq|<input name=$form->{vc} value="$form->{$form->{vc}}" size=35>|;
655 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
656 <td colspan=3><select name=department>$form->{selectdepartment}</select>
657 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
660 | if $form->{selectdepartment};
663 <input type=hidden name=employee value="$form->{employee}">
666 if ($form->{type} eq 'sales_order') {
667 if ($form->{selectemployee}) {
669 <input type=hidden name=customer_klass value=$form->{customer_klass}>
671 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
672 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
673 <input type=hidden name=selectemployee value="$form->{selectemployee}">
680 <input type=hidden name=customer_klass value=$form->{customer_klass}>
682 <th align=right nowrap>| . $locale->text('Employee') . qq|</th>
683 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
684 <input type=hidden name=selectemployee value="$form->{selectemployee}">
689 if ($form->{resubmit} && ($form->{format} eq "html")) {
691 qq|window.open('about:blank','Beleg'); document.oe.target = 'Beleg';document.oe.submit()|;
692 } elsif ($form->{resubmit}) {
693 $onload = qq|document.oe.submit()|;
698 $credittext = $locale->text('Credit Limit exceeded!!!');
699 if ($creditwarning) {
700 $onload = qq|alert('$credittext')|;
703 $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js">|;
708 <body onLoad="$onload">
710 <form method=post name=oe action=$form->{script}>
711 <script type="text/javascript" src="js/common.js"></script>
712 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
713 <script type="text/javascript" src="js/vendor_selection.js"></script>
714 <script type="text/javascript" src="js/calculate_qty.js"></script>
716 <input type=hidden name=id value=$form->{id}>
717 <input type=hidden name=action value=$form->{action}>
719 <input type=hidden name=type value=$form->{type}>
720 <input type=hidden name=formname value=$form->{formname}>
721 <input type=hidden name=media value=$form->{media}>
722 <input type=hidden name=format value=$form->{format}>
723 <input type=hidden name=proforma value=$form->{proforma}>
725 <input type=hidden name=queued value="$form->{queued}">
726 <input type=hidden name=printed value="$form->{printed}">
727 <input type=hidden name=emailed value="$form->{emailed}">
729 <input type=hidden name=vc value=$form->{vc}>
731 <input type=hidden name=title value="$form->{title}">
733 <input type=hidden name=discount value=$form->{discount}>
734 <input type=hidden name=creditlimit value=$form->{creditlimit}>
735 <input type=hidden name=creditremaining value=$form->{creditremaining}>
737 <input type=hidden name=tradediscount value=$form->{tradediscount}>
738 <input type=hidden name=business value=$form->{business}>
739 <input type=hidden name=webdav value=$webdav>
743 <th class=listtop>$form->{title}</th>
753 <th align=right>$vclabel</th>
754 <td colspan=3>$vc</td>
755 <input type=hidden name=$form->{vc}_id value=$form->{"$form->{vc}_id"}>
756 <input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}">
757 <th align=richt nowrap>|
758 . $locale->text('Contact Person') . qq|</th>
759 <td colspan=3>$contact</td>
767 <th align=right>| . $locale->text('Currency') . qq|</th>
768 <td><select name=currency>$form->{selectcurrency}</select></td>
769 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
770 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
774 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
775 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
778 <th align=right>| . $locale->text('Ship via') . qq|</th>
779 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
786 # <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
788 # <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
789 # <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
793 # <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
795 # <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
796 # <input size=45 id=vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
818 <!-- shipto are in hidden variables -->
820 <input type=hidden name=shiptoname value="$form->{shiptoname}">
821 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
822 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
823 <input type=hidden name=shiptocity value="$form->{shiptocity}">
824 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
825 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
826 <input type=hidden name=shiptophone value="$form->{shiptophone}">
827 <input type=hidden name=shiptofax value="$form->{shiptofax}">
828 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
829 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
830 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
832 <!-- email variables -->
833 <input type=hidden name=message value="$form->{message}">
834 <input type=hidden name=email value="$form->{email}">
835 <input type=hidden name=subject value="$form->{subject}">
836 <input type=hidden name=cc value="$form->{cc}">
837 <input type=hidden name=bcc value="$form->{bcc}">
839 <input type=hidden name=taxpart value="$form->{taxpart}">
840 <input type=hidden name=taxservice value="$form->{taxservice}">
842 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
845 foreach $item (split / /, $form->{taxaccounts}) {
847 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
848 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
851 $lxdebug->leave_sub();
855 $lxdebug->enter_sub();
857 $form->{invtotal} = $form->{invsubtotal};
859 if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
862 if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
865 $rows = ($rows > $introws) ? $rows : $introws;
867 qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
869 qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
871 $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
874 if ($form->{taxaccounts}) {
876 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
877 . $locale->text('Tax Included') . qq|</b><br><br>
881 if (!$form->{taxincluded}) {
883 foreach $item (split / /, $form->{taxaccounts}) {
884 if ($form->{"${item}_base"}) {
885 $form->{invtotal} += $form->{"${item}_total"} =
887 $form->{"${item}_base"} * $form->{"${item}_rate"},
889 $form->{"${item}_total"} =
890 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
894 <th align=right>$form->{"${item}_description"}</th>
895 <td align=right>$form->{"${item}_total"}</td>
901 $form->{invsubtotal} =
902 $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
906 <th align=right>| . $locale->text('Subtotal') . qq|</th>
907 <td align=right>$form->{invsubtotal}</td>
913 if ($form->{taxincluded}) {
914 foreach $item (split / /, $form->{taxaccounts}) {
915 if ($form->{"${item}_base"}) {
916 $form->{"${item}_total"} =
918 ($form->{"${item}_base"} * $form->{"${item}_rate"} /
919 (1 + $form->{"${item}_rate"})
922 $form->{"${item}_netto"} =
924 ($form->{"${item}_base"} - $form->{"${item}_total"}),
926 $form->{"${item}_total"} =
927 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
928 $form->{"${item}_netto"} =
929 $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
933 <th align=right>Enthaltene $form->{"${item}_description"}</th>
934 <td align=right>$form->{"${item}_total"}</td>
937 <th align=right>Nettobetrag</th>
938 <td align=right>$form->{"${item}_netto"}</td>
946 $form->{oldinvtotal} = $form->{invtotal};
948 $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
958 <th align=left>| . $locale->text('Notes') . qq|</th>
959 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
965 <th align=right>| . $locale->text('Payment Terms') . qq|</th>
966 <td><select name=payment_id tabindex=24>$payment
970 <td align=right width=100%>
976 <th align=right>| . $locale->text('Total') . qq|</th>
977 <td align=right>$form->{invtotal}</td>
985 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
986 <input type=hidden name=oldtotalpaid value=$totalpaid>
988 <td><hr size=3 noshade></td>
996 <th class=listtop align=left>Dokumente im Webdav-Repository</th>
999 <td align=left width=30%><b>Dateiname</b></td>
1000 <td align=left width=70%><b>Webdavlink</b></td>
1002 foreach $file (keys %{ $form->{WEBDAV} }) {
1005 <td align=left>$file</td>
1006 <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
1014 <td><hr size=3 noshade></td>
1021 <input type=hidden name=jscalendar value=$form->{jscalendar}>
1034 | . $locale->text("Edit the $form->{type}") . qq|<br>
1035 <input class=submit type=submit name=action id=update_button value="|
1036 . $locale->text('Update') . qq|">
1037 <input class=submit type=submit name=action value="|
1038 . $locale->text('Ship to') . qq|">
1039 <input class=submit type=submit name=action value="|
1040 . $locale->text('Print') . qq|">
1041 <input class=submit type=submit name=action value="|
1042 . $locale->text('E-mail') . qq|">
1043 <input class=submit type=submit name=action value="|
1044 . $locale->text('Save') . qq|">
1045 <input class=submit type=submit name=action value="|
1046 . $locale->text('Save and Close') . qq|">
1049 if (($form->{id})) {
1051 <br>| . $locale->text("Workflow $form->{type}") . qq|<br>
1052 <input class=submit type=submit name=action value="|
1053 . $locale->text('Save as new') . qq|">
1054 <input class=submit type=submit name=action value="|
1055 . $locale->text('Delete') . qq|">|;
1056 if (($form->{type} =~ /sales_quotation$/)) {
1058 <input class=submit type=submit name=action value="|
1059 . $locale->text('Sales Order') . qq|">|;
1061 if ($form->{type} =~ /request_quotation$/) {
1063 <input class=submit type=submit name=action value="|
1064 . $locale->text('Purchase Order') . qq|">|;
1068 <input class=submit type=submit name=action value="|
1069 . $locale->text('Invoice') . qq|">
1073 if ($form->{type} =~ /sales_order$/) {
1075 <br>$form->{heading} als neue Vorlage verwenden für<br>
1076 <input class=submit type=submit name=action value="|
1077 . $locale->text('Purchase Order') . qq|">
1078 <input class=submit type=submit name=action value="|
1079 . $locale->text('Quotation') . qq|">
1082 } elsif ($form->{type} =~ /purchase_order$/) {
1084 <br>$form->{heading} als neue Vorlage verwenden für<br>
1085 <input class=submit type=submit name=action value="|
1086 . $locale->text('Sales Order') . qq|">
1087 <input class=submit type=submit name=action value="|
1088 . $locale->text('Request for Quotation') . qq|">
1093 <br>$form->{heading} als neue Vorlage verwenden für<br>
1094 <input class=submit type=submit name=action value="|
1095 . $locale->text('Order') . qq|">
1098 } elsif ($form->{type} =~ /sales_order$/ && $form->{rowcount} && !$form->{proforma}) {
1100 <br>Workflow $form->{heading}<br>
1101 <input class=submit type=submit name=action value="|
1102 . $locale->text('Save as new') . qq|">
1103 <input class=submit type=submit name=action value="|
1104 . $locale->text('Invoice') . qq|">
1108 if ($form->{menubar}) {
1109 require "$form->{path}/menu.pl";
1115 <input type=hidden name=rowcount value=$form->{rowcount}>
1117 <input name=callback type=hidden value="$form->{callback}">
1119 <input type=hidden name=path value=$form->{path}>
1120 <input type=hidden name=login value=$form->{login}>
1121 <input type=hidden name=password value=$form->{password}>
1128 $lxdebug->leave_sub();
1132 $lxdebug->enter_sub();
1134 set_headings($form->{"id"} ? "edit" : "add");
1136 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1137 qw(exchangerate creditlimit creditremaining);
1138 $form->{update} = 1;
1140 &check_name($form->{vc});
1145 $buysell = 'sell' if ($form->{vc} eq 'vendor');
1146 $form->{exchangerate} = $exchangerate
1150 $form->check_exchangerate(
1151 \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1155 $i = $form->{rowcount};
1157 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1159 if ( ($form->{"partnumber_$i"} eq "")
1160 && ($form->{"description_$i"} eq "")
1161 && ($form->{"partsgroup_$i"} eq "")) {
1163 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1168 if ( $form->{type} eq 'purchase_order'
1169 || $form->{type} eq 'request_quotation') {
1170 IR->retrieve_item(\%myconfig, \%$form);
1172 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
1173 IS->retrieve_item(\%myconfig, \%$form);
1176 my $rows = scalar @{ $form->{item_list} };
1178 $form->{"discount_$i"} =
1179 $form->format_amount(\%myconfig, $form->{discount} * 100);
1182 $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
1191 $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1192 if ($form->{"not_discountable_$i"}) {
1193 $form->{"discount_$i"} = 0;
1195 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
1196 qw(partnumber description unit);
1197 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1198 keys %{ $form->{item_list}[0] };
1199 if ($form->{"part_payment_id_$i"} ne "") {
1200 $form->{payment_id} = $form->{"part_payment_id_$i"};
1203 $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1205 ($dec) = ($s =~ /\.(\d+)/);
1207 $decimalplaces = ($dec > 2) ? $dec : 2;
1210 $form->{"sellprice_$i"} = $sellprice;
1213 $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1215 # if there is an exchange rate adjust sellprice
1216 $form->{"sellprice_$i"} /= $exchangerate;
1220 $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1221 (1 - $form->{"discount_$i"} / 100);
1222 map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1223 map { $form->{"${_}_base"} += $amount }
1224 (split / /, $form->{"taxaccounts_$i"});
1225 map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1226 split / /, $form->{taxaccounts}
1227 if !$form->{taxincluded};
1229 $form->{creditremaining} -= $amount;
1231 $form->{"sellprice_$i"} =
1232 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
1235 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
1237 # get pricegroups for parts
1238 IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1240 # build up html code for prices_$i
1241 &set_pricegroup($i);
1248 # ok, so this is a new part
1249 # ask if it is a part or service item
1251 if ( $form->{"partsgroup_$i"}
1252 && ($form->{"partsnumber_$i"} eq "")
1253 && ($form->{"description_$i"} eq "")) {
1254 $form->{rowcount}--;
1255 $form->{"discount_$i"} = "";
1259 $form->{"id_$i"} = 0;
1260 $form->{"unit_$i"} = $locale->text('ea');
1268 $lxdebug->leave_sub();
1272 $lxdebug->enter_sub();
1274 if ($form->{type} eq 'purchase_order') {
1275 $form->{title} = $locale->text('Purchase Orders');
1276 $form->{vc} = 'vendor';
1277 $ordlabel = $locale->text('Order Number');
1278 $ordnumber = 'ordnumber';
1279 $employee = $locale->text('Employee');
1281 if ($form->{type} eq 'request_quotation') {
1282 $form->{title} = $locale->text('Request for Quotations');
1283 $form->{vc} = 'vendor';
1284 $ordlabel = $locale->text('RFQ Number');
1285 $ordnumber = 'quonumber';
1286 $employee = $locale->text('Employee');
1288 if ($form->{type} eq 'receive_order') {
1289 $form->{title} = $locale->text('Receive Merchandise');
1290 $form->{vc} = 'vendor';
1291 $ordlabel = $locale->text('Order Number');
1292 $ordnumber = 'ordnumber';
1293 $employee = $locale->text('Employee');
1295 if ($form->{type} eq 'sales_order') {
1296 $form->{title} = $locale->text('Sales Orders');
1297 $form->{vc} = 'customer';
1298 $ordlabel = $locale->text('Order Number');
1299 $ordnumber = 'ordnumber';
1300 $employee = $locale->text('Salesperson');
1302 if ($form->{type} eq 'ship_order') {
1303 $form->{title} = $locale->text('Ship Merchandise');
1304 $form->{vc} = 'customer';
1305 $ordlabel = $locale->text('Order Number');
1306 $ordnumber = 'ordnumber';
1307 $employee = $locale->text('Salesperson');
1311 if ($form->{type} eq 'sales_quotation') {
1312 $form->{title} = $locale->text('Quotations');
1313 $form->{vc} = 'customer';
1314 $ordlabel = $locale->text('Quotation Number');
1315 $ordnumber = 'quonumber';
1316 $employee = $locale->text('Employee');
1319 if ($form->{type} =~ /(ship|receive)_order/) {
1320 OE->get_warehouses(\%myconfig, \%$form);
1323 if (@{ $form->{all_warehouses} }) {
1324 $form->{selectwarehouse} = "<option>\n";
1325 $form->{warehouse} = qq|$form->{warehouse}--$form->{warehouse_id}|;
1328 $form->{selectwarehouse} .=
1329 "<option>$_->{description}--$_->{id}\n"
1330 } (@{ $form->{all_warehouses} });
1334 <th align=right>| . $locale->text('Warehouse') . qq|</th>
1335 <td colspan=3><select name=warehouse>$form->{selectwarehouse}</select></td>
1336 <input type=hidden name=selectwarehouse value="$form->{selectwarehouse}">
1343 # setup vendor / customer selection
1344 $form->all_vc(\%myconfig, $form->{vc},
1345 ($form->{vc} eq 'customer') ? "AR" : "AP");
1347 map { $vc .= "<option>$_->{name}--$_->{id}\n" }
1348 @{ $form->{"all_$form->{vc}"} };
1350 $vclabel = ucfirst $form->{vc};
1351 $vclabel = $locale->text($vclabel);
1353 # $locale->text('Vendor')
1354 # $locale->text('Customer')
1358 ? qq|<select name=$form->{vc}><option>\n$vc</select>|
1359 : qq|<input name=$form->{vc} size=35>|;
1362 if (@{ $form->{all_departments} }) {
1363 $form->{selectdepartment} = "<option>\n";
1366 $form->{selectdepartment} .=
1367 "<option>$_->{description}--$_->{id}\n"
1368 } (@{ $form->{all_departments} });
1373 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1374 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1376 | if $form->{selectdepartment};
1378 if ($form->{type} !~ /(ship_order|receive_order)/) {
1381 <td><input name="open" class=checkbox type=checkbox value=1 checked> |
1382 . $locale->text('Open') . qq|</td>
1383 <td><input name="closed" class=checkbox type=checkbox value=1 $form->{closed}> |
1384 . $locale->text('Closed') . qq|</td>
1390 <input type=hidden name="open" value=1>
1394 # use JavaScript Calendar or not
1395 $form->{jsscript} = $jscalendar;
1397 if ($form->{jsscript}) {
1399 # with JavaScript Calendar
1401 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}">
1402 <input type=button name=transdatefrom id="trigger3" value=|
1403 . $locale->text('button') . qq|></td>
1406 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}">
1407 <input type=button name=transdateto name=transdateto id="trigger4" value=|
1408 . $locale->text('button') . qq|></td>
1413 Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger3",
1414 "transdateto", "BL", "trigger4");
1417 # without JavaScript Calendar
1419 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
1421 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}"></td>|;
1429 <form method=post action=$form->{script}>
1433 <th class=listtop>$form->{title}</th>
1435 <tr height="5"></tr>
1440 <th align=right>$vclabel</th>
1441 <td colspan=3>$vc</td>
1446 <th align=right>$ordlabel</th>
1447 <td colspan=3><input name="$ordnumber" size=20></td>
1450 <th align=right>| . $locale->text('From') . qq|</th>
1452 <th align=right>| . $locale->text('Bis') . qq|</th>
1455 <input type=hidden name=sort value=transdate>
1457 <th align=right>| . $locale->text('Include in Report') . qq|</th>
1462 <td><input name="l_id" class=checkbox type=checkbox value=Y>
1463 | . $locale->text('ID') . qq|</td>
1464 <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td>
1465 <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |
1466 . $locale->text('Date') . qq|</td>
1467 <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |
1468 . $locale->text('Required by') . qq|</td>
1471 <td><input name="l_name" class=checkbox type=checkbox value=Y checked> $vclabel</td>
1472 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1473 <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |
1474 . $locale->text('Ship via') . qq|</td>
1477 <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |
1478 . $locale->text('Amount') . qq|</td>
1479 <td><input name="l_tax" class=checkbox type=checkbox value=Y> |
1480 . $locale->text('Tax') . qq|</td>
1481 <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |
1482 . $locale->text('Total') . qq|</td>
1485 <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |
1486 . $locale->text('Subtotal') . qq|</td>
1494 <tr><td colspan=4><hr size=3 noshade></td></tr>
1500 <input type=hidden name=nextsub value=orders>
1501 <input type=hidden name=path value=$form->{path}>
1502 <input type=hidden name=login value=$form->{login}>
1503 <input type=hidden name=password value=$form->{password}>
1504 <input type=hidden name=vc value=$form->{vc}>
1505 <input type=hidden name=type value=$form->{type}>
1507 <input class=submit type=submit name=action value="|
1508 . $locale->text('Continue') . qq|">
1515 $lxdebug->leave_sub();
1519 $lxdebug->enter_sub();
1521 # split vendor / customer
1522 ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) =
1523 split(/--/, $form->{ $form->{vc} });
1525 OE->transactions(\%myconfig, \%$form);
1527 $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
1529 $number = $form->escape($form->{$ordnumber});
1530 $name = $form->escape($form->{ $form->{vc} });
1531 $department = $form->escape($form->{department});
1532 $warehouse = $form->escape($form->{warehouse});
1536 "$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";
1538 # construct callback
1539 $number = $form->escape($form->{$ordnumber}, 1);
1540 $name = $form->escape($form->{ $form->{vc} }, 1);
1541 $department = $form->escape($form->{department}, 1);
1542 $warehouse = $form->escape($form->{warehouse}, 1);
1545 "$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";
1548 $form->sort_columns("transdate", "reqdate", "id", "$ordnumber",
1549 "name", "netamount", "tax", "amount",
1550 "curr", "employee", "shipvia", "open",
1553 $form->{l_open} = $form->{l_closed} = "Y"
1554 if ($form->{open} && $form->{closed});
1556 foreach $item (@columns) {
1557 if ($form->{"l_$item"} eq "Y") {
1558 push @column_index, $item;
1560 # add column to href and callback
1561 $callback .= "&l_$item=Y";
1562 $href .= "&l_$item=Y";
1566 # only show checkboxes if gotten here via sales_order form.
1567 if ($form->{type} =~ /sales_order/) {
1568 unshift @column_index, "ids";
1571 if ($form->{l_subtotal} eq 'Y') {
1572 $callback .= "&l_subtotal=Y";
1573 $href .= "&l_subtotal=Y";
1576 if ($form->{vc} eq 'vendor') {
1577 if ($form->{type} eq 'receive_order') {
1578 $form->{title} = $locale->text('Receive Merchandise');
1579 } elsif ($form->{type} eq 'purchase_order') {
1580 $form->{title} = $locale->text('Purchase Orders');
1582 $form->{title} = $locale->text('Request for Quotations');
1584 $name = $locale->text('Vendor');
1585 $employee = $locale->text('Employee');
1587 if ($form->{vc} eq 'customer') {
1588 if ($form->{type} eq 'sales_order') {
1589 $form->{title} = $locale->text('Sales Orders');
1590 $employee = $locale->text('Salesperson');
1591 } elsif ($form->{type} eq 'ship_order') {
1592 $form->{title} = $locale->text('Ship Merchandise');
1593 $employee = $locale->text('Salesperson');
1595 $form->{title} = $locale->text('Quotations');
1596 $employee = $locale->text('Employee');
1598 $name = $locale->text('Customer');
1601 $column_header{id} =
1602 qq|<th><a class=listheading href=$href&sort=id>|
1603 . $locale->text('ID')
1605 $column_header{transdate} =
1606 qq|<th><a class=listheading href=$href&sort=transdate>|
1607 . $locale->text('Date')
1609 $column_header{reqdate} =
1610 qq|<th><a class=listheading href=$href&sort=reqdate>|
1611 . $locale->text('Required by')
1613 $column_header{ordnumber} =
1614 qq|<th><a class=listheading href=$href&sort=ordnumber>|
1615 . $locale->text('Order')
1617 $column_header{quonumber} =
1618 qq|<th><a class=listheading href=$href&sort=quonumber>|
1619 . ($form->{"type"} eq "request_quotation" ?
1620 $locale->text('RFQ') :
1621 $locale->text('Quotation'))
1623 $column_header{name} =
1624 qq|<th><a class=listheading href=$href&sort=name>$name</a></th>|;
1625 $column_header{netamount} =
1626 qq|<th class=listheading>| . $locale->text('Amount') . qq|</th>|;
1627 $column_header{tax} =
1628 qq|<th class=listheading>| . $locale->text('Tax') . qq|</th>|;
1629 $column_header{amount} =
1630 qq|<th class=listheading>| . $locale->text('Total') . qq|</th>|;
1631 $column_header{curr} =
1632 qq|<th class=listheading>| . $locale->text('Curr') . qq|</th>|;
1633 $column_header{shipvia} =
1634 qq|<th><a class=listheading href=$href&sort=shipvia>|
1635 . $locale->text('Ship via')
1637 $column_header{open} =
1638 qq|<th class=listheading>| . $locale->text('O') . qq|</th>|;
1639 $column_header{closed} =
1640 qq|<th class=listheading>| . $locale->text('C') . qq|</th>|;
1642 $column_header{employee} =
1643 qq|<th><a class=listheading href=$href&sort=employee>$employee</a></th>|;
1645 $column_header{ids} = qq|<th></th>|;
1647 if ($form->{ $form->{vc} }) {
1648 $option = $locale->text(ucfirst $form->{vc});
1649 $option .= " : $form->{$form->{vc}}";
1651 if ($form->{warehouse}) {
1652 ($warehouse) = split /--/, $form->{warehouse};
1653 $option .= "\n<br>" if ($option);
1654 $option .= $locale->text('Warehouse');
1655 $option .= " : $warehouse";
1657 if ($form->{department}) {
1658 $option .= "\n<br>" if ($option);
1659 ($department) = split /--/, $form->{department};
1660 $option .= $locale->text('Department') . " : $department";
1662 if ($form->{transdatefrom}) {
1664 . $locale->text('From') . " "
1665 . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1667 if ($form->{transdateto}) {
1669 . $locale->text('Bis') . " "
1670 . $locale->date(\%myconfig, $form->{transdateto}, 1);
1672 if ($form->{open}) {
1673 $option .= "\n<br>" if ($option);
1674 $option .= $locale->text('Open');
1676 if ($form->{closed}) {
1677 $option .= "\n<br>" if ($option);
1678 $option .= $locale->text('Closed');
1686 <form method="post" action="oe.pl">
1689 <th class=listtop>$form->{title}</th>
1691 <tr height="5"></tr>
1698 <tr class=listheading>|;
1700 map { print "\n$column_header{$_}" } @column_index;
1706 # add sort and escape callback
1707 $callback_escaped = $form->escape($callback . "&sort=$form->{sort}");
1709 if (@{ $form->{OE} }) {
1710 $sameitem = $form->{OE}->[0]->{ $form->{sort} };
1714 $action = "ship_receive" if ($form->{type} =~ /(ship|receive)_order/);
1716 $warehouse = $form->escape($form->{warehouse});
1718 foreach $oe (@{ $form->{OE} }) {
1719 $form->{rowcount} = ++$j;
1721 if ($form->{l_subtotal} eq 'Y') {
1722 if ($sameitem ne $oe->{ $form->{sort} }) {
1724 $sameitem = $oe->{ $form->{sort} };
1728 map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount));
1730 $column_data{netamount} =
1732 . $form->format_amount(\%myconfig, $oe->{netamount}, 2, " ")
1734 $column_data{tax} = "<td align=right>"
1735 . $form->format_amount(\%myconfig, $oe->{amount} - $oe->{netamount},
1738 $column_data{amount} =
1740 . $form->format_amount(\%myconfig, $oe->{amount}, 2, " ") . "</td>";
1742 $totalnetamount += $oe->{netamount};
1743 $totalamount += $oe->{amount};
1745 $subtotalnetamount += $oe->{netamount};
1746 $subtotalamount += $oe->{amount};
1749 qq|<td><input name="id_$j" class=checkbox type=checkbox><input type="hidden" name="trans_id_$j" value="$oe->{id}"></td>|;
1750 $column_data{id} = "<td>$oe->{id}</td>";
1751 $column_data{transdate} = "<td>$oe->{transdate} </td>";
1752 $column_data{reqdate} = "<td>$oe->{reqdate} </td>";
1754 $column_data{$ordnumber} =
1755 "<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>";
1756 $column_data{name} = "<td>$oe->{name}</td>";
1758 $column_data{employee} = "<td>$oe->{employee} </td>";
1759 $column_data{shipvia} = "<td>$oe->{shipvia} </td>";
1761 if ($oe->{closed}) {
1762 $column_data{closed} = "<td align=center>X</td>";
1763 $column_data{open} = "<td> </td>";
1765 $column_data{closed} = "<td> </td>";
1766 $column_data{open} = "<td align=center>X</td>";
1772 <tr class=listrow$i>";
1774 map { print "\n$column_data{$_}" } @column_index;
1782 if ($form->{l_subtotal} eq 'Y') {
1788 <tr class=listtotal>|;
1790 map { $column_data{$_} = "<td> </td>" } @column_index;
1792 $column_data{netamount} =
1793 "<th class=listtotal align=right>"
1794 . $form->format_amount(\%myconfig, $totalnetamount, 2, " ") . "</th>";
1795 $column_data{tax} = "<th class=listtotal align=right>"
1796 . $form->format_amount(\%myconfig, $totalamount - $totalnetamount,
1799 $column_data{amount} =
1800 "<th class=listtotal align=right>"
1801 . $form->format_amount(\%myconfig, $totalamount, 2, " ") . "</th>";
1803 map { print "\n$column_data{$_}" } @column_index;
1811 <td><hr size=3 noshade></td>
1815 # multiple invoice edit button only if gotten there via sales_order form.
1817 if ($form->{type} =~ /sales_order/) {
1819 <input type="hidden" name="path" value="$form->{path}">
1820 <input class"submit" type="submit" name="action" value="|
1821 . $locale->text('Continue') . qq|">
1822 <input type="hidden" name="nextsub" value="edit">
1823 <input type="hidden" name="type" value="$form->{type}">
1824 <input type="hidden" name="warehouse" value="$warehouse">
1825 <input type="hidden" name="vc" value="$form->{vc}">
1826 <input type="hidden" name="login" value="$form->{login}">
1827 <input type="hidden" name="password" value="$form->{password}">
1828 <input type="hidden" name="callback" value="$callback">
1829 <input type="hidden" name="rowcount" value="$form->{rowcount}">|;
1836 <form method=post action=$form->{script}>
1838 <input name=callback type=hidden value="$form->{callback}">
1840 <input type=hidden name=type value=$form->{type}>
1841 <input type=hidden name=vc value=$form->{vc}>
1843 <input type=hidden name=path value=$form->{path}>
1844 <input type=hidden name=login value=$form->{login}>
1845 <input type=hidden name=password value=$form->{password}>
1848 if ($form->{type} !~ /(ship|receive)_order/) {
1850 <input class=submit type=submit name=action value="|
1851 . $locale->text('Add') . qq|">|;
1854 if ($form->{menubar}) {
1855 require "$form->{path}/menu.pl";
1866 $lxdebug->leave_sub();
1870 $lxdebug->enter_sub();
1872 map { $column_data{$_} = "<td> </td>" } @column_index;
1874 $column_data{netamount} =
1875 "<th class=listsubtotal align=right>"
1876 . $form->format_amount(\%myconfig, $subtotalnetamount, 2, " ")
1878 $column_data{tax} = "<td class=listsubtotal align=right>"
1879 . $form->format_amount(\%myconfig, $subtotalamount - $subtotalnetamount,
1882 $column_data{amount} =
1883 "<th class=listsubtotal align=right>"
1884 . $form->format_amount(\%myconfig, $subtotalamount, 2, " ") . "</th>";
1886 $subtotalnetamount = 0;
1887 $subtotalamount = 0;
1890 <tr class=listsubtotal>
1893 map { print "\n$column_data{$_}" } @column_index;
1899 $lxdebug->leave_sub();
1902 sub save_and_close {
1903 $lxdebug->enter_sub();
1905 if ($form->{type} =~ /_order$/) {
1906 $form->isblank("transdate", $locale->text('Order Date missing!'));
1908 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1911 $msg = ucfirst $form->{vc};
1912 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1914 # $locale->text('Customer missing!');
1915 # $locale->text('Vendor missing!');
1917 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1918 if ($form->{currency} ne $form->{defaultcurrency});
1922 # if the name changed get new values
1923 if (&check_name($form->{vc})) {
1928 $form->{id} = 0 if $form->{saveasnew};
1930 # this is for the internal notes section for the [email] Subject
1931 if ($form->{type} =~ /_order$/) {
1932 if ($form->{type} eq 'sales_order') {
1933 $form->{label} = $locale->text('Sales Order');
1935 $numberfld = "sonumber";
1936 $ordnumber = "ordnumber";
1938 $form->{label} = $locale->text('Purchase Order');
1940 $numberfld = "ponumber";
1941 $ordnumber = "ordnumber";
1944 $err = $locale->text('Cannot save order!');
1947 if ($form->{type} eq 'sales_quotation') {
1948 $form->{label} = $locale->text('Quotation');
1950 $numberfld = "sqnumber";
1951 $ordnumber = "quonumber";
1953 $form->{label} = $locale->text('Request for Quotation');
1955 $numberfld = "rfqnumber";
1956 $ordnumber = "quonumber";
1959 $err = $locale->text('Cannot save quotation!');
1963 # get new number in sequence if no number is given or if saveasnew was requested
1964 if (!$form->{$ordnumber} || $form->{saveasnew}) {
1965 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
1971 $form->{label} . " $form->{$ordnumber} " . $locale->text('saved!'))
1972 if (OE->save(\%myconfig, \%$form));
1975 $lxdebug->leave_sub();
1979 $lxdebug->enter_sub();
1981 if ($form->{type} =~ /_order$/) {
1982 $form->isblank("transdate", $locale->text('Order Date missing!'));
1984 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1987 $msg = ucfirst $form->{vc};
1988 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1990 # $locale->text('Customer missing!');
1991 # $locale->text('Vendor missing!');
1993 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1994 if ($form->{currency} ne $form->{defaultcurrency});
1998 # if the name changed get new values
1999 if (&check_name($form->{vc})) {
2004 $form->{id} = 0 if $form->{saveasnew};
2006 # this is for the internal notes section for the [email] Subject
2007 if ($form->{type} =~ /_order$/) {
2008 if ($form->{type} eq 'sales_order') {
2009 $form->{label} = $locale->text('Sales Order');
2011 $numberfld = "sonumber";
2012 $ordnumber = "ordnumber";
2014 $form->{label} = $locale->text('Purchase Order');
2016 $numberfld = "ponumber";
2017 $ordnumber = "ordnumber";
2020 $err = $locale->text('Cannot save order!');
2023 if ($form->{type} eq 'sales_quotation') {
2024 $form->{label} = $locale->text('Quotation');
2026 $numberfld = "sqnumber";
2027 $ordnumber = "quonumber";
2029 $form->{label} = $locale->text('Request for Quotation');
2031 $numberfld = "rfqnumber";
2032 $ordnumber = "quonumber";
2035 $err = $locale->text('Cannot save quotation!');
2039 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
2040 unless $form->{$ordnumber};
2044 OE->save(\%myconfig, \%$form);
2045 $form->{simple_save} = 1;
2046 if(!$form->{print_and_save}) {
2047 set_headings("edit");
2051 $lxdebug->leave_sub();
2055 $lxdebug->enter_sub();
2059 if ($form->{type} =~ /_order$/) {
2060 $msg = $locale->text('Are you sure you want to delete Order Number');
2061 $ordnumber = 'ordnumber';
2063 $msg = $locale->text('Are you sure you want to delete Quotation Number');
2064 $ordnumber = 'quonumber';
2070 <form method=post action=$form->{script}>
2073 # delete action variable
2074 map { delete $form->{$_} } qw(action header);
2076 foreach $key (keys %$form) {
2077 $form->{$key} =~ s/\"/"/g;
2078 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2082 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
2084 <h4>$msg $form->{$ordnumber}</h4>
2086 <input name=action class=submit type=submit value="|
2087 . $locale->text('Yes') . qq|">
2094 $lxdebug->leave_sub();
2098 $lxdebug->enter_sub();
2100 if ($form->{type} =~ /_order$/) {
2101 $msg = $locale->text('Order deleted!');
2102 $err = $locale->text('Cannot delete order!');
2104 $msg = $locale->text('Quotation deleted!');
2105 $err = $locale->text('Cannot delete quotation!');
2108 $form->redirect($msg) if (OE->delete(\%myconfig, \%$form, $spool));
2111 $lxdebug->leave_sub();
2115 $lxdebug->enter_sub();
2117 if ($form->{type} =~ /_order$/) {
2119 # these checks only apply if the items don't bring their own ordnumbers/transdates.
2120 # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
2121 $form->isblank("ordnumber", $locale->text('Order Number missing!'))
2122 if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
2124 $form->isblank("transdate", $locale->text('Order Date missing!'))
2125 if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
2128 # also copy deliverydate from the order
2129 $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
2131 $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
2132 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2133 $form->{ordnumber} = "";
2136 # if the name changed get new values
2137 if (&check_name($form->{vc})) {
2142 $form->{cp_id} *= 1;
2144 for $i (1 .. $form->{rowcount}) {
2145 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2146 $form->{"${_}_${i}"})
2147 if ($form->{"${_}_${i}"}) }
2148 qw(ship qty sellprice listprice basefactor));
2151 if ( $form->{type} =~ /_order/
2152 && $form->{currency} ne $form->{defaultcurrency}) {
2154 # check if we need a new exchangerate
2155 $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
2157 $orddate = $form->current_date(\%myconfig);
2159 $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
2162 if (!$exchangerate) {
2163 &backorder_exchangerate($orddate, $buysell);
2168 # close orders/quotations
2169 $form->{closed} = 1;
2171 # save order if one ordnumber has been given
2172 # if not it's most likely a collective order, which can't be saved back
2173 # so they just have to be closed
2174 if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) {
2175 OE->close_order(\%myconfig, \%$form);
2177 OE->close_orders(\%myconfig, \%$form);
2180 $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
2182 $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
2185 $form->{closed} = 0;
2186 $form->{rowcount}--;
2187 $form->{shipto} = 1;
2189 if ($form->{type} =~ /_order$/) {
2190 $form->{exchangerate} = $exchangerate;
2194 if ( $form->{type} eq 'purchase_order'
2195 || $form->{type} eq 'request_quotation') {
2196 $form->{title} = $locale->text('Add Vendor Invoice');
2197 $form->{script} = 'ir.pl';
2201 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
2202 $form->{title} = $locale->text('Add Sales Invoice');
2203 $form->{script} = 'is.pl';
2208 # bo creates the id, reset it
2209 map { delete $form->{$_} }
2210 qw(id subject message cc bcc printed emailed queued);
2211 $form->{ $form->{vc} } =~ s/--.*//g;
2212 $form->{type} = "invoice";
2215 $locale = new Locale "$myconfig{countrycode}", "$script";
2217 require "$form->{path}/$form->{script}";
2219 map { $form->{"select$_"} = "" } ($form->{vc}, currency);
2221 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
2222 qw(creditlimit creditremaining);
2224 $currency = $form->{currency};
2227 $form->{currency} = $currency;
2228 $form->{exchangerate} = "";
2229 $form->{forex} = "";
2230 $form->{exchangerate} = $exchangerate
2234 $form->check_exchangerate(
2235 \%myconfig, $form->{currency}, $form->{invdate}, $buysell
2238 $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
2243 for $i (1 .. $form->{rowcount}) {
2244 $form->{"discount_$i"} =
2245 $form->format_amount(\%myconfig, $form->{"discount_$i"});
2247 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
2249 $decimalplaces = ($dec > 2) ? $dec : 2;
2251 # copy delivery date from reqdate for order -> invoice conversion
2252 $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
2253 unless $form->{"deliverydate_$i"};
2255 $form->{"sellprice_$i"} =
2256 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
2259 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
2260 $dec_qty = length $dec_qty;
2262 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
2264 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2265 qw(partnumber description unit);
2271 $lxdebug->leave_sub();
2274 sub backorder_exchangerate {
2275 $lxdebug->enter_sub();
2276 my ($orddate, $buysell) = @_;
2283 <form method=post action=$form->{script}>
2286 # delete action variable
2287 map { delete $form->{$_} } qw(action header exchangerate);
2289 foreach $key (keys %$form) {
2290 $form->{$key} =~ s/\"/"/g;
2291 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2294 $form->{title} = $locale->text('Add Exchangerate');
2298 <input type=hidden name=path value=$form->{path}>
2299 <input type=hidden name=login value=$form->{login}>
2300 <input type=hidden name=password value=$form->{password}>
2302 <input type=hidden name=exchangeratedate value=$orddate>
2303 <input type=hidden name=buysell value=$buysell>
2306 <tr><th class=listtop>$form->{title}</th></tr>
2307 <tr height="5"></tr>
2312 <th align=right>| . $locale->text('Currency') . qq|</th>
2313 <td>$form->{currency}</td>
2316 <th align=right>| . $locale->text('Date') . qq|</th>
2320 <th align=right>| . $locale->text('Exchangerate') . qq|</th>
2321 <td><input name=exchangerate size=11></td>
2331 <input type=hidden name=nextsub value=save_exchangerate>
2333 <input name=action class=submit type=submit value="|
2334 . $locale->text('Continue') . qq|">
2342 $lxdebug->leave_sub();
2345 sub save_exchangerate {
2346 $lxdebug->enter_sub();
2348 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
2349 $form->{exchangerate} =
2350 $form->parse_amount(\%myconfig, $form->{exchangerate});
2351 $form->save_exchangerate(\%myconfig, $form->{currency},
2352 $form->{exchangeratedate},
2353 $form->{exchangerate}, $form->{buysell});
2357 $lxdebug->leave_sub();
2360 sub create_backorder {
2361 $lxdebug->enter_sub();
2363 $form->{shipped} = 1;
2365 # figure out if we need to create a backorder
2366 # items aren't saved if qty != 0
2368 for $i (1 .. $form->{rowcount}) {
2369 $totalqty += $qty = $form->{"qty_$i"};
2370 $totalship += $ship = $form->{"ship_$i"};
2372 $form->{"qty_$i"} = $qty - $ship;
2375 if ($totalship == 0) {
2376 map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
2377 $form->{ordtotal} = 0;
2378 $form->{shipped} = 0;
2382 if ($totalqty == $totalship) {
2383 map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
2384 $form->{ordtotal} = 0;
2389 qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
2392 for $i (1 .. $form->{rowcount}) {
2394 $form->{"${_}_$i"} =
2395 $form->format_amount(\%myconfig, $form->{"${_}_$i"})
2396 } qw(sellprice discount);
2401 OE->save(\%myconfig, \%$form);
2403 # rebuild rows for invoice
2407 for $i (1 .. $form->{rowcount}) {
2408 $form->{"qty_$i"} = $form->{"ship_$i"};
2410 if ($form->{"qty_$i"}) {
2413 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2418 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2419 $form->{rowcount} = $count;
2421 $lxdebug->leave_sub();
2425 $lxdebug->enter_sub();
2427 $form->{saveasnew} = 1;
2428 $form->{closed} = 0;
2429 map { delete $form->{$_} } qw(printed emailed queued ordnumber quonumber);
2433 $lxdebug->leave_sub();
2436 sub purchase_order {
2437 $lxdebug->enter_sub();
2439 if ( $form->{type} eq 'sales_quotation'
2440 || $form->{type} eq 'request_quotation') {
2441 OE->close_order(\%myconfig, \%$form);
2444 $form->{cp_id} *= 1;
2446 $form->{title} = $locale->text('Add Purchase Order');
2447 $form->{vc} = "vendor";
2448 $form->{type} = "purchase_order";
2452 $lxdebug->leave_sub();
2456 $lxdebug->enter_sub();
2458 if ( $form->{type} eq 'sales_quotation'
2459 || $form->{type} eq 'request_quotation') {
2460 OE->close_order(\%myconfig, $form);
2463 $form->{cp_id} *= 1;
2465 $form->{title} = $locale->text('Add Sales Order');
2466 $form->{vc} = "customer";
2467 $form->{type} = "sales_order";
2471 $lxdebug->leave_sub();
2475 $lxdebug->enter_sub();
2477 $form->{transdate} = $form->current_date(\%myconfig);
2478 delete $form->{duedate};
2480 $form->{closed} = 0;
2483 map { delete $form->{$_} }
2484 qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal);
2486 for $i (1 .. $form->{rowcount}) {
2487 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2488 $form->{"${_}_${i}"})
2489 if ($form->{"${_}_${i}"}) }
2490 qw(ship qty sellprice listprice basefactor));
2498 for $i (1 .. $form->{rowcount} - 1) {
2499 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2500 qw(partnumber description unit);
2503 map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") }
2504 qw(creditlimit creditremaining);
2508 $lxdebug->leave_sub();
2512 $lxdebug->enter_sub();
2518 OE->get_warehouses(\%myconfig, \%$form);
2521 if (@{ $form->{all_warehouses} }) {
2522 $form->{selectwarehouse} = "<option>\n";
2524 map { $form->{selectwarehouse} .= "<option>$_->{description}--$_->{id}\n" }
2525 (@{ $form->{all_warehouses} });
2527 if ($form->{warehouse}) {
2528 $form->{selectwarehouse} = "<option>$form->{warehouse}";
2532 $form->{shippingdate} = $form->current_date(\%myconfig);
2533 $form->{"$form->{vc}"} =~ s/--.*//;
2538 foreach $key (keys %$form) {
2539 if ($key =~ /_1$/) {
2545 for $i (1 .. $form->{rowcount}) {
2547 # undo formatting from prepare_order
2549 $form->{"${_}_$i"} =
2550 $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
2552 $n = ($form->{"qty_$i"} -= $form->{"ship_$i"});
2554 && ($form->{"inventory_accno_$i"} || $form->{"assembly_$i"})) {
2555 $form->{"ship_$i"} = "";
2556 $form->{"serialnumber_$i"} = "";
2561 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2566 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2567 $form->{rowcount} = $count;
2569 &display_ship_receive;
2571 $lxdebug->leave_sub();
2574 sub display_ship_receive {
2575 $lxdebug->enter_sub();
2577 $vclabel = ucfirst $form->{vc};
2578 $vclabel = $locale->text($vclabel);
2580 $form->{rowcount}++;
2582 if ($form->{vc} eq 'customer') {
2583 $form->{title} = $locale->text('Ship Merchandise');
2584 $shipped = $locale->text('Shipping Date');
2586 $form->{title} = $locale->text('Receive Merchandise');
2587 $shipped = $locale->text('Date Received');
2590 # set option selected
2591 foreach $item (warehouse, employee) {
2592 $form->{"select$item"} =~ s/ selected//;
2593 $form->{"select$item"} =~
2594 s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
2599 <th align=right>| . $locale->text('Warehouse') . qq|</th>
2600 <td><select name=warehouse>$form->{selectwarehouse}</select></td>
2601 <input type=hidden name=selectwarehouse value="$form->{selectwarehouse}">
2603 | if $form->{selectwarehouse};
2607 <th align=right nowrap>| . $locale->text('Contact') . qq|</th>
2608 <td><select name=employee>$form->{selectemployee}</select></td>
2609 <input type=hidden name=selectemployee value="$form->{selectemployee}">
2618 <form method=post action=$form->{script}>
2620 <input type=hidden name=id value=$form->{id}>
2622 <input type=hidden name=display_form value=display_ship_receive>
2624 <input type=hidden name=type value=$form->{type}>
2625 <input type=hidden name=media value=$form->{media}>
2626 <input type=hidden name=format value=$form->{format}>
2628 <input type=hidden name=queued value="$form->{queued}">
2629 <input type=hidden name=printed value="$form->{printed}">
2630 <input type=hidden name=emailed value="$form->{emailed}">
2632 <input type=hidden name=vc value=$form->{vc}>
2636 <th class=listtop>$form->{title}</th>
2638 <tr height="5"></tr>
2641 <table width="100%">
2646 <th align=right>$vclabel</th>
2647 <td colspan=3>$form->{$form->{vc}}</td>
2648 <input type=hidden name=$form->{vc} value="$form->{$form->{vc}}">
2649 <input type=hidden name="$form->{vc}_id" value=$form->{"$form->{vc}_id"}>
2653 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
2655 <input name=shippingpoint size=35 value="$form->{shippingpoint}">
2658 <th align=right>| . $locale->text('Ship via') . qq|</th>
2660 <input name=shipvia size=35 value="$form->{shipvia}">
2669 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
2670 <td>$form->{ordnumber}</td>
2671 <input type=hidden name=ordnumber value="$form->{ordnumber}">
2674 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
2675 <td>$form->{transdate}</td>
2676 <input type=hidden name=transdate value=$form->{transdate}>
2679 <th align=right nowrap>$shipped</th>
2680 <td><input name=shippingdate size=11 value=$form->{shippingdate}></td>
2689 <!-- shipto are in hidden variables -->
2691 <input type=hidden name=shiptoname value="$form->{shiptoname}">
2692 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
2693 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
2694 <input type=hidden name=shiptocity value="$form->{shiptocity}">
2695 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
2696 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
2697 <input type=hidden name=shiptophone value="$form->{shiptophone}">
2698 <input type=hidden name=shiptofax value="$form->{shiptofax}">
2699 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
2700 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
2701 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
2703 <!-- email variables -->
2704 <input type=hidden name=message value="$form->{message}">
2705 <input type=hidden name=email value="$form->{email}">
2706 <input type=hidden name=subject value="$form->{subject}">
2707 <input type=hidden name=cc value="$form->{cc}">
2708 <input type=hidden name=bcc value="$form->{bcc}">
2713 (partnumber, description, qty, ship, unit, bin, serialnumber);
2715 if ($form->{type} eq "ship_order") {
2716 $column_data{ship} =
2717 qq|<th class=listheading align=center width="auto">|
2718 . $locale->text('Ship')
2721 if ($form->{type} eq "receive_order") {
2722 $column_data{ship} =
2723 qq|<th class=listheading align=center width="auto">|
2724 . $locale->text('Recd')
2728 my $colspan = $#column_index + 1;
2730 $column_data{partnumber} =
2731 qq|<th class=listheading nowrap>| . $locale->text('Number') . qq|</th>|;
2732 $column_data{description} =
2733 qq|<th class=listheading nowrap>|
2734 . $locale->text('Description')
2737 qq|<th class=listheading nowrap>| . $locale->text('Qty') . qq|</th>|;
2738 $column_data{unit} =
2739 qq|<th class=listheading nowrap>| . $locale->text('Unit') . qq|</th>|;
2741 qq|<th class=listheading nowrap>| . $locale->text('Bin') . qq|</th>|;
2742 $column_data{serialnumber} =
2743 qq|<th class=listheading nowrap>|
2744 . $locale->text('Serial No.')
2751 <tr class=listheading>|;
2753 map { print "\n$column_data{$_}" } @column_index;
2759 for $i (1 .. $form->{rowcount} - 1) {
2762 $form->{"ship_$i"} = $form->parse_amount(\%myconfig, $form->{"ship_$i"});
2764 # convert " to "
2765 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2766 qw(partnumber description unit bin serialnumber);
2768 $description = $form->{"description_$i"};
2769 $description =~ s/\n/<br>/g;
2771 $column_data{partnumber} =
2772 qq|<td>$form->{"partnumber_$i"}<input type=hidden name="partnumber_$i" value="$form->{"partnumber_$i"}"></td>|;
2773 $column_data{description} =
2774 qq|<td>$description<input type=hidden name="description_$i" value="$form->{"description_$i"}"></td>|;
2776 qq|<td align=right>|
2777 . $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty)
2778 . qq|<input type=hidden name="qty_$i" value="$form->{"qty_$i"}"></td>|;
2779 $column_data{ship} =
2780 qq|<td align=right><input name="ship_$i" size=5 value=|
2781 . $form->format_amount(\%myconfig, $form->{"ship_$i"})
2783 $column_data{unit} =
2784 qq|<td>$form->{"unit_$i"}<input type=hidden name="unit_$i" value="$form->{"unit_$i"}"></td>|;
2786 qq|<td>$form->{"bin_$i"}<input type=hidden name="bin_$i" value="$form->{"bin_$i"}"></td>|;
2788 $column_data{serialnumber} =
2789 qq|<td><input name="serialnumber_$i" size=15 value="$form->{"serialnumber_$i"}"></td>|;
2794 map { print "\n$column_data{$_}" } @column_index;
2799 <input type=hidden name="orderitems_id_$i" value=$form->{"orderitems_id_$i"}>
2800 <input type=hidden name="id_$i" value=$form->{"id_$i"}>
2801 <input type=hidden name="assembly_$i" value="$form->{"assembly_$i"}">
2802 <input type=hidden name="partsgroup_$i" value="$form->{"partsgroup_$i"}">
2813 <td><hr size=3 noshade></td>
2819 $form->{copies} = 1;
2828 <input class=submit type=submit name=action value="|
2829 . $locale->text('Update') . qq|">
2830 <input class=submit type=submit name=action value="|
2831 . $locale->text('Print') . qq|">
2834 if ($form->{type} eq 'ship_order') {
2836 <input class=submit type=submit name=action value="|
2837 . $locale->text('Ship to') . qq|">
2838 <input class=submit type=submit name=action value="|
2839 . $locale->text('E-mail') . qq|">
2845 <input class=submit type=submit name=action value="|
2846 . $locale->text('Done') . qq|">
2849 if ($form->{menubar}) {
2850 require "$form->{path}/menu.pl";
2856 <input type=hidden name=rowcount value=$form->{rowcount}>
2858 <input name=callback type=hidden value="$callback">
2860 <input type=hidden name=path value=$form->{path}>
2861 <input type=hidden name=login value=$form->{login}>
2862 <input type=hidden name=password value=$form->{password}>
2870 $lxdebug->leave_sub();
2874 $lxdebug->enter_sub();
2876 if ($form->{type} eq 'ship_order') {
2877 $form->isblank("shippingdate", $locale->text('Shipping Date missing!'));
2879 $form->isblank("shippingdate", $locale->text('Date received missing!'));
2884 $total += $form->{"ship_$_"} =
2885 $form->parse_amount(\%myconfig, $form->{"ship_$_"})
2886 } (1 .. $form->{rowcount} - 1);
2888 $form->error($locale->text('Nothing entered!')) unless $total;
2890 $form->redirect($locale->text('Inventory saved!'))
2891 if OE->save_inventory(\%myconfig, \%$form);
2892 $form->error($locale->text('Could not save!'));
2894 $lxdebug->leave_sub();
2897 sub search_transfer {
2898 $lxdebug->enter_sub();
2900 OE->get_warehouses(\%myconfig, \%$form);
2903 if (@{ $form->{all_warehouses} }) {
2904 $form->{selectwarehouse} = "<option>\n";
2905 $form->{warehouse} = qq|$form->{warehouse}--$form->{warehouse_id}|;
2907 map { $form->{selectwarehouse} .= "<option>$_->{description}--$_->{id}\n" }
2908 (@{ $form->{all_warehouses} });
2910 $form->error($locale->text('Nothing to transfer!'));
2913 $form->{title} = $locale->text('Transfer Inventory');
2920 <form method=post action=$form->{script}>
2924 <th class=listtop>$form->{title}</th>
2926 <tr height="5"></tr>
2931 <th align=right nowrap>| . $locale->text('Transfer to') . qq|</th>
2932 <td><select name=warehouse>$form->{selectwarehouse}</select></td>
2935 <th align="right" nowrap="true">| . $locale->text('Part Number') . qq|</th>
2936 <td><input name=partnumber size=20></td>
2939 <th align="right" nowrap="true">| . $locale->text('Description') . qq|</th>
2940 <td><input name=description size=40></td>
2943 <th align=right nowrap>| . $locale->text('Group') . qq|</th>
2944 <td><input name=partsgroup size=20></td>
2950 <td><hr size=3 noshade></td>
2955 <input type=hidden name=sort value=partnumber>
2956 <input type=hidden name=nextsub value=list_transfer>
2958 <input type=hidden name=path value=$form->{path}>
2959 <input type=hidden name=login value=$form->{login}>
2960 <input type=hidden name=password value=$form->{password}>
2962 <input class=submit type=submit name=action value="|
2963 . $locale->text('Continue') . qq|">
2970 $lxdebug->leave_sub();
2974 $lxdebug->enter_sub();
2976 OE->get_inventory(\%myconfig, \%$form);
2978 $partnumber = $form->escape($form->{partnumber});
2979 $warehouse = $form->escape($form->{warehouse});
2980 $description = $form->escape($form->{description});
2981 $partsgroup = $form->escape($form->{partsgroup});
2985 "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&password=$form->{password}";
2987 # construct callback
2988 $partnumber = $form->escape($form->{partnumber}, 1);
2989 $warehouse = $form->escape($form->{warehouse}, 1);
2990 $description = $form->escape($form->{description}, 1);
2991 $partsgroup = $form->escape($form->{partsgroup}, 1);
2994 "$form->{script}?path=$form->{path}&action=list_transfer&partnumber=$partnumber&warehouse=$warehouse&description=$description&partsgroup=$partsgroup&login=$form->{login}&password=$form->{password}";
2997 $form->sort_columns(
2998 qw(partnumber description partsgroup make model warehouse qty transfer));
3000 $column_header{partnumber} =
3001 qq|<th><a class=listheading href=$href&sort=partnumber>|
3002 . $locale->text('Part Number')
3004 $column_header{description} =
3005 qq|<th><a class=listheading href=$href&sort=description>|
3006 . $locale->text('Description')
3008 $column_header{partsgroup} =
3009 qq|<th><a class=listheading href=$href&sort=partsgroup>|
3010 . $locale->text('Group')
3012 $column_header{warehouse} =
3013 qq|<th><a class=listheading href=$href&sort=warehouse>|
3014 . $locale->text('From')
3016 $column_header{qty} =
3017 qq|<th><a class=listheading>| . $locale->text('Qty') . qq|</a></th>|;
3018 $column_header{transfer} =
3019 qq|<th><a class=listheading>| . $locale->text('Transfer') . qq|</a></th>|;
3021 $option = $locale->text('Transfer to');
3023 ($warehouse, $warehouse_id) = split /--/, $form->{warehouse};
3025 if ($form->{warehouse}) {
3026 $option .= " : $warehouse";
3028 if ($form->{partnumber}) {
3029 $option .= "\n<br>" if ($option);
3030 $option .= $locale->text('Part Number') . " : $form->{partnumber}";
3032 if ($form->{description}) {
3033 $option .= "\n<br>" if ($option);
3034 $option .= $locale->text('Description') . " : $form->{description}";
3036 if ($form->{partsgroup}) {
3037 $option .= "\n<br>" if ($option);
3038 $option .= $locale->text('Group') . " : $form->{partsgroup}";
3041 $form->{title} = $locale->text('Transfer Inventory');
3048 <form method=post action=$form->{script}>
3050 <input type=hidden name=warehouse_id value=$warehouse_id>
3054 <th class=listtop>$form->{title}</th>
3056 <tr height="5"></tr>
3063 <tr class=listheading>|;
3065 map { print "\n$column_header{$_}" } @column_index;
3071 if (@{ $form->{all_inventory} }) {
3072 $sameitem = $form->{all_inventory}->[0]->{ $form->{sort} };
3076 foreach $ref (@{ $form->{all_inventory} }) {
3080 $column_data{partnumber} =
3081 qq|<td><input type=hidden name="id_$i" value=$ref->{id}>$ref->{partnumber}</td>|;
3082 $column_data{description} = "<td>$ref->{description} </td>";
3083 $column_data{partsgroup} = "<td>$ref->{partsgroup} </td>";
3084 $column_data{warehouse} =
3085 qq|<td><input type=hidden name="warehouse_id_$i" value=$ref->{warehouse_id}>$ref->{warehouse} </td>|;
3087 qq|<td><input type=hidden name="qty_$i" value=$ref->{qty}>|
3088 . $form->format_amount(\%myconfig, $ref->{qty}, $dec_qty)
3090 $column_data{transfer} = qq|<td><input name="transfer_$i" size=4></td>|;
3095 <tr class=listrow$j>";
3097 map { print "\n$column_data{$_}" } @column_index;
3111 <td><hr size=3 noshade></td>
3117 <input name=callback type=hidden value="$callback">
3119 <input type=hidden name=rowcount value=$i>
3121 <input type=hidden name=path value=$form->{path}>
3122 <input type=hidden name=login value=$form->{login}>
3123 <input type=hidden name=password value=$form->{password}>
3125 <input class=submit type=submit name=action value="|
3126 . $locale->text('Transfer') . qq|">|;
3128 if ($form->{menubar}) {
3129 require "$form->{path}/menu.pl";
3140 $lxdebug->leave_sub();
3144 $lxdebug->enter_sub();
3146 $form->redirect($locale->text('Inventory transferred!'))
3147 if OE->transfer(\%myconfig, \%$form);
3148 $form->error($locale->text('Could not transfer Inventory!'));
3150 $lxdebug->leave_sub();