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