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