Merge branch 'master' of vc.linet-services.de:public/lx-office-erp
[kivitendo-erp.git] / bin / mozilla / do.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger, Accounting
9 # Copyright (c) 1998-2003
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
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.
20 #
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 #======================================================================
29 #
30 # Delivery orders
31 #======================================================================
32
33 use List::Util qw(max sum);
34 use POSIX qw(strftime);
35 use YAML;
36
37 use SL::DB::DeliveryOrder;
38 use SL::DO;
39 use SL::IR;
40 use SL::IS;
41 use SL::ReportGenerator;
42 use SL::WH;
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";
48
49 use strict;
50
51 1;
52
53 # end of main
54
55 sub check_do_access {
56   $main::auth->assert($main::form->{type} . '_edit');
57 }
58
59 sub set_headings {
60   $main::lxdebug->enter_sub();
61
62   check_do_access();
63
64   my ($action) = @_;
65
66   my $form     = $main::form;
67   my $locale   = $main::locale;
68
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');
72   } else {
73     $form->{vc}    = 'customer';
74     $form->{title} = $action eq "edit" ? $locale->text('Edit Sales Delivery Order') : $locale->text('Add Sales Delivery Order');
75   }
76
77   $form->{heading} = $locale->text('Delivery Order');
78
79   $main::lxdebug->leave_sub();
80 }
81
82 sub add {
83   $main::lxdebug->enter_sub();
84
85   check_do_access();
86
87   my $form     = $main::form;
88
89   set_headings("add");
90
91   $form->{callback} = build_std_url('action=add', 'type', 'vc') unless ($form->{callback});
92
93   order_links();
94   prepare_order();
95   display_form();
96
97   $main::lxdebug->leave_sub();
98 }
99
100 sub edit {
101   $main::lxdebug->enter_sub();
102
103   check_do_access();
104
105   my $form     = $main::form;
106
107   # show history button
108   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
109   #/show hhistory button
110
111   $form->{simple_save} = 0;
112
113   set_headings("edit");
114
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});
118 #     if (!$id) {
119
120       # reset rowcount
121       undef $form->{rowcount};
122       add();
123       $main::lxdebug->leave_sub();
124       return;
125 #     }
126   } elsif (!$form->{id}) {
127     add();
128     $main::lxdebug->leave_sub();
129     return;
130   }
131
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};
139   }
140
141   set_headings("edit");
142
143   order_links();
144   prepare_order();
145
146   if ($form->{print_and_save}) {
147     $form->{language_id} = $language_id;
148     $form->{printer_id}  = $printer_id;
149   }
150
151   display_form();
152
153   $main::lxdebug->leave_sub();
154 }
155
156 sub order_links {
157   $main::lxdebug->enter_sub();
158
159   check_do_access();
160
161   my $form     = $main::form;
162   my %myconfig = %main::myconfig;
163
164   # get customer/vendor
165   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
166
167   # retrieve order/quotation
168   $form->{webdav}   = $::lx_office_conf{features}->{webdav};
169   $form->{jsscript} = 1;
170
171   my $editing = $form->{id};
172
173   DO->retrieve('vc'  => $form->{vc},
174                'ids' => $form->{id});
175
176   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes currency));
177   $form->{shipto} = 1 if $form->{id} || $form->{convert_from_oe_ids};
178
179   # get customer / vendor
180   if ($form->{vc} eq 'vendor') {
181     IR->get_vendor(\%myconfig, \%$form);
182     $form->{discount} = $form->{vendor_discount};
183   } else {
184     IS->get_customer(\%myconfig, \%$form);
185     $form->{discount} = $form->{customer_discount};
186   }
187
188   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id));
189   $form->restore_vars(qw(currency)) if ($form->{id} || $form->{convert_from_oe_ids});
190   $form->restore_vars(qw(taxincluded)) if $form->{id};
191   $form->restore_vars(qw(salesman_id)) if $editing;
192
193   if ($form->{"all_$form->{vc}"}) {
194     unless ($form->{"$form->{vc}_id"}) {
195       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
196     }
197   }
198
199   ($form->{ $form->{vc} })  = split /--/, $form->{ $form->{vc} };
200   $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
201
202   $form->{employee} = "$form->{employee}--$form->{employee_id}";
203
204   $main::lxdebug->leave_sub();
205 }
206
207 sub prepare_order {
208   $main::lxdebug->enter_sub();
209
210   check_do_access();
211
212   my $form     = $main::form;
213   my %myconfig = %main::myconfig;
214
215   $form->{formname} = $form->{type} unless $form->{formname};
216
217   my $i = 0;
218   foreach my $ref (@{ $form->{form_details} }) {
219     $form->{rowcount} = ++$i;
220
221     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
222   }
223   for my $i (1 .. $form->{rowcount}) {
224     if ($form->{id}) {
225       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
226     } else {
227       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
228     }
229     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
230     $dec           = length $dec;
231     my $decimalplaces = ($dec > 2) ? $dec : 2;
232
233     # copy reqdate from deliverydate for invoice -> order conversion
234     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
235
236     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
237     $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
238
239     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
240     $dec_qty = length $dec_qty;
241     $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
242   }
243
244   $main::lxdebug->leave_sub();
245 }
246
247 sub form_header {
248   $main::lxdebug->enter_sub();
249
250   check_do_access();
251
252   my $form     = $main::form;
253   my %myconfig = %main::myconfig;
254
255   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
256   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
257
258   # use JavaScript Calendar or not
259   $form->{jsscript} = 1;
260
261   my @old_project_ids = ($form->{"globalproject_id"});
262   map({ push(@old_project_ids, $form->{"project_id_$_"})
263           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
264
265   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
266   $form->get_lists("projects"       => {
267                      "key"          => "ALL_PROJECTS",
268                      "all"          => 0,
269                      "old_id"       => \@old_project_ids
270                    },
271                    $vc              => "ALL_VC",
272                    "price_factors"  => "ALL_PRICE_FACTORS",
273                    "departments"    => "ALL_DEPARTMENTS",
274                    "business_types" => "ALL_BUSINESS_TYPES",
275     );
276
277   $::form->{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{employee_id},  deleted => 0 ] ]);
278   $::form->{ALL_SALESMEN}          = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{salesman_id},  deleted => 0 ] ]);
279   $::form->{ALL_SHIPTO}            = SL::DB::Manager::Shipto->get_all(query => [
280     or => [ trans_id  => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
281   ]);
282   $::form->{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all(query => [
283     or => [
284       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
285       and      => [
286         cp_cv_id => undef,
287         cp_id    => $::form->{cp_id} * 1
288       ]
289     ]
290   ]);
291
292   map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
293   map { $_->{value} = "$_->{name}--$_->{id}"        } @{ $form->{ALL_VC} };
294
295   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
296
297   $form->{oldvcname}         =  $form->{"old$form->{vc}"};
298   $form->{oldvcname}         =~ s/--.*//;
299
300   $form->{onload} = "";
301   if ($form->{resubmit}) {
302     if ($form->{format} eq "html") {
303       $form->{onload} = "window.open('about:blank','Beleg'); document.do.target = 'Beleg';";
304     }
305     # emulate click for resubmitting actions
306     $form->{onload} .= "document.do.${_}.click(); " for grep { /^action_/ } keys %$form;
307     $form->{onload} .= "document.do.submit();"
308   }
309
310   $form->header();
311   # Fix für Bug 1082 Erwartet wird: 'abteilungsNAME--abteilungsID'
312   # und Erweiterung für Bug 1760:
313   # Das war leider nur ein Teil-Fix, da das Verhalten den 'Erneuern'-Knopf
314   # nicht Ã¼berlebt. Konsequent jetzt auf L umgestellt
315   #   $ perldoc SL::Template::Plugin::L
316   # Daher entsprechend nur die Anpassung in form_header
317   # und in DO.pm gemacht. 4 Testfälle:
318   # department_id speichern                 | i.O.
319   # department_id lesen                     | i.O.
320   # department leer Ã¼berlebt erneuern       | i.O.
321   # department nicht leer Ã¼berlebt erneuern | i.O.
322   # $main::lxdebug->message(0, 'ABTEILUNGS ID in form?' . $form->{department_id});
323   print $form->parse_html_template('do/form_header');
324
325   $main::lxdebug->leave_sub();
326 }
327
328 sub form_footer {
329   $main::lxdebug->enter_sub();
330
331   check_do_access();
332
333   my $form     = $main::form;
334
335   $form->{PRINT_OPTIONS} = print_options('inline' => 1);
336
337   print $form->parse_html_template('do/form_footer');
338
339   $main::lxdebug->leave_sub();
340 }
341
342 sub update_delivery_order {
343   $main::lxdebug->enter_sub();
344
345   check_do_access();
346
347   my $form     = $main::form;
348   my %myconfig = %main::myconfig;
349
350   set_headings($form->{"id"} ? "edit" : "add");
351
352   $form->{update} = 1;
353
354   my $payment_id;
355   $payment_id = $form->{payment_id} if $form->{payment_id};
356
357   check_name($form->{vc});
358   $form->{discount} =  $form->{"$form->{vc}_discount"} if defined $form->{"$form->{vc}_discount"};
359   # Problem: Wenn man ohne Erneuern einen Kunden/Lieferanten
360   # wechselt, wird der entsprechende Kunden/ Lieferantenrabatt
361   # nicht Ã¼bernommen. Grundproblem: In Commit 82574e78
362   # hab ich aus discount customer_discount und vendor_discount
363   # gemacht und entsprechend an den Oberflächen richtig hin-
364   # geschoben. Die damals bessere Lösung wäre gewesen:
365   # In den Templates nur die hidden für form-discount wieder ein-
366   # setzen dann wäre die Verrenkung jetzt nicht notwendig.
367   # TODO: Ggf. Bugfix 1284, 1575 und 817 wieder zusammenführen
368   # Testfälle: Kunden mit Rabatt 0 -> Rabatt 20 i.O.
369   #            Kunde mit Rabatt 20 -> Rabatt 0  i.O.
370   #            Kunde mit Rabatt 20 -> Rabatt 5,5 i.O.
371   $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
372
373   # for pricegroups
374   my $i = $form->{rowcount};
375
376   if (   ($form->{"partnumber_$i"} eq "")
377       && ($form->{"description_$i"} eq "")
378       && ($form->{"partsgroup_$i"}  eq "")) {
379
380     check_form();
381
382   } else {
383
384     my $mode;
385     if ($form->{type} eq 'purchase_delivery_order') {
386       IR->retrieve_item(\%myconfig, $form);
387       $mode = 'IR';
388     } else {
389       IS->retrieve_item(\%myconfig, $form);
390       $mode = 'IS';
391     }
392
393     my $rows = scalar @{ $form->{item_list} };
394
395     if ($rows) {
396       $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
397
398       if ($rows > 1) {
399
400         select_item(mode => $mode);
401         ::end_of_request();
402
403       } else {
404
405         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
406
407         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
408         $form->{"sellprice_$i"}          = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
409         $form->{"lastcost_$i"}          = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
410         $form->{"qty_$i"}                = $form->format_amount(\%myconfig, $form->{"qty_$i"});
411       }
412
413       display_form();
414
415     } else {
416
417       # ok, so this is a new part
418       # ask if it is a part or service item
419
420       if (   $form->{"partsgroup_$i"}
421           && ($form->{"partsnumber_$i"} eq "")
422           && ($form->{"description_$i"} eq "")) {
423         $form->{rowcount}--;
424         $form->{"discount_$i"} = "";
425         $form->{"not_discountable_$i"} = "";
426         display_form();
427
428       } else {
429         $form->{"id_$i"}   = 0;
430         new_item();
431       }
432     }
433   }
434
435   $main::lxdebug->leave_sub();
436 }
437
438 sub search {
439   $main::lxdebug->enter_sub();
440
441   check_do_access();
442
443   my $form     = $main::form;
444   my %myconfig = %main::myconfig;
445   my $locale   = $main::locale;
446
447   $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
448
449   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS",
450                                        "all" => 1 },
451                    "$form->{vc}s" => "ALL_VC");
452   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all(query => [ deleted => 0 ]);
453
454   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
455   $form->{jsscript}          = 1;
456   $form->{title}             = $locale->text('Delivery Orders');
457
458   $form->header();
459
460   print $form->parse_html_template('do/search');
461
462   $main::lxdebug->leave_sub();
463 }
464
465 sub orders {
466   $main::lxdebug->enter_sub();
467
468   check_do_access();
469
470   my $form     = $main::form;
471   my %myconfig = %main::myconfig;
472   my $locale   = $main::locale;
473   my $cgi      = $::request->{cgi};
474
475   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
476
477   report_generator_set_default_sort('transdate', 1);
478
479   DO->transactions();
480
481   $form->{rowcount} = scalar @{ $form->{DO} };
482
483   my @columns = qw(
484     ids                     transdate
485     id                      donumber
486     ordnumber
487     name                    employee  salesman
488     shipvia                 globalprojectnumber
489     transaction_description
490     open                    delivered
491   );
492
493   $form->{l_open}      = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
494   $form->{l_delivered} = "Y"                     if ($form->{delivered} && $form->{notdelivered});
495
496   $form->{title}       = $locale->text('Delivery Orders');
497
498   my $attachment_basename = $form->{vc} eq 'vendor' ? $locale->text('purchase_delivery_order_list') : $locale->text('sales_delivery_order_list');
499
500   my $report = SL::ReportGenerator->new(\%myconfig, $form);
501
502   my @hidden_variables = map { "l_${_}" } @columns;
503   push @hidden_variables, $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered donumber ordnumber
504                                           transaction_description transdatefrom transdateto type vc employee_id salesman_id project_id);
505
506   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
507
508   my %column_defs = (
509     'ids'                     => { 'text' => '', },
510     'transdate'               => { 'text' => $locale->text('Date'), },
511     'id'                      => { 'text' => $locale->text('ID'), },
512     'donumber'                => { 'text' => $locale->text('Delivery Order'), },
513     'ordnumber'               => { 'text' => $locale->text('Order'), },
514     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
515     'employee'                => { 'text' => $locale->text('Employee'), },
516     'salesman'                => { 'text' => $locale->text('Salesman'), },
517     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
518     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
519     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
520     'open'                    => { 'text' => $locale->text('Open'), },
521     'delivered'               => { 'text' => $locale->text('Delivered'), },
522   );
523
524   foreach my $name (qw(id transdate donumber ordnumber name employee salesman shipvia transaction_description)) {
525     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
526     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
527   }
528
529   $form->{"l_type"} = "Y";
530   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
531
532   $column_defs{ids}->{visible} = 'HTML';
533
534   $report->set_columns(%column_defs);
535   $report->set_column_order(@columns);
536
537   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
538
539   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
540
541   my @options;
542   if ($form->{customer}) {
543     push @options, $locale->text('Customer') . " : $form->{customer}";
544   }
545   if ($form->{vendor}) {
546     push @options, $locale->text('Vendor') . " : $form->{vendor}";
547   }
548   if ($form->{department}) {
549     my ($department) = split /--/, $form->{department};
550     push @options, $locale->text('Department') . " : $department";
551   }
552   if ($form->{donumber}) {
553     push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
554   }
555   if ($form->{ordnumber}) {
556     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
557   }
558   if ($form->{transaction_description}) {
559     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
560   }
561   if ($form->{transdatefrom}) {
562     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
563   }
564   if ($form->{transdateto}) {
565     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
566   }
567   if ($form->{open}) {
568     push @options, $locale->text('Open');
569   }
570   if ($form->{closed}) {
571     push @options, $locale->text('Closed');
572   }
573   if ($form->{delivered}) {
574     push @options, $locale->text('Delivered');
575   }
576   if ($form->{notdelivered}) {
577     push @options, $locale->text('Not delivered');
578   }
579
580   $report->set_options('top_info_text'        => join("\n", @options),
581                        'raw_top_info_text'    => $form->parse_html_template('do/orders_top'),
582                        'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
583                        'output_format'        => 'HTML',
584                        'title'                => $form->{title},
585                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
586     );
587   $report->set_options_from_form();
588   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
589
590   # add sort and escape callback, this one we use for the add sub
591   $form->{callback} = $href .= "&sort=$form->{sort}";
592
593   # escape callback for href
594   my $callback = $form->escape($href);
595
596   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
597   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
598
599   my $idx            = 1;
600
601   foreach my $dord (@{ $form->{DO} }) {
602     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
603     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
604
605     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
606
607     $row->{ids}  = {
608       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
609                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
610       'valign'   => 'center',
611       'align'    => 'center',
612     };
613
614     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
615     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}" if $dord->{oe_id};
616     $report->add_data($row);
617
618     $idx++;
619   }
620
621   $report->generate_with_headers();
622
623   $main::lxdebug->leave_sub();
624 }
625
626 sub save {
627   $main::lxdebug->enter_sub();
628
629   my (%params) = @_;
630
631   check_do_access();
632
633   my $form     = $main::form;
634   my %myconfig = %main::myconfig;
635   my $locale   = $main::locale;
636
637   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
638
639   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
640
641   $form->{donumber} =~ s/^\s*//g;
642   $form->{donumber} =~ s/\s*$//g;
643
644   my $msg = ucfirst $form->{vc};
645   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
646
647   # $locale->text('Customer missing!');
648   # $locale->text('Vendor missing!');
649
650   remove_emptied_rows();
651   validate_items();
652
653   # if the name changed get new values
654   if (check_name($form->{vc})) {
655     update();
656     ::end_of_request();
657   }
658
659   $form->{id} = 0 if $form->{saveasnew};
660   # best case fix für bug 1079. Einkaufsrabatt wird nicht richtig
661   # aus Lieferantenauftrag -> Lieferschein -> Rechnung Ã¼bernommen
662   # Tritt nur auf, wenn man direkt Ã¼ber Lieferschein -> speichern ->
663   # Workflow Rechnung geht (beim Aufruf Ã¼ber edit() i.O.)
664   # Gut. DO-save() speichert den Discount im DB-Format 0.12 für
665   # 12%, die Konvertierung wird leider in $form gemacht und daher
666   # wird die Maske mit dem falschen Rabatt wieder aufgebaut.
667   # Wie immer: backup_vars verwenden um nichts anderes kaputt zu
668   # machen. jan 03.03.2010
669   # nicht mehr notwendig da für bug 1284 der backend aufruf entsprechend
670   # geändert wurde
671   DO->save();
672   # saving the history
673   if(!exists $form->{addition}) {
674     $form->{snumbers} = qq|donumber_| . $form->{donumber};
675     $form->{addition} = "SAVED";
676     $form->save_history;
677   }
678   # /saving the history
679
680   $form->{simple_save} = 1;
681   if (!$params{no_redirect} && !$form->{print_and_save}) {
682     set_headings("edit");
683     update();
684     ::end_of_request();
685   }
686   $main::lxdebug->leave_sub();
687 }
688
689 sub delete {
690   $main::lxdebug->enter_sub();
691
692   check_do_access();
693
694   my $form     = $main::form;
695   my $locale   = $main::locale;
696
697   map { delete $form->{$_} } qw(action header login password);
698   my @variables = map { { 'key' => $_, 'value' => $form->{$_} } } grep { '' eq ref $form->{$_} } keys %{ $form };
699
700   $form->{title} = $locale->text('Delete delivery order');
701   $form->header();
702
703   print $form->parse_html_template('do/delete', { 'VARIABLES' => \@variables });
704
705   $main::lxdebug->leave_sub();
706 }
707
708 sub delete_delivery_order {
709   $main::lxdebug->enter_sub();
710
711   check_do_access();
712
713   my $form     = $main::form;
714   my %myconfig = %main::myconfig;
715   my $locale   = $main::locale;
716
717   if (DO->delete()) {
718     # saving the history
719     if(!exists $form->{addition}) {
720       $form->{snumbers} = qq|donumber_| . $form->{donumber};
721       $form->{addition} = "DELETED";
722       $form->save_history;
723     }
724     # /saving the history
725
726     $form->info($locale->text('Delivery Order deleted!'));
727     ::end_of_request();
728   }
729
730   $form->error($locale->text('Cannot delete delivery order!'));
731
732   $main::lxdebug->leave_sub();
733 }
734
735 sub invoice {
736   $main::lxdebug->enter_sub();
737
738   my $form     = $main::form;
739   my %myconfig = %main::myconfig;
740   my $locale   = $main::locale;
741
742   check_do_access();
743   $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
744
745   $form->{convert_from_do_ids} = $form->{id};
746   $form->{deliverydate}        = $form->{transdate};
747   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
748   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
749   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
750
751   $form->{rowcount}--;
752
753   delete @{$form}{qw(id closed delivered)};
754
755   my ($script, $buysell);
756   if ($form->{type} eq 'purchase_delivery_order') {
757     $form->{title}  = $locale->text('Add Vendor Invoice');
758     $form->{script} = 'ir.pl';
759     $script         = "ir";
760     $buysell        = 'sell';
761
762   } else {
763     $form->{title}  = $locale->text('Add Sales Invoice');
764     $form->{script} = 'is.pl';
765     $script         = "is";
766     $buysell        = 'buy';
767   }
768
769   for my $i (1 .. $form->{rowcount}) {
770     # für bug 1284
771     unless ($form->{"ordnumber"}) {
772       if ($form->{discount}) { # Falls wir einen Lieferanten-/Kundenrabatt haben
773         # und rabattfähig sind, dann
774         unless ($form->{"not_discountable_$i"}) {
775           $form->{"discount_$i"} = $form->{discount}*100; # ... nehmen wir diesen Rabatt
776         }
777       }
778     }
779     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice lastcost basefactor);
780   }
781
782   $form->{type} = "invoice";
783
784   # locale messages
785   $main::locale = new Locale "$myconfig{countrycode}", "$script";
786   $locale = $main::locale;
787
788   require "bin/mozilla/$form->{script}";
789
790   my $currency = $form->{currency};
791   $form->{shipto} = 1 if $form->{convert_from_do_ids};
792   invoice_links();
793
794   if ($form->{ordnumber}) {
795     require SL::DB::Order;
796     if (my $order = SL::DB::Manager::Order->find_by(ordnumber => $form->{ordnumber})) {
797       $order->load;
798       $form->{orddate} = $order->transdate_as_date;
799       $form->{$_}      = $order->$_ for qw(payment_id salesman_id taxzone_id quonumber);
800     }
801   }
802
803   $form->{currency}     = $currency;
804   $form->{exchangerate} = "";
805   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
806   $form->{exchangerate} = $form->{forex} if ($form->{forex});
807
808   prepare_invoice();
809
810   # format amounts
811   for my $i (1 .. $form->{rowcount}) {
812     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
813
814     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
815     $dec           = length $dec;
816     my $decimalplaces = ($dec > 2) ? $dec : 2;
817
818     # copy delivery date from reqdate for order -> invoice conversion
819     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
820       unless $form->{"deliverydate_$i"};
821
822
823     $form->{"sellprice_$i"} =
824       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
825                            $decimalplaces);
826
827     $form->{"lastcost_$i"} =
828       $form->format_amount(\%myconfig, $form->{"lastcost_$i"},
829                            $decimalplaces);
830
831     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
832     $dec_qty = length $dec_qty;
833     $form->{"qty_$i"} =
834       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
835
836   }
837
838   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
839   for my $i (1 .. $form->{rowcount}) {
840     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
841   }
842   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
843   set_pricegroup($_) for 1 .. $form->{rowcount};
844
845   display_form();
846
847   $main::lxdebug->leave_sub();
848 }
849
850 sub invoice_multi {
851   $main::lxdebug->enter_sub();
852
853   my $form     = $main::form;
854   my %myconfig = %main::myconfig;
855   my $locale   = $main::locale;
856
857   check_do_access();
858   $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
859
860   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
861
862   if (!scalar @do_ids) {
863     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
864   }
865
866   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
867
868   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
869     $form->show_generic_error($form->{vc} eq 'customer' ?
870                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
871                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
872                               'back_button' => 1);
873   }
874
875   my $source_type              = $form->{type};
876   $form->{convert_from_do_ids} = join ' ', @do_ids;
877   # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
878   # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
879   # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
880   # $shell: perldoc perlunc; /delete EXPR
881   $form->{donumber}            = delete $form->{donumber_array};
882   $form->{deliverydate}        = $form->{transdate};
883   $form->{transdate}           = $form->current_date(\%myconfig);
884   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
885   $form->{type}                = "invoice";
886   $form->{closed}              = 0;
887   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
888
889   my ($script, $buysell);
890   if ($source_type eq 'purchase_delivery_order') {
891     $form->{title}  = $locale->text('Add Vendor Invoice');
892     $form->{script} = 'ir.pl';
893     $script         = "ir";
894     $buysell        = 'sell';
895
896   } else {
897     $form->{title}  = $locale->text('Add Sales Invoice');
898     $form->{script} = 'is.pl';
899     $script         = "is";
900     $buysell        = 'buy';
901   }
902
903   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
904
905   # get vendor or customer discount
906   my $vc_discount;
907   my $saved_form = save_form();
908   if ($form->{vc} eq 'vendor') {
909     IR->get_vendor(\%myconfig, \%$form);
910     $vc_discount = $form->{vendor_discount};
911   } else {
912     IS->get_customer(\%myconfig, \%$form);
913     $vc_discount = $form->{customer_discount};
914   }
915   restore_form($saved_form);
916
917   $form->{rowcount} = 0;
918   foreach my $ref (@{ $form->{form_details} }) {
919     $form->{rowcount}++;
920     $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
921     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
922     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice lastcost);
923
924     if ($vc_discount){ # falls wir einen Lieferanten/Kundenrabatt haben
925       # und keinen anderen discount wert an $i ...
926       $form->{"discount_$form->{rowcount}"} ||= $vc_discount; # ... nehmen wir diesen Rabatt
927     }
928
929     $form->{"discount_$form->{rowcount}"}   = $form->{"discount_$form->{rowcount}"}  * 100; #s.a. Bug 1151
930     # Anm.: Eine Ã„nderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
931     # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
932
933     $form->{"discount_$form->{rowcount}"} = $form->format_amount(\%myconfig, $form->{"discount_$form->{rowcount}"});
934   }
935   delete $form->{form_details};
936
937   $locale = new Locale "$myconfig{countrycode}", "$script";
938
939   require "bin/mozilla/$form->{script}";
940
941   invoice_links();
942   prepare_invoice();
943
944   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
945   for my $i (1 .. $form->{rowcount}) {
946     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
947   }
948   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
949   set_pricegroup($_) for 1 .. $form->{rowcount};
950
951   display_form();
952
953   $main::lxdebug->leave_sub();
954 }
955
956 sub save_as_new {
957   $main::lxdebug->enter_sub();
958
959   check_do_access();
960
961   my $form     = $main::form;
962
963   $form->{saveasnew} = 1;
964   $form->{closed}    = 0;
965   $form->{delivered} = 0;
966   map { delete $form->{$_} } qw(printed emailed queued);
967   delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
968
969   # Let Lx-Office assign a new order number if the user hasn't changed the
970   # previous one. If it has been changed manually then use it as-is.
971   $form->{donumber} =~ s/^\s*//g;
972   $form->{donumber} =~ s/\s*$//g;
973   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
974     delete($form->{donumber});
975   }
976
977   save();
978
979   $main::lxdebug->leave_sub();
980 }
981
982 sub e_mail {
983   $main::lxdebug->enter_sub();
984
985   check_do_access();
986
987   my $form     = $main::form;
988
989   $form->{print_and_save} = 1;
990
991   my $saved_form = save_form();
992
993   save();
994
995   restore_form($saved_form, 0, qw(id ordnumber quonumber));
996
997   edit_e_mail();
998
999   $main::lxdebug->leave_sub();
1000 }
1001
1002 sub calculate_stock_in_out {
1003   $main::lxdebug->enter_sub();
1004
1005   my $form     = $main::form;
1006
1007   my $i = shift;
1008
1009   if (!$form->{"id_${i}"}) {
1010     $main::lxdebug->leave_sub();
1011     return '';
1012   }
1013
1014   my $all_units = AM->retrieve_all_units();
1015
1016   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
1017   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
1018
1019   my $do_qty   = AM->sum_with_unit($::form->{"qty_$i"}, $::form->{"unit_$i"});
1020   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
1021   my $matches  = $do_qty == $sum;
1022
1023   my $content  = $form->format_amount_units('amount'      => $sum * 1,
1024                                             'part_unit'   => $form->{"partunit_$i"},
1025                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
1026                                             'conv_units'  => 'convertible_not_smaller',
1027                                             'max_places'  => 2);
1028   $content     = qq|<span id="stock_in_out_qty_display_${i}">${content}</span><input type=hidden id='stock_in_out_qty_matches_$i' value='$matches'> <input type="button" onclick="open_stock_in_out_window('${in_out}', $i);" value="?">|;
1029
1030   $main::lxdebug->leave_sub();
1031
1032   return $content;
1033 }
1034
1035 sub get_basic_bin_wh_info {
1036   $main::lxdebug->enter_sub();
1037
1038   my $stock_info = shift;
1039
1040   my $form     = $main::form;
1041
1042   foreach my $sinfo (@{ $stock_info }) {
1043     next unless ($sinfo->{bin_id});
1044
1045     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
1046     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
1047   }
1048
1049   $main::lxdebug->leave_sub();
1050 }
1051
1052 sub stock_in_out_form {
1053   $main::lxdebug->enter_sub();
1054
1055   my $form     = $main::form;
1056
1057   if ($form->{in_out} eq 'out') {
1058     stock_out_form();
1059   } else {
1060     stock_in_form();
1061   }
1062
1063   $main::lxdebug->leave_sub();
1064 }
1065
1066 sub redo_stock_info {
1067   $main::lxdebug->enter_sub();
1068
1069   my %params    = @_;
1070
1071   my $form     = $main::form;
1072
1073   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
1074
1075   if ($params{add_empty_row}) {
1076     push @non_empty, {
1077       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
1078       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
1079     };
1080   }
1081
1082   @{ $params{stock_info} } = @non_empty;
1083
1084   $main::lxdebug->leave_sub();
1085 }
1086
1087 sub update_stock_in {
1088   $main::lxdebug->enter_sub();
1089
1090   my $form     = $main::form;
1091   my %myconfig = %main::myconfig;
1092
1093   my $stock_info = [];
1094
1095   foreach my $i (1..$form->{rowcount}) {
1096     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1097     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1098   }
1099
1100   display_stock_in_form($stock_info);
1101
1102   $main::lxdebug->leave_sub();
1103 }
1104
1105 sub stock_in_form {
1106   $main::lxdebug->enter_sub();
1107
1108   my $form     = $main::form;
1109
1110   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1111
1112   display_stock_in_form($stock_info);
1113
1114   $main::lxdebug->leave_sub();
1115 }
1116
1117 sub display_stock_in_form {
1118   $main::lxdebug->enter_sub();
1119
1120   my $stock_info = shift;
1121
1122   my $form     = $main::form;
1123   my %myconfig = %main::myconfig;
1124   my $locale   = $main::locale;
1125
1126   $form->{jsscript} = 1;
1127
1128   $form->{title} = $locale->text('Stock');
1129
1130   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1131
1132   my $units      = AM->retrieve_units(\%myconfig, $form);
1133   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
1134   my $units_data = AM->unit_select_data($units, $form->{do_unit}, undef, $part_info->{unit});
1135
1136   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
1137                                      'bins'   => 'BINS' });
1138
1139   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
1140
1141   get_basic_bin_wh_info($stock_info);
1142
1143   $form->header();
1144   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
1145                                                          'STOCK_INFO' => $stock_info,
1146                                                          'PART_INFO'  => $part_info, });
1147
1148   $main::lxdebug->leave_sub();
1149 }
1150
1151 sub _stock_in_out_set_qty_display {
1152   my $stock_info       = shift;
1153   my $form             = $::form;
1154   my $all_units        = AM->retrieve_all_units();
1155   my $sum              = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1156   $form->{qty_display} = $form->format_amount_units(amount      => $sum * 1,
1157                                                     part_unit   => $form->{partunit},
1158                                                     amount_unit => $all_units->{ $form->{partunit} }->{base_unit},
1159                                                     conv_units  => 'convertible_not_smaller',
1160                                                     max_places  => 2);
1161 }
1162
1163 sub set_stock_in {
1164   $main::lxdebug->enter_sub();
1165
1166   my $form     = $main::form;
1167   my %myconfig = %main::myconfig;
1168
1169   my $stock_info = [];
1170
1171   foreach my $i (1..$form->{rowcount}) {
1172     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1173
1174     next if ($form->{"qty_$i"} <= 0);
1175
1176     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1177   }
1178
1179   $form->{stock} = YAML::Dump($stock_info);
1180
1181   _stock_in_out_set_qty_display($stock_info);
1182
1183   my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1184   my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1185
1186   $form->header();
1187   print $form->parse_html_template('do/set_stock_in_out', {
1188     qty_matches => $do_qty == $transfer_qty,
1189   });
1190
1191   $main::lxdebug->leave_sub();
1192 }
1193
1194 sub stock_out_form {
1195   $main::lxdebug->enter_sub();
1196
1197   my $form     = $main::form;
1198   my %myconfig = %main::myconfig;
1199   my $locale   = $main::locale;
1200
1201   $form->{title} = $locale->text('Release From Stock');
1202
1203   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1204
1205   my $units      = AM->retrieve_units(\%myconfig, $form);
1206   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1207
1208   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
1209
1210   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1211
1212   if (!$form->{delivered}) {
1213     foreach my $row (@contents) {
1214       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
1215                                                          'part_unit'   => $part_info->{unit},
1216                                                          'conv_units'  => 'convertible_not_smaller',
1217                                                          'max_places'  => 2);
1218
1219       foreach my $sinfo (@{ $stock_info }) {
1220         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1221                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1222                  ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1223                  ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1224
1225         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
1226       }
1227     }
1228
1229   } else {
1230     get_basic_bin_wh_info($stock_info);
1231
1232     foreach my $sinfo (@{ $stock_info }) {
1233       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1234     }
1235   }
1236
1237   $form->header();
1238   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
1239                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1240                                                           'PART_INFO'  => $part_info, });
1241
1242   $main::lxdebug->leave_sub();
1243 }
1244
1245 sub set_stock_out {
1246   $main::lxdebug->enter_sub();
1247
1248   my $form     = $main::form;
1249   my %myconfig = %main::myconfig;
1250   my $locale   = $main::locale;
1251
1252   my $stock_info = [];
1253
1254   foreach my $i (1 .. $form->{rowcount}) {
1255     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1256
1257     next if ($form->{"qty_$i"} <= 0);
1258
1259     push @{ $stock_info }, {
1260       'warehouse_id' => $form->{"warehouse_id_$i"},
1261       'bin_id'       => $form->{"bin_id_$i"},
1262       'chargenumber' => $form->{"chargenumber_$i"},
1263       'bestbefore'   => $form->{"bestbefore_$i"},
1264       'qty'          => $form->{"qty_$i"},
1265       'unit'         => $form->{"unit_$i"},
1266       'row'          => $i,
1267     };
1268   }
1269
1270   my @errors     = DO->check_stock_availability('requests' => $stock_info,
1271                                                 'parts_id' => $form->{parts_id});
1272
1273   $form->{stock} = YAML::Dump($stock_info);
1274
1275   if (@errors) {
1276     $form->{ERRORS} = [];
1277     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1278     stock_in_out_form();
1279
1280   } else {
1281     _stock_in_out_set_qty_display($stock_info);
1282
1283     my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1284     my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1285
1286     $form->header();
1287     print $form->parse_html_template('do/set_stock_in_out', {
1288       qty_matches => $do_qty == $transfer_qty,
1289     });
1290   }
1291
1292   $main::lxdebug->leave_sub();
1293 }
1294
1295 sub transfer_in {
1296   $main::lxdebug->enter_sub();
1297
1298   my $form     = $main::form;
1299   my %myconfig = %main::myconfig;
1300   my $locale   = $main::locale;
1301
1302   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
1303     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1304   }
1305
1306   save(no_redirect => 1);
1307
1308   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1309   my @all_requests;
1310
1311   if (@part_ids) {
1312     my $units         = AM->retrieve_units(\%myconfig, $form);
1313     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1314     my %request_map;
1315
1316     $form->{ERRORS}   = [];
1317
1318     foreach my $i (1 .. $form->{rowcount}) {
1319       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1320
1321       my $row_sum_base_qty = 0;
1322       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1323
1324       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1325         $request->{parts_id}  = $form->{"id_$i"};
1326         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1327
1328         push @all_requests, $request;
1329       }
1330
1331       next if (0 == $row_sum_base_qty);
1332
1333       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1334
1335 #      if ($do_base_qty != $row_sum_base_qty) {
1336 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
1337 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1338 #      }
1339     }
1340
1341     if (@{ $form->{ERRORS} }) {
1342       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1343
1344       set_headings('edit');
1345       update();
1346       $main::lxdebug->leave_sub();
1347
1348       ::end_of_request();
1349     }
1350   }
1351
1352   DO->transfer_in_out('direction' => 'in',
1353                       'requests'  => \@all_requests);
1354
1355   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1356
1357   $form->{callback} = 'do.pl?action=edit&type=purchase_delivery_order&id=' . $form->escape($form->{id});
1358   $form->redirect;
1359
1360   $main::lxdebug->leave_sub();
1361 }
1362
1363 sub transfer_out {
1364   $main::lxdebug->enter_sub();
1365
1366   my $form     = $main::form;
1367   my %myconfig = %main::myconfig;
1368   my $locale   = $main::locale;
1369
1370   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
1371     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
1372   }
1373
1374   save(no_redirect => 1);
1375
1376   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
1377   my @all_requests;
1378
1379   if (@part_ids) {
1380     my $units         = AM->retrieve_units(\%myconfig, $form);
1381     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1382     my %request_map;
1383
1384     $form->{ERRORS}   = [];
1385
1386     foreach my $i (1 .. $form->{rowcount}) {
1387       next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
1388
1389       my $row_sum_base_qty = 0;
1390       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1391
1392       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
1393         $request->{parts_id} = $form->{"id_$i"};
1394         $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1395         $request->{project_id} = $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id};
1396
1397         my $map_key          = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber bestbefore)});
1398
1399         $request_map{$map_key}                 ||= $request;
1400         $request_map{$map_key}->{sum_base_qty} ||= 0;
1401         $request_map{$map_key}->{sum_base_qty}  += $request->{base_qty};
1402         $row_sum_base_qty                       += $request->{base_qty};
1403
1404         push @all_requests, $request;
1405       }
1406
1407       next if (0 == $row_sum_base_qty);
1408
1409       my $do_base_qty = $form->{"qty_$i"} * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1410
1411 #      if ($do_base_qty != $row_sum_base_qty) {
1412 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
1413 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1414 #      }
1415     }
1416
1417     if (%request_map) {
1418       my @bin_ids      = map { $_->{bin_id} } values %request_map;
1419       my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
1420       my @contents     = DO->get_item_availability('parts_id' => \@part_ids);
1421
1422       foreach my $inv (@contents) {
1423         my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber bestbefore)};
1424
1425         next unless ($request_map{$map_key});
1426
1427         my $request    = $request_map{$map_key};
1428         $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
1429       }
1430
1431       foreach my $request (values %request_map) {
1432         next if ($request->{ok});
1433
1434         my $pinfo = $part_info_map{$request->{parts_id}};
1435         my $binfo = $bin_info_map{$request->{bin_id}};
1436
1437         if ($::lx_office_conf{features}->{show_best_before}) {
1438             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, #5, for the transfer of #6.",
1439                                                      $pinfo->{description},
1440                                                      $binfo->{warehouse_description},
1441                                                      $binfo->{bin_description},
1442                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1443                                                      $request->{bestbefore} ? $locale->text('bestbefore #1', $request->{bestbefore}) : $locale->text('no bestbefore'),
1444                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1445                                                                                 'part_unit'   => $pinfo->{unit},
1446                                                                                 'conv_units'  => 'convertible_not_smaller'));
1447         } else {
1448             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, for the transfer of #5.",
1449                                                      $pinfo->{description},
1450                                                      $binfo->{warehouse_description},
1451                                                      $binfo->{bin_description},
1452                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1453                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1454                                                                                 'part_unit'   => $pinfo->{unit},
1455                                                                                 'conv_units'  => 'convertible_not_smaller'));
1456         }
1457       }
1458     }
1459
1460     if (@{ $form->{ERRORS} }) {
1461       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1462
1463       set_headings('edit');
1464       update();
1465       $main::lxdebug->leave_sub();
1466
1467       ::end_of_request();
1468     }
1469   }
1470   DO->transfer_in_out('direction' => 'out',
1471                       'requests'  => \@all_requests);
1472
1473   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1474
1475   $form->{callback} = 'do.pl?action=edit&type=sales_delivery_order&id=' . $form->escape($form->{id});
1476   $form->redirect;
1477
1478   $main::lxdebug->leave_sub();
1479 }
1480
1481 sub mark_closed {
1482   $main::lxdebug->enter_sub();
1483
1484   my $form     = $main::form;
1485
1486   DO->close_orders('ids' => [ $form->{id} ]);
1487
1488   $form->{closed} = 1;
1489
1490   update();
1491
1492   $main::lxdebug->leave_sub();
1493 }
1494
1495
1496 sub yes {
1497   call_sub($main::form->{yes_nextsub});
1498 }
1499
1500 sub no {
1501   call_sub($main::form->{no_nextsub});
1502 }
1503
1504 sub update {
1505   call_sub($main::form->{update_nextsub} || $main::form->{nextsub} || 'update_delivery_order');
1506 }
1507
1508 sub dispatcher {
1509   my $form     = $main::form;
1510   my $locale   = $main::locale;
1511
1512   foreach my $action (qw(update ship_to print e_mail save transfer_out transfer_in mark_closed save_as_new invoice delete)) {
1513     if ($form->{"action_${action}"}) {
1514       call_sub($action);
1515       return;
1516     }
1517   }
1518
1519   $form->error($locale->text('No action defined.'));
1520 }