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