gelöschte Benutzer in oe/search ausblenden
[kivitendo-erp.git] / bin / mozilla / oe.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 # Order entry module
31 # Quotation module
32 #======================================================================
33
34 use POSIX qw(strftime);
35
36 use SL::DO;
37 use SL::FU;
38 use SL::OE;
39 use SL::IR;
40 use SL::IS;
41 use SL::MoreCommon qw(ary_diff);
42 use SL::PE;
43 use SL::ReportGenerator;
44 use List::MoreUtils qw(any none);
45 use List::Util qw(max reduce sum);
46 use Data::Dumper;
47
48 require "bin/mozilla/io.pl";
49 require "bin/mozilla/arap.pl";
50 require "bin/mozilla/reportgenerator.pl";
51
52 use strict;
53
54 our %TMPL_VAR;
55
56 1;
57
58 # end of main
59
60 # For locales.pl:
61 # $locale->text('Edit the purchase_order');
62 # $locale->text('Edit the sales_order');
63 # $locale->text('Edit the request_quotation');
64 # $locale->text('Edit the sales_quotation');
65
66 # $locale->text('Workflow purchase_order');
67 # $locale->text('Workflow sales_order');
68 # $locale->text('Workflow request_quotation');
69 # $locale->text('Workflow sales_quotation');
70
71 my $oe_access_map = {
72   'sales_order'       => 'sales_order_edit',
73   'purchase_order'    => 'purchase_order_edit',
74   'request_quotation' => 'request_quotation_edit',
75   'sales_quotation'   => 'sales_quotation_edit',
76 };
77
78 sub check_oe_access {
79   my $form     = $main::form;
80
81   my $right   = $oe_access_map->{$form->{type}};
82   $right    ||= 'DOES_NOT_EXIST';
83
84   $main::auth->assert($right);
85 }
86
87 sub set_headings {
88   $main::lxdebug->enter_sub();
89
90   my $form     = $main::form;
91   my $locale   = $main::locale;
92
93   check_oe_access();
94
95   my ($action) = @_;
96
97   if ($form->{type} eq 'purchase_order') {
98     $form->{title}   = $action eq "edit" ?
99       $locale->text('Edit Purchase Order') :
100       $locale->text('Add Purchase Order');
101     $form->{heading} = $locale->text('Purchase Order');
102     $form->{vc}      = 'vendor';
103   }
104   if ($form->{type} eq 'sales_order') {
105     $form->{title}   = $action eq "edit" ?
106       $locale->text('Edit Sales Order') :
107       $locale->text('Add Sales Order');
108     $form->{heading} = $locale->text('Sales Order');
109     $form->{vc}      = 'customer';
110   }
111   if ($form->{type} eq 'request_quotation') {
112     $form->{title}   = $action eq "edit" ?
113       $locale->text('Edit Request for Quotation') :
114       $locale->text('Add Request for Quotation');
115     $form->{heading} = $locale->text('Request for Quotation');
116     $form->{vc}      = 'vendor';
117   }
118   if ($form->{type} eq 'sales_quotation') {
119     $form->{title}   = $action eq "edit" ?
120       $locale->text('Edit Quotation') :
121       $locale->text('Add Quotation');
122     $form->{heading} = $locale->text('Quotation');
123     $form->{vc}      = 'customer';
124   }
125
126   $main::lxdebug->leave_sub();
127 }
128
129 sub add {
130   $main::lxdebug->enter_sub();
131
132   my $form     = $main::form;
133
134   check_oe_access();
135
136   set_headings("add");
137
138   $form->{callback} =
139     "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}"
140     unless $form->{callback};
141
142   &order_links;
143   &prepare_order;
144   &display_form;
145
146   $main::lxdebug->leave_sub();
147 }
148
149 sub edit {
150   $main::lxdebug->enter_sub();
151
152   my $form     = $main::form;
153
154   check_oe_access();
155
156   # show history button
157   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
158   #/show hhistory button
159
160   $form->{simple_save} = 0;
161
162   set_headings("edit");
163
164   # editing without stuff to edit? try adding it first
165   if ($form->{rowcount} && !$form->{print_and_save}) {
166     my $id;
167     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
168     if (!$id) {
169
170       # reset rowcount
171       undef $form->{rowcount};
172       &add;
173       $main::lxdebug->leave_sub();
174       return;
175     }
176   } elsif (!$form->{id}) {
177     &add;
178     $main::lxdebug->leave_sub();
179     return;
180   }
181
182   my ($language_id, $printer_id);
183   if ($form->{print_and_save}) {
184     $form->{action}   = "dispatcher";
185     $form->{action_print}   = "1";
186     $form->{resubmit} = 1;
187     $language_id = $form->{language_id};
188     $printer_id = $form->{printer_id};
189   }
190
191   set_headings("edit");
192
193   &order_links;
194
195   $form->{rowcount} = 0;
196   foreach my $ref (@{ $form->{form_details} }) {
197     $form->{rowcount}++;
198     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{$ref};
199   }
200
201   &prepare_order;
202
203   if ($form->{print_and_save}) {
204     $form->{language_id} = $language_id;
205     $form->{printer_id} = $printer_id;
206   }
207
208   &display_form;
209
210   $main::lxdebug->leave_sub();
211 }
212
213 sub order_links {
214   $main::lxdebug->enter_sub();
215
216   my $form     = $main::form;
217   my %myconfig = %main::myconfig;
218   my $locale   = $main::locale;
219
220   check_oe_access();
221
222   # get customer/vendor
223   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
224
225   # retrieve order/quotation
226   $form->{webdav}   = $::lx_office_conf{features}->{webdav};
227   $form->{jsscript} = 1;
228
229   my $editing = $form->{id};
230
231   OE->retrieve(\%myconfig, \%$form);
232
233   # if multiple rowcounts (== collective order) then check if the
234   # there were more than one customer (in that case OE::retrieve removes
235   # the content from the field)
236   $form->error($locale->text('Collective Orders only work for orders from one customer!'))
237     if          $form->{rowcount}  && $form->{type}     eq 'sales_order'
238      && defined $form->{customer}  && $form->{customer} eq '';
239
240   $form->{"$form->{vc}_id"} ||= $form->{"all_$form->{vc}"}->[0]->{id} if $form->{"all_$form->{vc}"};
241
242   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes shipto_id currency));
243   $form->{shipto} = 1 if $form->{id} || $form->{convert_from_oe_ids};
244
245   # get customer / vendor
246   IR->get_vendor(\%myconfig, \%$form)   if $form->{type} =~ /(purchase_order|request_quotation)/;
247   IS->get_customer(\%myconfig, \%$form) if $form->{type} =~ /sales_(order|quotation)/;
248
249   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id shipto_id));
250   $form->restore_vars(qw(currency))    if $form->{id};
251   $form->restore_vars(qw(taxincluded)) if $form->{id};
252   $form->restore_vars(qw(salesman_id)) if $editing;
253   $form->{forex}       = $form->{exchangerate};
254   $form->{employee}    = "$form->{employee}--$form->{employee_id}";
255
256   # build vendor/customer drop down comatibility... don't ask
257   if (@{ $form->{"all_$form->{vc}"} || [] }) {
258     $form->{"select$form->{vc}"} = 1;
259     $form->{$form->{vc}}         = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
260   }
261
262   $form->{"old$form->{vc}"}  = $form->{$form->{vc}};
263
264   if ($form->{"old$form->{vc}"} !~ m/--\d+$/ && $form->{"$form->{vc}_id"}) {
265     $form->{"old$form->{vc}"} .= qq|--$form->{"$form->{vc}_id"}|
266   }
267
268   $main::lxdebug->leave_sub();
269 }
270
271 sub prepare_order {
272   $main::lxdebug->enter_sub();
273
274   my $form     = $main::form;
275   my %myconfig = %main::myconfig;
276
277   check_oe_access();
278
279   $form->{formname} ||= $form->{type};
280
281   # format discounts if values come from db. either as single id, or as a collective order
282   my $format_discounts = $form->{id} || $form->{convert_from_oe_ids};
283
284   for my $i (1 .. $form->{rowcount}) {
285     $form->{"reqdate_$i"} ||= $form->{"deliverydate_$i"};
286     $form->{"discount_$i"}  = $form->format_amount(\%myconfig, $form->{"discount_$i"} * ($format_discounts ? 100 : 1));
287     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
288     $form->{"lastcost_$i"}  = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
289     $form->{"qty_$i"}       = $form->format_amount(\%myconfig, $form->{"qty_$i"});
290   }
291
292   $main::lxdebug->leave_sub();
293 }
294
295 sub form_header {
296   $main::lxdebug->enter_sub();
297   my @custom_hiddens;
298
299   my $form     = $main::form;
300   my %myconfig = %main::myconfig;
301   my $locale   = $main::locale;
302   my $cgi      = $::request->{cgi};
303
304   check_oe_access();
305
306   # Container for template variables. Unfortunately this has to be
307   # visible in form_footer too, so package local level and not my here.
308   %TMPL_VAR = ();
309
310   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
311
312   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
313   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
314
315   # use JavaScript Calendar or not
316   $form->{jsscript} = 1;
317
318   # openclosed checkboxes
319   my @tmp;
320   push @tmp, sprintf qq|<input name="delivered" id="delivered" type="checkbox" class="checkbox" value="1" %s><label for="delivered">%s</label>|,
321                         $form->{"delivered"} ? "checked" : "",  $locale->text('Delivery Order created') if $form->{"type"} =~ /_order$/;
322   push @tmp, sprintf qq|<input name="closed" id="closed" type="checkbox" class="checkbox" value="1" %s><label for="closed">%s</label>|,
323                         $form->{"closed"}    ? "checked" : "",  $locale->text('Closed')    if $form->{id};
324   $TMPL_VAR{openclosed} = sprintf qq|<tr><td colspan=%d align=center>%s</td></tr>\n|, 2 * scalar @tmp, join "\n", @tmp if @tmp;
325
326   # project ids
327   my @old_project_ids = ($form->{"globalproject_id"}, grep { $_ } map { $form->{"project_id_$_"} } 1..$form->{"rowcount"});
328
329   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
330   $form->get_lists("shipto"        => "ALL_SHIPTO",
331                    "projects"      => { "key"      => "ALL_PROJECTS",
332                                         "all"      => 0,
333                                         "old_id"   => \@old_project_ids },
334                    "employees"     => "ALL_EMPLOYEES",
335                    "salesmen"      => "ALL_SALESMEN",
336                    "taxzones"      => "ALL_TAXZONES",
337                    "payments"      => "ALL_PAYMENTS",
338                    "currencies"    => "ALL_CURRENCIES",
339                    "departments"   => "ALL_DEPARTMENTS",
340                    $vc             => { key   => "ALL_" . uc($vc),
341                                         limit => $myconfig{vclimit} + 1 },
342                    "price_factors" => "ALL_PRICE_FACTORS");
343
344   # label subs
345   $TMPL_VAR{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all(query => [
346     or => [
347       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
348       and      => [
349         cp_cv_id => undef,
350         cp_id    => $::form->{cp_id} * 1
351       ]
352     ]
353   ]);
354   $TMPL_VAR{sales_employee_labels} = sub { $_[0]->{name} || $_[0]->{login} };
355   $TMPL_VAR{shipto_labels}         = sub { join "; ", grep { $_ } map { $_[0]->{"shipto${_}" } } qw(name department_1 street city) };
356   $TMPL_VAR{department_labels}     = sub { "$_[0]->{description}--$_[0]->{id}" };
357
358   # vendor/customer
359   $TMPL_VAR{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
360   $TMPL_VAR{vclimit} = $myconfig{vclimit};
361   $TMPL_VAR{vc_select} = "customer_or_vendor_selection_window('$form->{vc}', '', @{[ $form->{vc} eq 'vendor' ? 1 : 0 ]}, 0)";
362   push @custom_hiddens, "$form->{vc}_id";
363   push @custom_hiddens, "old$form->{vc}";
364   push @custom_hiddens, "select$form->{vc}";
365
366   # currencies and exchangerate
367   my @values = map { $_ } @{ $form->{ALL_CURRENCIES} };
368   my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
369   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
370   $TMPL_VAR{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
371   $TMPL_VAR{currencies}        = NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
372                                                       '-values' => \@values, '-labels' => \%labels,
373                                                       '-onchange' => "document.getElementById('update_button').click();"
374                                      )) if scalar @values;
375   push @custom_hiddens, "forex";
376   push @custom_hiddens, "exchangerate" if $form->{forex};
377
378   # credit remaining
379   my $creditwarning = (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) ? 1 : 0;
380   $TMPL_VAR{is_credit_remaining_negativ} = ($form->{creditremaining} =~ /-/) ? "0" : "1";
381
382   # business
383   $TMPL_VAR{business_label} = ($form->{vc} eq "customer" ? $locale->text('Customer type') : $locale->text('Vendor type'));
384
385   push @custom_hiddens, "customer_klass" if $form->{vc} eq 'customer';
386
387   my $credittext = $locale->text('Credit Limit exceeded!!!');
388
389   my $follow_up_vc                =  $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };
390   $follow_up_vc                   =~ s/--\d*\s*$//;
391   $TMPL_VAR{follow_up_trans_info} =  ($form->{type} =~ /_quotation$/ ? $form->{quonumber} : $form->{ordnumber}) . " ($follow_up_vc)";
392
393   if ($form->{id}) {
394     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
395
396     if (scalar @{ $follow_ups }) {
397       $TMPL_VAR{num_follow_ups}     = scalar                    @{ $follow_ups };
398       $TMPL_VAR{num_due_follow_ups} = sum map { $_->{due} * 1 } @{ $follow_ups };
399     }
400   }
401
402   my $onload = "";
403   if ($form->{resubmit} && ($form->{format} eq "html")) {
404       $onload  = "window.open('about:blank','Beleg'); document.oe.target = 'Beleg';";
405       $onload .= "document.do.submit();";
406   } elsif ($form->{resubmit}) {
407     # emulate click for resubmitting actions
408     $onload  = "document.oe.${_}.click(); " for grep { /^action_/ } keys %$form;
409     $onload .= "document.oe.submit();";
410   } elsif ($creditwarning) {
411     $onload = "alert('$credittext')";
412   }
413
414   $TMPL_VAR{onload} = $onload;
415   $TMPL_VAR{dateformat}          = $myconfig{dateformat};
416   $TMPL_VAR{numberformat}        = $myconfig{numberformat};
417
418   if ($form->{type} eq 'sales_order') {
419     if (!$form->{periodic_invoices_config}) {
420       $form->{periodic_invoices_status} = $locale->text('not configured');
421
422     } else {
423       my $config                        = YAML::Load($form->{periodic_invoices_config});
424       $form->{periodic_invoices_status} = $config->{active} ? $locale->text('active') : $locale->text('inactive');
425     }
426   }
427
428   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|;
429   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
430   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_vc_details.js"></script>|;
431
432   $form->header;
433
434   $TMPL_VAR{HIDDENS} = [ map { name => $_, value => $form->{$_} },
435      qw(id action type vc formname media format proforma queued printed emailed
436         title creditlimit creditremaining tradediscount business
437         max_dunning_level dunning_amount shiptoname shiptostreet shiptozipcode
438         shiptocity shiptocountry shiptocontact shiptophone shiptofax
439         shiptodepartment_1 shiptodepartment_2 shiptoemail shiptocp_gender
440         message email subject cc bcc taxpart taxservice taxaccounts cursor_fokus),
441         @custom_hiddens,
442         map { $_.'_rate', $_.'_description' } split / /, $form->{taxaccounts} ];  # deleted: discount
443
444   %TMPL_VAR = (
445      %TMPL_VAR,
446      is_sales        => scalar ($form->{type} =~ /^sales_/),              # these vars are exported, so that the template
447      is_order        => scalar ($form->{type} =~ /_order$/),              # may determine what to show
448      is_sales_quo    => scalar ($form->{type} =~ /sales_quotation$/),
449      is_req_quo      => scalar ($form->{type} =~ /request_quotation$/),
450      is_sales_ord    => scalar ($form->{type} =~ /sales_order$/),
451      is_pur_ord      => scalar ($form->{type} =~ /purchase_order$/),
452   );
453
454   print $form->parse_html_template("oe/form_header", { %TMPL_VAR });
455
456   $main::lxdebug->leave_sub();
457 }
458
459 sub form_footer {
460   $main::lxdebug->enter_sub();
461
462   my $form     = $main::form;
463   my %myconfig = %main::myconfig;
464   my $locale   = $main::locale;
465
466   check_oe_access();
467
468   $form->{invtotal} = $form->{invsubtotal};
469
470   my $rows    = max 2, $form->numtextrows($form->{notes}, 25, 8);
471   my $introws = max 2, $form->numtextrows($form->{intnotes}, 35, 8);
472   $rows    = max $rows, $introws;
473
474   $TMPL_VAR{notes}    = qq|<textarea name=notes rows="$rows" cols="25">| . H($form->{notes}) . qq|</textarea>|;
475   $TMPL_VAR{intnotes} = qq|<textarea name=intnotes rows="$introws" cols="35">| . H($form->{intnotes}) . qq|</textarea>|;
476
477   if (!$form->{taxincluded}) {
478
479     foreach my $item (split / /, $form->{taxaccounts}) {
480       if ($form->{"${item}_base"}) {
481         $form->{invtotal} += $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
482         $form->{"${item}_total"} = $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
483
484         $TMPL_VAR{tax} .= qq|
485               <tr>
486                 <th align=right>$form->{"${item}_description"}&nbsp;| . $form->{"${item}_rate"} * 100 .qq|%</th>
487                 <td align=right>$form->{"${item}_total"}</td>
488               </tr> |;
489       }
490     }
491
492 #    $form->{invsubtotal} = $form->format_amount(\%myconfig, $form->{invsubtotal}, 2, 0); # template does this
493
494   } else {
495     foreach my $item (split / /, $form->{taxaccounts}) {
496       if ($form->{"${item}_base"}) {
497         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"} / (1 + $form->{"${item}_rate"})), 2);
498         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
499         $form->{"${item}_total"} = $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
500         $form->{"${item}_netto"} = $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
501
502         $TMPL_VAR{tax} .= qq|
503               <tr>
504                 <th align=right>Enthaltene $form->{"${item}_description"}&nbsp;| . $form->{"${item}_rate"} * 100 .qq|%</th>
505                 <td align=right>$form->{"${item}_total"}</td>
506               </tr>
507               <tr>
508                 <th align=right>Nettobetrag</th>
509                 <td align=right>$form->{"${item}_netto"}</td>
510               </tr> |;
511       }
512     }
513   }
514
515   $form->{oldinvtotal} = $form->{invtotal};
516
517   print $form->parse_html_template("oe/form_footer", {
518      %TMPL_VAR,
519      webdav          => $::lx_office_conf{features}->{webdav},
520      print_options   => print_options(inline => 1),
521      label_edit      => $locale->text("Edit the $form->{type}"),
522      label_workflow  => $locale->text("Workflow $form->{type}"),
523      is_sales        => scalar ($form->{type} =~ /^sales_/),              # these vars are exported, so that the template
524      is_order        => scalar ($form->{type} =~ /_order$/),              # may determine what to show
525      is_sales_quo    => scalar ($form->{type} =~ /sales_quotation$/),
526      is_req_quo      => scalar ($form->{type} =~ /request_quotation$/),
527      is_sales_ord    => scalar ($form->{type} =~ /sales_order$/),
528      is_pur_ord      => scalar ($form->{type} =~ /purchase_order$/),
529   });
530
531   $main::lxdebug->leave_sub();
532 }
533
534 sub update {
535   $main::lxdebug->enter_sub();
536
537   my ($recursive_call) = @_;
538
539   my $form     = $main::form;
540   my %myconfig = %main::myconfig;
541
542   check_oe_access();
543
544   set_headings($form->{"id"} ? "edit" : "add");
545
546   $form->{update} = 1;
547
548   &check_name($form->{vc});
549
550   if (!$form->{forex}) {        # read exchangerate from input field (not hidden)
551     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate) unless $recursive_call;
552   }
553   my $buysell           = 'buy';
554   $buysell              = 'sell' if ($form->{vc} eq 'vendor');
555   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
556   $form->{exchangerate} = $form->{forex} if $form->{forex};
557
558   my $exchangerate = $form->{exchangerate} || 1;
559
560 ##################### process items ######################################
561   # for pricegroups
562   my $i = $form->{rowcount};
563   if (   ($form->{"partnumber_$i"} eq "")
564       && ($form->{"description_$i"} eq "")
565       && ($form->{"partsgroup_$i"}  eq "")) {
566
567     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
568
569     &check_form;
570   } else {
571
572     my $mode;
573     if ($form->{type} =~ /^sales/) {
574       IS->retrieve_item(\%myconfig, \%$form);
575       $mode = 'IS';
576     } else {
577       IR->retrieve_item(\%myconfig, \%$form);
578       $mode = 'IR';
579     }
580
581     my $rows = scalar @{ $form->{item_list} };
582
583     # hier ist das problem fuer bug 817 $form->{discount} wird nicht durchgeschliffen
584     # ferner fallunterscheidung fuer verkauf oder einkauf s.a. bug 736 jb 04.05.2009
585     # select discount as vendor_discount from vendor ||
586     # select discount as customer_discount from customer
587     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"$form->{vc}_discount"} * 100);
588
589     $form->{"lastcost_$i"} = $form->parse_amount(\%myconfig, $form->{"lastcost_$i"});
590
591     if ($rows) {
592       $form->{"qty_$i"} = 1 unless ($form->parse_amount(\%myconfig, $form->{"qty_$i"}));
593
594       if ($rows > 1) {
595
596         select_item(mode => $mode);
597         ::end_of_request();
598
599       } else {
600
601         my $sellprice             = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
602         # hier werden parts (Artikeleigenschaften) aus item_list (retrieve_item aus IS.pm)
603         # (item wahrscheinlich synonym für parts) entsprechend in die form geschrieben ...
604
605         # Wäre dieses Mapping nicht besser in retrieve_items aufgehoben?
606         #(Eine Funktion bekommt Daten -> ARBEIT -> Rückgabe DATEN)
607         #  Das quot sieht doch auch nach Überarbeitung aus ... (hmm retrieve_items gibt es in IS und IR)
608         map { $form->{item_list}[$i]{$_} =~ s/\"/&quot;/g }    qw(partnumber description unit);
609         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
610
611         # ... deswegen muss die prüfung, ob es sich um einen nicht rabattierfähigen artikel handelt später erfolgen (Bug 1136)
612         $form->{"discount_$i"} = 0 if $form->{"not_discountable_$i"};
613         $form->{payment_id} = $form->{"part_payment_id_$i"} if $form->{"part_payment_id_$i"} ne "";
614
615         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
616
617         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
618         my $dec_qty       = length $1;
619         my $decimalplaces = max 2, $dec_qty;
620
621         if ($sellprice) {
622           $form->{"sellprice_$i"} = $sellprice;
623         } else {
624           $form->{"sellprice_$i"} *= (1 - $form->{tradediscount});
625           $form->{"sellprice_$i"} /= $exchangerate;   # if there is an exchange rate adjust sellprice
626         }
627
628         my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"} / 100);
629         map { $form->{"${_}_base"} = 0 }                                 split / /, $form->{taxaccounts};
630         map { $form->{"${_}_base"} += $amount }                          split / /, $form->{"taxaccounts_$i"};
631         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{taxaccounts} if !$form->{taxincluded};
632
633         $form->{creditremaining} -= $amount;
634
635         $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
636         $form->{"lastcost_$i"}  = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
637         $form->{"qty_$i"}       = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
638
639         # get pricegroups for parts
640         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
641
642         # build up html code for prices_$i
643         &set_pricegroup($i);
644       }
645
646       display_form();
647     } else {
648
649       # ok, so this is a new part
650       # ask if it is a part or service item
651
652       if (   $form->{"partsgroup_$i"}
653           && ($form->{"partsnumber_$i"} eq "")
654           && ($form->{"description_$i"} eq "")) {
655         $form->{rowcount}--;
656         $form->{"discount_$i"} = "";
657
658         display_form();
659       } else {
660         $form->{"id_$i"}   = 0;
661         new_item();
662       }
663     }
664   }
665 ##################### process items ######################################
666
667
668   $main::lxdebug->leave_sub();
669 }
670
671 sub search {
672   $main::lxdebug->enter_sub();
673
674   my $form     = $main::form;
675   my %myconfig = %main::myconfig;
676   my $locale   = $main::locale;
677
678   check_oe_access();
679
680   if ($form->{type} eq 'purchase_order') {
681     $form->{vc}        = 'vendor';
682     $form->{ordnrname} = 'ordnumber';
683     $form->{title}     = $locale->text('Purchase Orders');
684     $form->{ordlabel}  = $locale->text('Order Number');
685
686   } elsif ($form->{type} eq 'request_quotation') {
687     $form->{vc}        = 'vendor';
688     $form->{ordnrname} = 'quonumber';
689     $form->{title}     = $locale->text('Request for Quotations');
690     $form->{ordlabel}  = $locale->text('RFQ Number');
691
692   } elsif ($form->{type} eq 'sales_order') {
693     $form->{vc}        = 'customer';
694     $form->{ordnrname} = 'ordnumber';
695     $form->{title}     = $locale->text('Sales Orders');
696     $form->{ordlabel}  = $locale->text('Order Number');
697
698   } elsif ($form->{type} eq 'sales_quotation') {
699     $form->{vc}        = 'customer';
700     $form->{ordnrname} = 'quonumber';
701     $form->{title}     = $locale->text('Quotations');
702     $form->{ordlabel}  = $locale->text('Quotation Number');
703
704   } else {
705     $form->show_generic_error($locale->text('oe.pl::search called with unknown type'), back_button => 1);
706   }
707
708   # setup vendor / customer data
709   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
710   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS", "all" => 1 },
711                    "departments"  => "ALL_DEPARTMENTS",
712                    "$form->{vc}s" => "ALL_VC");
713   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all(query => [ deleted => 0 ]);
714
715   # constants and subs for template
716   $form->{jsscript}        = 1;
717   $form->{vc_keys}         = sub { "$_[0]->{name}--$_[0]->{id}" };
718
719   $form->header();
720
721   print $form->parse_html_template('oe/search', {
722     %myconfig,
723     is_order => scalar($form->{type} =~ /_order/),
724   });
725
726   $main::lxdebug->leave_sub();
727 }
728
729 sub create_subtotal_row {
730   $main::lxdebug->enter_sub();
731
732   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
733
734   my $form     = $main::form;
735   my %myconfig = %main::myconfig;
736
737   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
738
739   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
740
741   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
742
743   map { $totals->{$_} = 0 } @{ $subtotal_columns };
744
745   $main::lxdebug->leave_sub();
746
747   return $row;
748 }
749
750 sub orders {
751   $main::lxdebug->enter_sub();
752
753   my $form     = $main::form;
754   my %myconfig = %main::myconfig;
755   my $locale   = $main::locale;
756   my $cgi      = $::request->{cgi};
757
758   check_oe_access();
759
760   my $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
761
762   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
763
764   report_generator_set_default_sort('transdate', 1);
765
766   OE->transactions(\%myconfig, \%$form);
767
768   $form->{rowcount} = scalar @{ $form->{OE} };
769
770   my @columns = (
771     "transdate",               "reqdate",
772     "id",                      $ordnumber,
773     "name",                    "netamount",
774     "tax",                     "amount",
775     "curr",                    "employee",
776     "salesman",
777     "shipvia",                 "globalprojectnumber",
778     "transaction_description", "open",
779     "delivered",               "periodic_invoices",
780     "marge_total",             "marge_percent",
781     "vcnumber",                "ustid",
782     "country",
783   );
784
785   # only show checkboxes if gotten here via sales_order form.
786   my $allow_multiple_orders = $form->{type} eq 'sales_order';
787   if ($allow_multiple_orders) {
788     unshift @columns, "ids";
789   }
790
791   $form->{l_open}              = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
792   $form->{l_delivered}         = "Y"                     if ($form->{delivered} && $form->{notdelivered});
793   $form->{l_periodic_invoices} = "Y"                     if ($form->{periodic_invoices_active} && $form->{periodic_invoices_inactive});
794
795   my $attachment_basename;
796   if ($form->{vc} eq 'vendor') {
797     if ($form->{type} eq 'purchase_order') {
798       $form->{title}       = $locale->text('Purchase Orders');
799       $attachment_basename = $locale->text('purchase_order_list');
800     } else {
801       $form->{title}       = $locale->text('Request for Quotations');
802       $attachment_basename = $locale->text('rfq_list');
803     }
804
805   } else {
806     if ($form->{type} eq 'sales_order') {
807       $form->{title}       = $locale->text('Sales Orders');
808       $attachment_basename = $locale->text('sales_order_list');
809     } else {
810       $form->{title}       = $locale->text('Quotations');
811       $attachment_basename = $locale->text('quotation_list');
812     }
813   }
814
815   my $report = SL::ReportGenerator->new(\%myconfig, $form);
816
817   my @hidden_variables = map { "l_${_}" } @columns;
818   push @hidden_variables, "l_subtotal", $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered ordnumber quonumber
819                                                         transaction_description transdatefrom transdateto type vc employee_id salesman_id
820                                                         reqdatefrom reqdateto projectnumber project_id periodic_invoices_active periodic_invoices_inactive);
821
822   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
823
824   my %column_defs = (
825     'ids'                     => { 'text' => '', },
826     'transdate'               => { 'text' => $locale->text('Date'), },
827     'reqdate'                 => { 'text' => $form->{type} =~ /_order/ ? $locale->text('Required by') : $locale->text('Valid until') },
828     'id'                      => { 'text' => $locale->text('ID'), },
829     'ordnumber'               => { 'text' => $locale->text('Order'), },
830     'quonumber'               => { 'text' => $form->{type} eq "request_quotation" ? $locale->text('RFQ') : $locale->text('Quotation'), },
831     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
832     'netamount'               => { 'text' => $locale->text('Amount'), },
833     'tax'                     => { 'text' => $locale->text('Tax'), },
834     'amount'                  => { 'text' => $locale->text('Total'), },
835     'curr'                    => { 'text' => $locale->text('Curr'), },
836     'employee'                => { 'text' => $locale->text('Employee'), },
837     'salesman'                => { 'text' => $locale->text('Salesman'), },
838     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
839     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
840     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
841     'open'                    => { 'text' => $locale->text('Open'), },
842     'delivered'               => { 'text' => $locale->text('Delivery Order created'), },
843     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
844     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
845     'vcnumber'                => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer Number') : $locale->text('Vendor Number'), },
846     'country'                 => { 'text' => $locale->text('Country'), },
847     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
848     'periodic_invoices'       => { 'text' => $locale->text('Per. Inv.'), },
849   );
850
851   foreach my $name (qw(id transdate reqdate quonumber ordnumber name employee salesman shipvia transaction_description)) {
852     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
853     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
854   }
855
856   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount curr);
857
858   $form->{"l_type"} = "Y";
859   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
860   $column_defs{ids}->{visible} = $allow_multiple_orders ? 'HTML' : 0;
861
862   $report->set_columns(%column_defs);
863   $report->set_column_order(@columns);
864   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
865   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
866
867   my @options;
868   my ($department) = split m/--/, $form->{department};
869
870   push @options, $locale->text('Customer')                . " : $form->{customer}"                        if $form->{customer};
871   push @options, $locale->text('Vendor')                  . " : $form->{vendor}"                          if $form->{vendor};
872   push @options, $locale->text('Department')              . " : $department"                              if $form->{department};
873   push @options, $locale->text('Order Number')            . " : $form->{ordnumber}"                       if $form->{ordnumber};
874   push @options, $locale->text('Notes')                   . " : $form->{notes}"                           if $form->{notes};
875   push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"         if $form->{transaction_description};
876   if ( $form->{transdatefrom} or $form->{transdateto} ) {
877     push @options, $locale->text('Order Date');
878     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)     if $form->{transdatefrom};
879     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)     if $form->{transdateto};
880   };
881   if ( $form->{reqdatefrom} or $form->{reqdateto} ) {
882     push @options, $locale->text('Delivery Date');
883     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{reqdatefrom}, 1)       if $form->{reqdatefrom};
884     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{reqdateto},   1)       if $form->{reqdateto};
885   };
886   push @options, $locale->text('Open')                                                                    if $form->{open};
887   push @options, $locale->text('Closed')                                                                  if $form->{closed};
888   push @options, $locale->text('Delivery Order created')                                                               if $form->{delivered};
889   push @options, $locale->text('Not delivered')                                                           if $form->{notdelivered};
890   push @options, $locale->text('Periodic invoices active')                                                if $form->{periodic_invoices_actibe};
891
892   $report->set_options('top_info_text'        => join("\n", @options),
893                        'raw_top_info_text'    => $form->parse_html_template('oe/orders_top'),
894                        'raw_bottom_info_text' => $form->parse_html_template('oe/orders_bottom', { 'SHOW_CONTINUE_BUTTON' => $allow_multiple_orders }),
895                        'output_format'        => 'HTML',
896                        'title'                => $form->{title},
897                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
898     );
899   $report->set_options_from_form();
900   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
901
902   # add sort and escape callback, this one we use for the add sub
903   $form->{callback} = $href .= "&sort=$form->{sort}";
904
905   # escape callback for href
906   my $callback = $form->escape($href);
907
908   my @subtotal_columns = qw(netamount amount marge_total marge_percent);
909
910   my %totals    = map { $_ => 0 } @subtotal_columns;
911   my %subtotals = map { $_ => 0 } @subtotal_columns;
912
913   my $idx = 0;
914
915   my $edit_url = build_std_url('action=edit', 'type', 'vc');
916
917   foreach my $oe (@{ $form->{OE} }) {
918     map { $oe->{$_} *= $oe->{exchangerate} } @subtotal_columns;
919
920     $oe->{tax}               = $oe->{amount} - $oe->{netamount};
921     $oe->{open}              = $oe->{closed}            ? $locale->text('No')  : $locale->text('Yes');
922     $oe->{delivered}         = $oe->{delivered}         ? $locale->text('Yes') : $locale->text('No');
923     $oe->{periodic_invoices} = $oe->{periodic_invoices} ? $locale->text('On')  : $locale->text('Off');
924
925     map { $subtotals{$_} += $oe->{$_};
926           $totals{$_}    += $oe->{$_} } @subtotal_columns;
927
928     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
929     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
930
931     map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount marge_total marge_percent);
932
933     my $row = { };
934
935     foreach my $column (@columns) {
936       next if ($column eq 'ids');
937       $row->{$column} = {
938         'data'  => $oe->{$column},
939         'align' => $column_alignment{$column},
940       };
941     }
942
943     $row->{ids} = {
944       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $oe->{id})
945                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
946       'valign'   => 'center',
947       'align'    => 'center',
948     };
949
950     $row->{$ordnumber}->{link} = $edit_url . "&id=" . E($oe->{id}) . "&callback=${callback}";
951
952     my $row_set = [ $row ];
953
954     if (($form->{l_subtotal} eq 'Y')
955         && (($idx == (scalar @{ $form->{OE} } - 1))
956             || ($oe->{ $form->{sort} } ne $form->{OE}->[$idx + 1]->{ $form->{sort} }))) {
957       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
958     }
959
960     $report->add_data($row_set);
961
962     $idx++;
963   }
964
965   $report->add_separator();
966   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
967
968   $report->generate_with_headers();
969
970   $main::lxdebug->leave_sub();
971 }
972
973 sub check_delivered_flag {
974   $main::lxdebug->enter_sub();
975
976   my $form     = $main::form;
977   my %myconfig = %main::myconfig;
978
979   check_oe_access();
980
981   if (($form->{type} ne 'sales_order') && ($form->{type} ne 'purchase_order')) {
982     return $main::lxdebug->leave_sub();
983   }
984
985   my $all_delivered = 0;
986
987   foreach my $i (1 .. $form->{rowcount}) {
988     next if (!$form->{"id_$i"});
989
990     if ($form->parse_amount(\%myconfig, $form->{"qty_$i"}) == $form->parse_amount(\%myconfig, $form->{"ship_$i"})) {
991       $all_delivered = 1;
992       next;
993     }
994
995     $all_delivered = 0;
996     last;
997   }
998
999   $form->{delivered} = 1 if $all_delivered;
1000
1001   $main::lxdebug->leave_sub();
1002 }
1003
1004 sub save_and_close {
1005   $main::lxdebug->enter_sub();
1006
1007   my $form     = $main::form;
1008   my %myconfig = %main::myconfig;
1009   my $locale   = $main::locale;
1010
1011   check_oe_access();
1012
1013   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1014
1015   if ($form->{type} =~ /_order$/) {
1016     $form->isblank("transdate", $locale->text('Order Date missing!'));
1017   } else {
1018     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1019   }
1020
1021   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1022   $form->{$idx} =~ s/^\s*//g;
1023   $form->{$idx} =~ s/\s*$//g;
1024
1025   my $msg = ucfirst $form->{vc};
1026   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1027
1028   # $locale->text('Customer missing!');
1029   # $locale->text('Vendor missing!');
1030
1031   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1032     if ($form->{currency} ne $form->{defaultcurrency});
1033
1034   &validate_items;
1035
1036   my $payment_id;
1037   if($form->{payment_id}) {
1038     $payment_id = $form->{payment_id};
1039   }
1040
1041   # if the name changed get new values
1042   if (&check_name($form->{vc})) {
1043     if($form->{payment_id} eq "") {
1044       $form->{payment_id} = $payment_id;
1045     }
1046     &update;
1047     ::end_of_request();
1048   }
1049
1050   $form->{id} = 0 if $form->{saveasnew};
1051
1052   my ($numberfld, $ordnumber, $err);
1053   # this is for the internal notes section for the [email] Subject
1054   if ($form->{type} =~ /_order$/) {
1055     if ($form->{type} eq 'sales_order') {
1056       $form->{label} = $locale->text('Sales Order');
1057
1058       $numberfld = "sonumber";
1059       $ordnumber = "ordnumber";
1060     } else {
1061       $form->{label} = $locale->text('Purchase Order');
1062
1063       $numberfld = "ponumber";
1064       $ordnumber = "ordnumber";
1065     }
1066
1067     $err = $locale->text('Cannot save order!');
1068
1069     check_delivered_flag();
1070
1071   } else {
1072     if ($form->{type} eq 'sales_quotation') {
1073       $form->{label} = $locale->text('Quotation');
1074
1075       $numberfld = "sqnumber";
1076       $ordnumber = "quonumber";
1077     } else {
1078       $form->{label} = $locale->text('Request for Quotation');
1079
1080       $numberfld = "rfqnumber";
1081       $ordnumber = "quonumber";
1082     }
1083
1084     $err = $locale->text('Cannot save quotation!');
1085
1086   }
1087
1088   # get new number in sequence if no number is given or if saveasnew was requested
1089   if (!$form->{$ordnumber} || $form->{saveasnew}) {
1090     $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld);
1091   }
1092
1093   relink_accounts();
1094
1095   $form->error($err) if (!OE->save(\%myconfig, \%$form));
1096
1097   # saving the history
1098   if(!exists $form->{addition}) {
1099     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1100     $form->{addition} = "SAVED";
1101     $form->save_history;
1102   }
1103   # /saving the history
1104
1105   $form->redirect($form->{label} . " $form->{$ordnumber} " .
1106                   $locale->text('saved!'));
1107
1108   $main::lxdebug->leave_sub();
1109 }
1110
1111 sub save {
1112   $main::lxdebug->enter_sub();
1113
1114   my $form     = $main::form;
1115   my %myconfig = %main::myconfig;
1116   my $locale   = $main::locale;
1117
1118   check_oe_access();
1119
1120   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
1121
1122
1123   if ($form->{type} =~ /_order$/) {
1124     $form->isblank("transdate", $locale->text('Order Date missing!'));
1125   } else {
1126     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1127   }
1128
1129   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1130   $form->{$idx} =~ s/^\s*//g;
1131   $form->{$idx} =~ s/\s*$//g;
1132
1133   my $msg = ucfirst $form->{vc};
1134   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
1135
1136   # $locale->text('Customer missing!');
1137   # $locale->text('Vendor missing!');
1138
1139   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
1140     if ($form->{currency} ne $form->{defaultcurrency});
1141
1142   remove_emptied_rows();
1143   &validate_items;
1144
1145   my $payment_id;
1146   if($form->{payment_id}) {
1147     $payment_id = $form->{payment_id};
1148   }
1149
1150   # if the name changed get new values
1151   if (&check_name($form->{vc})) {
1152     if($form->{payment_id} eq "") {
1153       $form->{payment_id} = $payment_id;
1154     }
1155     &update;
1156     ::end_of_request();
1157   }
1158
1159   $form->{id} = 0 if $form->{saveasnew};
1160
1161   my ($numberfld, $ordnumber, $err);
1162
1163   # this is for the internal notes section for the [email] Subject
1164   if ($form->{type} =~ /_order$/) {
1165     if ($form->{type} eq 'sales_order') {
1166       $form->{label} = $locale->text('Sales Order');
1167
1168       $numberfld = "sonumber";
1169       $ordnumber = "ordnumber";
1170     } else {
1171       $form->{label} = $locale->text('Purchase Order');
1172
1173       $numberfld = "ponumber";
1174       $ordnumber = "ordnumber";
1175     }
1176
1177     $err = $locale->text('Cannot save order!');
1178
1179     check_delivered_flag();
1180
1181   } else {
1182     if ($form->{type} eq 'sales_quotation') {
1183       $form->{label} = $locale->text('Quotation');
1184
1185       $numberfld = "sqnumber";
1186       $ordnumber = "quonumber";
1187     } else {
1188       $form->{label} = $locale->text('Request for Quotation');
1189
1190       $numberfld = "rfqnumber";
1191       $ordnumber = "quonumber";
1192     }
1193
1194     $err = $locale->text('Cannot save quotation!');
1195
1196   }
1197
1198   $form->{$ordnumber} = $form->update_defaults(\%myconfig, $numberfld)
1199     unless $form->{$ordnumber};
1200
1201   relink_accounts();
1202
1203   OE->save(\%myconfig, \%$form);
1204
1205   # saving the history
1206   if(!exists $form->{addition}) {
1207     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1208     $form->{addition} = "SAVED";
1209     $form->save_history;
1210   }
1211   # /saving the history
1212
1213   $form->{simple_save} = 1;
1214   if(!$form->{print_and_save}) {
1215     delete @{$form}{ary_diff([keys %{ $form }], [qw(login stylesheet id script type cursor_fokus)])};
1216     edit();
1217     ::end_of_request();
1218   }
1219   $main::lxdebug->leave_sub();
1220 }
1221
1222 sub delete {
1223   $::lxdebug->enter_sub;
1224
1225   check_oe_access();
1226
1227   $::form->header;
1228
1229   # delete action variable
1230   delete $::form->{$_} for qw(action header);
1231
1232   my @hiddens;
1233   for my $key (keys %$::form) {
1234     next if $key eq 'login' || $key eq 'password' || '' ne ref $::form->{$key};
1235     push @hiddens, { key => $key, value => $::form->{$key} };
1236   }
1237
1238   print $::form->parse_html_template('oe/delete', {
1239     hiddens => \@hiddens,
1240     is_order => scalar($::form->{type} =~ /_order$/),
1241   });
1242
1243
1244   $::lxdebug->leave_sub;
1245 }
1246
1247 sub delete_order_quotation {
1248   $main::lxdebug->enter_sub();
1249
1250   my $form     = $main::form;
1251   my %myconfig = %main::myconfig;
1252   my $locale   = $main::locale;
1253
1254   check_oe_access();
1255
1256   my ($msg, $err);
1257   if ($form->{type} =~ /_order$/) {
1258     $msg = $locale->text('Order deleted!');
1259     $err = $locale->text('Cannot delete order!');
1260   } else {
1261     $msg = $locale->text('Quotation deleted!');
1262     $err = $locale->text('Cannot delete quotation!');
1263   }
1264   if (OE->delete(\%myconfig, \%$form)){
1265     # saving the history
1266     if(!exists $form->{addition}) {
1267       $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
1268       $form->{addition} = "DELETED";
1269       $form->save_history;
1270     }
1271     # /saving the history
1272     $form->info($msg);
1273     ::end_of_request();
1274   }
1275   $form->error($err);
1276
1277   $main::lxdebug->leave_sub();
1278 }
1279
1280 sub invoice {
1281   $main::lxdebug->enter_sub();
1282
1283   my $form     = $main::form;
1284   my %myconfig = %main::myconfig;
1285   my $locale   = $main::locale;
1286
1287   check_oe_access();
1288   $main::auth->assert($form->{type} eq 'purchase_order' || $form->{type} eq 'request_quotation' ? 'vendor_invoice_edit' : 'invoice_edit');
1289
1290   $form->{old_salesman_id} = $form->{salesman_id};
1291   $form->get_employee();
1292
1293
1294   if ($form->{type} =~ /_order$/) {
1295
1296     # these checks only apply if the items don't bring their own ordnumbers/transdates.
1297     # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
1298     $form->isblank("ordnumber", $locale->text('Order Number missing!'))
1299       if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
1300     $form->isblank("transdate", $locale->text('Order Date missing!'))
1301       if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
1302
1303     # also copy deliverydate from the order
1304     $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
1305     $form->{orddate}      = $form->{transdate};
1306   } else {
1307     $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
1308     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
1309     $form->{ordnumber}    = "";
1310     $form->{quodate}      = $form->{transdate};
1311   }
1312
1313   my $payment_id;
1314   if ($form->{payment_id}) {
1315     $payment_id = $form->{payment_id};
1316   }
1317
1318   # if the name changed get new values
1319   if (&check_name($form->{vc})) {
1320     $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
1321     &update;
1322     ::end_of_request();
1323   }
1324
1325   $form->{cp_id} *= 1;
1326
1327   for my $i (1 .. $form->{rowcount}) {
1328     for (qw(ship qty sellprice listprice basefactor)) {
1329       $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"};
1330     }
1331   }
1332
1333   my ($buysell, $orddate, $exchangerate);
1334   if (   $form->{type} =~ /_order/
1335       && $form->{currency} ne $form->{defaultcurrency}) {
1336
1337     # check if we need a new exchangerate
1338     $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
1339
1340     $orddate      = $form->current_date(\%myconfig);
1341     $exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate, $buysell);
1342
1343     if (!$exchangerate) {
1344       &backorder_exchangerate($orddate, $buysell);
1345       ::end_of_request();
1346     }
1347   }
1348
1349   $form->{convert_from_oe_ids} = $form->{id};
1350   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
1351   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
1352   $form->{shipto}              = 1;
1353   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
1354
1355   delete @{$form}{qw(id closed)};
1356   $form->{rowcount}--;
1357
1358   if ($form->{type} =~ /_order$/) {
1359     $form->{exchangerate} = $exchangerate;
1360     &create_backorder;
1361   }
1362
1363   my ($script);
1364   if (   $form->{type} eq 'purchase_order'
1365       || $form->{type} eq 'request_quotation') {
1366     $form->{title}  = $locale->text('Add Vendor Invoice');
1367     $form->{script} = 'ir.pl';
1368     $script         = "ir";
1369     $buysell        = 'sell';
1370   }
1371
1372   if (   $form->{type} eq 'sales_order'
1373       || $form->{type} eq 'sales_quotation') {
1374     $form->{title}  = $locale->text('Add Sales Invoice');
1375     $form->{script} = 'is.pl';
1376     $script         = "is";
1377     $buysell        = 'buy';
1378   }
1379
1380   # bo creates the id, reset it
1381   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
1382   $form->{ $form->{vc} } =~ s/--.*//g;
1383   $form->{type} = "invoice";
1384
1385   # locale messages
1386   $main::locale = new Locale "$myconfig{countrycode}", "$script";
1387   $locale = $main::locale;
1388
1389   require "bin/mozilla/$form->{script}";
1390
1391   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
1392
1393   my $currency = $form->{currency};
1394   &invoice_links;
1395
1396   $form->{currency}     = $currency;
1397   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, $buysell);
1398   $form->{exchangerate} = $form->{forex} || '';
1399
1400   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
1401
1402   &prepare_invoice;
1403
1404   # format amounts
1405   for my $i (1 .. $form->{rowcount}) {
1406     $form->{"discount_$i"} =
1407       $form->format_amount(\%myconfig, $form->{"discount_$i"});
1408
1409     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
1410     $dec           = length $dec;
1411     my $decimalplaces = ($dec > 2) ? $dec : 2;
1412
1413     # copy delivery date from reqdate for order -> invoice conversion
1414     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
1415       unless $form->{"deliverydate_$i"};
1416
1417     $form->{"sellprice_$i"} =
1418       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
1419                            $decimalplaces);
1420
1421     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
1422     $dec_qty = length $dec_qty;
1423     $form->{"qty_$i"} =
1424       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
1425   }
1426
1427   #  show pricegroup in newly loaded invoice when creating invoice from quotation/order
1428   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
1429   set_pricegroup($_) for 1 .. $form->{rowcount};
1430
1431   &display_form;
1432
1433   $main::lxdebug->leave_sub();
1434 }
1435
1436 sub backorder_exchangerate {
1437   $main::lxdebug->enter_sub();
1438
1439   my $form     = $main::form;
1440   my $locale   = $main::locale;
1441
1442   check_oe_access();
1443
1444   my ($orddate, $buysell) = @_;
1445
1446   $form->header;
1447
1448   print qq|
1449 <body>
1450
1451 <form method=post action=$form->{script}>
1452 |;
1453
1454   # delete action variable
1455   map { delete $form->{$_} } qw(action header exchangerate);
1456
1457   foreach my $key (keys %$form) {
1458     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
1459     $form->{$key} =~ s/\"/&quot;/g;
1460     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
1461   }
1462
1463   $form->{title} = $locale->text('Add Exchangerate');
1464
1465   print qq|
1466
1467 <input type=hidden name=exchangeratedate value=$orddate>
1468 <input type=hidden name=buysell value=$buysell>
1469
1470 <table width=100%>
1471   <tr><th class=listtop>$form->{title}</th></tr>
1472   <tr height="5"></tr>
1473   <tr>
1474     <td>
1475       <table>
1476         <tr>
1477           <th align=right>| . $locale->text('Currency') . qq|</th>
1478           <td>$form->{currency}</td>
1479         </tr>
1480         <tr>
1481           <th align=right>| . $locale->text('Date') . qq|</th>
1482           <td>$orddate</td>
1483         </tr>
1484         <tr>
1485           <th align=right>| . $locale->text('Exchangerate') . qq|</th>
1486           <td><input name=exchangerate size=11></td>
1487         </tr>
1488       </table>
1489     </td>
1490   </tr>
1491 </table>
1492
1493 <hr size=3 noshade>
1494
1495 <br>
1496 <input type=hidden name=nextsub value=save_exchangerate>
1497
1498 <input name=action class=submit type=submit value="|
1499     . $locale->text('Continue') . qq|">
1500
1501 </form>
1502
1503 </body>
1504 </html>
1505 |;
1506
1507   $main::lxdebug->leave_sub();
1508 }
1509
1510 sub save_exchangerate {
1511   $main::lxdebug->enter_sub();
1512
1513   my $form     = $main::form;
1514   my %myconfig = %main::myconfig;
1515   my $locale   = $main::locale;
1516
1517   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
1518   $form->{exchangerate} =
1519     $form->parse_amount(\%myconfig, $form->{exchangerate});
1520   $form->save_exchangerate(\%myconfig, $form->{currency},
1521                            $form->{exchangeratedate},
1522                            $form->{exchangerate}, $form->{buysell});
1523
1524   &invoice;
1525
1526   $main::lxdebug->leave_sub();
1527 }
1528
1529 sub create_backorder {
1530   $main::lxdebug->enter_sub();
1531
1532   my $form     = $main::form;
1533   my %myconfig = %main::myconfig;
1534
1535   $form->{shipped} = 1;
1536
1537   # figure out if we need to create a backorder
1538   # items aren't saved if qty != 0
1539
1540   my ($totalqty, $totalship);
1541   for my $i (1 .. $form->{rowcount}) {
1542     my $qty  = $form->{"qty_$i"};
1543     my $ship = $form->{"ship_$i"};
1544     $totalqty  += $qty;
1545     $totalship += $ship;
1546
1547     $form->{"qty_$i"} = $qty - $ship;
1548   }
1549
1550   if ($totalship == 0) {
1551     map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
1552     $form->{ordtotal} = 0;
1553     $form->{shipped}  = 0;
1554     return;
1555   }
1556
1557   if ($totalqty == $totalship) {
1558     map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
1559     $form->{ordtotal} = 0;
1560     return;
1561   }
1562
1563   my @flds = (
1564     qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
1565   );
1566
1567   for my $i (1 .. $form->{rowcount}) {
1568     map {
1569       $form->{"${_}_$i"} =
1570         $form->format_amount(\%myconfig, $form->{"${_}_$i"})
1571     } qw(sellprice discount);
1572   }
1573
1574   relink_accounts();
1575
1576   OE->save(\%myconfig, \%$form);
1577
1578   # rebuild rows for invoice
1579   my @a     = ();
1580   my $count = 0;
1581
1582   for my $i (1 .. $form->{rowcount}) {
1583     $form->{"qty_$i"} = $form->{"ship_$i"};
1584
1585     if ($form->{"qty_$i"}) {
1586       push @a, {};
1587       my $j = $#a;
1588       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
1589       $count++;
1590     }
1591   }
1592
1593   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
1594   $form->{rowcount} = $count;
1595
1596   $main::lxdebug->leave_sub();
1597 }
1598
1599 sub save_as_new {
1600   $main::lxdebug->enter_sub();
1601
1602   my $form     = $main::form;
1603
1604   check_oe_access();
1605
1606   $form->{saveasnew} = 1;
1607   map { delete $form->{$_} } qw(printed emailed queued delivered closed);
1608
1609   # Let Lx-Office assign a new order number if the user hasn't changed the
1610   # previous one. If it has been changed manually then use it as-is.
1611   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
1612   $form->{$idx} =~ s/^\s*//g;
1613   $form->{$idx} =~ s/\s*$//g;
1614   if ($form->{saved_xyznumber} &&
1615       ($form->{saved_xyznumber} eq $form->{$idx})) {
1616     delete($form->{$idx});
1617   }
1618
1619   # clear reqdate unless changed
1620   if ($form->{reqdate} && $form->{id}) {
1621     my $saved_order = OE->retrieve_simple(id => $form->{id});
1622     if ($saved_order && $saved_order->{reqdate} eq $form->{reqdate}) {
1623       delete $form->{reqdate};
1624     }
1625   }
1626
1627   # update employee
1628   $form->get_employee();
1629
1630   &save;
1631
1632   $main::lxdebug->leave_sub();
1633 }
1634
1635 sub check_for_direct_delivery_yes {
1636   $main::lxdebug->enter_sub();
1637
1638   my $form     = $main::form;
1639
1640   check_oe_access();
1641
1642   $form->{direct_delivery_checked} = 1;
1643   delete @{$form}{grep /^shipto/, keys %{ $form }};
1644   map { s/^CFDD_//; $form->{$_} = $form->{"CFDD_${_}"} } grep /^CFDD_/, keys %{ $form };
1645   $form->{shipto} = 1;
1646   purchase_order();
1647   $main::lxdebug->leave_sub();
1648 }
1649
1650 sub check_for_direct_delivery_no {
1651   $main::lxdebug->enter_sub();
1652
1653   my $form     = $main::form;
1654
1655   check_oe_access();
1656
1657   $form->{direct_delivery_checked} = 1;
1658   delete @{$form}{grep /^shipto/, keys %{ $form }};
1659   purchase_order();
1660
1661   $main::lxdebug->leave_sub();
1662 }
1663
1664 sub check_for_direct_delivery {
1665   $main::lxdebug->enter_sub();
1666
1667   my $form     = $main::form;
1668   my %myconfig = %main::myconfig;
1669
1670   check_oe_access();
1671
1672   if ($form->{direct_delivery_checked}
1673       || (!$form->{shiptoname} && !$form->{shiptostreet} && !$form->{shipto_id})) {
1674     $main::lxdebug->leave_sub();
1675     return;
1676   }
1677
1678   if ($form->{shipto_id}) {
1679     Common->get_shipto_by_id(\%myconfig, $form, $form->{shipto_id}, "CFDD_");
1680
1681   } else {
1682     map { $form->{"CFDD_${_}"} = $form->{$_ } } grep /^shipto/, keys %{ $form };
1683   }
1684
1685   delete $form->{action};
1686   $form->{VARIABLES} = [ map { { "key" => $_, "value" => $form->{$_} } } grep { ($_ ne 'login') && ($_ ne 'password') && (ref $_ eq "") } keys %{ $form } ];
1687
1688   $form->header();
1689   print $form->parse_html_template("oe/check_for_direct_delivery");
1690
1691   $main::lxdebug->leave_sub();
1692
1693   ::end_of_request();
1694 }
1695
1696 sub purchase_order {
1697   $main::lxdebug->enter_sub();
1698
1699   my $form     = $main::form;
1700   my $locale   = $main::locale;
1701
1702   check_oe_access();
1703   $main::auth->assert('purchase_order_edit');
1704
1705   $form->{sales_order_to_purchase_order} = 0;
1706   if ($form->{type} eq 'sales_order') {
1707     $form->{sales_order_to_purchase_order} = 1;
1708     check_for_direct_delivery();
1709   }
1710
1711   if ($form->{type} =~ /^sales_/) {
1712     delete($form->{ordnumber});
1713   }
1714
1715   $form->{cp_id} *= 1;
1716
1717   $form->{title} = $locale->text('Add Purchase Order');
1718   $form->{vc}    = "vendor";
1719   $form->{type}  = "purchase_order";
1720
1721   $form->get_employee();
1722
1723   &poso;
1724
1725   delete $form->{sales_order_to_purchase_order};
1726
1727   $main::lxdebug->leave_sub();
1728 }
1729
1730 sub sales_order {
1731   $main::lxdebug->enter_sub();
1732
1733   my $form     = $main::form;
1734   my $locale   = $main::locale;
1735
1736   check_oe_access();
1737   $main::auth->assert('sales_order_edit');
1738
1739   if ($form->{type} eq "purchase_order") {
1740     delete($form->{ordnumber});
1741   }
1742
1743   $form->{cp_id} *= 1;
1744
1745   $form->{title}  = $locale->text('Add Sales Order');
1746   $form->{vc}     = "customer";
1747   $form->{type}   = "sales_order";
1748
1749   $form->get_employee();
1750
1751   &poso;
1752
1753   $main::lxdebug->leave_sub();
1754 }
1755
1756 sub poso {
1757   $main::lxdebug->enter_sub();
1758
1759   my $form     = $main::form;
1760   my %myconfig = %main::myconfig;
1761
1762   check_oe_access();
1763   $main::auth->assert('purchase_order_edit | sales_order_edit');
1764
1765   $form->{transdate} = $form->current_date(\%myconfig);
1766   delete $form->{duedate};
1767
1768   $form->{convert_from_oe_ids} = $form->{id};
1769   $form->{closed}              = 0;
1770
1771   $form->{old_employee_id}     = $form->{employee_id};
1772   $form->{old_salesman_id}     = $form->{salesman_id};
1773
1774   # reset
1775   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal delivered ordnumber);
1776
1777   # if purchase_order was generated from sales_order, use  lastcost_$i as sellprice_$i
1778   # also reset discounts
1779   if ( $form->{sales_order_to_purchase_order} ) {
1780     for my $i (1 .. $form->{rowcount}) {
1781       $form->{"sellprice_${i}"} = $form->format_amount(\%myconfig,$form->{"lastcost_${i}"});
1782       $form->{"discount_${i}"}  = 0;
1783     };
1784   };
1785
1786   for my $i (1 .. $form->{rowcount}) {
1787     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice listprice basefactor discount);
1788   }
1789
1790   my %saved_vars = map { $_ => $form->{$_} } grep { $form->{$_} } qw(currency);
1791
1792   &order_links;
1793
1794   map { $form->{$_} = $saved_vars{$_} } keys %saved_vars;
1795
1796   # prepare_order assumes that the discount is in db-notation (0.05) and not user-notation (5)
1797   # and therefore multiplies the values by 100 in the case of reading from db or making an order
1798   # from several quotation, so we convert this back into percent-notation for the user interface by multiplying with 0.01
1799   # ergänzung 03.10.2010 muss vor prepare_order passieren (s.a. Svens Kommentar zu Bug 1017)
1800   # das parse_amount wird oben schon ausgeführt, deswegen an dieser stelle raus (wichtig: kommawerte bei discount testen)
1801   for my $i (1 .. $form->{rowcount}) {
1802     $form->{"discount_$i"} /=100;
1803   };
1804
1805   &prepare_order;
1806   &update;
1807
1808   $main::lxdebug->leave_sub();
1809 }
1810
1811 sub delivery_order {
1812   $main::lxdebug->enter_sub();
1813
1814   my $form     = $main::form;
1815   my %myconfig = %main::myconfig;
1816
1817   if ($form->{type} =~ /^sales/) {
1818     $main::auth->assert('sales_delivery_order_edit');
1819
1820     $form->{vc}    = 'customer';
1821     $form->{type}  = 'sales_delivery_order';
1822
1823   } else {
1824     $main::auth->assert('purchase_delivery_order_edit');
1825
1826     $form->{vc}    = 'vendor';
1827     $form->{type}  = 'purchase_delivery_order';
1828   }
1829
1830   $form->get_employee();
1831
1832   require "bin/mozilla/do.pl";
1833
1834   $form->{script}               = 'do.pl';
1835   $form->{cp_id}               *= 1;
1836   $form->{convert_from_oe_ids}  = $form->{id};
1837   $form->{transdate}            = $form->current_date(\%myconfig);
1838   delete $form->{duedate};
1839
1840   $form->{old_employee_id}  = $form->{employee_id};
1841   $form->{old_salesman_id}  = $form->{salesman_id};
1842
1843   # reset
1844   delete @{$form}{qw(id subject message cc bcc printed emailed queued creditlimit creditremaining discount tradediscount oldinvtotal closed delivered)};
1845
1846   for my $i (1 .. $form->{rowcount}) {
1847     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice listprice lastcost basefactor discount);
1848   }
1849
1850   my %old_values = map { $_ => $form->{$_} } qw(customer_id oldcustomer customer vendor_id oldvendor vendor shipto_id);
1851
1852   order_links();
1853
1854   prepare_order();
1855
1856   map { $form->{$_} = $old_values{$_} if ($old_values{$_}) } keys %old_values;
1857
1858   for my $i (1 .. $form->{rowcount}) {
1859     (my $dummy, $form->{"pricegroup_id_$i"}) = split /--/, $form->{"sellprice_pg_$i"};
1860   }
1861   update();
1862
1863   $main::lxdebug->leave_sub();
1864 }
1865
1866 sub e_mail {
1867   $main::lxdebug->enter_sub();
1868
1869   my $form     = $main::form;
1870
1871   check_oe_access();
1872
1873   $form->{print_and_save} = 1;
1874
1875   my $saved_form = save_form();
1876
1877   save();
1878
1879   restore_form($saved_form, 0, qw(id ordnumber quonumber));
1880
1881   edit_e_mail();
1882
1883   $main::lxdebug->leave_sub();
1884 }
1885
1886 sub yes {
1887   call_sub($main::form->{yes_nextsub});
1888 }
1889
1890 sub no {
1891   call_sub($main::form->{no_nextsub});
1892 }
1893
1894 ######################################################################################################
1895 # IO ENTKOPPLUNG
1896 # ###############################################################################################
1897 sub display_form {
1898   $main::lxdebug->enter_sub();
1899
1900   my $form     = $main::form;
1901   my %myconfig = %main::myconfig;
1902
1903   check_oe_access();
1904
1905   retrieve_partunits() if ($form->{type} =~ /_delivery_order$/);
1906
1907   $form->{"taxaccounts"} =~ s/\s*$//;
1908   $form->{"taxaccounts"} =~ s/^\s*//;
1909   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
1910     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
1911   }
1912   $form->{"taxaccounts"} = "";
1913
1914   IC->retrieve_accounts(\%myconfig, $form, map { $_ => $form->{"id_$_"} } 1 .. $form->{rowcount});
1915
1916   $form->{rowcount}++;
1917   $form->{"project_id_$form->{rowcount}"} = $form->{globalproject_id};
1918
1919   $form->language_payment(\%myconfig);
1920
1921   Common::webdav_folder($form);
1922
1923   &form_header;
1924
1925   # create rows
1926   display_row($form->{rowcount}) if $form->{rowcount};
1927
1928   &form_footer;
1929
1930   $main::lxdebug->leave_sub();
1931 }
1932
1933 sub report_for_todo_list {
1934   $main::lxdebug->enter_sub();
1935
1936   my $form     = $main::form;
1937
1938   my $quotations = OE->transactions_for_todo_list();
1939   my $content;
1940
1941   if (@{ $quotations }) {
1942     my $edit_url = build_std_url('script=oe.pl', 'action=edit');
1943
1944     $content     = $form->parse_html_template('oe/report_for_todo_list', { 'QUOTATIONS' => $quotations,
1945                                                                            'edit_url'   => $edit_url });
1946   }
1947
1948   $main::lxdebug->leave_sub();
1949
1950   return $content;
1951 }
1952
1953 sub edit_periodic_invoices_config {
1954   $::lxdebug->enter_sub();
1955
1956   $::form->{type} = 'sales_order';
1957
1958   check_oe_access();
1959
1960   my $config;
1961   $config = YAML::Load($::form->{periodic_invoices_config}) if $::form->{periodic_invoices_config};
1962
1963   if ('HASH' ne ref $config) {
1964     $config =  { periodicity             => 'y',
1965                  start_date_as_date      => $::form->{transdate},
1966                  extend_automatically_by => 12,
1967                  active                  => 1,
1968                };
1969   }
1970
1971   $config->{periodicity} = 'm' if none { $_ eq $config->{periodicity} } qw(m q y);
1972
1973   $::form->get_lists(printers => "ALL_PRINTERS",
1974                      charts   => { key       => 'ALL_CHARTS',
1975                                    transdate => 'current_date' });
1976
1977   $::form->{AR}    = [ grep { $_->{link} =~ m/(?:^|:)AR(?::|$)/ } @{ $::form->{ALL_CHARTS} } ];
1978   $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
1979
1980   $::form->header();
1981   print $::form->parse_html_template('oe/edit_periodic_invoices_config', $config);
1982
1983   $::lxdebug->leave_sub();
1984 }
1985
1986 sub save_periodic_invoices_config {
1987   $::lxdebug->enter_sub();
1988
1989   $::form->{type} = 'sales_order';
1990
1991   check_oe_access();
1992
1993   $::form->isblank('start_date_as_date', $::locale->text('The start date is missing.'));
1994
1995   my $config = { active                  => $::form->{active}     ? 1 : 0,
1996                  terminated              => $::form->{terminated} ? 1 : 0,
1997                  periodicity             => (any { $_ eq $::form->{periodicity} } qw(m q y)) ? $::form->{periodicity} : 'm',
1998                  start_date_as_date      => $::form->{start_date_as_date},
1999                  end_date_as_date        => $::form->{end_date_as_date},
2000                  print                   => $::form->{print} ? 1 : 0,
2001                  printer_id              => $::form->{print} ? $::form->{printer_id} * 1 : undef,
2002                  copies                  => $::form->{copies} * 1 ? $::form->{copies} : 1,
2003                  extend_automatically_by => $::form->{extend_automatically_by} * 1 || undef,
2004                  ar_chart_id             => $::form->{ar_chart_id} * 1,
2005                };
2006
2007   $::form->{periodic_invoices_config} = YAML::Dump($config);
2008
2009   $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
2010   $::form->header;
2011   print $::form->parse_html_template('oe/save_periodic_invoices_config', $config);
2012
2013   $::lxdebug->leave_sub();
2014 }
2015
2016 sub dispatcher {
2017   foreach my $action (qw(delete delivery_order e_mail invoice print purchase_order purchase_order quotation
2018                          request_for_quotation sales_order sales_order save save_and_close save_as_new ship_to update)) {
2019     if ($::form->{"action_${action}"}) {
2020       call_sub($action);
2021       return;
2022     }
2023   }
2024
2025   $::form->error($::locale->text('No action defined.'));
2026 }