Der ReportGenerator escapet HTML-Sonderzeichen, sodass   auch wortwörtlich so...
[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::DO;
38 use SL::IR;
39 use SL::IS;
40 use SL::ReportGenerator;
41 use SL::WH;
42
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 1;
50
51 # end of main
52
53 sub check_do_access {
54   $auth->assert($form->{type} . '_edit');
55 }
56
57 sub set_headings {
58   $lxdebug->enter_sub();
59
60   check_do_access();
61
62   my ($action) = @_;
63
64   if ($form->{type} eq 'purchase_delivery_order') {
65     $form->{vc}    = 'vendor';
66     $form->{title} = $action eq "edit" ? $locale->text('Edit Purchase Delivery Order') : $locale->text('Add Purchase Delivery Order');
67   } else {
68     $form->{vc}    = 'customer';
69     $form->{title} = $action eq "edit" ? $locale->text('Edit Sales Delivery Order') : $locale->text('Add Sales Delivery Order');
70   }
71
72   $form->{heading} = $locale->text('Delivery Order');
73
74   $lxdebug->leave_sub();
75 }
76
77 sub add {
78   $lxdebug->enter_sub();
79
80   check_do_access();
81
82   set_headings("add");
83
84   $form->{callback} = build_std_url('action=add', 'type', 'vc') unless ($form->{callback});
85
86   order_links();
87   prepare_order();
88   display_form();
89
90   $lxdebug->leave_sub();
91 }
92
93 sub edit {
94   $lxdebug->enter_sub();
95
96   check_do_access();
97
98   # show history button
99   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
100   #/show hhistory button
101
102   $form->{simple_save} = 0;
103
104   set_headings("edit");
105
106   # editing without stuff to edit? try adding it first
107   if ($form->{rowcount} && !$form->{print_and_save}) {
108 #     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
109 #     if (!$id) {
110
111       # reset rowcount
112       undef $form->{rowcount};
113       add();
114       $lxdebug->leave_sub();
115       return;
116 #     }
117   } elsif (!$form->{id}) {
118     add();
119     $lxdebug->leave_sub();
120     return;
121   }
122
123   if ($form->{print_and_save}) {
124     $form->{action}   = "print";
125     $form->{resubmit} = 1;
126     $language_id      = $form->{language_id};
127     $printer_id       = $form->{printer_id};
128   }
129
130   set_headings("edit");
131
132   order_links();
133   prepare_order();
134
135   if ($form->{print_and_save}) {
136     $form->{language_id} = $language_id;
137     $form->{printer_id}  = $printer_id;
138   }
139
140   display_form();
141
142   $lxdebug->leave_sub();
143 }
144
145 sub order_links {
146   $lxdebug->enter_sub();
147
148   check_do_access();
149
150   # get customer/vendor
151   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
152
153   # retrieve order/quotation
154   $form->{webdav}   = $webdav;
155   $form->{jsscript} = 1;
156
157   my $editing = $form->{id};
158
159   DO->retrieve('vc'  => $form->{vc},
160                'ids' => $form->{id});
161
162   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes));
163   $form->{shipto} = 1 if $form->{id};
164
165   # get customer / vendor
166   if ($form->{vc} eq 'vendor') {
167     IR->get_vendor(\%myconfig, \%$form);
168   } else {
169     IS->get_customer(\%myconfig, \%$form);
170   }
171
172   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id));
173   $form->restore_vars(qw(taxincluded)) if $form->{id};
174   $form->restore_vars(qw(salesman_id)) if $editing;
175
176   if ($form->{"all_$form->{vc}"}) {
177     unless ($form->{"$form->{vc}_id"}) {
178       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
179     }
180   }
181
182   ($form->{ $form->{vc} })  = split /--/, $form->{ $form->{vc} };
183   $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
184
185   $form->{taxincluded} = $taxincluded if ($form->{id});
186
187   $form->{employee} = "$form->{employee}--$form->{employee_id}";
188
189   $form->{salesman_id} = $salesman_id if ($editing);
190
191   $lxdebug->leave_sub();
192 }
193
194 sub prepare_order {
195   $lxdebug->enter_sub();
196
197   check_do_access();
198
199   $form->{formname} = $form->{type} unless $form->{formname};
200
201   my $i = 0;
202   foreach $ref (@{ $form->{form_details} }) {
203     $form->{rowcount} = ++$i;
204
205     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
206   }
207   for my $i (1 .. $form->{rowcount}) {
208     if ($form->{id}) {
209       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
210     } else {
211       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
212     }
213     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
214     $dec           = length $dec;
215     $decimalplaces = ($dec > 2) ? $dec : 2;
216
217     # copy reqdate from deliverydate for invoice -> order conversion
218     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
219
220     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
221
222     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
223     $dec_qty = length $dec_qty;
224     $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
225   }
226
227   $lxdebug->leave_sub();
228 }
229
230 sub form_header {
231   $lxdebug->enter_sub();
232
233   check_do_access();
234
235   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
236   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
237
238   # use JavaScript Calendar or not
239   $form->{jsscript} = 1;
240
241   #write Trigger
242   $jsscript = Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1", "reqdate", "BL", "trigger2");
243
244   my @old_project_ids = ($form->{"globalproject_id"});
245   map({ push(@old_project_ids, $form->{"project_id_$_"})
246           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
247
248   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
249   $form->get_lists("contacts"       => "ALL_CONTACTS",
250                    "shipto"         => "ALL_SHIPTO",
251                    "projects"       => {
252                      "key"          => "ALL_PROJECTS",
253                      "all"          => 0,
254                      "old_id"       => \@old_project_ids
255                    },
256                    "employees"      => "ALL_EMPLOYEES",
257                    "salesmen"       => "ALL_SALESMEN",
258                    $vc              => "ALL_VC",
259                    "price_factors"  => "ALL_PRICE_FACTORS",
260                    "departments"    => "ALL_DEPARTMENTS",
261                    "business_types" => "ALL_BUSINESS_TYPES",
262     );
263
264   map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
265   map { $_->{value} = "$_->{name}--$_->{id}"        } @{ $form->{ALL_VC} };
266
267   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
268
269   $form->{oldvcname}         =  $form->{"old$form->{vc}"};
270   $form->{oldvcname}         =~ s/--.*//;
271
272   $form->{onload} = "";
273   if ($form->{resubmit}) {
274     if ($form->{format} eq "html") {
275       $form->{onload} = "window.open('about:blank','Beleg'); document.do.target = 'Beleg';";
276     }
277     $form->{onload} .= "document.do.submit();"
278   }
279
280   $form->header();
281   print $form->parse_html_template('do/form_header');
282
283   $lxdebug->leave_sub();
284 }
285
286 sub form_footer {
287   $lxdebug->enter_sub();
288
289   check_do_access();
290
291   $form->{PRINT_OPTIONS} = print_options('inline' => 1);
292
293   print $form->parse_html_template('do/form_footer');
294
295   $lxdebug->leave_sub();
296 }
297
298 sub update_delivery_order {
299   $lxdebug->enter_sub();
300
301   check_do_access();
302
303   set_headings($form->{"id"} ? "edit" : "add");
304
305   $form->{update} = 1;
306
307   $payment_id = $form->{payment_id} if $form->{payment_id};
308
309   check_name($form->{vc});
310
311   $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
312
313   # for pricegroups
314   $i = $form->{rowcount};
315
316   if (   ($form->{"partnumber_$i"} eq "")
317       && ($form->{"description_$i"} eq "")
318       && ($form->{"partsgroup_$i"}  eq "")) {
319
320     check_form();
321
322   } else {
323
324     if ($form->{type} eq 'purchase_delivery_order') {
325       IR->retrieve_item(\%myconfig, $form);
326     } else {
327       IS->retrieve_item(\%myconfig, $form);
328     }
329
330     my $rows = scalar @{ $form->{item_list} };
331
332     if ($rows) {
333       $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
334
335       if ($rows > 1) {
336
337         select_item();
338         exit;
339
340       } else {
341
342         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
343
344         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
345         $form->{"sellprice_$i"}          = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
346         $form->{"qty_$i"}                = $form->format_amount(\%myconfig, $form->{"qty_$i"});
347       }
348
349       display_form();
350
351     } else {
352
353       # ok, so this is a new part
354       # ask if it is a part or service item
355
356       if (   $form->{"partsgroup_$i"}
357           && ($form->{"partsnumber_$i"} eq "")
358           && ($form->{"description_$i"} eq "")) {
359         $form->{rowcount}--;
360         $form->{"discount_$i"} = "";
361         display_form();
362
363       } else {
364         $form->{"id_$i"}   = 0;
365         new_item();
366       }
367     }
368   }
369
370   $lxdebug->leave_sub();
371 }
372
373 sub search {
374   $lxdebug->enter_sub();
375
376   check_do_access();
377
378   $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
379
380   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS",
381                                        "all" => 1 },
382                    "employees"    => "ALL_EMPLOYEES",
383                    "salesmen"     => "ALL_SALESMEN",
384                    "$form->{vc}s" => "ALL_VC");
385
386   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
387   $form->{jsscript}          = 1;
388   $form->{title}             = $locale->text('Delivery Orders');
389
390   $form->header();
391
392   print $form->parse_html_template('do/search');
393
394   $lxdebug->leave_sub();
395 }
396
397 sub orders {
398   $lxdebug->enter_sub();
399
400   check_do_access();
401
402   ($form->{ $form->{vc} }, $form->{"${form->{vc}}_id"}) = split(/--/, $form->{ $form->{vc} });
403
404   report_generator_set_default_sort('transdate', 1);
405
406   DO->transactions();
407
408   $form->{rowcount} = scalar @{ $form->{DO} };
409
410   my @columns = qw(
411     ids                     transdate
412     id                      donumber
413     ordnumber
414     name                    employee
415     shipvia                 globalprojectnumber
416     transaction_description
417     open                    delivered
418   );
419
420   $form->{l_open}      = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
421   $form->{l_delivered} = "Y"                     if ($form->{delivered} && $form->{notdelivered});
422
423   $form->{title}       = $locale->text('Delivery Orders');
424
425   my $attachment_basename = $form->{vc} eq 'vendor' ? $locale->text('purchase_delivery_order_list') : $locale->text('sales_delivery_order_list');
426
427   my $report = SL::ReportGenerator->new(\%myconfig, $form);
428
429   my @hidden_variables = map { "l_${_}" } @columns;
430   push @hidden_variables, $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered donumber ordnumber
431                                           transaction_description transdatefrom transdateto type vc employee_id salesman_id);
432
433   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
434
435   my %column_defs = (
436     'ids'                     => { 'text' => '', },
437     'transdate'               => { 'text' => $locale->text('Date'), },
438     'id'                      => { 'text' => $locale->text('ID'), },
439     'donumber'                => { 'text' => $locale->text('Delivery Order'), },
440     'ordnumber'               => { 'text' => $locale->text('Order'), },
441     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
442     'employee'                => { 'text' => $locale->text('Salesperson'), },
443     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
444     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
445     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
446     'open'                    => { 'text' => $locale->text('Open'), },
447     'delivered'               => { 'text' => $locale->text('Delivered'), },
448   );
449
450   foreach my $name (qw(id transdate donumber ordnumber name employee shipvia transaction_description)) {
451     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
452     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
453   }
454
455   $form->{"l_type"} = "Y";
456   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
457
458   $column_defs{ids}->{visible} = 'HTML';
459
460   $report->set_columns(%column_defs);
461   $report->set_column_order(@columns);
462
463   $report->set_export_options('orders', @hidden_variables);
464
465   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
466
467   my @options;
468   if ($form->{customer}) {
469     push @options, $locale->text('Customer') . " : $form->{customer}";
470   }
471   if ($form->{vendor}) {
472     push @options, $locale->text('Vendor') . " : $form->{vendor}";
473   }
474   if ($form->{department}) {
475     ($department) = split /--/, $form->{department};
476     push @options, $locale->text('Department') . " : $department";
477   }
478   if ($form->{donumber}) {
479     push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
480   }
481   if ($form->{ordnumber}) {
482     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
483   }
484   if ($form->{transaction_description}) {
485     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
486   }
487   if ($form->{transdatefrom}) {
488     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
489   }
490   if ($form->{transdateto}) {
491     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
492   }
493   if ($form->{open}) {
494     push @options, $locale->text('Open');
495   }
496   if ($form->{closed}) {
497     push @options, $locale->text('Closed');
498   }
499   if ($form->{delivered}) {
500     push @options, $locale->text('Delivered');
501   }
502   if ($form->{notdelivered}) {
503     push @options, $locale->text('Not delivered');
504   }
505
506   $report->set_options('top_info_text'        => join("\n", @options),
507                        'raw_top_info_text'    => $form->parse_html_template('do/orders_top'),
508                        'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
509                        'output_format'        => 'HTML',
510                        'title'                => $form->{title},
511                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
512     );
513   $report->set_options_from_form();
514
515   # add sort and escape callback, this one we use for the add sub
516   $form->{callback} = $href .= "&sort=$form->{sort}";
517
518   # escape callback for href
519   $callback = $form->escape($href);
520
521   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
522   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
523
524   my $idx            = 1;
525
526   foreach $dord (@{ $form->{DO} }) {
527     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
528     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
529
530     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
531
532     $row->{ids}  = {
533       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
534                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
535       'valign'   => 'center',
536       'align'    => 'center',
537     };
538
539     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
540     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}";
541
542     $report->add_data($row);
543
544     $idx++;
545   }
546
547   $report->generate_with_headers();
548
549   $lxdebug->leave_sub();
550 }
551
552 sub save {
553   $lxdebug->enter_sub();
554
555   check_do_access();
556
557   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
558
559   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
560
561   $form->{donumber} =~ s/^\s*//g;
562   $form->{donumber} =~ s/\s*$//g;
563
564   $msg = ucfirst $form->{vc};
565   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
566
567   # $locale->text('Customer missing!');
568   # $locale->text('Vendor missing!');
569
570   validate_items();
571
572   # if the name changed get new values
573   if (check_name($form->{vc})) {
574     update();
575     exit;
576   }
577
578   $form->{id} = 0 if $form->{saveasnew};
579
580   DO->save();
581
582   # saving the history
583   if(!exists $form->{addition}) {
584     $form->{snumbers} = qq|donumber_| . $form->{donumber};
585         $form->{addition} = "SAVED";
586         $form->save_history($form->dbconnect(\%myconfig));
587   }
588   # /saving the history
589
590   $form->{simple_save} = 1;
591   if(!$form->{print_and_save}) {
592     set_headings("edit");
593     update();
594     exit;
595   }
596   $lxdebug->leave_sub();
597 }
598
599 sub delete {
600   $lxdebug->enter_sub();
601
602   check_do_access();
603
604   map { delete $form->{$_} } qw(action header login password);
605   my @variables = map { { 'key' => $_, 'value' => $form->{$_} } } grep { '' eq ref $form->{$_} } keys %{ $form };
606
607   $form->{title} = $locale->text('Delete delivery order');
608   $form->header();
609
610   print $form->parse_html_template('do/delete', { 'VARIABLES' => \@variables });
611
612   $lxdebug->leave_sub();
613 }
614
615 sub delete_delivery_order {
616   $lxdebug->enter_sub();
617
618   check_do_access();
619
620   if (DO->delete()) {
621     # saving the history
622     if(!exists $form->{addition}) {
623       $form->{snumbers} = qq|donumber_| . $form->{donumber};
624           $form->{addition} = "DELETED";
625           $form->save_history($form->dbconnect(\%myconfig));
626     }
627     # /saving the history
628
629     $form->info($locale->text('Delivery Order deleted!'));
630     exit();
631   }
632
633   $form->error($locale->text('Cannot delete delivery order!'));
634
635   $lxdebug->leave_sub();
636 }
637
638 sub invoice {
639   $lxdebug->enter_sub();
640
641   check_do_access();
642   $auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
643
644   $form->{convert_from_do_ids} = $form->{id};
645   $form->{deliverydate}        = $form->{transdate};
646   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
647   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
648   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
649
650   $form->{rowcount}--;
651
652   delete @{$form}{qw(id closed delivered)};
653
654   if ($form->{type} eq 'purchase_delivery_order') {
655     $form->{title}  = $locale->text('Add Vendor Invoice');
656     $form->{script} = 'ir.pl';
657     $script         = "ir";
658
659   } else {
660     $form->{title}  = $locale->text('Add Sales Invoice');
661     $form->{script} = 'is.pl';
662     $script         = "is";
663     $buysell        = 'buy';
664   }
665
666   for $i (1 .. $form->{rowcount}) {
667     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice basefactor);
668   }
669
670   $form->{type} = "invoice";
671
672   # locale messages
673   $locale = new Locale "$myconfig{countrycode}", "$script";
674
675   require "bin/mozilla/$form->{script}";
676
677   my $currency = $form->{currency};
678   invoice_links();
679
680   $form->{currency}     = $currency;
681   $form->{exchangerate} = "";
682   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
683   $form->{exchangerate} = $form->{forex} if ($form->{forex});
684
685   prepare_invoice();
686
687   # format amounts
688   for $i (1 .. $form->{rowcount}) {
689     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
690
691     ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
692     $dec           = length $dec;
693     $decimalplaces = ($dec > 2) ? $dec : 2;
694
695     # copy delivery date from reqdate for order -> invoice conversion
696     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
697       unless $form->{"deliverydate_$i"};
698
699     $form->{"sellprice_$i"} =
700       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
701                            $decimalplaces);
702
703     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
704     $dec_qty = length $dec_qty;
705     $form->{"qty_$i"} =
706       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
707
708   }
709
710   display_form();
711
712   $lxdebug->leave_sub();
713 }
714
715 sub invoice_multi {
716   $lxdebug->enter_sub();
717
718   check_do_access();
719   $auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
720
721   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
722
723   if (!scalar @do_ids) {
724     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
725   }
726
727   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
728
729   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
730     $form->show_generic_error($form->{vc} eq 'customer' ?
731                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
732                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
733                               'back_button' => 1);
734   }
735
736   $form->{convert_from_do_ids} = join ' ', @do_ids;
737   $form->{deliverydate}        = $form->{transdate};
738   $form->{transdate}           = $form->current_date(\%myconfig);
739   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
740   $form->{type}                = "invoice";
741   $form->{closed}              = 0;
742   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
743
744   my $buysell;
745   if ($form->{type} eq 'purchase_delivery_order') {
746     $form->{title}  = $locale->text('Add Vendor Invoice');
747     $form->{script} = 'ir.pl';
748     $script         = "ir";
749     $buysell        = 'sell';
750
751   } else {
752     $form->{title}  = $locale->text('Add Sales Invoice');
753     $form->{script} = 'is.pl';
754     $script         = "is";
755     $buysell        = 'buy';
756   }
757
758   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
759
760   $form->{rowcount} = 0;
761   foreach my $ref (@{ $form->{form_details} }) {
762     $form->{rowcount}++;
763     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
764     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice discount lastcost);
765   }
766   delete $form->{form_details};
767
768   $locale = new Locale "$myconfig{countrycode}", "$script";
769
770   require "bin/mozilla/$form->{script}";
771
772   invoice_links();
773   prepare_invoice();
774   display_form();
775
776   $lxdebug->leave_sub();
777 }
778
779 sub save_as_new {
780   $lxdebug->enter_sub();
781
782   check_do_access();
783
784   $form->{saveasnew} = 1;
785   $form->{closed}    = 0;
786   $form->{delivered} = 0;
787   map { delete $form->{$_} } qw(printed emailed queued);
788
789   # Let Lx-Office assign a new order number if the user hasn't changed the
790   # previous one. If it has been changed manually then use it as-is.
791   $form->{donumber} =~ s/^\s*//g;
792   $form->{donumber} =~ s/\s*$//g;
793   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
794     delete($form->{donumber});
795   }
796
797   save();
798
799   $lxdebug->leave_sub();
800 }
801
802 sub e_mail {
803   $lxdebug->enter_sub();
804
805   check_do_access();
806
807   $form->{print_and_save} = 1;
808
809   $print_post = 1;
810
811   my $saved_form = save_form();
812
813   save();
814
815   restore_form($saved_form, 0, qw(id ordnumber quonumber));
816
817   edit_e_mail();
818
819   $lxdebug->leave_sub();
820 }
821
822 sub calculate_stock_in_out {
823   $lxdebug->enter_sub();
824
825   my $i = shift;
826
827   if (!$form->{"id_${i}"}) {
828     $lxdebug->leave_sub();
829     return '';
830   }
831
832   AM->retrieve_all_units();
833
834   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
835   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
836
837   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
838
839   my $content  = $form->format_amount_units('amount'      => $sum * 1,
840                                             'part_unit'   => $form->{"partunit_$i"},
841                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
842                                             'conv_units'  => 'convertible_not_smaller',
843                                             'max_places'  => 2);
844   $content    .= qq| <input type="button" onclick="open_stock_in_out_window('${in_out}', $i);" value="?">|;
845
846   $lxdebug->leave_sub();
847
848   return $content;
849 }
850
851 sub get_basic_bin_wh_info {
852   $lxdebug->enter_sub();
853
854   my $stock_info = shift;
855
856   foreach my $sinfo (@{ $stock_info }) {
857     next unless ($sinfo->{bin_id});
858
859     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
860     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
861   }
862
863   $lxdebug->leave_sub();
864 }
865
866 sub stock_in_out_form {
867   $lxdebug->enter_sub();
868
869   if ($form->{in_out} eq 'out') {
870     stock_out_form();
871   } else {
872     stock_in_form();
873   }
874
875   $lxdebug->leave_sub();
876 }
877
878 sub redo_stock_info {
879   $lxdebug->enter_sub();
880
881   my %params    = @_;
882
883   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
884
885   if ($params{add_empty_row}) {
886     push @non_empty, {
887       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
888       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
889     };
890   }
891
892   @{ $params{stock_info} } = @non_empty;
893
894   $lxdebug->leave_sub();
895 }
896
897 sub update_stock_in {
898   $lxdebug->enter_sub();
899
900   my $stock_info = [];
901
902   foreach my $i (1..$form->{rowcount}) {
903     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
904     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber qty unit) };
905   }
906
907   display_stock_in_form($stock_info);
908
909   $lxdebug->leave_sub();
910 }
911
912 sub stock_in_form {
913   $lxdebug->enter_sub();
914
915   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
916
917   display_stock_in_form($stock_info);
918
919   $lxdebug->leave_sub();
920 }
921
922 sub display_stock_in_form {
923   $lxdebug->enter_sub();
924
925   my $stock_info = shift;
926
927   $form->{title} = $locale->text('Stock');
928
929   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
930
931   my $units      = AM->retrieve_units(\%myconfig, $form);
932   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
933
934   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
935                                      'bins'   => 'BINS' });
936
937   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
938
939   get_basic_bin_wh_info($stock_info);
940
941   $form->header();
942   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
943                                                          'STOCK_INFO' => $stock_info,
944                                                          'PART_INFO'  => $part_info, });
945
946   $lxdebug->leave_sub();
947 }
948
949 sub set_stock_in {
950   $lxdebug->enter_sub();
951
952   my $stock_info = [];
953
954   foreach my $i (1..$form->{rowcount}) {
955     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
956
957     next if ($form->{"qty_$i"} <= 0);
958
959     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber qty unit) };
960   }
961
962   $form->{stock} = YAML::Dump($stock_info);
963
964   $form->header();
965   print $form->parse_html_template('do/set_stock_in_out');
966
967   $lxdebug->leave_sub();
968 }
969
970 sub stock_out_form {
971   $lxdebug->enter_sub();
972
973   $form->{title} = $locale->text('Release From Stock');
974
975   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
976
977   my $units      = AM->retrieve_units(\%myconfig, $form);
978   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
979
980   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
981
982   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
983
984   if (!$form->{delivered}) {
985     foreach my $row (@contents) {
986       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
987                                                          'part_unit'   => $part_info->{unit},
988                                                          'conv_units'  => 'convertible_not_smaller',
989                                                          'max_places'  => 2);
990
991       foreach my $sinfo (@{ $stock_info }) {
992         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
993                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
994                  ($row->{chargenumber} ne $sinfo->{chargenumber}));
995
996         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
997       }
998     }
999
1000   } else {
1001     get_basic_bin_wh_info($stock_info);
1002
1003     foreach my $sinfo (@{ $stock_info }) {
1004       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1005     }
1006   }
1007
1008   $form->header();
1009   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
1010                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1011                                                           'PART_INFO'  => $part_info, });
1012
1013   $lxdebug->leave_sub();
1014 }
1015
1016 sub set_stock_out {
1017   $lxdebug->enter_sub();
1018
1019   my $stock_info = [];
1020
1021   foreach my $i (1 .. $form->{rowcount}) {
1022     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1023
1024     next if ($form->{"qty_$i"} <= 0);
1025
1026     push @{ $stock_info }, {
1027       'warehouse_id' => $form->{"warehouse_id_$i"},
1028       'bin_id'       => $form->{"bin_id_$i"},
1029       'chargenumber' => $form->{"chargenumber_$i"},
1030       'qty'          => $form->{"qty_$i"},
1031       'unit'         => $form->{"unit_$i"},
1032       'row'          => $i,
1033     };
1034   }
1035
1036   my @errors     = DO->check_stock_availability('requests' => $stock_info,
1037                                                 'parts_id' => $form->{parts_id});
1038
1039   $form->{stock} = YAML::Dump($stock_info);
1040
1041   if (@errors) {
1042     $form->{ERRORS} = [];
1043     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1044     stock_in_out_form();
1045
1046   } else {
1047     $form->header();
1048     print $form->parse_html_template('do/set_stock_in_out');
1049   }
1050
1051   $lxdebug->leave_sub();
1052 }
1053
1054 sub transfer_in {
1055   $lxdebug->enter_sub();
1056
1057   if (DO->is_marked_as_delivered('id' => $form->{id})) {
1058     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1059   }
1060
1061   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1062   my @all_requests;
1063
1064   if (@part_ids) {
1065     my $units         = AM->retrieve_units(\%myconfig, $form);
1066     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1067     my %request_map;
1068
1069     $form->{ERRORS}   = [];
1070
1071     foreach my $i (1 .. $form->{rowcount}) {
1072       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1073
1074       my $row_sum_base_qty = 0;
1075       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1076
1077       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1078         $request->{parts_id}  = $form->{"id_$i"};
1079         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1080
1081         push @all_requests, $request;
1082       }
1083
1084       next if (0 == $row_sum_base_qty);
1085
1086       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1087
1088       if ($do_base_qty != $row_sum_base_qty) {
1089         push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
1090                                                  $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1091       }
1092     }
1093
1094     if (@{ $form->{ERRORS} }) {
1095       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1096
1097       update();
1098       $lxdebug->leave_sub();
1099
1100       exit 0;
1101     }
1102   }
1103
1104   DO->transfer_in_out('direction' => 'in',
1105                       'requests'  => \@all_requests);
1106
1107   $form->{delivered} = 1;
1108
1109   save();
1110
1111   $lxdebug->leave_sub();
1112 }
1113
1114 sub transfer_out {
1115   $lxdebug->enter_sub();
1116
1117   if (DO->is_marked_as_delivered('id' => $form->{id})) {
1118     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
1119   }
1120
1121   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
1122   my @all_requests;
1123
1124   if (@part_ids) {
1125     my $units         = AM->retrieve_units(\%myconfig, $form);
1126     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1127     my %request_map;
1128
1129     $form->{ERRORS}   = [];
1130
1131     foreach my $i (1 .. $form->{rowcount}) {
1132       next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
1133
1134       my $row_sum_base_qty = 0;
1135       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1136
1137       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
1138         $request->{parts_id} = $form->{"id_$i"};
1139         $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1140
1141         my $map_key          = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber)});
1142
1143         $request_map{$map_key}                 ||= $request;
1144         $request_map{$map_key}->{sum_base_qty} ||= 0;
1145         $request_map{$map_key}->{sum_base_qty}  += $request->{base_qty};
1146         $row_sum_base_qty                       += $request->{base_qty};
1147
1148         push @all_requests, $request;
1149       }
1150
1151       next if (0 == $row_sum_base_qty);
1152
1153       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1154
1155       if ($do_base_qty != $row_sum_base_qty) {
1156         push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
1157                                                  $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1158       }
1159     }
1160
1161     if (%request_map) {
1162       my @bin_ids      = map { $_->{bin_id} } values %request_map;
1163       my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
1164       my @contents     = DO->get_item_availability('parts_id' => \@part_ids);
1165
1166       foreach my $inv (@contents) {
1167         my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber)};
1168
1169         next unless ($request_map{$map_key});
1170
1171         my $request    = $request_map{$map_key};
1172         $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
1173       }
1174
1175       foreach $request (values %request_map) {
1176         next if ($request->{ok});
1177
1178         my $pinfo = $part_info_map{$request->{parts_id}};
1179         my $binfo = $bin_info_map{$request->{bin_id}};
1180
1181         push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, for the transfer of #5.",
1182                                                  $pinfo->{description}, $binfo->{warehouse_description}, $binfo->{bin_description},
1183                                                  $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1184                                                  $form->format_amount_units('amount'      => $request->{sum_base_qty},
1185                                                                             'part_unit'   => $pinfo->{unit},
1186                                                                             'conv_units'  => 'convertible_not_smaller'));
1187       }
1188     }
1189
1190     if (@{ $form->{ERRORS} }) {
1191       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1192
1193       update();
1194       $lxdebug->leave_sub();
1195
1196       exit 0;
1197     }
1198   }
1199
1200   DO->transfer_in_out('direction' => 'out',
1201                       'requests'  => \@all_requests);
1202
1203   $form->{delivered} = 1;
1204
1205   save();
1206
1207   $lxdebug->leave_sub();
1208 }
1209
1210 sub mark_closed {
1211   $lxdebug->enter_sub();
1212
1213   DO->close_orders('ids' => [ $form->{id} ]);
1214
1215   $form->{closed} = 1;
1216
1217   update();
1218
1219   $lxdebug->leave_sub();
1220 }
1221
1222
1223 sub yes {
1224   call_sub($form->{yes_nextsub});
1225 }
1226
1227 sub no {
1228   call_sub($form->{no_nextsub});
1229 }
1230
1231 sub update {
1232   call_sub($form->{update_nextsub} || $form->{nextsub} || 'update_delivery_order');
1233 }