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();
113 # show history button
114 $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
115 #/show hhistory button
117 $form->{simple_save} = 0;
119 set_headings("edit");
121 # editing without stuff to edit? try adding it first
122 if ($form->{rowcount}) {
123 map { $id++ if $form->{"id_$_"} } (1 .. $form->{rowcount});
127 undef $form->{rowcount};
138 if ($form->{print_and_save}) {
139 $form->{action} = "print";
140 $form->{resubmit} = 1;
141 $language_id = $form->{language_id};
142 $printer_id = $form->{printer_id};
145 set_headings("edit");
149 if ($form->{print_and_save}) {
150 $form->{language_id} = $language_id;
151 $form->{printer_id} = $printer_id;
155 $lxdebug->leave_sub();
159 $lxdebug->enter_sub();
161 # get customer/vendor
162 $form->all_vc(\%myconfig, $form->{vc},
163 ($form->{vc} eq 'customer') ? "AR" : "AP");
165 # retrieve order/quotation
166 $form->{webdav} = $webdav;
168 $form->{jscalendar} = $jscalendar;
170 OE->retrieve(\%myconfig, \%$form);
172 if ($form->{payment_id}) {
173 $payment_id = $form->{payment_id};
175 if ($form->{language_id}) {
176 $language_id = $form->{language_id};
178 if ($form->{taxzone_id}) {
179 $taxzone_id = $form->{taxzone_id};
183 # if multiple rowcounts (== collective order) then check if the
184 # there were more than one customer (in that case OE::retrieve removes
185 # the content from the field)
186 if ( $form->{rowcount}
187 && $form->{type} eq 'sales_order'
188 && defined $form->{customer}
189 && $form->{customer} eq '') {
191 # $main::lxdebug->message(0, "Detected Edit order with concurrent customers");
194 'Collective Orders only work for orders from one customer!')
198 $taxincluded = $form->{taxincluded};
199 $form->{shipto} = 1 if $form->{id};
201 if ($form->{"all_$form->{vc}"}) {
202 unless ($form->{"$form->{vc}_id"}) {
203 $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
207 $cp_id = $form->{cp_id};
208 $intnotes = $form->{intnotes};
210 # get customer / vendor
211 if ($form->{type} =~ /(purchase_order|request_quotation)/) {
212 IR->get_vendor(\%myconfig, \%$form);
214 #quote all_vendor Bug 133
215 foreach $ref (@{ $form->{all_vendor} }) {
216 $ref->{name} = $form->quote($ref->{name});
220 if ($form->{type} =~ /sales_(order|quotation)/) {
221 IS->get_customer(\%myconfig, \%$form);
223 #quote all_vendor Bug 133
224 foreach $ref (@{ $form->{all_customer} }) {
225 $ref->{name} = $form->quote($ref->{name});
229 $form->{cp_id} = $cp_id;
231 $form->{payment_id} = $payment_id;
234 $form->{language_id} = $language_id;
237 $form->{taxzone_id} = $taxzone_id;
239 $form->{intnotes} = $intnotes;
240 ($form->{ $form->{vc} }) = split /--/, $form->{ $form->{vc} };
241 $form->{"old$form->{vc}"} =
242 qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
244 # build the popup menus
245 if (@{ $form->{"all_$form->{vc}"} }) {
246 $form->{ $form->{vc} } =
247 qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
248 map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" }
249 (@{ $form->{"all_$form->{vc}"} });
253 @curr = split(/:/, $form->{currencies});
255 $form->{defaultcurrency} = $curr[0];
256 $form->{currency} = $form->{defaultcurrency} unless $form->{currency};
258 map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
260 $form->{taxincluded} = $taxincluded if ($form->{id});
263 if (@{ $form->{all_departments} }) {
264 $form->{selectdepartment} = "<option>\n";
265 $form->{department} = "$form->{department}--$form->{department_id}";
268 $form->{selectdepartment} .=
269 "<option>$_->{description}--$_->{id}\n"
270 } (@{ $form->{all_departments} });
273 $form->{employee} = "$form->{employee}--$form->{employee_id}";
276 if (@{ $form->{all_employees} }) {
277 $form->{selectemployee} = "";
278 map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
279 (@{ $form->{all_employees} });
283 $form->{forex} = $form->{exchangerate};
285 $lxdebug->leave_sub();
289 $lxdebug->enter_sub();
290 $form->{formname} = $form->{type} unless $form->{formname};
293 foreach $ref (@{ $form->{form_details} }) {
294 $form->{rowcount} = ++$i;
296 map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
298 for my $i (1 .. $form->{rowcount}) {
300 $form->{"discount_$i"} =
301 $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
303 $form->{"discount_$i"} =
304 $form->format_amount(\%myconfig, $form->{"discount_$i"});
306 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
308 $decimalplaces = ($dec > 2) ? $dec : 2;
310 # copy reqdate from deliverydate for invoice -> order conversion
311 $form->{"reqdate_$i"} = $form->{"deliverydate_$i"}
312 unless $form->{"reqdate_$i"};
314 $form->{"sellprice_$i"} =
315 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
318 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
319 $dec_qty = length $dec_qty;
321 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
323 map { $form->{"${_}_$i"} =~ s/\"/"/g }
324 qw(partnumber description unit);
327 $lxdebug->leave_sub();
331 $lxdebug->enter_sub();
333 my $checkedclosed = $form->{"closed"} ? "checked" : "";
334 my $checkeddelivered = $form->{"delivered"} ? "checked" : "";
336 map { $form->{$_} =~ s/\"/"/g }
337 qw(ordnumber quonumber shippingpoint shipvia notes intnotes shiptoname
338 shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact
339 shiptophone shiptofax shiptodepartment_1 shiptodepartment_2);
341 # use JavaScript Calendar or not
342 $form->{jsscript} = $form->{jscalendar};
345 $payment = qq|<option value=""></option>|;
346 foreach $item (@{ $form->{payment_terms} }) {
347 if ($form->{payment_id} eq $item->{id}) {
348 $payment .= qq|<option value="$item->{id}" selected>$item->{description}</option>|;
350 $payment .= qq|<option value="$item->{id}">$item->{description}</option>|;
353 if ($form->{jsscript}) {
355 # with JavaScript Calendar
357 <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>
358 <td><input type=button name=transdate id="trigger1" value=|
359 . $locale->text('button') . qq|></td>
362 <td width="13"><input name=reqdate id=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td>
363 <td width="4"><input type=button name=reqdate name=reqdate id="trigger2" value=|
364 . $locale->text('button') . qq|></td>
369 Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
370 "reqdate", "BL", "trigger2");
374 # without JavaScript Calendar
376 <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>|;
378 <td width="13"><input name=reqdate id=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td>|;
384 <td colspan=2 align=center>
385 <input name="closed" id="closed" type="checkbox" class="checkbox" value="1" $checkedclosed>
386 <label for="closed">| . $locale->text('Closed') . qq|</label>
389 if (($form->{"type"} eq "sales_order") ||
390 ($form->{"type"} eq "purchase_order")) {
392 <input name="delivered" id="delivered" type="checkbox" class="checkbox" value="1" $checkeddelivered>
393 <label for="delivered">| . $locale->text('Delivered') . qq|</label>
403 # set option selected
404 foreach $item ($form->{vc}, currency, department, employee) {
405 $form->{"select$item"} =~ s/ selected//;
406 $form->{"select$item"} =~
407 s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
410 #quote select[customer|vendor] Bug 133
411 $form->{"select$form->{vc}"} = $form->quote($form->{"select$form->{vc}"});
413 my @old_project_ids = ($form->{"globalproject_id"});
414 map({ push(@old_project_ids, $form->{"project_id_$_"})
415 if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
417 $form->get_lists("contacts" => "ALL_CONTACTS",
418 "shipto" => "ALL_SHIPTO",
419 "projects" => { "key" => "ALL_PROJECTS",
421 "old_id" => \@old_project_ids });
423 my (%labels, @values);
424 foreach my $item (@{ $form->{"ALL_CONTACTS"} }) {
425 push(@values, $item->{"cp_id"});
426 $labels{$item->{"cp_id"}} = $item->{"cp_name"} .
427 ($item->{"cp_abteilung"} ? " ($item->{cp_abteilung})" : "");
430 NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values,
431 '-labels' => \%labels, '-default' => $form->{"cp_id"}));
435 foreach my $item (@{ $form->{"ALL_SHIPTO"} }) {
436 push(@values, $item->{"shipto_id"});
437 $labels{$item->{"shipto_id"}} =
438 $item->{"shiptoname"} . " " . $item->{"shiptodepartment_1"};
442 <th align=right>| . $locale->text('Shipping Address') . qq|</th>
444 NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values,
445 '-labels' => \%labels, '-default' => $form->{"shipto_id"}))
450 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
451 push(@values, $item->{"id"});
452 $labels{$item->{"id"}} = $item->{"projectnumber"};
454 my $globalprojectnumber =
455 NTI($cgi->popup_menu('-name' => 'globalproject_id', '-values' => \@values,
456 '-labels' => \%labels,
457 '-default' => $form->{"globalproject_id"}));
459 $form->{exchangerate} =
460 $form->format_amount(\%myconfig, $form->{exchangerate});
462 if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
468 $form->{creditlimit} =
469 $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
470 $form->{creditremaining} =
471 $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
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);
498 if ($form->{business}) {
501 <th align=right>| . $locale->text('Business') . qq|</th>
502 <td>$form->{business}</td>
503 <th align=right>| . $locale->text('Trade Discount') . qq|</th>
505 . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
511 if ($form->{max_dunning_level}) {
517 <th align=right>| . $locale->text('Max. Dunning Level') . qq|:</th>
518 <td><b>$form->{max_dunning_level}</b></td>
519 <th align=right>| . $locale->text('Dunning Amount') . qq|:</th>
521 . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
530 if (@{ $form->{TAXZONE} }) {
531 $form->{selecttaxzone} = "";
532 foreach $item (@{ $form->{TAXZONE} }) {
533 if ($item->{id} == $form->{taxzone_id}) {
534 $form->{selecttaxzone} .=
535 "<option value=$item->{id} selected>" . H($item->{description}) .
538 $form->{selecttaxzone} .=
539 "<option value=$item->{id}>" . H($item->{description}) . "</option>";
544 $form->{selecttaxzone} =~ s/ selected//g;
545 if ($form->{taxzone_id} ne "") {
546 $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}>/value=$form->{taxzone_id} selected>/;
552 <th align=right>| . $locale->text('Steuersatz') . qq|</th>
553 <td><select name=taxzone_id>$form->{selecttaxzone}</select></td>
554 <input type=hidden name=selecttaxzone value="$form->{selecttaxzone}">
558 if ($form->{type} !~ /_quotation$/) {
561 <th width=70% align=right nowrap>| . $locale->text('Order Number') . qq|</th>
562 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
565 <th width=70% align=right nowrap>|
566 . $locale->text('Quotation Number') . qq|</th>
567 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
570 <th width=70% align=right nowrap>|
571 . $locale->text('Customer Order Number') . qq|</th>
572 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
575 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
580 <th align=right nowrap=true>| . $locale->text('Required by') . qq|</th>
585 $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
587 $creditremaining = qq|
593 <th nowrap>| . $locale->text('Credit Limit') . qq|</th>
594 <td>$form->{creditlimit}</td>
596 <th nowrap>| . $locale->text('Remaining') . qq|</th>
597 <td class="plus$n" nowrap>$form->{creditremaining}</td>
606 ($form->{type} eq 'sales_quotation')
607 ? $locale->text('Valid until')
608 : $locale->text('Required by');
609 if ($form->{type} eq 'sales_quotation') {
612 <th width=70% align=right nowrap>|
613 . $locale->text('Quotation Number') . qq|</th>
614 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
615 <input type=hidden name=ordnumber value="$form->{ordnumber}">
621 <th width=70% align=right nowrap>| . $locale->text('RFQ Number') . qq|</th>
622 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
623 <input type=hidden name=ordnumber value="$form->{ordnumber}">
631 <th align=right nowrap>| . $locale->text('Quotation Date') . qq|</th>
635 <th align=right nowrap=true>$reqlabel</th>
639 $creditremaining = qq| <tr>
646 ($form->{"select$form->{vc}"})
647 ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}</select>\n<input type=hidden name="select$form->{vc}" value="$form->{"select$form->{vc}"}">|
648 : qq|<input name=$form->{vc} value="$form->{$form->{vc}}" size=35>|;
652 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
653 <td colspan=3><select name=department>$form->{selectdepartment}</select>
654 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
657 | if $form->{selectdepartment};
660 <input type=hidden name=employee value="$form->{employee}">
663 if ($form->{type} eq 'sales_order') {
664 if ($form->{selectemployee}) {
666 <input type=hidden name=customer_klass value=$form->{customer_klass}>
668 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
669 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
670 <input type=hidden name=selectemployee value="$form->{selectemployee}">
677 <input type=hidden name=customer_klass value=$form->{customer_klass}>
679 <th align=right nowrap>| . $locale->text('Employee') . qq|</th>
680 <td colspan=2><select name=employee>$form->{selectemployee}</select></td>
681 <input type=hidden name=selectemployee value="$form->{selectemployee}">
686 if ($form->{resubmit} && ($form->{format} eq "html")) {
688 qq|window.open('about:blank','Beleg'); document.oe.target = 'Beleg';document.oe.submit()|;
689 } elsif ($form->{resubmit}) {
690 $onload = qq|document.oe.submit()|;
695 $credittext = $locale->text('Credit Limit exceeded!!!');
696 if ($creditwarning) {
697 $onload = qq|alert('$credittext')|;
700 $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
701 # show history button js
702 $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
703 #/show history button js
707 <body onLoad="$onload">
709 <form method=post name=oe action=$form->{script}>
710 <script type="text/javascript" src="js/common.js"></script>
711 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
712 <script type="text/javascript" src="js/vendor_selection.js"></script>
713 <script type="text/javascript" src="js/calculate_qty.js"></script>
715 <input type=hidden name=id value=$form->{id}>
716 <input type=hidden name=action value=$form->{action}>
718 <input type=hidden name=type value=$form->{type}>
719 <input type=hidden name=formname value=$form->{formname}>
720 <input type=hidden name=media value=$form->{media}>
721 <input type=hidden name=format value=$form->{format}>
722 <input type=hidden name=proforma value=$form->{proforma}>
724 <input type=hidden name=queued value="$form->{queued}">
725 <input type=hidden name=printed value="$form->{printed}">
726 <input type=hidden name=emailed value="$form->{emailed}">
728 <input type=hidden name=vc value=$form->{vc}>
730 <input type=hidden name=title value="$form->{title}">
732 <input type=hidden name=discount value=$form->{discount}>
733 <input type=hidden name=creditlimit value=$form->{creditlimit}>
734 <input type=hidden name=creditremaining value=$form->{creditremaining}>
736 <input type=hidden name=tradediscount value=$form->{tradediscount}>
737 <input type=hidden name=business value=$form->{business}>
738 <input type=hidden name=webdav value=$webdav>
742 <th class=listtop>$form->{title}</th>
752 <th align=right>$vclabel</th>
753 <td colspan=3>$vc</td>
754 <input type=hidden name=$form->{vc}_id value=$form->{"$form->{vc}_id"}>
755 <input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}">
756 <th align=richt nowrap>|
757 . $locale->text('Contact Person') . qq|</th>
758 <td colspan=3>$contact</td>
766 <th align=right>| . $locale->text('Currency') . qq|</th>
767 <td><select name=currency>$form->{selectcurrency}</select></td>
768 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
769 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
773 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
774 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
777 <th align=right>| . $locale->text('Ship via') . qq|</th>
778 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
785 # <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
787 # <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
788 # <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
792 # <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
794 # <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
795 # <input size=45 id=vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
808 <th width="70%" align="right" nowrap>| . $locale->text('Project Number') . qq|</th>
809 <td>$globalprojectnumber</td>
820 <!-- shipto are in hidden variables -->
822 <input type=hidden name=shiptoname value="$form->{shiptoname}">
823 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
824 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
825 <input type=hidden name=shiptocity value="$form->{shiptocity}">
826 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
827 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
828 <input type=hidden name=shiptophone value="$form->{shiptophone}">
829 <input type=hidden name=shiptofax value="$form->{shiptofax}">
830 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
831 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
832 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
834 <!-- email variables -->
835 <input type=hidden name=message value="$form->{message}">
836 <input type=hidden name=email value="$form->{email}">
837 <input type=hidden name=subject value="$form->{subject}">
838 <input type=hidden name=cc value="$form->{cc}">
839 <input type=hidden name=bcc value="$form->{bcc}">
841 <input type=hidden name=taxpart value="$form->{taxpart}">
842 <input type=hidden name=taxservice value="$form->{taxservice}">
844 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
847 foreach $item (split / /, $form->{taxaccounts}) {
849 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
850 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
853 $lxdebug->leave_sub();
857 $lxdebug->enter_sub();
859 $form->{invtotal} = $form->{invsubtotal};
861 if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
864 if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
867 $rows = ($rows > $introws) ? $rows : $introws;
869 qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
871 qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
873 $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
876 if ($form->{taxaccounts}) {
878 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
879 . $locale->text('Tax Included') . qq|</b><br><br>
883 if (!$form->{taxincluded}) {
885 foreach $item (split / /, $form->{taxaccounts}) {
886 if ($form->{"${item}_base"}) {
887 $form->{invtotal} += $form->{"${item}_total"} =
889 $form->{"${item}_base"} * $form->{"${item}_rate"},
891 $form->{"${item}_total"} =
892 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
896 <th align=right>$form->{"${item}_description"} |
897 . $form->{"${item}_rate"} * 100 .qq|%</th>
898 <td align=right>$form->{"${item}_total"}</td>
904 $form->{invsubtotal} =
905 $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
909 <th align=right>| . $locale->text('Subtotal') . qq|</th>
910 <td align=right>$form->{invsubtotal}</td>
916 if ($form->{taxincluded}) {
917 foreach $item (split / /, $form->{taxaccounts}) {
918 if ($form->{"${item}_base"}) {
919 $form->{"${item}_total"} =
921 ($form->{"${item}_base"} * $form->{"${item}_rate"} /
922 (1 + $form->{"${item}_rate"})
925 $form->{"${item}_netto"} =
927 ($form->{"${item}_base"} - $form->{"${item}_total"}),
929 $form->{"${item}_total"} =
930 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
931 $form->{"${item}_netto"} =
932 $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
936 <th align=right>Enthaltene $form->{"${item}_description"} |
937 . $form->{"${item}_rate"} * 100 .qq|%</th>
938 <td align=right>$form->{"${item}_total"}</td>
941 <th align=right>Nettobetrag</th>
942 <td align=right>$form->{"${item}_netto"}</td>
950 $form->{oldinvtotal} = $form->{invtotal};
952 $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
962 <th align=left>| . $locale->text('Notes') . qq|</th>
963 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
969 <th align=right>| . $locale->text('Payment Terms') . qq|</th>
970 <td><select name=payment_id tabindex=24>$payment
974 <td align=right width=100%>
980 <th align=right>| . $locale->text('Total') . qq|</th>
981 <td align=right>$form->{invtotal}</td>
989 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
990 <input type=hidden name=oldtotalpaid value=$totalpaid>
992 <td><hr size=3 noshade></td>
1000 <th class=listtop align=left>Dokumente im Webdav-Repository</th>
1003 <td align=left width=30%><b>Dateiname</b></td>
1004 <td align=left width=70%><b>Webdavlink</b></td>
1006 foreach $file (keys %{ $form->{WEBDAV} }) {
1009 <td align=left>$file</td>
1010 <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
1018 <td><hr size=3 noshade></td>
1025 <input type=hidden name=jscalendar value=$form->{jscalendar}>
1038 | . $locale->text("Edit the $form->{type}") . qq|<br>
1039 <input class=submit type=submit name=action id=update_button value="|
1040 . $locale->text('Update') . qq|">
1041 <input class=submit type=submit name=action value="|
1042 . $locale->text('Ship to') . qq|">
1043 <input class=submit type=submit name=action value="|
1044 . $locale->text('Print') . qq|">
1045 <input class=submit type=submit name=action value="|
1046 . $locale->text('E-mail') . qq|">
1047 <input class=submit type=submit name=action value="|
1048 . $locale->text('Save') . qq|">
1049 <input class=submit type=submit name=action value="|
1050 . $locale->text('Save and Close') . qq|">
1053 if (($form->{id})) {
1055 <input type="button" class="submit" onclick="set_history_window(|
1057 . qq|);" name="history" id="history" value="|
1058 . $locale->text('history')
1061 <br>| . $locale->text("Workflow $form->{type}") . qq|<br>
1062 <input class=submit type=submit name=action value="|
1063 . $locale->text('Save as new') . qq|">
1064 <input class=submit type=submit name=action value="|
1065 . $locale->text('Delete') . qq|">|;
1066 if (($form->{type} =~ /sales_quotation$/)) {
1068 <input class=submit type=submit name=action value="|
1069 . $locale->text('Sales Order') . qq|">|;
1071 if ($form->{type} =~ /request_quotation$/) {
1073 <input class=submit type=submit name=action value="|
1074 . $locale->text('Purchase Order') . qq|">|;
1078 <input class=submit type=submit name=action value="|
1079 . $locale->text('Invoice') . qq|">
1083 if ($form->{type} =~ /sales_order$/) {
1085 <br>$form->{heading} als neue Vorlage verwenden für<br>
1086 <input class=submit type=submit name=action value="|
1087 . $locale->text('Purchase Order') . qq|">
1088 <input class=submit type=submit name=action value="|
1089 . $locale->text('Quotation') . qq|">
1092 } elsif ($form->{type} =~ /purchase_order$/) {
1094 <br>$form->{heading} als neue Vorlage verwenden für<br>
1095 <input class=submit type=submit name=action value="|
1096 . $locale->text('Sales Order') . qq|">
1097 <input class=submit type=submit name=action value="|
1098 . $locale->text('Request for Quotation') . qq|">
1103 <br>$form->{heading} als neue Vorlage verwenden für<br>
1104 <input class=submit type=submit name=action value="|
1105 . $locale->text('Order') . qq|">
1108 } elsif ($form->{type} =~ /sales_order$/ && $form->{rowcount} && !$form->{proforma}) {
1110 <br>Workflow $form->{heading}<br>
1111 <input class=submit type=submit name=action value="|
1112 . $locale->text('Save as new') . qq|">
1113 <input class=submit type=submit name=action value="|
1114 . $locale->text('Invoice') . qq|">
1118 $form->hide_form("saved_xyznumber");
1122 <input type=hidden name=rowcount value=$form->{rowcount}>
1124 <input name=callback type=hidden value="$form->{callback}">
1126 <input type=hidden name=path value=$form->{path}>
1127 <input type=hidden name=login value=$form->{login}>
1128 <input type=hidden name=password value=$form->{password}>
1135 $lxdebug->leave_sub();
1139 $lxdebug->enter_sub();
1141 set_headings($form->{"id"} ? "edit" : "add");
1143 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1144 qw(exchangerate creditlimit creditremaining);
1145 $form->{update} = 1;
1147 &check_name($form->{vc});
1150 $buysell = 'sell' if ($form->{vc} eq 'vendor');
1151 $form->{exchangerate} = $exchangerate
1155 $form->check_exchangerate(
1156 \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1160 $i = $form->{rowcount};
1162 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1164 if ( ($form->{"partnumber_$i"} eq "")
1165 && ($form->{"description_$i"} eq "")
1166 && ($form->{"partsgroup_$i"} eq "")) {
1168 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1173 if ( $form->{type} eq 'purchase_order'
1174 || $form->{type} eq 'request_quotation') {
1175 IR->retrieve_item(\%myconfig, \%$form);
1177 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
1178 IS->retrieve_item(\%myconfig, \%$form);
1181 my $rows = scalar @{ $form->{item_list} };
1183 $form->{"discount_$i"} =
1184 $form->format_amount(\%myconfig, $form->{discount} * 100);
1187 $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
1196 $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1197 if ($form->{"not_discountable_$i"}) {
1198 $form->{"discount_$i"} = 0;
1200 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
1201 qw(partnumber description unit);
1202 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1203 keys %{ $form->{item_list}[0] };
1204 if ($form->{"part_payment_id_$i"} ne "") {
1205 $form->{payment_id} = $form->{"part_payment_id_$i"};
1208 $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1210 ($dec) = ($s =~ /\.(\d+)/);
1212 $decimalplaces = ($dec > 2) ? $dec : 2;
1215 $form->{"sellprice_$i"} = $sellprice;
1218 $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1220 # if there is an exchange rate adjust sellprice
1221 $form->{"sellprice_$i"} /= $exchangerate;
1225 $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1226 (1 - $form->{"discount_$i"} / 100);
1227 map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1228 map { $form->{"${_}_base"} += $amount }
1229 (split / /, $form->{"taxaccounts_$i"});
1230 map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1231 split / /, $form->{taxaccounts}
1232 if !$form->{taxincluded};
1234 $form->{creditremaining} -= $amount;
1236 $form->{"sellprice_$i"} =
1237 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
1240 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
1242 # get pricegroups for parts
1243 IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1245 # build up html code for prices_$i
1246 &set_pricegroup($i);
1253 # ok, so this is a new part
1254 # ask if it is a part or service item
1256 if ( $form->{"partsgroup_$i"}
1257 && ($form->{"partsnumber_$i"} eq "")
1258 && ($form->{"description_$i"} eq "")) {
1259 $form->{rowcount}--;
1260 $form->{"discount_$i"} = "";
1264 $form->{"id_$i"} = 0;
1265 $form->{"unit_$i"} = $locale->text('ea');
1273 $lxdebug->leave_sub();
1277 $lxdebug->enter_sub();
1279 if ($form->{type} eq 'purchase_order') {
1280 $form->{title} = $locale->text('Purchase Orders');
1281 $form->{vc} = 'vendor';
1282 $ordlabel = $locale->text('Order Number');
1283 $ordnumber = 'ordnumber';
1284 $employee = $locale->text('Employee');
1287 if ($form->{type} eq 'request_quotation') {
1288 $form->{title} = $locale->text('Request for Quotations');
1289 $form->{vc} = 'vendor';
1290 $ordlabel = $locale->text('RFQ Number');
1291 $ordnumber = 'quonumber';
1292 $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');
1303 if ($form->{type} eq 'sales_quotation') {
1304 $form->{title} = $locale->text('Quotations');
1305 $form->{vc} = 'customer';
1306 $ordlabel = $locale->text('Quotation Number');
1307 $ordnumber = 'quonumber';
1308 $employee = $locale->text('Employee');
1311 # setup vendor / customer selection
1312 $form->all_vc(\%myconfig, $form->{vc},
1313 ($form->{vc} eq 'customer') ? "AR" : "AP");
1315 map { $vc .= "<option>$_->{name}--$_->{id}\n" }
1316 @{ $form->{"all_$form->{vc}"} };
1318 $vclabel = ucfirst $form->{vc};
1319 $vclabel = $locale->text($vclabel);
1321 # $locale->text('Vendor')
1322 # $locale->text('Customer')
1326 ? qq|<select name=$form->{vc}><option>\n$vc</select>|
1327 : qq|<input name=$form->{vc} size=35>|;
1330 if (@{ $form->{all_departments} }) {
1331 $form->{selectdepartment} = "<option>\n";
1334 $form->{selectdepartment} .=
1335 "<option>$_->{description}--$_->{id}\n"
1336 } (@{ $form->{all_departments} });
1341 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1342 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1344 | if $form->{selectdepartment};
1347 if (($form->{"type"} eq "sales_order") ||
1348 ($form->{"type"} eq "purchase_order")) {
1351 <td><input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
1352 <label for="notdelivered">|. $locale->text('Not delivered') . qq|</label></td>
1353 <td><input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
1354 <label for="delivered">| . $locale->text('Delivered') . qq|</label></td>
1359 # use JavaScript Calendar or not
1360 $form->{jsscript} = $jscalendar;
1362 if ($form->{jsscript}) {
1364 # with JavaScript Calendar
1366 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}">
1367 <input type=button name=transdatefrom id="trigger3" value=|
1368 . $locale->text('button') . qq|></td>
1371 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}">
1372 <input type=button name=transdateto name=transdateto id="trigger4" value=|
1373 . $locale->text('button') . qq|></td>
1378 Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger3",
1379 "transdateto", "BL", "trigger4");
1382 # without JavaScript Calendar
1384 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
1386 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}"></td>|;
1389 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
1394 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
1395 push(@values, $item->{"id"});
1396 $labels{$item->{"id"}} = $item->{"projectnumber"};
1399 NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
1400 '-labels' => \%labels));
1407 <form method=post action=$form->{script}>
1411 <th class=listtop>$form->{title}</th>
1413 <tr height="5"></tr>
1418 <th align=right>$vclabel</th>
1419 <td colspan=3>$vc</td>
1423 <th align=right>$ordlabel</th>
1424 <td colspan=3><input name="$ordnumber" size=20></td>
1427 <th align="right">| . $locale->text("Project Number") . qq|</th>
1428 <td colspan="3">$projectnumber</td>
1431 <th align=right>| . $locale->text('From') . qq|</th>
1433 <th align=right>| . $locale->text('Bis') . qq|</th>
1436 <input type=hidden name=sort value=transdate>
1438 <th align=right>| . $locale->text('Include in Report') . qq|</th>
1442 <td><input type="checkbox" name="open" value="1" id="open" checked>
1443 <label for="open">| . $locale->text("Open") . qq|</td>
1444 <td><input type="checkbox" name="closed" value="1" id="closed">
1445 <label for="closed">| . $locale->text("Closed") . qq|</td>
1449 <td><input name="l_id" class=checkbox type=checkbox value=Y>
1450 | . $locale->text('ID') . qq|</td>
1451 <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td>
1452 <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |
1453 . $locale->text('Date') . qq|</td>
1454 <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |
1455 . $locale->text('Required by') . qq|</td>
1458 <td><input name="l_name" class=checkbox type=checkbox value=Y checked> $vclabel</td>
1459 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1460 <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |
1461 . $locale->text('Ship via') . qq|</td>
1462 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1465 <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |
1466 . $locale->text('Amount') . qq|</td>
1467 <td><input name="l_tax" class=checkbox type=checkbox value=Y> |
1468 . $locale->text('Tax') . qq|</td>
1469 <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |
1470 . $locale->text('Total') . qq|</td>
1471 <td><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y> |
1472 . $locale->text('Project Number') . qq|</td>
1475 <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |
1476 . $locale->text('Subtotal') . qq|</td>
1484 <tr><td colspan=4><hr size=3 noshade></td></tr>
1490 <input type=hidden name=nextsub value=orders>
1491 <input type=hidden name=path value=$form->{path}>
1492 <input type=hidden name=login value=$form->{login}>
1493 <input type=hidden name=password value=$form->{password}>
1494 <input type=hidden name=vc value=$form->{vc}>
1495 <input type=hidden name=type value=$form->{type}>
1497 <input class=submit type=submit name=action value="|
1498 . $locale->text('Continue') . qq|">
1505 $lxdebug->leave_sub();
1509 $lxdebug->enter_sub();
1511 # split vendor / customer
1512 ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) =
1513 split(/--/, $form->{ $form->{vc} });
1515 OE->transactions(\%myconfig, \%$form);
1517 $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
1519 $number = $form->escape($form->{$ordnumber});
1520 $name = $form->escape($form->{ $form->{vc} });
1521 $department = $form->escape($form->{department});
1525 "$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}¬delivered=$form->{notdelivered}&delivered=$form->{delivered}&$ordnumber=$number&$form->{vc}=$name&department=$department";
1527 # construct callback
1528 $number = $form->escape($form->{$ordnumber}, 1);
1529 $name = $form->escape($form->{ $form->{vc} }, 1);
1530 $department = $form->escape($form->{department}, 1);
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}¬delivered=$form->{notdelivered}&delivered=$form->{delivered}&$ordnumber=$number&$form->{vc}=$name&department=$department";
1536 $form->sort_columns("transdate", "reqdate", "id", "$ordnumber",
1537 "name", "netamount", "tax", "amount",
1538 "curr", "employee", "shipvia", "globalprojectnumber",
1539 "open", "closed", "delivered");
1541 $form->{l_open} = $form->{l_closed} = "Y"
1542 if ($form->{open} && $form->{closed});
1544 $form->{"l_delivered"} = "Y"
1545 if ($form->{"delivered"} && $form->{"notdelivered"});
1547 foreach $item (@columns) {
1548 if ($form->{"l_$item"} eq "Y") {
1549 push @column_index, $item;
1551 # add column to href and callback
1552 $callback .= "&l_$item=Y";
1553 $href .= "&l_$item=Y";
1557 # only show checkboxes if gotten here via sales_order form.
1558 if ($form->{type} =~ /sales_order/) {
1559 unshift @column_index, "ids";
1562 if ($form->{l_subtotal} eq 'Y') {
1563 $callback .= "&l_subtotal=Y";
1564 $href .= "&l_subtotal=Y";
1567 if ($form->{vc} eq 'vendor') {
1568 if ($form->{type} eq 'purchase_order') {
1569 $form->{title} = $locale->text('Purchase Orders');
1571 $form->{title} = $locale->text('Request for Quotations');
1573 $name = $locale->text('Vendor');
1574 $employee = $locale->text('Employee');
1576 if ($form->{vc} eq 'customer') {
1577 if ($form->{type} eq 'sales_order') {
1578 $form->{title} = $locale->text('Sales Orders');
1579 $employee = $locale->text('Salesperson');
1581 $form->{title} = $locale->text('Quotations');
1582 $employee = $locale->text('Employee');
1584 $name = $locale->text('Customer');
1587 $column_header{id} =
1588 qq|<th><a class=listheading href=$href&sort=id>|
1589 . $locale->text('ID')
1591 $column_header{transdate} =
1592 qq|<th><a class=listheading href=$href&sort=transdate>|
1593 . $locale->text('Date')
1595 $column_header{reqdate} =
1596 qq|<th><a class=listheading href=$href&sort=reqdate>|
1597 . $locale->text('Required by')
1599 $column_header{ordnumber} =
1600 qq|<th><a class=listheading href=$href&sort=ordnumber>|
1601 . $locale->text('Order')
1603 $column_header{quonumber} =
1604 qq|<th><a class=listheading href=$href&sort=quonumber>|
1605 . ($form->{"type"} eq "request_quotation" ?
1606 $locale->text('RFQ') :
1607 $locale->text('Quotation'))
1609 $column_header{name} =
1610 qq|<th><a class=listheading href=$href&sort=name>$name</a></th>|;
1611 $column_header{netamount} =
1612 qq|<th class=listheading>| . $locale->text('Amount') . qq|</th>|;
1613 $column_header{tax} =
1614 qq|<th class=listheading>| . $locale->text('Tax') . qq|</th>|;
1615 $column_header{amount} =
1616 qq|<th class=listheading>| . $locale->text('Total') . qq|</th>|;
1617 $column_header{curr} =
1618 qq|<th class=listheading>| . $locale->text('Curr') . qq|</th>|;
1619 $column_header{shipvia} =
1620 qq|<th><a class=listheading href=$href&sort=shipvia>|
1621 . $locale->text('Ship via')
1623 $column_header{globalprojectnumber} =
1624 qq|<th class="listheading">| . $locale->text('Project Number') . qq|</th>|;
1625 $column_header{open} =
1626 qq|<th class=listheading>| . $locale->text('O') . qq|</th>|;
1627 $column_header{closed} =
1628 qq|<th class=listheading>| . $locale->text('C') . qq|</th>|;
1629 $column_header{"delivered"} =
1630 qq|<th class="listheading">| . $locale->text("Delivered") . qq|</th>|;
1632 $column_header{employee} =
1633 qq|<th><a class=listheading href=$href&sort=employee>$employee</a></th>|;
1635 $column_header{ids} = qq|<th></th>|;
1637 if ($form->{ $form->{vc} }) {
1638 $option = $locale->text(ucfirst $form->{vc});
1639 $option .= " : $form->{$form->{vc}}";
1641 if ($form->{department}) {
1642 $option .= "\n<br>" if ($option);
1643 ($department) = split /--/, $form->{department};
1644 $option .= $locale->text('Department') . " : $department";
1646 if ($form->{transdatefrom}) {
1648 . $locale->text('From') . " "
1649 . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1651 if ($form->{transdateto}) {
1653 . $locale->text('Bis') . " "
1654 . $locale->date(\%myconfig, $form->{transdateto}, 1);
1656 if ($form->{open}) {
1657 $option .= "\n<br>" if ($option);
1658 $option .= $locale->text('Open');
1660 if ($form->{closed}) {
1661 $option .= "\n<br>" if ($option);
1662 $option .= $locale->text('Closed');
1670 <form method="post" action="oe.pl">
1673 <th class=listtop>$form->{title}</th>
1675 <tr height="5"></tr>
1682 <tr class=listheading>|;
1684 map { print "\n$column_header{$_}" } @column_index;
1690 # add sort and escape callback
1691 $callback_escaped = $form->escape($callback . "&sort=$form->{sort}");
1693 if (@{ $form->{OE} }) {
1694 $sameitem = $form->{OE}->[0]->{ $form->{sort} };
1699 foreach $oe (@{ $form->{OE} }) {
1700 $form->{rowcount} = ++$j;
1702 if ($form->{l_subtotal} eq 'Y') {
1703 if ($sameitem ne $oe->{ $form->{sort} }) {
1705 $sameitem = $oe->{ $form->{sort} };
1709 map { $oe->{$_} *= $oe->{exchangerate} } (qw(netamount amount));
1711 $column_data{netamount} =
1713 . $form->format_amount(\%myconfig, $oe->{netamount}, 2, " ")
1715 $column_data{tax} = "<td align=right>"
1716 . $form->format_amount(\%myconfig, $oe->{amount} - $oe->{netamount},
1719 $column_data{amount} =
1721 . $form->format_amount(\%myconfig, $oe->{amount}, 2, " ") . "</td>";
1723 $totalnetamount += $oe->{netamount};
1724 $totalamount += $oe->{amount};
1726 $subtotalnetamount += $oe->{netamount};
1727 $subtotalamount += $oe->{amount};
1730 qq|<td><input name="id_$j" class=checkbox type=checkbox><input type="hidden" name="trans_id_$j" value="$oe->{id}"></td>|;
1731 $column_data{id} = "<td>$oe->{id}</td>";
1732 $column_data{transdate} = "<td>$oe->{transdate} </td>";
1733 $column_data{reqdate} = "<td>$oe->{reqdate} </td>";
1735 $column_data{$ordnumber} =
1736 "<td><a href=oe.pl?path=$form->{path}&action=$action&type=$form->{type}&id=$oe->{id}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}&callback=$callback_escaped>$oe->{$ordnumber}</a></td>";
1737 $column_data{name} = "<td>$oe->{name}</td>";
1739 $column_data{employee} = "<td>$oe->{employee} </td>";
1740 $column_data{shipvia} = "<td>$oe->{shipvia} </td>";
1741 $column_data{globalprojectnumber} = "<td>" . H($oe->{globalprojectnumber}) . "</td>";
1743 if ($oe->{closed}) {
1744 $column_data{closed} = "<td align=center>X</td>";
1745 $column_data{open} = "<td> </td>";
1747 $column_data{closed} = "<td> </td>";
1748 $column_data{open} = "<td align=center>X</td>";
1750 $column_data{"delivered"} = "<td>" .
1751 ($oe->{"delivered"} ? $locale->text("Yes") : $locale->text("No")) .
1757 <tr class=listrow$i>";
1759 map { print "\n$column_data{$_}" } @column_index;
1767 if ($form->{l_subtotal} eq 'Y') {
1773 <tr class=listtotal>|;
1775 map { $column_data{$_} = "<td> </td>" } @column_index;
1777 $column_data{netamount} =
1778 "<th class=listtotal align=right>"
1779 . $form->format_amount(\%myconfig, $totalnetamount, 2, " ") . "</th>";
1780 $column_data{tax} = "<th class=listtotal align=right>"
1781 . $form->format_amount(\%myconfig, $totalamount - $totalnetamount,
1784 $column_data{amount} =
1785 "<th class=listtotal align=right>"
1786 . $form->format_amount(\%myconfig, $totalamount, 2, " ") . "</th>";
1788 map { print "\n$column_data{$_}" } @column_index;
1796 <td><hr size=3 noshade></td>
1800 # multiple invoice edit button only if gotten there via sales_order form.
1802 if ($form->{type} =~ /sales_order/) {
1804 <input type="hidden" name="path" value="$form->{path}">
1805 <input class"submit" type="submit" name="action" value="|
1806 . $locale->text('Continue') . qq|">
1807 <input type="hidden" name="nextsub" value="edit">
1808 <input type="hidden" name="type" value="$form->{type}">
1809 <input type="hidden" name="vc" value="$form->{vc}">
1810 <input type="hidden" name="login" value="$form->{login}">
1811 <input type="hidden" name="password" value="$form->{password}">
1812 <input type="hidden" name="callback" value="$callback">
1813 <input type="hidden" name="rowcount" value="$form->{rowcount}">|;
1820 <form method=post action=$form->{script}>
1822 <input name=callback type=hidden value="$form->{callback}">
1824 <input type=hidden name=type value=$form->{type}>
1825 <input type=hidden name=vc value=$form->{vc}>
1827 <input type=hidden name=path value=$form->{path}>
1828 <input type=hidden name=login value=$form->{login}>
1829 <input type=hidden name=password value=$form->{password}>
1837 $lxdebug->leave_sub();
1841 $lxdebug->enter_sub();
1843 map { $column_data{$_} = "<td> </td>" } @column_index;
1845 $column_data{netamount} =
1846 "<th class=listsubtotal align=right>"
1847 . $form->format_amount(\%myconfig, $subtotalnetamount, 2, " ")
1849 $column_data{tax} = "<td class=listsubtotal align=right>"
1850 . $form->format_amount(\%myconfig, $subtotalamount - $subtotalnetamount,
1853 $column_data{amount} =
1854 "<th class=listsubtotal align=right>"
1855 . $form->format_amount(\%myconfig, $subtotalamount, 2, " ") . "</th>";
1857 $subtotalnetamount = 0;
1858 $subtotalamount = 0;
1861 <tr class=listsubtotal>
1864 map { print "\n$column_data{$_}" } @column_index;
1870 $lxdebug->leave_sub();
1873 sub save_and_close {
1874 $lxdebug->enter_sub();
1876 if ($form->{type} =~ /_order$/) {
1877 $form->isblank("transdate", $locale->text('Order Date missing!'));
1879 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1882 $msg = ucfirst $form->{vc};
1883 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1885 # $locale->text('Customer missing!');
1886 # $locale->text('Vendor missing!');
1888 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1889 if ($form->{currency} ne $form->{defaultcurrency});
1893 # if the name changed get new values
1894 if (&check_name($form->{vc})) {
1899 $form->{id} = 0 if $form->{saveasnew};
1901 # this is for the internal notes section for the [email] Subject
1902 if ($form->{type} =~ /_order$/) {
1903 if ($form->{type} eq 'sales_order') {
1904 $form->{label} = $locale->text('Sales Order');
1906 $numberfld = "sonumber";
1907 $ordnumber = "ordnumber";
1909 $form->{label} = $locale->text('Purchase Order');
1911 $numberfld = "ponumber";
1912 $ordnumber = "ordnumber";
1915 $err = $locale->text('Cannot save order!');
1918 if ($form->{type} eq 'sales_quotation') {
1919 $form->{label} = $locale->text('Quotation');
1921 $numberfld = "sqnumber";
1922 $ordnumber = "quonumber";
1924 $form->{label} = $locale->text('Request for Quotation');
1926 $numberfld = "rfqnumber";
1927 $ordnumber = "quonumber";
1930 $err = $locale->text('Cannot save quotation!');
1934 # get new number in sequence if no number is given or if saveasnew was requested
1935 if (!$form->{$ordnumber} || $form->{saveasnew}) {
1936 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
1941 $form->error($err) if (!OE->save(\%myconfig, \%$form));
1943 # saving the history
1944 if(!exists $form->{addition}) {
1945 $form->{addition} = "SAVED";
1946 $form->save_history($form->dbconnect(\%myconfig));
1948 # /saving the history
1950 $form->redirect($form->{label} . " $form->{$ordnumber} " .
1951 $locale->text('saved!'));
1953 $lxdebug->leave_sub();
1957 $lxdebug->enter_sub();
1959 if ($form->{type} =~ /_order$/) {
1960 $form->isblank("transdate", $locale->text('Order Date missing!'));
1962 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1965 $msg = ucfirst $form->{vc};
1966 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1968 # $locale->text('Customer missing!');
1969 # $locale->text('Vendor missing!');
1971 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1972 if ($form->{currency} ne $form->{defaultcurrency});
1976 # if the name changed get new values
1977 if (&check_name($form->{vc})) {
1982 $form->{id} = 0 if $form->{saveasnew};
1984 # this is for the internal notes section for the [email] Subject
1985 if ($form->{type} =~ /_order$/) {
1986 if ($form->{type} eq 'sales_order') {
1987 $form->{label} = $locale->text('Sales Order');
1989 $numberfld = "sonumber";
1990 $ordnumber = "ordnumber";
1992 $form->{label} = $locale->text('Purchase Order');
1994 $numberfld = "ponumber";
1995 $ordnumber = "ordnumber";
1998 $err = $locale->text('Cannot save order!');
2001 if ($form->{type} eq 'sales_quotation') {
2002 $form->{label} = $locale->text('Quotation');
2004 $numberfld = "sqnumber";
2005 $ordnumber = "quonumber";
2007 $form->{label} = $locale->text('Request for Quotation');
2009 $numberfld = "rfqnumber";
2010 $ordnumber = "quonumber";
2013 $err = $locale->text('Cannot save quotation!');
2017 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
2018 unless $form->{$ordnumber};
2022 OE->save(\%myconfig, \%$form);
2024 # saving the history
2025 if(!exists $form->{addition}) {
2026 $form->{addition} = "SAVED";
2027 $form->save_history($form->dbconnect(\%myconfig));
2029 # /saving the history
2031 $form->{simple_save} = 1;
2032 if(!$form->{print_and_save}) {
2033 set_headings("edit");
2037 $lxdebug->leave_sub();
2041 $lxdebug->enter_sub();
2045 if ($form->{type} =~ /_order$/) {
2046 $msg = $locale->text('Are you sure you want to delete Order Number');
2047 $ordnumber = 'ordnumber';
2049 $msg = $locale->text('Are you sure you want to delete Quotation Number');
2050 $ordnumber = 'quonumber';
2056 <form method=post action=$form->{script}>
2059 # delete action variable
2060 map { delete $form->{$_} } qw(action header);
2062 foreach $key (keys %$form) {
2063 $form->{$key} =~ s/\"/"/g;
2064 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2068 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
2070 <h4>$msg $form->{$ordnumber}</h4>
2072 <input name=action class=submit type=submit value="|
2073 . $locale->text('Yes') . qq|">
2080 $lxdebug->leave_sub();
2084 $lxdebug->enter_sub();
2086 if ($form->{type} =~ /_order$/) {
2087 $msg = $locale->text('Order deleted!');
2088 $err = $locale->text('Cannot delete order!');
2090 $msg = $locale->text('Quotation deleted!');
2091 $err = $locale->text('Cannot delete quotation!');
2093 if (OE->delete(\%myconfig, \%$form, $spool)){
2094 $form->redirect($msg);
2095 # saving the history
2096 if(!exists $form->{addition}) {
2097 $form->{addition} = "DELETED";
2098 $form->save_history($form->dbconnect(\%myconfig));
2100 # /saving the history
2104 $lxdebug->leave_sub();
2108 $lxdebug->enter_sub();
2110 if ($form->{type} =~ /_order$/) {
2112 # these checks only apply if the items don't bring their own ordnumbers/transdates.
2113 # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
2114 $form->isblank("ordnumber", $locale->text('Order Number missing!'))
2115 if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
2117 $form->isblank("transdate", $locale->text('Order Date missing!'))
2118 if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }
2121 # also copy deliverydate from the order
2122 $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
2123 $form->{orddate} = $form->{transdate};
2125 $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
2126 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2127 $form->{ordnumber} = "";
2128 $form->{quodate} = $form->{transdate};
2131 # if the name changed get new values
2132 if (&check_name($form->{vc})) {
2137 $form->{cp_id} *= 1;
2139 for $i (1 .. $form->{rowcount}) {
2140 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2141 $form->{"${_}_${i}"})
2142 if ($form->{"${_}_${i}"}) }
2143 qw(ship qty sellprice listprice basefactor));
2146 if ( $form->{type} =~ /_order/
2147 && $form->{currency} ne $form->{defaultcurrency}) {
2149 # check if we need a new exchangerate
2150 $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
2152 $orddate = $form->current_date(\%myconfig);
2154 $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
2157 if (!$exchangerate) {
2158 &backorder_exchangerate($orddate, $buysell);
2163 # close orders/quotations
2164 $form->{closed} = 1;
2166 # save order if one ordnumber has been given
2167 # if not it's most likely a collective order, which can't be saved back
2168 # so they just have to be closed
2169 if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) {
2170 OE->close_order(\%myconfig, \%$form);
2172 OE->close_orders(\%myconfig, \%$form);
2175 $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
2177 $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
2180 $form->{closed} = 0;
2181 $form->{rowcount}--;
2182 $form->{shipto} = 1;
2184 if ($form->{type} =~ /_order$/) {
2185 $form->{exchangerate} = $exchangerate;
2189 if ( $form->{type} eq 'purchase_order'
2190 || $form->{type} eq 'request_quotation') {
2191 $form->{title} = $locale->text('Add Vendor Invoice');
2192 $form->{script} = 'ir.pl';
2196 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
2197 $form->{title} = $locale->text('Add Sales Invoice');
2198 $form->{script} = 'is.pl';
2203 # bo creates the id, reset it
2204 map { delete $form->{$_} }
2205 qw(id subject message cc bcc printed emailed queued);
2206 $form->{ $form->{vc} } =~ s/--.*//g;
2207 $form->{type} = "invoice";
2210 $locale = new Locale "$myconfig{countrycode}", "$script";
2212 require "$form->{path}/$form->{script}";
2214 map { $form->{"select$_"} = "" } ($form->{vc}, currency);
2216 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
2217 qw(creditlimit creditremaining);
2219 $currency = $form->{currency};
2222 $form->{currency} = $currency;
2223 $form->{exchangerate} = "";
2224 $form->{forex} = "";
2225 $form->{exchangerate} = $exchangerate
2229 $form->check_exchangerate(
2230 \%myconfig, $form->{currency}, $form->{invdate}, $buysell
2233 $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
2238 for $i (1 .. $form->{rowcount}) {
2239 $form->{"discount_$i"} =
2240 $form->format_amount(\%myconfig, $form->{"discount_$i"});
2242 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
2244 $decimalplaces = ($dec > 2) ? $dec : 2;
2246 # copy delivery date from reqdate for order -> invoice conversion
2247 $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
2248 unless $form->{"deliverydate_$i"};
2250 $form->{"sellprice_$i"} =
2251 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
2254 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
2255 $dec_qty = length $dec_qty;
2257 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
2259 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2260 qw(partnumber description unit);
2266 $lxdebug->leave_sub();
2269 sub backorder_exchangerate {
2270 $lxdebug->enter_sub();
2271 my ($orddate, $buysell) = @_;
2278 <form method=post action=$form->{script}>
2281 # delete action variable
2282 map { delete $form->{$_} } qw(action header exchangerate);
2284 foreach $key (keys %$form) {
2285 $form->{$key} =~ s/\"/"/g;
2286 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2289 $form->{title} = $locale->text('Add Exchangerate');
2293 <input type=hidden name=path value=$form->{path}>
2294 <input type=hidden name=login value=$form->{login}>
2295 <input type=hidden name=password value=$form->{password}>
2297 <input type=hidden name=exchangeratedate value=$orddate>
2298 <input type=hidden name=buysell value=$buysell>
2301 <tr><th class=listtop>$form->{title}</th></tr>
2302 <tr height="5"></tr>
2307 <th align=right>| . $locale->text('Currency') . qq|</th>
2308 <td>$form->{currency}</td>
2311 <th align=right>| . $locale->text('Date') . qq|</th>
2315 <th align=right>| . $locale->text('Exchangerate') . qq|</th>
2316 <td><input name=exchangerate size=11></td>
2326 <input type=hidden name=nextsub value=save_exchangerate>
2328 <input name=action class=submit type=submit value="|
2329 . $locale->text('Continue') . qq|">
2337 $lxdebug->leave_sub();
2340 sub save_exchangerate {
2341 $lxdebug->enter_sub();
2343 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
2344 $form->{exchangerate} =
2345 $form->parse_amount(\%myconfig, $form->{exchangerate});
2346 $form->save_exchangerate(\%myconfig, $form->{currency},
2347 $form->{exchangeratedate},
2348 $form->{exchangerate}, $form->{buysell});
2352 $lxdebug->leave_sub();
2355 sub create_backorder {
2356 $lxdebug->enter_sub();
2358 $form->{shipped} = 1;
2360 # figure out if we need to create a backorder
2361 # items aren't saved if qty != 0
2363 for $i (1 .. $form->{rowcount}) {
2364 $totalqty += $qty = $form->{"qty_$i"};
2365 $totalship += $ship = $form->{"ship_$i"};
2367 $form->{"qty_$i"} = $qty - $ship;
2370 if ($totalship == 0) {
2371 map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
2372 $form->{ordtotal} = 0;
2373 $form->{shipped} = 0;
2377 if ($totalqty == $totalship) {
2378 map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
2379 $form->{ordtotal} = 0;
2384 qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
2387 for $i (1 .. $form->{rowcount}) {
2389 $form->{"${_}_$i"} =
2390 $form->format_amount(\%myconfig, $form->{"${_}_$i"})
2391 } qw(sellprice discount);
2396 OE->save(\%myconfig, \%$form);
2398 # rebuild rows for invoice
2402 for $i (1 .. $form->{rowcount}) {
2403 $form->{"qty_$i"} = $form->{"ship_$i"};
2405 if ($form->{"qty_$i"}) {
2408 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2413 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2414 $form->{rowcount} = $count;
2416 $lxdebug->leave_sub();
2420 $lxdebug->enter_sub();
2422 $form->{saveasnew} = 1;
2423 $form->{closed} = 0;
2424 map { delete $form->{$_} } qw(printed emailed queued);
2426 # Let Lx-Office assign a new order number if the user hasn't changed the
2427 # previous one. If it has been changed manually then use it as-is.
2428 my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
2429 if ($form->{saved_xyznumber} &&
2430 ($form->{saved_xyznumber} eq $form->{$idx})) {
2431 delete($form->{$idx});
2436 $lxdebug->leave_sub();
2439 sub purchase_order {
2440 $lxdebug->enter_sub();
2442 if ( $form->{type} eq 'sales_quotation'
2443 || $form->{type} eq 'request_quotation') {
2444 OE->close_order(\%myconfig, \%$form);
2447 $form->{cp_id} *= 1;
2449 $form->{title} = $locale->text('Add Purchase Order');
2450 $form->{vc} = "vendor";
2451 $form->{type} = "purchase_order";
2455 $lxdebug->leave_sub();
2459 $lxdebug->enter_sub();
2461 if ( $form->{type} eq 'sales_quotation'
2462 || $form->{type} eq 'request_quotation') {
2463 OE->close_order(\%myconfig, $form);
2466 $form->{cp_id} *= 1;
2468 $form->{title} = $locale->text('Add Sales Order');
2469 $form->{vc} = "customer";
2470 $form->{type} = "sales_order";
2474 $lxdebug->leave_sub();
2478 $lxdebug->enter_sub();
2480 $form->{transdate} = $form->current_date(\%myconfig);
2481 delete $form->{duedate};
2483 $form->{closed} = 0;
2486 map { delete $form->{$_} }
2487 qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal);
2489 for $i (1 .. $form->{rowcount}) {
2490 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2491 $form->{"${_}_${i}"})
2492 if ($form->{"${_}_${i}"}) }
2493 qw(ship qty sellprice listprice basefactor));
2501 for $i (1 .. $form->{rowcount} - 1) {
2502 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2503 qw(partnumber description unit);
2506 map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") }
2507 qw(creditlimit creditremaining);
2511 $lxdebug->leave_sub();