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