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 #======================================================================
34 use POSIX qw(strftime);
40 use SL::ReportGenerator;
42 require "bin/mozilla/io.pl";
43 require "bin/mozilla/arap.pl";
44 require "bin/mozilla/reportgenerator.pl";
51 # $locale->text('Edit the purchase_order');
52 # $locale->text('Edit the sales_order');
53 # $locale->text('Edit the request_quotation');
54 # $locale->text('Edit the sales_quotation');
56 # $locale->text('Workflow purchase_order');
57 # $locale->text('Workflow sales_order');
58 # $locale->text('Workflow request_quotation');
59 # $locale->text('Workflow sales_quotation');
62 $lxdebug->enter_sub();
66 if ($form->{type} eq 'purchase_order') {
67 $form->{title} = $action eq "edit" ?
68 $locale->text('Edit Purchase Order') :
69 $locale->text('Add Purchase Order');
70 $form->{heading} = $locale->text('Purchase Order');
71 $form->{vc} = 'vendor';
73 if ($form->{type} eq 'sales_order') {
74 $form->{title} = $action eq "edit" ?
75 $locale->text('Edit Sales Order') :
76 $locale->text('Add Sales Order');
77 $form->{heading} = $locale->text('Sales Order');
78 $form->{vc} = 'customer';
80 if ($form->{type} eq 'request_quotation') {
81 $form->{title} = $action eq "edit" ?
82 $locale->text('Edit Request for Quotation') :
83 $locale->text('Add Request for Quotation');
84 $form->{heading} = $locale->text('Request for Quotation');
85 $form->{vc} = 'vendor';
87 if ($form->{type} eq 'sales_quotation') {
88 $form->{title} = $action eq "edit" ?
89 $locale->text('Edit Quotation') :
90 $locale->text('Add Quotation');
91 $form->{heading} = $locale->text('Quotation');
92 $form->{vc} = 'customer';
95 $lxdebug->leave_sub();
99 $lxdebug->enter_sub();
104 "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}&login=$form->{login}&password=$form->{password}"
105 unless $form->{callback};
111 $lxdebug->leave_sub();
115 $lxdebug->enter_sub();
116 # show history button
117 $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
118 #/show hhistory button
120 $form->{simple_save} = 0;
122 set_headings("edit");
124 # editing without stuff to edit? try adding it first
125 if ($form->{rowcount} && !$form->{print_and_save}) {
126 map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
130 undef $form->{rowcount};
132 $lxdebug->leave_sub();
135 } elsif (!$form->{id}) {
137 $lxdebug->leave_sub();
141 if ($form->{print_and_save}) {
142 $form->{action} = "print";
143 $form->{resubmit} = 1;
144 $language_id = $form->{language_id};
145 $printer_id = $form->{printer_id};
148 set_headings("edit");
152 if ($form->{print_and_save}) {
153 $form->{language_id} = $language_id;
154 $form->{printer_id} = $printer_id;
158 $lxdebug->leave_sub();
162 $lxdebug->enter_sub();
163 # get customer/vendor
164 $form->all_vc(\%myconfig, $form->{vc},
165 ($form->{vc} eq 'customer') ? "AR" : "AP");
167 # retrieve order/quotation
168 $form->{webdav} = $webdav;
169 $form->{jsscript} = 1;
171 my $editing = $form->{id};
173 OE->retrieve(\%myconfig, \%$form);
175 if ($form->{payment_id}) {
176 $payment_id = $form->{payment_id};
178 if ($form->{language_id}) {
179 $language_id = $form->{language_id};
181 if ($form->{taxzone_id}) {
182 $taxzone_id = $form->{taxzone_id};
185 $salesman_id = $form->{salesman_id} if ($editing);
188 # if multiple rowcounts (== collective order) then check if the
189 # there were more than one customer (in that case OE::retrieve removes
190 # the content from the field)
191 if ( $form->{rowcount}
192 && $form->{type} eq 'sales_order'
193 && defined $form->{customer}
194 && $form->{customer} eq '') {
196 # $main::lxdebug->message(0, "Detected Edit order with concurrent customers");
199 'Collective Orders only work for orders from one customer!')
203 $taxincluded = $form->{taxincluded};
204 $form->{shipto} = 1 if $form->{id};
206 if ($form->{"all_$form->{vc}"}) {
207 unless ($form->{"$form->{vc}_id"}) {
208 $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
212 $cp_id = $form->{cp_id};
213 $intnotes = $form->{intnotes};
215 # get customer / vendor
216 if ($form->{type} =~ /(purchase_order|request_quotation)/) {
217 IR->get_vendor(\%myconfig, \%$form);
219 #quote all_vendor Bug 133
220 foreach $ref (@{ $form->{all_vendor} }) {
221 $ref->{name} = $form->quote($ref->{name});
225 if ($form->{type} =~ /sales_(order|quotation)/) {
226 IS->get_customer(\%myconfig, \%$form);
228 #quote all_vendor Bug 133
229 foreach $ref (@{ $form->{all_customer} }) {
230 $ref->{name} = $form->quote($ref->{name});
234 $form->{cp_id} = $cp_id;
237 $form->{payment_id} = $payment_id;
240 $form->{language_id} = $language_id;
243 $form->{taxzone_id} = $taxzone_id;
245 $form->{intnotes} = $intnotes if $intnotes;
246 ($form->{ $form->{vc} }) = split /--/, $form->{ $form->{vc} };
247 $form->{"old$form->{vc}"} =
248 qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
250 # build the popup menus
251 if (@{ $form->{"all_$form->{vc}"} }) {
252 $form->{ $form->{vc} } =
253 qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
254 map { $form->{"select$form->{vc}"} .=
255 "<option>$_->{name}--$_->{id}</option>\n" }
256 (@{ $form->{"all_$form->{vc}"} });
259 $form->{taxincluded} = $taxincluded if ($form->{id});
262 if (@{ $form->{all_departments} }) {
263 $form->{selectdepartment} = "<option>\n";
264 $form->{department} = "$form->{department}--$form->{department_id}";
267 $form->{selectdepartment} .=
268 "<option>$_->{description}--$_->{id}</option>\n"
269 } (@{ $form->{all_departments} });
272 $form->{employee} = "$form->{employee}--$form->{employee_id}";
275 $form->{forex} = $form->{exchangerate};
277 $form->{salesman_id} = $salesman_id if ($editing);
279 $lxdebug->leave_sub();
283 $lxdebug->enter_sub();
284 $form->{formname} = $form->{type} unless $form->{formname};
287 foreach $ref (@{ $form->{form_details} }) {
288 $form->{rowcount} = ++$i;
290 map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
292 for my $i (1 .. $form->{rowcount}) {
294 $form->{"discount_$i"} =
295 $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
297 $form->{"discount_$i"} =
298 $form->format_amount(\%myconfig, $form->{"discount_$i"});
300 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
302 $decimalplaces = ($dec > 2) ? $dec : 2;
304 # copy reqdate from deliverydate for invoice -> order conversion
305 $form->{"reqdate_$i"} = $form->{"deliverydate_$i"}
306 unless $form->{"reqdate_$i"};
308 $form->{"sellprice_$i"} =
309 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
312 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
313 $dec_qty = length $dec_qty;
315 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
317 map { $form->{"${_}_$i"} =~ s/\"/"/g }
318 qw(partnumber description unit);
321 $lxdebug->leave_sub();
325 $lxdebug->enter_sub();
327 my $checkedclosed = $form->{"closed"} ? "checked" : "";
328 my $checkeddelivered = $form->{"delivered"} ? "checked" : "";
330 if ($form->{old_employee_id}) {
331 $form->{employee_id} = $form->{old_employee_id};
333 if ($form->{old_salesman_id}) {
334 $form->{salesman_id} = $form->{old_salesman_id};
337 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
340 if ($form->{old_employee_id}) {
341 $form->{employee_id} = $form->{old_employee_id};
343 if ($form->{old_salesman_id}) {
344 $form->{salesman_id} = $form->{old_salesman_id};
347 map { $form->{$_} =~ s/\"/"/g }
348 qw(ordnumber quonumber shippingpoint shipvia notes intnotes shiptoname
349 shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact
350 shiptophone shiptofax shiptodepartment_1 shiptodepartment_2);
352 # use JavaScript Calendar or not
353 $form->{jsscript} = 1;
357 <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\">
358 <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}" onBlur=\"check_right_date_format(this)\">
363 <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 if (($form->{"type"} eq "sales_order") ||
375 ($form->{"type"} eq "purchase_order")) {
377 <input name="delivered" id="delivered" type="checkbox" class="checkbox" value="1" $checkeddelivered>
378 <label for="delivered">| . $locale->text('Delivered') . qq|</label>|);
383 <input name="closed" id="closed" type="checkbox" class="checkbox" value="1" $checkedclosed>
384 <label for="closed">| . $locale->text('Closed') . qq|</label>|);
390 <td colspan=| . (2 * scalar(@tmp)) . qq| align=center>| . join("\n", @tmp) . qq|
396 # set option selected
397 foreach $item ($form->{vc}, currency, department, ($form->{vc} eq "customer" ? customer : vendor)) {
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}"});
406 #substitute \n and \r to \s (bug 543)
407 $form->{"select$form->{vc}"} =~ s/[\n\r]/ /g;
409 my @old_project_ids = ($form->{"globalproject_id"});
410 map({ push(@old_project_ids, $form->{"project_id_$_"})
411 if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
413 my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
414 $form->get_lists("contacts" => "ALL_CONTACTS",
415 "shipto" => "ALL_SHIPTO",
416 "projects" => { "key" => "ALL_PROJECTS",
418 "old_id" => \@old_project_ids },
419 "employees" => "ALL_EMPLOYEES",
420 "salesmen" => "ALL_SALESMEN",
421 "taxzones" => "ALL_TAXZONES",
422 "payments" => "ALL_PAYMENTS",
423 "currencies" => "ALL_CURRENCIES",
424 $vc => "ALL_" . uc($vc));
427 my @values = (undef);
428 foreach my $item (@{ $form->{"ALL_CONTACTS"} }) {
429 push(@values, $item->{"cp_id"});
430 $labels{$item->{"cp_id"}} = $item->{"cp_name"} .
431 ($item->{"cp_abteilung"} ? " ($item->{cp_abteilung})" : "");
435 if (scalar @values > 1) {
438 <th align="right">| . $locale->text('Contact Person') . qq|</th>
440 NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values, '-style' => 'width: 250px',
441 '-labels' => \%labels, '-default' => $form->{"cp_id"}))
450 foreach my $item (@{ $form->{($form->{vc} eq "customer" ? "ALL_CUSTOMERS" : "ALL_VENDORS")}}) {
451 push(@values, $item->{"name"}.qq|--|.$item->{"id"});
452 $labels{$item->{"name"}.qq|--|.$item->{"id"}} = $item->{name};
456 <input type="hidden" name="$form->{vc}_id" value="| . H($form->{"$form->{vc}_id"}) . qq|">
457 <input type="hidden" name="old$form->{vc}" value="| . H($form->{"old$form->{vc}"}) . qq|">
458 <th align="right">| . $locale->text(ucfirst($form->{vc})) . qq|</th>
460 (($myconfig{vclimit} <= scalar(@values))
461 ? qq|<input type="text" value="| . H(($form->{"old$form->{vc}"} =~ /^(.*)\-\-.*$/)) . qq|" name="$form->{vc}">|
462 : (NTI($cgi->popup_menu('-name' => "$form->{vc}", '-default' => $form->{"old$form->{vc}"},
463 '-onChange' => 'document.getElementById(\'update_button\').click();',
464 '-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')))) . qq|
465 <input type="button" value="?" onclick="show_vc_details('$form->{vc}')">
466 </td><input type=hidden name="select$form->{vc}" value="| .
467 Q($form->{"select$form->{vc}"}) . qq|">|;
471 foreach my $item (@{ $form->{"ALL_PAYMENTS"} }) {
472 push(@values, $item->{"id"});
473 $labels{$item->{"id"}} = $item->{"description"};
477 <th align="right">| . $locale->text('Payment Terms') . qq|</th>
479 NTI($cgi->popup_menu('-name' => 'payment_id', '-values' => \@values, '-style' => 'width: 250px',
480 '-labels' => \%labels, '-default' => $form->{payment_id}))
485 foreach my $item (@{ $form->{"ALL_SHIPTO"} }) {
486 push(@values, $item->{"shipto_id"});
487 $labels{$item->{"shipto_id"}} = join "; ", grep { $_ } map { $item->{"shipto${_}" } } qw(name department_1 street city);
491 if (scalar @values > 1) {
494 <th align="right">| . $locale->text('Shipping Address') . qq|</th>
496 NTI($cgi->popup_menu('-name' => 'shipto_id', '-values' => \@values, '-style' => 'width: 250px',
497 '-labels' => \%labels, '-default' => $form->{"shipto_id"}))
503 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
504 push(@values, $item->{"id"});
505 $labels{$item->{"id"}} = $item->{"projectnumber"};
507 my $globalprojectnumber =
508 NTI($cgi->popup_menu('-name' => 'globalproject_id', '-values' => \@values,
509 '-labels' => \%labels,
510 '-default' => $form->{"globalproject_id"}));
515 if ($form->{type} =~ /^sales_/) {
516 foreach my $item (@{ $form->{"ALL_SALESMEN"} }) {
517 push(@values, $item->{"id"});
518 $labels{$item->{"id"}} = ($item->{"name"} ne "" ? $item->{"name"} : $item->{"login"});
522 <th align="right">| . $locale->text('Salesman') . qq|</th>
524 NTI($cgi->popup_menu('-name' => 'salesman_id', '-default' => $form->{"salesman_id"} ? $form->{"salesman_id"} : $form->{"employee_id"},
525 '-values' => \@values, '-labels' => \%labels))
532 foreach my $item (@{ $form->{"ALL_EMPLOYEES"} }) {
533 push(@values, $item->{"id"});
534 $labels{$item->{"id"}} = $item->{"name"} ne "" ? $item->{"name"} : $item->{"login"};
539 <th align="right">| . $locale->text('Employee') . qq|</th>
541 NTI($cgi->popup_menu('-name' => 'employee_id', '-default' => $form->{"employee_id"},
542 '-values' => \@values, '-labels' => \%labels)) . qq|
548 foreach my $item (@{ $form->{"ALL_TAXZONES"} }) {
549 push(@values, $item->{"id"});
550 $labels{$item->{"id"}} = $item->{"description"};
555 <th align="right">| . $locale->text('Steuersatz') . qq|</th>
557 NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"},
558 '-values' => \@values, '-labels' => \%labels, '-style' => 'width: 250px')) . qq|
565 foreach my $item (@{ $form->{"ALL_CURRENCIES"} }) {
566 push(@values, $item);
567 $labels{$item} = $item;
570 $form->{currency} = $form->{defaultcurrency} unless $form->{currency};
572 if (scalar @values) {
575 <th align="right">| . $locale->text('Currency') . qq|</th>
577 NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
578 '-values' => \@values, '-labels' => \%labels)) . qq|
583 $form->{exchangerate} =
584 $form->format_amount(\%myconfig, $form->{exchangerate});
586 if (!$form->{exchangerate}) {
587 $form->{exchangerate} = "";
590 if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) {
596 $form->{creditlimit} =
597 $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
598 $form->{creditremaining} =
599 $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
602 <input type=hidden name=forex value=$form->{forex}>
605 if ($form->{currency} ne $form->{defaultcurrency}) {
606 if ($form->{forex}) {
609 . $locale->text('Exchangerate')
610 . qq|</th><td>$form->{exchangerate}</td>
611 <input type=hidden name=exchangerate value=$form->{exchangerate}>
616 . $locale->text('Exchangerate')
617 . qq|</th><td><input name=exchangerate size=10 value=$form->{exchangerate}></td>|;
621 if ($form->{business}) {
624 <th align="right">| . ($form->{vc} eq "customer" ? $locale->text('Customer type') : $locale->text('Vendor type')) . qq|</th>
625 <td>$form->{business}; | . $locale->text('Trade Discount') . qq| |
626 . $form->format_amount(\%myconfig, $form->{tradediscount} * 100)
632 if ($form->{max_dunning_level}) {
635 <th align="right">| . $locale->text('Max. Dunning Level') . qq|:</th>
637 <b>$form->{max_dunning_level}</b>;
638 | . $locale->text('Dunning Amount') . qq|: <b>|
639 . $form->format_amount(\%myconfig, $form->{dunning_amount},2)
646 if ($form->{type} !~ /_quotation$/) {
649 <th width=70% align=right nowrap>| . $locale->text('Order Number') . qq|</th>
650 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
653 <th width=70% align=right nowrap>|
654 . $locale->text('Quotation Number') . qq|</th>
655 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
658 <th width=70% align=right nowrap>|
659 . $locale->text('Customer Order Number') . qq|</th>
660 <td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td>
663 <th align=right nowrap>| . $locale->text('Order Date') . qq|</th>
668 <th align=right nowrap=true>| . $locale->text('Required by') . qq|</th>
673 $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
675 $creditremaining = qq|
678 <td align="right">| . $locale->text('Credit Limit') . qq|</td>
679 <td>$form->{creditlimit}; | . $locale->text('Remaining') . qq| <span class="plus$n">$form->{creditremaining}</span></td>
685 ($form->{type} eq 'sales_quotation')
686 ? $locale->text('Valid until')
687 : $locale->text('Required by');
688 if ($form->{type} eq 'sales_quotation') {
691 <th width=70% align=right nowrap>|
692 . $locale->text('Quotation Number') . qq|</th>
693 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
694 <input type=hidden name=ordnumber value="$form->{ordnumber}">
700 <th width=70% align=right nowrap>| . $locale->text('RFQ Number') . qq|</th>
701 <td><input name=quonumber size=11 value="$form->{quonumber}"></td>
702 <input type=hidden name=ordnumber value="$form->{ordnumber}">
710 <th align=right nowrap>| . $locale->text('Quotation Date') . qq|</th>
714 <th align=right nowrap=true>$reqlabel</th>
718 $creditremaining = qq| <tr>
726 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
727 <td colspan=3><select name=department style="width: 250px">$form->{selectdepartment}</select>
728 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
730 </tr> | if $form->{selectdepartment};
732 if ($form->{type} eq 'sales_order') {
733 if ($form->{selectemployee}) {
735 <input type="hidden" name="customer_klass" value="$form->{customer_klass}">|;
739 <input type="hidden" name="customer_klass" value="$form->{customer_klass}">|;
741 if ($form->{resubmit} && ($form->{format} eq "html")) {
743 qq|window.open('about:blank','Beleg'); document.oe.target = 'Beleg';document.oe.submit()|;
744 } elsif ($form->{resubmit}) {
745 $onload = qq|document.oe.submit()|;
750 $credittext = $locale->text('Credit Limit exceeded!!!');
751 if ($creditwarning) {
752 $onload = qq|alert('$credittext')|;
755 $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
756 $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
758 $form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
759 # show history button js
760 $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
761 #/show history button js
762 $form->{javascript} .= qq|<script type="text/javascript" src="js/show_vc_details.js"></script>|;
767 <body onLoad="$onload">
769 <form method=post name=oe action=$form->{script}>
771 <script type="text/javascript" src="js/common.js"></script>
772 <script type="text/javascript" src="js/delivery_customer_selection.js"></script>
773 <script type="text/javascript" src="js/vendor_selection.js"></script>
774 <script type="text/javascript" src="js/calculate_qty.js"></script>
777 $form->hide_form(qw(id action type vc formname media format proforma queued printed emailed
778 title discount creditlimit creditremaining tradediscount business
779 max_dunning_level dunning_amount));
785 <th class=listtop>$form->{title}</th>
807 <th align=right>| . $locale->text('Shipping Point') . qq|</th>
808 <td colspan=3><input name=shippingpoint size=35 value="$form->{shippingpoint}"></td>
811 <th align=right>| . $locale->text('Ship via') . qq|</th>
812 <td colspan=3><input name=shipvia size=35 value="$form->{shipvia}"></td>
815 <th align="right">| . $locale->text('Transaction description') . qq|</th>
816 <td colspan="3"><input name="transaction_description" size="35" value="| . H($form->{transaction_description}) . qq|"></td>
823 # <button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">| . $locale->text('Choose Customer') . qq|</button>
825 # <td colspan=2><input type=hidden name=delivery_customer_id value="$form->{delivery_customer_id}">
826 # <input size=45 id=delivery_customer_string name=delivery_customer_string value="$form->{delivery_customer_string}"></td>
830 # <button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">| . $locale->text('Choose Vendor') . qq|</button>
832 # <td colspan=2><input type=hidden name=delivery_vendor_id value="$form->{delivery_vendor_id}">
833 # <input size=45 id=vendor_string name=delivery_vendor_string value="$form->{delivery_vendor_string}"></td>
847 <th width="70%" align="right" nowrap>| . $locale->text('Project Number') . qq|</th>
848 <td>$globalprojectnumber</td>
859 <!-- shipto are in hidden variables -->
861 <input type=hidden name=shiptoname value="$form->{shiptoname}">
862 <input type=hidden name=shiptostreet value="$form->{shiptostreet}">
863 <input type=hidden name=shiptozipcode value="$form->{shiptozipcode}">
864 <input type=hidden name=shiptocity value="$form->{shiptocity}">
865 <input type=hidden name=shiptocountry value="$form->{shiptocountry}">
866 <input type=hidden name=shiptocontact value="$form->{shiptocontact}">
867 <input type=hidden name=shiptophone value="$form->{shiptophone}">
868 <input type=hidden name=shiptofax value="$form->{shiptofax}">
869 <input type=hidden name=shiptodepartment_1 value="$form->{shiptodepartment_1}">
870 <input type=hidden name=shiptodepartment_2 value="$form->{shiptodepartment_2}">
871 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
873 <!-- email variables -->
874 <input type=hidden name=message value="$form->{message}">
875 <input type=hidden name=email value="$form->{email}">
876 <input type=hidden name=subject value="$form->{subject}">
877 <input type=hidden name=cc value="$form->{cc}">
878 <input type=hidden name=bcc value="$form->{bcc}">
880 <input type=hidden name=taxpart value="$form->{taxpart}">
881 <input type=hidden name=taxservice value="$form->{taxservice}">
883 <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
886 foreach $item (split / /, $form->{taxaccounts}) {
888 <input type=hidden name="${item}_rate" value=$form->{"${item}_rate"}>
889 <input type=hidden name="${item}_description" value="$form->{"${item}_description"}">
892 $lxdebug->leave_sub();
896 $lxdebug->enter_sub();
898 $form->{invtotal} = $form->{invsubtotal};
900 if (($rows = $form->numtextrows($form->{notes}, 25, 8)) < 2) {
903 if (($introws = $form->numtextrows($form->{intnotes}, 35, 8)) < 2) {
906 $rows = ($rows > $introws) ? $rows : $introws;
908 qq|<textarea name=notes rows=$rows cols=25 wrap=soft>$form->{notes}</textarea>|;
910 qq|<textarea name=intnotes rows=$rows cols=35 wrap=soft>$form->{intnotes}</textarea>|;
912 $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
915 if ($form->{taxaccounts}) {
917 <input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}> <b>|
918 . $locale->text('Tax Included') . qq|</b><br><br>
922 if (!$form->{taxincluded}) {
924 foreach $item (split / /, $form->{taxaccounts}) {
925 if ($form->{"${item}_base"}) {
926 $form->{invtotal} += $form->{"${item}_total"} =
928 $form->{"${item}_base"} * $form->{"${item}_rate"},
930 $form->{"${item}_total"} =
931 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
935 <th align=right>$form->{"${item}_description"} |
936 . $form->{"${item}_rate"} * 100 .qq|%</th>
937 <td align=right>$form->{"${item}_total"}</td>
943 $form->{invsubtotal} =
944 $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0);
948 <th align=right>| . $locale->text('Subtotal') . qq|</th>
949 <td align=right>$form->{invsubtotal}</td>
955 if ($form->{taxincluded}) {
956 foreach $item (split / /, $form->{taxaccounts}) {
957 if ($form->{"${item}_base"}) {
958 $form->{"${item}_total"} =
960 ($form->{"${item}_base"} * $form->{"${item}_rate"} /
961 (1 + $form->{"${item}_rate"})
964 $form->{"${item}_netto"} =
966 ($form->{"${item}_base"} - $form->{"${item}_total"}),
968 $form->{"${item}_total"} =
969 $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
970 $form->{"${item}_netto"} =
971 $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
975 <th align=right>Enthaltene $form->{"${item}_description"} |
976 . $form->{"${item}_rate"} * 100 .qq|%</th>
977 <td align=right>$form->{"${item}_total"}</td>
980 <th align=right>Nettobetrag</th>
981 <td align=right>$form->{"${item}_netto"}</td>
989 $form->{oldinvtotal} = $form->{invtotal};
991 $form->format_amount(\%myconfig, $form->{invtotal}, 2, 0);
1001 <th align=left>| . $locale->text('Notes') . qq|</th>
1002 <th align=left>| . $locale->text('Internal Notes') . qq|</th>
1016 <th align=left>| . $locale->text('Ertrag') . qq|</th>
1017 <td>| . $form->format_amount(\%myconfig, $form->{marge_total}, 2, 0) . qq|</td>
1020 <th align=left>| . $locale->text('Ertrag prozentual') . qq|</th>
1021 <td>| . $form->format_amount(\%myconfig, $form->{marge_percent}, 2, 0) . qq| %</td>
1023 <input type=hidden name="marge_total" value="$form->{"marge_total"}">
1024 <input type=hidden name="marge_percent" value="$form->{"marge_percent"}">
1033 <th align=right>| . $locale->text('Total') . qq|</th>
1034 <td align=right>$form->{invtotal}</td>
1042 <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
1043 <input type=hidden name=oldtotalpaid value=$totalpaid>
1045 <td><hr size=3 noshade></td>
1053 <th class=listtop align=left>Dokumente im Webdav-Repository</th>
1056 <td align=left width=30%><b>Dateiname</b></td>
1057 <td align=left width=70%><b>Webdavlink</b></td>
1059 foreach $file (keys %{ $form->{WEBDAV} }) {
1062 <td align=left>$file</td>
1063 <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
1071 <td><hr size=3 noshade></td>
1089 | . $locale->text("Edit the $form->{type}") . qq|<br>
1090 <input class=submit type=submit name=action id=update_button value="|
1091 . $locale->text('Update') . qq|">
1092 <input class=submit type=submit name=action value="|
1093 . $locale->text('Ship to') . qq|">
1094 <input class=submit type=submit name=action value="|
1095 . $locale->text('Print') . qq|">
1096 <input class=submit type=submit name=action value="|
1097 . $locale->text('E-mail') . qq|">
1098 <input class=submit type=submit name=action value="|
1099 . $locale->text('Save') . qq|">
1100 <input class=submit type=submit name=action value="|
1101 . $locale->text('Save and Close') . qq|">
1104 if (($form->{id})) {
1106 <input type="button" class="submit" onclick="set_history_window(|
1108 . qq|);" name="history" id="history" value="|
1109 . $locale->text('history')
1112 <br>| . $locale->text("Workflow $form->{type}") . qq|<br>
1113 <input class=submit type=submit name=action value="|
1114 . $locale->text('Save as new') . qq|">
1115 <input class=submit type=submit name=action value="|
1116 . $locale->text('Delete') . qq|">|;
1117 if (($form->{type} =~ /sales_quotation$/)) {
1119 <input class=submit type=submit name=action value="|
1120 . $locale->text('Sales Order') . qq|">|;
1122 if ($form->{type} =~ /request_quotation$/) {
1124 <input class=submit type=submit name=action value="|
1125 . $locale->text('Purchase Order') . qq|">|;
1129 <input class=submit type=submit name=action value="|
1130 . $locale->text('Invoice') . qq|">
1134 if ($form->{type} =~ /sales_order$/) {
1136 <br>$form->{heading} als neue Vorlage verwenden für<br>
1137 <input class=submit type=submit name=action value="|
1138 . $locale->text('Purchase Order') . qq|">
1139 <input class=submit type=submit name=action value="|
1140 . $locale->text('Quotation') . qq|">
1143 } elsif ($form->{type} =~ /purchase_order$/) {
1145 <br>$form->{heading} als neue Vorlage verwenden für<br>
1146 <input class=submit type=submit name=action value="|
1147 . $locale->text('Sales Order') . qq|">
1148 <input class=submit type=submit name=action value="|
1149 . $locale->text('Request for Quotation') . qq|">
1154 <br>$form->{heading} als neue Vorlage verwenden für<br>
1155 <input class=submit type=submit name=action value="|
1156 . $locale->text('Order') . qq|">
1161 $form->hide_form("saved_xyznumber");
1165 <input type=hidden name=rowcount value=$form->{rowcount}>
1167 <input name=callback type=hidden value="$form->{callback}">
1169 <input type=hidden name=login value=$form->{login}>
1170 <input type=hidden name=password value=$form->{password}>
1177 $lxdebug->leave_sub();
1181 $lxdebug->enter_sub();
1183 set_headings($form->{"id"} ? "edit" : "add");
1185 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
1186 qw(exchangerate creditlimit creditremaining);
1187 $form->{update} = 1;
1189 if($form->{payment_id}) {
1190 $payment_id = $form->{payment_id};
1193 &check_name($form->{vc});
1195 if($form->{payment_id} eq "") {
1196 $form->{payment_id} = $payment_id;
1200 $buysell = 'sell' if ($form->{vc} eq 'vendor');
1201 $form->{exchangerate} = $exchangerate
1205 $form->check_exchangerate(
1206 \%myconfig, $form->{currency}, $form->{transdate}, $buysell
1210 $i = $form->{rowcount};
1212 $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
1214 if ( ($form->{"partnumber_$i"} eq "")
1215 && ($form->{"description_$i"} eq "")
1216 && ($form->{"partsgroup_$i"} eq "")) {
1218 $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
1223 if ( $form->{type} eq 'purchase_order'
1224 || $form->{type} eq 'request_quotation') {
1225 IR->retrieve_item(\%myconfig, \%$form);
1227 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
1228 IS->retrieve_item(\%myconfig, \%$form);
1231 my $rows = scalar @{ $form->{item_list} };
1233 $form->{"discount_$i"} =
1234 $form->format_amount(\%myconfig, $form->{discount} * 100);
1237 $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
1246 $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
1247 if ($form->{"not_discountable_$i"}) {
1248 $form->{"discount_$i"} = 0;
1250 map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }
1251 qw(partnumber description unit);
1252 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} }
1253 keys %{ $form->{item_list}[0] };
1254 if ($form->{"part_payment_id_$i"} ne "") {
1255 $form->{payment_id} = $form->{"part_payment_id_$i"};
1258 $s = ($sellprice) ? $sellprice : $form->{"sellprice_$i"};
1260 ($dec) = ($s =~ /\.(\d+)/);
1262 $decimalplaces = ($dec > 2) ? $dec : 2;
1265 $form->{"sellprice_$i"} = $sellprice;
1268 $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
1270 # if there is an exchange rate adjust sellprice
1271 $form->{"sellprice_$i"} /= $exchangerate;
1275 $form->{"sellprice_$i"} * $form->{"qty_$i"} *
1276 (1 - $form->{"discount_$i"} / 100);
1277 map { $form->{"${_}_base"} = 0 } (split / /, $form->{taxaccounts});
1278 map { $form->{"${_}_base"} += $amount }
1279 (split / /, $form->{"taxaccounts_$i"});
1280 map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) }
1281 split / /, $form->{taxaccounts}
1282 if !$form->{taxincluded};
1284 $form->{creditremaining} -= $amount;
1286 $form->{"sellprice_$i"} =
1287 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
1290 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
1292 # get pricegroups for parts
1293 IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1295 # build up html code for prices_$i
1296 &set_pricegroup($i);
1303 # ok, so this is a new part
1304 # ask if it is a part or service item
1306 if ( $form->{"partsgroup_$i"}
1307 && ($form->{"partsnumber_$i"} eq "")
1308 && ($form->{"description_$i"} eq "")) {
1309 $form->{rowcount}--;
1310 $form->{"discount_$i"} = "";
1314 $form->{"id_$i"} = 0;
1315 $form->{"unit_$i"} = $locale->text('ea');
1323 $lxdebug->leave_sub();
1327 $lxdebug->enter_sub();
1329 if ($form->{type} eq 'purchase_order') {
1330 $form->{title} = $locale->text('Purchase Orders');
1331 $form->{vc} = 'vendor';
1332 $ordlabel = $locale->text('Order Number');
1333 $ordnumber = 'ordnumber';
1334 $employee = $locale->text('Employee');
1337 if ($form->{type} eq 'request_quotation') {
1338 $form->{title} = $locale->text('Request for Quotations');
1339 $form->{vc} = 'vendor';
1340 $ordlabel = $locale->text('RFQ Number');
1341 $ordnumber = 'quonumber';
1342 $employee = $locale->text('Employee');
1345 if ($form->{type} eq 'sales_order') {
1346 $form->{title} = $locale->text('Sales Orders');
1347 $form->{vc} = 'customer';
1348 $ordlabel = $locale->text('Order Number');
1349 $ordnumber = 'ordnumber';
1350 $employee = $locale->text('Employee');
1353 if ($form->{type} eq 'sales_quotation') {
1354 $form->{title} = $locale->text('Quotations');
1355 $form->{vc} = 'customer';
1356 $ordlabel = $locale->text('Quotation Number');
1357 $ordnumber = 'quonumber';
1358 $employee = $locale->text('Employee');
1361 # setup vendor / customer selection
1362 $form->all_vc(\%myconfig, $form->{vc},
1363 ($form->{vc} eq 'customer') ? "AR" : "AP");
1366 if (@{ $form->{all_departments} }) {
1367 $form->{selectdepartment} = "<option>\n";
1370 $form->{selectdepartment} .=
1371 "<option>$_->{description}--$_->{id}</option>\n"
1372 } (@{ $form->{all_departments} });
1377 <th align=right nowrap>| . $locale->text('Department') . qq|</th>
1378 <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
1380 | if $form->{selectdepartment};
1383 if (($form->{"type"} eq "sales_order") ||
1384 ($form->{"type"} eq "purchase_order")) {
1387 <td><input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
1388 <label for="notdelivered">|. $locale->text('Not delivered') . qq|</label></td>
1389 <td><input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
1390 <label for="delivered">| . $locale->text('Delivered') . qq|</label></td>
1395 # use JavaScript Calendar or not
1396 $form->{jsscript} = 1;
1400 <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
1401 <input type=button name=transdatefrom id="trigger3" value=|
1402 . $locale->text('button') . qq|></td>
1405 <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
1406 <input type=button name=transdateto name=transdateto id="trigger4" value=|
1407 . $locale->text('button') . qq|></td>
1412 Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger3",
1413 "transdateto", "BL", "trigger4");
1415 my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
1417 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
1419 "employees" => "ALL_EMPLOYEES",
1420 $vc => "ALL_" . uc($vc));
1424 foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
1425 push(@values, $item->{"id"});
1426 $labels{$item->{"id"}} = $item->{"projectnumber"};
1429 NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
1430 '-labels' => \%labels));
1435 foreach my $item (@{ $form->{"ALL_EMPLOYEES"} }) {
1436 push(@values, $item->{"id"});
1437 $labels{$item->{"id"}} = $item->{"name"} ne "" ? $item->{"name"} : $item->{"login"};
1440 my $employee_block = qq|
1442 <th align="right">| . $locale->text('Employee') . qq|</th>
1444 NTI($cgi->popup_menu('-name' => 'employee_id',
1445 '-values' => \@values,
1446 '-labels' => \%labels)) . qq|
1453 foreach my $item (@{ $form->{($form->{vc} eq "customer" ? "ALL_CUSTOMERS" : "ALL_VENDORS")}}) {
1454 push(@values, $item->{name}.qq|--|.$item->{"id"});
1455 $labels{$item->{name}.qq|--|.$item->{"id"}} = $item->{"name"};
1458 my $vc_label = $form->{vc} eq "customer" ? $locale->text('Customer') : $locale->text('Vendor');
1460 $myconfig{vclimit} <= scalar(@values)
1461 ? qq|<input type="text" value="| . H(($form->{"old$form->{vc}"} =~ /^(.*)\-\-.*$/)) . qq|" name="$form->{vc}">|
1462 : NTI($cgi->popup_menu('-name' => "$form->{vc}",
1463 '-default' => $form->{"old$form->{vc}"},
1464 '-onChange' => 'document.getElementById(\'update_button\').click();',
1465 '-values' => \@values,
1466 '-labels' => \%labels));
1472 <form method=post action=$form->{script}>
1476 <th class=listtop>$form->{title}</th>
1478 <tr height="5"></tr>
1483 <th align=right>$vc_label</th>
1484 <td colspan=3>$vc</td>
1488 <th align=right>$ordlabel</th>
1489 <td colspan=3><input name="$ordnumber" size=20></td>
1493 <th align="right">| . $locale->text('Transaction description') . qq|</th>
1494 <td colspan="3"><input name="transaction_description" size=20></td>
1497 <th align="right">| . $locale->text("Project Number") . qq|</th>
1498 <td colspan="3">$projectnumber</td>
1501 <th align=right>| . $locale->text('From') . qq|</th>
1503 <th align=right>| . $locale->text('Bis') . qq|</th>
1506 <input type=hidden name=sort value=transdate>
1508 <th align=right>| . $locale->text('Include in Report') . qq|</th>
1512 <td><input type="checkbox" name="open" value="1" id="open" checked>
1513 <label for="open">| . $locale->text("Open") . qq|</td>
1514 <td><input type="checkbox" name="closed" value="1" id="closed">
1515 <label for="closed">| . $locale->text("Closed") . qq|</td>
1519 <td><input name="l_id" class=checkbox type=checkbox value=Y>
1520 | . $locale->text('ID') . qq|</td>
1521 <td><input name="l_$ordnumber" class=checkbox type=checkbox value=Y checked> $ordlabel</td>
1522 <td><input name="l_transdate" class=checkbox type=checkbox value=Y checked> |
1523 . $locale->text('Date') . qq|</td>
1524 <td><input name="l_reqdate" class=checkbox type=checkbox value=Y checked> |
1525 . $locale->text('Required by') . qq|</td>
1528 <td><input name="l_name" class=checkbox type=checkbox value=Y checked> $vc_label</td>
1529 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1530 <td><input name="l_shipvia" class=checkbox type=checkbox value=Y> |
1531 . $locale->text('Ship via') . qq|</td>
1532 <td><input name="l_employee" class=checkbox type=checkbox value=Y checked> $employee</td>
1535 <td><input name="l_netamount" class=checkbox type=checkbox value=Y> |
1536 . $locale->text('Amount') . qq|</td>
1537 <td><input name="l_tax" class=checkbox type=checkbox value=Y> |
1538 . $locale->text('Tax') . qq|</td>
1539 <td><input name="l_amount" class=checkbox type=checkbox value=Y checked> |
1540 . $locale->text('Total') . qq|</td>
1543 <td><input name="l_marge_total" class=checkbox type=checkbox value=Y> |
1544 . $locale->text('Ertrag') . qq|</td>
1545 <td><input name="l_marge_percent" class=checkbox type=checkbox value=Y> |
1546 . $locale->text('Ertrag prozentual') . qq|</td>
1549 <td><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y> |
1550 . $locale->text('Project Number') . qq|</td>
1551 <td><input name="l_transaction_description" class=checkbox type=checkbox value=Y> |
1552 . $locale->text('Transaction description') . qq|</td>
1555 <td><input name="l_subtotal" class=checkbox type=checkbox value=Y> |
1556 . $locale->text('Subtotal') . qq|</td>
1564 <tr><td colspan=4><hr size=3 noshade></td></tr>
1570 <input type=hidden name=nextsub value=orders>
1571 <input type=hidden name=login value=$form->{login}>
1572 <input type=hidden name=password value=$form->{password}>
1573 <input type=hidden name=vc value=$form->{vc}>
1574 <input type=hidden name=type value=$form->{type}>
1576 <input class=submit type=submit name=action value="|
1577 . $locale->text('Continue') . qq|">
1584 $lxdebug->leave_sub();
1587 sub create_subtotal_row {
1588 $lxdebug->enter_sub();
1590 my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
1592 my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
1594 map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
1596 $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
1598 map { $totals->{$_} = 0 } @{ $subtotal_columns };
1600 $lxdebug->leave_sub();
1606 $lxdebug->enter_sub();
1608 $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
1610 ($form->{ $form->{vc} }, $form->{"${form->{vc}}_id"}) = split(/--/, $form->{ $form->{vc} });
1612 $form->{sort} ||= 'transdate';
1614 OE->transactions(\%myconfig, \%$form);
1616 $form->{rowcount} = scalar @{ $form->{OE} };
1619 "transdate", "reqdate",
1621 "name", "netamount",
1624 "shipvia", "globalprojectnumber",
1625 "transaction_description", "open",
1626 "delivered", "marge_total", "marge_percent"
1629 # only show checkboxes if gotten here via sales_order form.
1630 my $allow_multiple_orders = $form->{type} eq 'sales_order';
1631 if ($allow_multiple_orders) {
1632 unshift @columns, "ids";
1635 $form->{l_open} = $form->{l_closed} = "Y" if ($form->{open} && $form->{closed});
1636 $form->{l_delivered} = "Y" if ($form->{delivered} && $form->{notdelivered});
1638 my $attachment_basename;
1639 if ($form->{vc} eq 'vendor') {
1640 if ($form->{type} eq 'purchase_order') {
1641 $form->{title} = $locale->text('Purchase Orders');
1642 $attachment_basename = $locale->text('purchase_order_list');
1644 $form->{title} = $locale->text('Request for Quotations');
1645 $attachment_basename = $locale->text('rfq_list');
1649 if ($form->{type} eq 'sales_order') {
1650 $form->{title} = $locale->text('Sales Orders');
1651 $attachment_basename = $locale->text('sales_order_list');
1653 $form->{title} = $locale->text('Quotations');
1654 $attachment_basename = $locale->text('quotation_list');
1658 my $report = SL::ReportGenerator->new(\%myconfig, $form);
1660 my @hidden_variables = map { "l_${_}" } @columns;
1661 push @hidden_variables, "l_subtotal", $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered ordnumber quonumber
1662 transaction_description transdatefrom transdateto type vc employee_id);
1664 my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
1667 'ids' => { 'text' => '', },
1668 'transdate' => { 'text' => $locale->text('Date'), },
1669 'reqdate' => { 'text' => $locale->text('Required by'), },
1670 'id' => { 'text' => $locale->text('ID'), },
1671 'ordnumber' => { 'text' => $locale->text('Order'), },
1672 'quonumber' => { 'text' => $form->{type} eq "request_quotation" ? $locale->text('RFQ') : $locale->text('Quotation'), },
1673 'name' => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
1674 'netamount' => { 'text' => $locale->text('Amount'), },
1675 'tax' => { 'text' => $locale->text('Tax'), },
1676 'amount' => { 'text' => $locale->text('Total'), },
1677 'curr' => { 'text' => $locale->text('Curr'), },
1678 'employee' => { 'text' => $locale->text('Salesperson'), },
1679 'shipvia' => { 'text' => $locale->text('Ship via'), },
1680 'globalprojectnumber' => { 'text' => $locale->text('Project Number'), },
1681 'transaction_description' => { 'text' => $locale->text('Transaction description'), },
1682 'open' => { 'text' => $locale->text('Open'), },
1683 'delivered' => { 'text' => $locale->text('Delivered'), },
1684 'marge_total' => { 'text' => $locale->text('Ertrag'), },
1685 'marge_percent' => { 'text' => $locale->text('Ertrag prozentual'), }
1688 foreach my $name (qw(id transdate reqdate quonumber ordnumber name employee shipvia)) {
1689 $column_defs{$name}->{link} = $href . "&sort=$name";
1692 my %column_alignment = map { $_ => 'right' } qw(netamount tax amount curr);
1694 $form->{"l_type"} = "Y";
1695 map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
1696 $column_defs{ids}->{visible} = $allow_multiple_orders ? 'HTML' : 0;
1698 $report->set_columns(%column_defs);
1699 $report->set_column_order(@columns);
1701 $report->set_export_options('orders', @hidden_variables);
1703 $report->set_sort_indicator($form->{sort}, 1);
1706 if ($form->{customer}) {
1707 push @options, $locale->text('Customer') . " : $form->{customer}";
1709 if ($form->{vendor}) {
1710 push @options, $locale->text('Vendor') . " : $form->{vendor}";
1712 if ($form->{department}) {
1713 ($department) = split /--/, $form->{department};
1714 push @options, $locale->text('Department') . " : $department";
1716 if ($form->{ordnumber}) {
1717 push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
1719 if ($form->{notes}) {
1720 push @options, $locale->text('Notes') . " : $form->{notes}";
1722 if ($form->{transaction_description}) {
1723 push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
1725 if ($form->{transdatefrom}) {
1726 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
1728 if ($form->{transdateto}) {
1729 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
1731 if ($form->{open}) {
1732 push @options, $locale->text('Open');
1734 if ($form->{closed}) {
1735 push @options, $locale->text('Closed');
1737 if ($form->{delivered}) {
1738 push @options, $locale->text('Delivered');
1740 if ($form->{notdelivered}) {
1741 push @options, $locale->text('Not delivered');
1744 $report->set_options('top_info_text' => join("\n", @options),
1745 'raw_top_info_text' => $form->parse_html_template('oe/orders_top'),
1746 'raw_bottom_info_text' => $form->parse_html_template('oe/orders_bottom', { 'SHOW_CONTINUE_BUTTON' => $allow_multiple_orders }),
1747 'output_format' => 'HTML',
1748 'title' => $form->{title},
1749 'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time),
1751 $report->set_options_from_form();
1753 # add sort and escape callback, this one we use for the add sub
1754 $form->{callback} = $href .= "&sort=$form->{sort}";
1756 # escape callback for href
1757 $callback = $form->escape($href);
1759 my @subtotal_columns = qw(netamount amount marge_total);
1761 my %totals = map { $_ => 0 } @subtotal_columns;
1762 my %subtotals = map { $_ => 0 } @subtotal_columns;
1766 my $edit_url = build_std_url('action=edit', 'type', 'vc');
1768 foreach $oe (@{ $form->{OE} }) {
1769 map { $oe->{$_} *= $oe->{exchangerate} } @subtotal_columns;
1771 $oe->{tax} = $oe->{amount} - $oe->{netamount};
1772 $oe->{open} = $oe->{closed} ? $locale->text('No') : $locale->text('Yes');
1773 $oe->{delivered} = $oe->{delivered} ? $locale->text('Yes') : $locale->text('No');
1775 map { $subtotals{$_} += $oe->{$_};
1776 $totals{$_} += $oe->{$_} } @subtotal_columns;
1778 map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount marge_total marge_percent);
1782 foreach my $column (@columns) {
1783 next if ($column eq 'ids');
1785 'data' => $oe->{$column},
1786 'align' => $column_alignment{$column},
1791 'raw_data' => $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $oe->{id})
1792 . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
1793 'valign' => 'center',
1794 'align' => 'center',
1797 $row->{$ordnumber}->{link} = $edit_url . "&id=" . E($oe->{id}) . "&callback=${callback}";
1799 my $row_set = [ $row ];
1801 if (($form->{l_subtotal} eq 'Y')
1802 && (($idx == (scalar @{ $form->{OE} } - 1))
1803 || ($oe->{ $form->{sort} } ne $form->{OE}->[$idx + 1]->{ $form->{sort} }))) {
1804 push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
1807 $report->add_data($row_set);
1812 $report->add_separator();
1813 $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
1815 $report->generate_with_headers();
1817 $lxdebug->leave_sub();
1820 sub check_delivered_flag {
1821 $lxdebug->enter_sub();
1823 if (($form->{type} ne 'sales_order') && ($form->{type} ne 'purchase_order')) {
1824 return $lxdebug->leave_sub();
1827 my $all_delivered = 0;
1829 foreach my $i (1 .. $form->{rowcount}) {
1830 next if (!$form->{"id_$i"});
1832 if ($form->parse_amount(\%myconfig, $form->{"qty_$i"}) == $form->parse_amount(\%myconfig, $form->{"ship_$i"})) {
1841 $form->{delivered} = 1 if $all_delivered;
1843 $lxdebug->leave_sub();
1846 sub save_and_close {
1847 $lxdebug->enter_sub();
1849 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1851 if ($form->{type} =~ /_order$/) {
1852 $form->isblank("transdate", $locale->text('Order Date missing!'));
1854 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1857 my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1858 $form->{$idx} =~ s/^\s*//g;
1859 $form->{$idx} =~ s/\s*$//g;
1861 $msg = ucfirst $form->{vc};
1862 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1864 # $locale->text('Customer missing!');
1865 # $locale->text('Vendor missing!');
1867 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1868 if ($form->{currency} ne $form->{defaultcurrency});
1872 if($form->{payment_id}) {
1873 $payment_id = $form->{payment_id};
1876 # if the name changed get new values
1877 if (&check_name($form->{vc})) {
1878 if($form->{payment_id} eq "") {
1879 $form->{payment_id} = $payment_id;
1885 $form->{id} = 0 if $form->{saveasnew};
1887 # this is for the internal notes section for the [email] Subject
1888 if ($form->{type} =~ /_order$/) {
1889 if ($form->{type} eq 'sales_order') {
1890 $form->{label} = $locale->text('Sales Order');
1892 $numberfld = "sonumber";
1893 $ordnumber = "ordnumber";
1895 $form->{label} = $locale->text('Purchase Order');
1897 $numberfld = "ponumber";
1898 $ordnumber = "ordnumber";
1901 $err = $locale->text('Cannot save order!');
1903 check_delivered_flag();
1906 if ($form->{type} eq 'sales_quotation') {
1907 $form->{label} = $locale->text('Quotation');
1909 $numberfld = "sqnumber";
1910 $ordnumber = "quonumber";
1912 $form->{label} = $locale->text('Request for Quotation');
1914 $numberfld = "rfqnumber";
1915 $ordnumber = "quonumber";
1918 $err = $locale->text('Cannot save quotation!');
1922 # get new number in sequence if no number is given or if saveasnew was requested
1923 if (!$form->{$ordnumber} || $form->{saveasnew}) {
1924 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
1929 $form->error($err) if (!OE->save(\%myconfig, \%$form));
1931 # saving the history
1932 if(!exists $form->{addition}) {
1933 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1934 $form->{addition} = "SAVED";
1935 $form->save_history($form->dbconnect(\%myconfig));
1937 # /saving the history
1939 $form->redirect($form->{label} . " $form->{$ordnumber} " .
1940 $locale->text('saved!'));
1942 $lxdebug->leave_sub();
1946 $lxdebug->enter_sub();
1948 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1951 if ($form->{type} =~ /_order$/) {
1952 $form->isblank("transdate", $locale->text('Order Date missing!'));
1954 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1957 my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1958 $form->{$idx} =~ s/^\s*//g;
1959 $form->{$idx} =~ s/\s*$//g;
1961 $msg = ucfirst $form->{vc};
1962 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1964 # $locale->text('Customer missing!');
1965 # $locale->text('Vendor missing!');
1967 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1968 if ($form->{currency} ne $form->{defaultcurrency});
1972 if($form->{payment_id}) {
1973 $payment_id = $form->{payment_id};
1976 # if the name changed get new values
1977 if (&check_name($form->{vc})) {
1978 if($form->{payment_id} eq "") {
1979 $form->{payment_id} = $payment_id;
1985 $form->{id} = 0 if $form->{saveasnew};
1987 # this is for the internal notes section for the [email] Subject
1988 if ($form->{type} =~ /_order$/) {
1989 if ($form->{type} eq 'sales_order') {
1990 $form->{label} = $locale->text('Sales Order');
1992 $numberfld = "sonumber";
1993 $ordnumber = "ordnumber";
1995 $form->{label} = $locale->text('Purchase Order');
1997 $numberfld = "ponumber";
1998 $ordnumber = "ordnumber";
2001 $err = $locale->text('Cannot save order!');
2003 check_delivered_flag();
2006 if ($form->{type} eq 'sales_quotation') {
2007 $form->{label} = $locale->text('Quotation');
2009 $numberfld = "sqnumber";
2010 $ordnumber = "quonumber";
2012 $form->{label} = $locale->text('Request for Quotation');
2014 $numberfld = "rfqnumber";
2015 $ordnumber = "quonumber";
2018 $err = $locale->text('Cannot save quotation!');
2022 $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
2023 unless $form->{$ordnumber};
2027 OE->save(\%myconfig, \%$form);
2029 # saving the history
2030 if(!exists $form->{addition}) {
2031 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
2032 $form->{addition} = "SAVED";
2033 $form->save_history($form->dbconnect(\%myconfig));
2035 # /saving the history
2037 $form->{simple_save} = 1;
2038 if(!$form->{print_and_save}) {
2039 set_headings("edit");
2043 $lxdebug->leave_sub();
2047 $lxdebug->enter_sub();
2051 if ($form->{type} =~ /_order$/) {
2052 $msg = $locale->text('Are you sure you want to delete Order Number');
2053 $ordnumber = 'ordnumber';
2055 $msg = $locale->text('Are you sure you want to delete Quotation Number');
2056 $ordnumber = 'quonumber';
2062 <form method=post action=$form->{script}>
2065 # delete action variable
2066 map { delete $form->{$_} } qw(action header);
2068 foreach $key (keys %$form) {
2069 $form->{$key} =~ s/\"/"/g;
2070 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2074 <h2 class=confirm>| . $locale->text('Confirm!') . qq|</h2>
2076 <h4>$msg $form->{$ordnumber}</h4>
2078 <input type="hidden" name="yes_nextsub" value="delete_order_quotation">
2079 <input name=action class=submit type=submit value="|
2080 . $locale->text('Yes') . qq|">
2081 <input name=action class=submit type=submit onclick="history.back()" value="|
2082 . $locale->text('No') . qq|">
2089 $lxdebug->leave_sub();
2092 sub delete_order_quotation {
2093 $lxdebug->enter_sub();
2095 if ($form->{type} =~ /_order$/) {
2096 $msg = $locale->text('Order deleted!');
2097 $err = $locale->text('Cannot delete order!');
2099 $msg = $locale->text('Quotation deleted!');
2100 $err = $locale->text('Cannot delete quotation!');
2102 if (OE->delete(\%myconfig, \%$form, $spool)){
2103 # saving the history
2104 if(!exists $form->{addition}) {
2105 $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
2106 $form->{addition} = "DELETED";
2107 $form->save_history($form->dbconnect(\%myconfig));
2109 # /saving the history
2115 $lxdebug->leave_sub();
2119 $lxdebug->enter_sub();
2121 $form->{old_employee_id} = $form->{employee_id};
2122 $form->{old_salesman_id} = $form->{salesman_id};
2124 if ($form->{type} =~ /_order$/) {
2126 # these checks only apply if the items don't bring their own ordnumbers/transdates.
2127 # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
2128 $form->isblank("ordnumber", $locale->text('Order Number missing!'))
2129 if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
2130 $form->isblank("transdate", $locale->text('Order Date missing!'))
2131 if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
2133 # also copy deliverydate from the order
2134 $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
2135 $form->{orddate} = $form->{transdate};
2137 $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
2138 $form->isblank("transdate", $locale->text('Quotation Date missing!'));
2139 $form->{ordnumber} = "";
2140 $form->{quodate} = $form->{transdate};
2143 if($form->{payment_id}) {
2144 $payment_id = $form->{payment_id};
2147 # if the name changed get new values
2148 if (&check_name($form->{vc})) {
2149 if($form->{payment_id} eq "") {
2150 $form->{payment_id} = $payment_id;
2156 $form->{cp_id} *= 1;
2158 for $i (1 .. $form->{rowcount}) {
2159 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2160 $form->{"${_}_${i}"})
2161 if ($form->{"${_}_${i}"}) }
2162 qw(ship qty sellprice listprice basefactor));
2165 if ( $form->{type} =~ /_order/
2166 && $form->{currency} ne $form->{defaultcurrency}) {
2168 # check if we need a new exchangerate
2169 $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
2171 $orddate = $form->current_date(\%myconfig);
2173 $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
2175 print(STDERR "CURRENCY $form->{currency} DEFAULT: $form->{defaultcurrency} EXCHANGE $exchangerate\n");
2177 if (!$exchangerate) {
2178 &backorder_exchangerate($orddate, $buysell);
2183 # close orders/quotations
2184 $form->{closed} = 1;
2186 # save order if one ordnumber has been given
2187 # if not it's most likely a collective order, which can't be saved back
2188 # so they just have to be closed
2189 if (($form->{ordnumber} ne '') || ($form->{quonumber} ne '')) {
2190 OE->close_order(\%myconfig, \%$form) if ($form->{id});
2192 OE->close_orders(\%myconfig, \%$form);
2195 $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
2197 $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
2200 $form->{closed} = 0;
2201 $form->{rowcount}--;
2202 $form->{shipto} = 1;
2204 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
2206 if ($form->{type} =~ /_order$/) {
2207 $form->{exchangerate} = $exchangerate;
2211 if ( $form->{type} eq 'purchase_order'
2212 || $form->{type} eq 'request_quotation') {
2213 $form->{title} = $locale->text('Add Vendor Invoice');
2214 $form->{script} = 'ir.pl';
2218 if ($form->{type} eq 'sales_order' || $form->{type} eq 'sales_quotation') {
2219 $form->{title} = $locale->text('Add Sales Invoice');
2220 $form->{script} = 'is.pl';
2225 # bo creates the id, reset it
2226 map { delete $form->{$_} }
2227 qw(id subject message cc bcc printed emailed queued);
2228 $form->{ $form->{vc} } =~ s/--.*//g;
2229 $form->{type} = "invoice";
2232 $locale = new Locale "$myconfig{countrycode}", "$script";
2234 require "bin/mozilla/$form->{script}";
2236 map { $form->{"select$_"} = "" } ($form->{vc}, currency);
2238 map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
2239 qw(creditlimit creditremaining);
2241 $currency = $form->{currency};
2244 $form->{currency} = $currency;
2245 $form->{exchangerate} = "";
2246 $form->{forex} = "";
2247 $form->{exchangerate} = $exchangerate
2251 $form->check_exchangerate(
2252 \%myconfig, $form->{currency}, $form->{invdate}, $buysell
2255 $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
2260 for $i (1 .. $form->{rowcount}) {
2261 $form->{"discount_$i"} =
2262 $form->format_amount(\%myconfig, $form->{"discount_$i"});
2264 ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
2266 $decimalplaces = ($dec > 2) ? $dec : 2;
2268 # copy delivery date from reqdate for order -> invoice conversion
2269 $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
2270 unless $form->{"deliverydate_$i"};
2272 $form->{"sellprice_$i"} =
2273 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
2276 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
2277 $dec_qty = length $dec_qty;
2279 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
2281 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2282 qw(partnumber description unit);
2288 $lxdebug->leave_sub();
2291 sub backorder_exchangerate {
2292 $lxdebug->enter_sub();
2293 my ($orddate, $buysell) = @_;
2300 <form method=post action=$form->{script}>
2303 # delete action variable
2304 map { delete $form->{$_} } qw(action header exchangerate);
2306 foreach $key (keys %$form) {
2307 $form->{$key} =~ s/\"/"/g;
2308 print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
2311 $form->{title} = $locale->text('Add Exchangerate');
2315 <input type=hidden name=login value=$form->{login}>
2316 <input type=hidden name=password value=$form->{password}>
2318 <input type=hidden name=exchangeratedate value=$orddate>
2319 <input type=hidden name=buysell value=$buysell>
2322 <tr><th class=listtop>$form->{title}</th></tr>
2323 <tr height="5"></tr>
2328 <th align=right>| . $locale->text('Currency') . qq|</th>
2329 <td>$form->{currency}</td>
2332 <th align=right>| . $locale->text('Date') . qq|</th>
2336 <th align=right>| . $locale->text('Exchangerate') . qq|</th>
2337 <td><input name=exchangerate size=11></td>
2347 <input type=hidden name=nextsub value=save_exchangerate>
2349 <input name=action class=submit type=submit value="|
2350 . $locale->text('Continue') . qq|">
2358 $lxdebug->leave_sub();
2361 sub save_exchangerate {
2362 $lxdebug->enter_sub();
2364 $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
2365 $form->{exchangerate} =
2366 $form->parse_amount(\%myconfig, $form->{exchangerate});
2367 $form->save_exchangerate(\%myconfig, $form->{currency},
2368 $form->{exchangeratedate},
2369 $form->{exchangerate}, $form->{buysell});
2373 $lxdebug->leave_sub();
2376 sub create_backorder {
2377 $lxdebug->enter_sub();
2379 $form->{shipped} = 1;
2381 # figure out if we need to create a backorder
2382 # items aren't saved if qty != 0
2384 for $i (1 .. $form->{rowcount}) {
2385 $totalqty += $qty = $form->{"qty_$i"};
2386 $totalship += $ship = $form->{"ship_$i"};
2388 $form->{"qty_$i"} = $qty - $ship;
2391 if ($totalship == 0) {
2392 map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
2393 $form->{ordtotal} = 0;
2394 $form->{shipped} = 0;
2398 if ($totalqty == $totalship) {
2399 map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
2400 $form->{ordtotal} = 0;
2405 qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
2408 for $i (1 .. $form->{rowcount}) {
2410 $form->{"${_}_$i"} =
2411 $form->format_amount(\%myconfig, $form->{"${_}_$i"})
2412 } qw(sellprice discount);
2417 OE->save(\%myconfig, \%$form);
2419 # rebuild rows for invoice
2423 for $i (1 .. $form->{rowcount}) {
2424 $form->{"qty_$i"} = $form->{"ship_$i"};
2426 if ($form->{"qty_$i"}) {
2429 map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
2434 $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
2435 $form->{rowcount} = $count;
2437 $lxdebug->leave_sub();
2441 $lxdebug->enter_sub();
2443 $form->{saveasnew} = 1;
2444 $form->{closed} = 0;
2445 map { delete $form->{$_} } qw(printed emailed queued);
2447 # Let Lx-Office assign a new order number if the user hasn't changed the
2448 # previous one. If it has been changed manually then use it as-is.
2449 my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
2450 $form->{$idx} =~ s/^\s*//g;
2451 $form->{$idx} =~ s/\s*$//g;
2452 if ($form->{saved_xyznumber} &&
2453 ($form->{saved_xyznumber} eq $form->{$idx})) {
2454 delete($form->{$idx});
2459 $lxdebug->leave_sub();
2462 sub check_for_direct_delivery_yes {
2463 $lxdebug->enter_sub();
2465 $form->{direct_delivery_checked} = 1;
2466 delete @{$form}{grep /^shipto/, keys %{ $form }};
2467 map { s/^CFDD_//; $form->{$_} = $form->{"CFDD_${_}"} } grep /^CFDD_/, keys %{ $form };
2468 $form->{shipto} = 1;
2470 $lxdebug->leave_sub();
2473 sub check_for_direct_delivery_no {
2474 $lxdebug->enter_sub();
2476 $form->{direct_delivery_checked} = 1;
2477 delete @{$form}{grep /^shipto/, keys %{ $form }};
2480 $lxdebug->leave_sub();
2483 sub check_for_direct_delivery {
2484 $lxdebug->enter_sub();
2486 if ($form->{direct_delivery_checked}
2487 || (!$form->{shiptoname} && !$form->{shiptostreet} && !$form->{shipto_id})) {
2488 $lxdebug->leave_sub();
2492 if ($form->{shipto_id}) {
2493 Common->get_shipto_by_id(\%myconfig, $form, $form->{shipto_id}, "CFDD_");
2496 map { $form->{"CFDD_${_}"} = $form->{$_ } } grep /^shipto/, keys %{ $form };
2499 delete $form->{action};
2500 $form->{VARIABLES} = [ map { { "key" => $_, "value" => $form->{$_} } } grep { ref $_ eq "" } keys %{ $form } ];
2503 print $form->parse_html_template("oe/check_for_direct_delivery");
2505 $lxdebug->leave_sub();
2510 sub purchase_order {
2511 $lxdebug->enter_sub();
2513 if ($form->{type} eq 'sales_order') {
2514 check_for_direct_delivery();
2517 if ( $form->{type} eq 'sales_quotation'
2518 || $form->{type} eq 'request_quotation') {
2519 OE->close_order(\%myconfig, \%$form);
2522 if ($form->{type} =~ /^sales_/) {
2523 delete($form->{ordnumber});
2526 $form->{cp_id} *= 1;
2528 $form->{title} = $locale->text('Add Purchase Order');
2529 $form->{vc} = "vendor";
2530 $form->{type} = "purchase_order";
2534 $lxdebug->leave_sub();
2538 $lxdebug->enter_sub();
2540 if ( $form->{type} eq 'sales_quotation'
2541 || $form->{type} eq 'request_quotation') {
2542 OE->close_order(\%myconfig, $form);
2545 if ($form->{type} eq "purchase_order") {
2546 delete($form->{ordnumber});
2549 $form->{cp_id} *= 1;
2551 $form->{title} = $locale->text('Add Sales Order');
2552 $form->{vc} = "customer";
2553 $form->{type} = "sales_order";
2557 $lxdebug->leave_sub();
2561 $lxdebug->enter_sub();
2563 $form->{transdate} = $form->current_date(\%myconfig);
2564 delete $form->{duedate};
2566 $form->{closed} = 0;
2568 $form->{old_employee_id} = $form->{employee_id};
2569 $form->{old_salesman_id} = $form->{salesman_id};
2572 map { delete $form->{$_} }
2573 qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal);
2575 for $i (1 .. $form->{rowcount}) {
2576 map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig,
2577 $form->{"${_}_${i}"})
2578 if ($form->{"${_}_${i}"}) }
2579 qw(ship qty sellprice listprice basefactor));
2587 for $i (1 .. $form->{rowcount} - 1) {
2588 map { $form->{"${_}_$i"} =~ s/\"/"/g }
2589 qw(partnumber description unit);
2592 map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") }
2593 qw(creditlimit creditremaining);
2597 $lxdebug->leave_sub();
2601 $lxdebug->enter_sub();
2603 $form->{print_and_save} = 1;
2608 my $saved_form = save_form();
2613 map({ $saved_vars{$_} = $form->{$_}; } qw(id ordnumber quonumber));
2614 restore_form($saved_form);
2615 map({ $form->{$_} = $saved_vars{$_}; } qw(id ordnumber quonumber));
2620 $lxdebug->leave_sub();
2624 call_sub($form->{yes_nextsub});
2628 call_sub($form->{no_nextsub});