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