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