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