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