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