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