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 #======================================================================
31 #======================================================================
33 use List::Util qw(max sum);
34 use POSIX qw(strftime);
40 use SL::ReportGenerator;
43 require "bin/mozilla/arap.pl";
44 require "bin/mozilla/common.pl";
45 require "bin/mozilla/invoice_io.pl";
46 require "bin/mozilla/io.pl";
47 require "bin/mozilla/reportgenerator.pl";
56 $main::auth->assert($main::form->{type} . '_edit');
60 $main::lxdebug->enter_sub();
66 my $form = $main::form;
67 my $locale = $main::locale;
69 if ($form->{type} eq 'purchase_delivery_order') {
70 $form->{vc} = 'vendor';
71 $form->{title} = $action eq "edit" ? $locale->text('Edit Purchase Delivery Order') : $locale->text('Add Purchase Delivery Order');
73 $form->{vc} = 'customer';
74 $form->{title} = $action eq "edit" ? $locale->text('Edit Sales Delivery Order') : $locale->text('Add Sales Delivery Order');
77 $form->{heading} = $locale->text('Delivery Order');
79 $main::lxdebug->leave_sub();
83 $main::lxdebug->enter_sub();
87 my $form = $main::form;
91 $form->{callback} = build_std_url('action=add', 'type', 'vc') unless ($form->{callback});
97 $main::lxdebug->leave_sub();
101 $main::lxdebug->enter_sub();
105 my $form = $main::form;
107 # show history button
108 $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
109 #/show hhistory button
111 $form->{simple_save} = 0;
113 set_headings("edit");
115 # editing without stuff to edit? try adding it first
116 if ($form->{rowcount} && !$form->{print_and_save}) {
117 # map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
121 undef $form->{rowcount};
123 $main::lxdebug->leave_sub();
126 } elsif (!$form->{id}) {
128 $main::lxdebug->leave_sub();
132 my ($language_id, $printer_id);
133 if ($form->{print_and_save}) {
134 $form->{action} = "dispatcher";
135 $form->{action_print} = "1";
136 $form->{resubmit} = 1;
137 $language_id = $form->{language_id};
138 $printer_id = $form->{printer_id};
141 set_headings("edit");
146 if ($form->{print_and_save}) {
147 $form->{language_id} = $language_id;
148 $form->{printer_id} = $printer_id;
153 $main::lxdebug->leave_sub();
157 $main::lxdebug->enter_sub();
161 my $form = $main::form;
162 my %myconfig = %main::myconfig;
164 # get customer/vendor
165 $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
167 # retrieve order/quotation
168 $form->{webdav} = $main::webdav;
169 $form->{jsscript} = 1;
171 my $editing = $form->{id};
173 DO->retrieve('vc' => $form->{vc},
174 'ids' => $form->{id});
176 $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes));
177 $form->{shipto} = 1 if $form->{id};
179 # get customer / vendor
180 if ($form->{vc} eq 'vendor') {
181 IR->get_vendor(\%myconfig, \%$form);
183 IS->get_customer(\%myconfig, \%$form);
184 # OFFEN tritt bug 1284 auch bei vendor auf?
185 $form->{discount} = $form->{customer_discount};
188 $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id));
189 $form->restore_vars(qw(taxincluded)) if $form->{id};
190 $form->restore_vars(qw(salesman_id)) if $editing;
192 if ($form->{"all_$form->{vc}"}) {
193 unless ($form->{"$form->{vc}_id"}) {
194 $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
198 ($form->{ $form->{vc} }) = split /--/, $form->{ $form->{vc} };
199 $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
201 $form->{employee} = "$form->{employee}--$form->{employee_id}";
203 $main::lxdebug->leave_sub();
207 $main::lxdebug->enter_sub();
211 my $form = $main::form;
212 my %myconfig = %main::myconfig;
214 $form->{formname} = $form->{type} unless $form->{formname};
217 foreach my $ref (@{ $form->{form_details} }) {
218 $form->{rowcount} = ++$i;
220 map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
222 for my $i (1 .. $form->{rowcount}) {
224 $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
226 $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
228 my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
230 my $decimalplaces = ($dec > 2) ? $dec : 2;
232 # copy reqdate from deliverydate for invoice -> order conversion
233 $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
235 $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
236 $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
238 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
239 $dec_qty = length $dec_qty;
240 $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
243 $main::lxdebug->leave_sub();
247 $main::lxdebug->enter_sub();
251 my $form = $main::form;
252 my %myconfig = %main::myconfig;
254 $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
255 $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
257 # use JavaScript Calendar or not
258 $form->{jsscript} = 1;
261 my $jsscript = Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1", "reqdate", "BL", "trigger2");
263 my @old_project_ids = ($form->{"globalproject_id"});
264 map({ push(@old_project_ids, $form->{"project_id_$_"})
265 if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
267 my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
268 $form->get_lists("contacts" => "ALL_CONTACTS",
269 "shipto" => "ALL_SHIPTO",
271 "key" => "ALL_PROJECTS",
273 "old_id" => \@old_project_ids
275 "employees" => "ALL_EMPLOYEES",
276 "salesmen" => "ALL_SALESMEN",
278 "price_factors" => "ALL_PRICE_FACTORS",
279 "departments" => "ALL_DEPARTMENTS",
280 "business_types" => "ALL_BUSINESS_TYPES",
283 map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
284 map { $_->{value} = "$_->{name}--$_->{id}" } @{ $form->{ALL_VC} };
286 $form->{SHOW_VC_DROP_DOWN} = $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
288 $form->{oldvcname} = $form->{"old$form->{vc}"};
289 $form->{oldvcname} =~ s/--.*//;
291 $form->{onload} = "";
292 if ($form->{resubmit}) {
293 if ($form->{format} eq "html") {
294 $form->{onload} = "window.open('about:blank','Beleg'); document.do.target = 'Beleg';";
296 # emulate click for resubmitting actions
297 $form->{onload} .= "document.do.${_}.click(); " for grep { /^action_/ } keys %$form;
298 $form->{onload} .= "document.do.submit();"
302 # Fix für Bug 1082 Erwartet wird: 'abteilungsNAME--abteilungsID'
303 $form->{department} .= '--' . $form->{department_id};
305 print $form->parse_html_template('do/form_header');
307 $main::lxdebug->leave_sub();
311 $main::lxdebug->enter_sub();
315 my $form = $main::form;
317 $form->{PRINT_OPTIONS} = print_options('inline' => 1);
319 print $form->parse_html_template('do/form_footer');
321 $main::lxdebug->leave_sub();
324 sub update_delivery_order {
325 $main::lxdebug->enter_sub();
329 my $form = $main::form;
330 my %myconfig = %main::myconfig;
332 set_headings($form->{"id"} ? "edit" : "add");
337 $payment_id = $form->{payment_id} if $form->{payment_id};
339 check_name($form->{vc});
341 $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
344 my $i = $form->{rowcount};
346 if ( ($form->{"partnumber_$i"} eq "")
347 && ($form->{"description_$i"} eq "")
348 && ($form->{"partsgroup_$i"} eq "")) {
354 if ($form->{type} eq 'purchase_delivery_order') {
355 IR->retrieve_item(\%myconfig, $form);
357 IS->retrieve_item(\%myconfig, $form);
360 my $rows = scalar @{ $form->{item_list} };
363 $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
372 map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
374 $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
375 $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
376 $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
377 $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"});
384 # ok, so this is a new part
385 # ask if it is a part or service item
387 if ( $form->{"partsgroup_$i"}
388 && ($form->{"partsnumber_$i"} eq "")
389 && ($form->{"description_$i"} eq "")) {
391 $form->{"discount_$i"} = "";
395 $form->{"id_$i"} = 0;
401 $main::lxdebug->leave_sub();
405 $main::lxdebug->enter_sub();
409 my $form = $main::form;
410 my %myconfig = %main::myconfig;
411 my $locale = $main::locale;
413 $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
415 $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
417 "employees" => "ALL_EMPLOYEES",
418 "salesmen" => "ALL_SALESMEN",
419 "$form->{vc}s" => "ALL_VC");
421 $form->{SHOW_VC_DROP_DOWN} = $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
422 $form->{jsscript} = 1;
423 $form->{title} = $locale->text('Delivery Orders');
427 print $form->parse_html_template('do/search');
429 $main::lxdebug->leave_sub();
433 $main::lxdebug->enter_sub();
437 my $form = $main::form;
438 my %myconfig = %main::myconfig;
439 my $locale = $main::locale;
440 my $cgi = $main::cgi;
442 ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
444 report_generator_set_default_sort('transdate', 1);
448 $form->{rowcount} = scalar @{ $form->{DO} };
455 shipvia globalprojectnumber
456 transaction_description
460 $form->{l_open} = $form->{l_closed} = "Y" if ($form->{open} && $form->{closed});
461 $form->{l_delivered} = "Y" if ($form->{delivered} && $form->{notdelivered});
463 $form->{title} = $locale->text('Delivery Orders');
465 my $attachment_basename = $form->{vc} eq 'vendor' ? $locale->text('purchase_delivery_order_list') : $locale->text('sales_delivery_order_list');
467 my $report = SL::ReportGenerator->new(\%myconfig, $form);
469 my @hidden_variables = map { "l_${_}" } @columns;
470 push @hidden_variables, $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered donumber ordnumber
471 transaction_description transdatefrom transdateto type vc employee_id salesman_id project_id);
473 my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
476 'ids' => { 'text' => '', },
477 'transdate' => { 'text' => $locale->text('Date'), },
478 'id' => { 'text' => $locale->text('ID'), },
479 'donumber' => { 'text' => $locale->text('Delivery Order'), },
480 'ordnumber' => { 'text' => $locale->text('Order'), },
481 'name' => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
482 'employee' => { 'text' => $locale->text('Employee'), },
483 'shipvia' => { 'text' => $locale->text('Ship via'), },
484 'globalprojectnumber' => { 'text' => $locale->text('Project Number'), },
485 'transaction_description' => { 'text' => $locale->text('Transaction description'), },
486 'open' => { 'text' => $locale->text('Open'), },
487 'delivered' => { 'text' => $locale->text('Delivered'), },
490 foreach my $name (qw(id transdate donumber ordnumber name employee shipvia transaction_description)) {
491 my $sortdir = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
492 $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
495 $form->{"l_type"} = "Y";
496 map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
498 $column_defs{ids}->{visible} = 'HTML';
500 $report->set_columns(%column_defs);
501 $report->set_column_order(@columns);
503 $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
505 $report->set_sort_indicator($form->{sort}, $form->{sortdir});
508 if ($form->{customer}) {
509 push @options, $locale->text('Customer') . " : $form->{customer}";
511 if ($form->{vendor}) {
512 push @options, $locale->text('Vendor') . " : $form->{vendor}";
514 if ($form->{department}) {
515 my ($department) = split /--/, $form->{department};
516 push @options, $locale->text('Department') . " : $department";
518 if ($form->{donumber}) {
519 push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
521 if ($form->{ordnumber}) {
522 push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
524 if ($form->{transaction_description}) {
525 push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
527 if ($form->{transdatefrom}) {
528 push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
530 if ($form->{transdateto}) {
531 push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
534 push @options, $locale->text('Open');
536 if ($form->{closed}) {
537 push @options, $locale->text('Closed');
539 if ($form->{delivered}) {
540 push @options, $locale->text('Delivered');
542 if ($form->{notdelivered}) {
543 push @options, $locale->text('Not delivered');
546 $report->set_options('top_info_text' => join("\n", @options),
547 'raw_top_info_text' => $form->parse_html_template('do/orders_top'),
548 'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
549 'output_format' => 'HTML',
550 'title' => $form->{title},
551 'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time),
553 $report->set_options_from_form();
555 # add sort and escape callback, this one we use for the add sub
556 $form->{callback} = $href .= "&sort=$form->{sort}";
558 # escape callback for href
559 my $callback = $form->escape($href);
561 my $edit_url = build_std_url('action=edit', 'type', 'vc');
562 my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
566 foreach my $dord (@{ $form->{DO} }) {
567 $dord->{open} = $dord->{closed} ? $locale->text('No') : $locale->text('Yes');
568 $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
570 my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
573 'raw_data' => $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
574 . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
575 'valign' => 'center',
579 $row->{donumber}->{link} = $edit_url . "&id=" . E($dord->{id}) . "&callback=${callback}";
580 $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id}) . "&callback=${callback}";
582 $report->add_data($row);
587 $report->generate_with_headers();
589 $main::lxdebug->leave_sub();
593 $main::lxdebug->enter_sub();
597 my $form = $main::form;
598 my %myconfig = %main::myconfig;
599 my $locale = $main::locale;
601 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
603 $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
605 $form->{donumber} =~ s/^\s*//g;
606 $form->{donumber} =~ s/\s*$//g;
608 my $msg = ucfirst $form->{vc};
609 $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
611 # $locale->text('Customer missing!');
612 # $locale->text('Vendor missing!');
614 remove_emptied_rows();
617 # if the name changed get new values
618 if (check_name($form->{vc})) {
623 $form->{id} = 0 if $form->{saveasnew};
624 # best case fix für bug 1079. Einkaufsrabatt wird nicht richtig
625 # aus Lieferantenauftrag -> Lieferschein -> Rechnung übernommen
626 # Tritt nur auf, wenn man direkt über Lieferschein -> speichern ->
627 # Workflow Rechnung geht (beim Aufruf über edit() i.O.)
628 # Gut. DO-save() speichert den Discount im DB-Format 0.12 für
629 # 12%, die Konvertierung wird leider in $form gemacht und daher
630 # wird die Maske mit dem falschen Rabatt wieder aufgebaut.
631 # Wie immer: backup_vars verwenden um nichts anderes kaputt zu
632 # machen. jan 03.03.2010
633 # nicht mehr notwendig da für bug 1284 der backend aufruf entsprechend
637 if(!exists $form->{addition}) {
638 $form->{snumbers} = qq|donumber_| . $form->{donumber};
639 $form->{addition} = "SAVED";
642 # /saving the history
644 $form->{simple_save} = 1;
645 if(!$form->{print_and_save}) {
646 set_headings("edit");
650 $main::lxdebug->leave_sub();
654 $main::lxdebug->enter_sub();
658 my $form = $main::form;
659 my $locale = $main::locale;
661 map { delete $form->{$_} } qw(action header login password);
662 my @variables = map { { 'key' => $_, 'value' => $form->{$_} } } grep { '' eq ref $form->{$_} } keys %{ $form };
664 $form->{title} = $locale->text('Delete delivery order');
667 print $form->parse_html_template('do/delete', { 'VARIABLES' => \@variables });
669 $main::lxdebug->leave_sub();
672 sub delete_delivery_order {
673 $main::lxdebug->enter_sub();
677 my $form = $main::form;
678 my %myconfig = %main::myconfig;
679 my $locale = $main::locale;
683 if(!exists $form->{addition}) {
684 $form->{snumbers} = qq|donumber_| . $form->{donumber};
685 $form->{addition} = "DELETED";
688 # /saving the history
690 $form->info($locale->text('Delivery Order deleted!'));
694 $form->error($locale->text('Cannot delete delivery order!'));
696 $main::lxdebug->leave_sub();
700 $main::lxdebug->enter_sub();
702 my $form = $main::form;
703 my %myconfig = %main::myconfig;
704 my $locale = $main::locale;
707 $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
709 $form->{convert_from_do_ids} = $form->{id};
710 $form->{deliverydate} = $form->{transdate};
711 $form->{transdate} = $form->{invdate} = $form->current_date(\%myconfig);
712 $form->{duedate} = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
713 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
717 delete @{$form}{qw(id closed delivered)};
719 my ($script, $buysell);
720 if ($form->{type} eq 'purchase_delivery_order') {
721 $form->{title} = $locale->text('Add Vendor Invoice');
722 $form->{script} = 'ir.pl';
727 $form->{title} = $locale->text('Add Sales Invoice');
728 $form->{script} = 'is.pl';
733 for my $i (1 .. $form->{rowcount}) {
735 if ($form->{discount}){ # Falls wir einen Kundenrabatt haben
736 # und keinen anderen discount wert an $i ...
737 $form->{"discount_$i"} ||= $form->{discount}*100; # ... nehmen wir den kundenrabatt
739 map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice lastcost basefactor);
742 $form->{type} = "invoice";
745 $main::locale = new Locale "$myconfig{countrycode}", "$script";
746 $locale = $main::locale;
748 require "bin/mozilla/$form->{script}";
750 my $currency = $form->{currency};
753 $form->{currency} = $currency;
754 $form->{exchangerate} = "";
755 $form->{forex} = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
756 $form->{exchangerate} = $form->{forex} if ($form->{forex});
761 for my $i (1 .. $form->{rowcount}) {
762 $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
764 my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
766 my $decimalplaces = ($dec > 2) ? $dec : 2;
768 # copy delivery date from reqdate for order -> invoice conversion
769 $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
770 unless $form->{"deliverydate_$i"};
773 $form->{"sellprice_$i"} =
774 $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
777 $form->{"lastcost_$i"} =
778 $form->format_amount(\%myconfig, $form->{"lastcost_$i"},
781 (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
782 $dec_qty = length $dec_qty;
784 $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
790 $main::lxdebug->leave_sub();
794 $main::lxdebug->enter_sub();
796 my $form = $main::form;
797 my %myconfig = %main::myconfig;
798 my $locale = $main::locale;
801 $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
803 my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
805 if (!scalar @do_ids) {
806 $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
809 map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
811 if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
812 $form->show_generic_error($form->{vc} eq 'customer' ?
813 $locale->text('You cannot create an invoice for delivery orders for different customers.') :
814 $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
818 my $source_type = $form->{type};
819 $form->{convert_from_do_ids} = join ' ', @do_ids;
820 # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
821 # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
822 # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
823 # $shell: perldoc perlunc; /delete EXPR
824 $form->{donumber} = delete $form->{donumber_array};
825 $form->{deliverydate} = $form->{transdate};
826 $form->{transdate} = $form->current_date(\%myconfig);
827 $form->{duedate} = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
828 $form->{type} = "invoice";
830 $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
832 my ($script, $buysell);
833 if ($source_type eq 'purchase_delivery_order') {
834 $form->{title} = $locale->text('Add Vendor Invoice');
835 $form->{script} = 'ir.pl';
840 $form->{title} = $locale->text('Add Sales Invoice');
841 $form->{script} = 'is.pl';
846 map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
848 $form->{rowcount} = 0;
849 foreach my $ref (@{ $form->{form_details} }) {
851 $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
852 map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
853 map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice discount lastcost);
854 $form->{"discount_$form->{rowcount}"} = $form->{"discount_$form->{rowcount}"} * 100; #s.a. Bug 1151
855 # Anm.: Eine Änderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
856 # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
858 delete $form->{form_details};
860 $locale = new Locale "$myconfig{countrycode}", "$script";
862 require "bin/mozilla/$form->{script}";
868 $main::lxdebug->leave_sub();
872 $main::lxdebug->enter_sub();
876 my $form = $main::form;
878 $form->{saveasnew} = 1;
880 $form->{delivered} = 0;
881 map { delete $form->{$_} } qw(printed emailed queued);
882 delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
884 # Let Lx-Office assign a new order number if the user hasn't changed the
885 # previous one. If it has been changed manually then use it as-is.
886 $form->{donumber} =~ s/^\s*//g;
887 $form->{donumber} =~ s/\s*$//g;
888 if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
889 delete($form->{donumber});
894 $main::lxdebug->leave_sub();
898 $main::lxdebug->enter_sub();
902 my $form = $main::form;
904 $form->{print_and_save} = 1;
906 my $saved_form = save_form();
910 restore_form($saved_form, 0, qw(id ordnumber quonumber));
914 $main::lxdebug->leave_sub();
917 sub calculate_stock_in_out {
918 $main::lxdebug->enter_sub();
920 my $form = $main::form;
924 if (!$form->{"id_${i}"}) {
925 $main::lxdebug->leave_sub();
929 my $all_units = AM->retrieve_all_units();
931 my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
932 my $sinfo = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
934 my $sum = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
936 my $content = $form->format_amount_units('amount' => $sum * 1,
937 'part_unit' => $form->{"partunit_$i"},
938 'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
939 'conv_units' => 'convertible_not_smaller',
941 $content .= qq| <input type="button" onclick="open_stock_in_out_window('${in_out}', $i);" value="?">|;
943 $main::lxdebug->leave_sub();
948 sub get_basic_bin_wh_info {
949 $main::lxdebug->enter_sub();
951 my $stock_info = shift;
953 my $form = $main::form;
955 foreach my $sinfo (@{ $stock_info }) {
956 next unless ($sinfo->{bin_id});
958 my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
959 map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
962 $main::lxdebug->leave_sub();
965 sub stock_in_out_form {
966 $main::lxdebug->enter_sub();
968 my $form = $main::form;
970 if ($form->{in_out} eq 'out') {
976 $main::lxdebug->leave_sub();
979 sub redo_stock_info {
980 $main::lxdebug->enter_sub();
984 my $form = $main::form;
986 my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
988 if ($params{add_empty_row}) {
990 'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
991 'bin_id' => scalar(@non_empty) ? $non_empty[-1]->{bin_id} : undef,
995 @{ $params{stock_info} } = @non_empty;
997 $main::lxdebug->leave_sub();
1000 sub update_stock_in {
1001 $main::lxdebug->enter_sub();
1003 my $form = $main::form;
1004 my %myconfig = %main::myconfig;
1006 my $stock_info = [];
1008 foreach my $i (1..$form->{rowcount}) {
1009 $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1010 push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1013 display_stock_in_form($stock_info);
1015 $main::lxdebug->leave_sub();
1019 $main::lxdebug->enter_sub();
1021 my $form = $main::form;
1023 my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1025 display_stock_in_form($stock_info);
1027 $main::lxdebug->leave_sub();
1030 sub display_stock_in_form {
1031 $main::lxdebug->enter_sub();
1033 my $stock_info = shift;
1035 my $form = $main::form;
1036 my %myconfig = %main::myconfig;
1037 my $locale = $main::locale;
1039 $form->{jsscript} = 1;
1041 $form->{title} = $locale->text('Stock');
1043 my $part_info = IC->get_basic_part_info('id' => $form->{parts_id});
1045 my $units = AM->retrieve_units(\%myconfig, $form);
1046 my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1048 $form->get_lists('warehouses' => { 'key' => 'WAREHOUSES',
1049 'bins' => 'BINS' });
1051 redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
1053 get_basic_bin_wh_info($stock_info);
1056 print $form->parse_html_template('do/stock_in_form', { 'UNITS' => $units_data,
1057 'STOCK_INFO' => $stock_info,
1058 'PART_INFO' => $part_info, });
1060 $main::lxdebug->leave_sub();
1064 $main::lxdebug->enter_sub();
1066 my $form = $main::form;
1067 my %myconfig = %main::myconfig;
1069 my $stock_info = [];
1071 foreach my $i (1..$form->{rowcount}) {
1072 $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1074 next if ($form->{"qty_$i"} <= 0);
1076 push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1079 $form->{stock} = YAML::Dump($stock_info);
1082 print $form->parse_html_template('do/set_stock_in_out');
1084 $main::lxdebug->leave_sub();
1087 sub stock_out_form {
1088 $main::lxdebug->enter_sub();
1090 my $form = $main::form;
1091 my %myconfig = %main::myconfig;
1092 my $locale = $main::locale;
1094 $form->{title} = $locale->text('Release From Stock');
1096 my $part_info = IC->get_basic_part_info('id' => $form->{parts_id});
1098 my $units = AM->retrieve_units(\%myconfig, $form);
1099 my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1101 my @contents = DO->get_item_availability('parts_id' => $form->{parts_id});
1103 my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1105 if (!$form->{delivered}) {
1106 foreach my $row (@contents) {
1107 $row->{available_qty} = $form->format_amount_units('amount' => $row->{qty} * 1,
1108 'part_unit' => $part_info->{unit},
1109 'conv_units' => 'convertible_not_smaller',
1112 foreach my $sinfo (@{ $stock_info }) {
1113 next if (($row->{bin_id} != $sinfo->{bin_id}) ||
1114 ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1115 ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1116 ($row->{bestbefore} ne $sinfo->{bestbefore}));
1118 map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
1123 get_basic_bin_wh_info($stock_info);
1125 foreach my $sinfo (@{ $stock_info }) {
1126 map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1131 print $form->parse_html_template('do/stock_out_form', { 'UNITS' => $units_data,
1132 'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1133 'PART_INFO' => $part_info, });
1135 $main::lxdebug->leave_sub();
1139 $main::lxdebug->enter_sub();
1141 my $form = $main::form;
1142 my %myconfig = %main::myconfig;
1143 my $locale = $main::locale;
1145 my $stock_info = [];
1147 foreach my $i (1 .. $form->{rowcount}) {
1148 $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1150 next if ($form->{"qty_$i"} <= 0);
1152 push @{ $stock_info }, {
1153 'warehouse_id' => $form->{"warehouse_id_$i"},
1154 'bin_id' => $form->{"bin_id_$i"},
1155 'chargenumber' => $form->{"chargenumber_$i"},
1156 'bestbefore' => $form->{"bestbefore_$i"},
1157 'qty' => $form->{"qty_$i"},
1158 'unit' => $form->{"unit_$i"},
1163 my @errors = DO->check_stock_availability('requests' => $stock_info,
1164 'parts_id' => $form->{parts_id});
1166 $form->{stock} = YAML::Dump($stock_info);
1169 $form->{ERRORS} = [];
1170 map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1171 stock_in_out_form();
1175 print $form->parse_html_template('do/set_stock_in_out');
1178 $main::lxdebug->leave_sub();
1182 $main::lxdebug->enter_sub();
1184 my $form = $main::form;
1185 my %myconfig = %main::myconfig;
1186 my $locale = $main::locale;
1188 if (DO->is_marked_as_delivered('id' => $form->{id})) {
1189 $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1192 my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1196 my $units = AM->retrieve_units(\%myconfig, $form);
1197 my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1200 $form->{ERRORS} = [];
1202 foreach my $i (1 .. $form->{rowcount}) {
1203 next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1205 my $row_sum_base_qty = 0;
1206 my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1208 foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1209 $request->{parts_id} = $form->{"id_$i"};
1210 $row_sum_base_qty += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1212 push @all_requests, $request;
1215 next if (0 == $row_sum_base_qty);
1217 my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1219 # if ($do_base_qty != $row_sum_base_qty) {
1220 # push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
1221 # $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1225 if (@{ $form->{ERRORS} }) {
1226 push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1229 $main::lxdebug->leave_sub();
1235 DO->transfer_in_out('direction' => 'in',
1236 'requests' => \@all_requests);
1238 $form->{delivered} = 1;
1242 $main::lxdebug->leave_sub();
1246 $main::lxdebug->enter_sub();
1248 my $form = $main::form;
1249 my %myconfig = %main::myconfig;
1250 my $locale = $main::locale;
1252 if (DO->is_marked_as_delivered('id' => $form->{id})) {
1253 $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
1256 my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
1260 my $units = AM->retrieve_units(\%myconfig, $form);
1261 my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1264 $form->{ERRORS} = [];
1266 foreach my $i (1 .. $form->{rowcount}) {
1267 next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
1269 my $row_sum_base_qty = 0;
1270 my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1272 foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
1273 $request->{parts_id} = $form->{"id_$i"};
1274 $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1276 my $map_key = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber bestbefore)});
1278 $request_map{$map_key} ||= $request;
1279 $request_map{$map_key}->{sum_base_qty} ||= 0;
1280 $request_map{$map_key}->{sum_base_qty} += $request->{base_qty};
1281 $row_sum_base_qty += $request->{base_qty};
1283 push @all_requests, $request;
1286 next if (0 == $row_sum_base_qty);
1288 my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1290 # if ($do_base_qty != $row_sum_base_qty) {
1291 # push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
1292 # $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1297 my @bin_ids = map { $_->{bin_id} } values %request_map;
1298 my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
1299 my @contents = DO->get_item_availability('parts_id' => \@part_ids);
1301 foreach my $inv (@contents) {
1302 my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber bestbefore)};
1304 next unless ($request_map{$map_key});
1306 my $request = $request_map{$map_key};
1307 $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
1310 foreach my $request (values %request_map) {
1311 next if ($request->{ok});
1313 my $pinfo = $part_info_map{$request->{parts_id}};
1314 my $binfo = $bin_info_map{$request->{bin_id}};
1316 if ($main::show_best_before) {
1317 push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, #5, for the transfer of #6.",
1318 $pinfo->{description},
1319 $binfo->{warehouse_description},
1320 $binfo->{bin_description},
1321 $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1322 $request->{bestbefore} ? $locale->text('bestbefore #1', $request->{bestbefore}) : $locale->text('no bestbefore'),
1323 $form->format_amount_units('amount' => $request->{sum_base_qty},
1324 'part_unit' => $pinfo->{unit},
1325 'conv_units' => 'convertible_not_smaller'));
1327 push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, for the transfer of #5.",
1328 $pinfo->{description},
1329 $binfo->{warehouse_description},
1330 $binfo->{bin_description},
1331 $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1332 $form->format_amount_units('amount' => $request->{sum_base_qty},
1333 'part_unit' => $pinfo->{unit},
1334 'conv_units' => 'convertible_not_smaller'));
1339 if (@{ $form->{ERRORS} }) {
1340 push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1343 $main::lxdebug->leave_sub();
1349 DO->transfer_in_out('direction' => 'out',
1350 'requests' => \@all_requests);
1352 $form->{delivered} = 1;
1356 $main::lxdebug->leave_sub();
1360 $main::lxdebug->enter_sub();
1362 my $form = $main::form;
1364 DO->close_orders('ids' => [ $form->{id} ]);
1366 $form->{closed} = 1;
1370 $main::lxdebug->leave_sub();
1375 call_sub($main::form->{yes_nextsub});
1379 call_sub($main::form->{no_nextsub});
1383 call_sub($main::form->{update_nextsub} || $main::form->{nextsub} || 'update_delivery_order');
1387 my $form = $main::form;
1388 my $locale = $main::locale;
1390 foreach my $action (qw(update ship_to print e_mail save transfer_out transfer_in mark_closed save_as_new invoice delete)) {
1391 if ($form->{"action_${action}"}) {
1397 $form->error($locale->text('No action defined.'));