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