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