1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger, Accounting
 
   9 # Copyright (c) 1998-2003
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  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.
 
  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 #======================================================================
 
  32 #======================================================================
 
  36 use POSIX qw(strftime);
 
  44 use SL::MoreCommon qw(ary_diff restore_form save_form);
 
  46 use SL::ReportGenerator;
 
  47 use List::MoreUtils qw(uniq any none);
 
  48 use List::Util qw(min max reduce sum);
 
  54 require "bin/mozilla/io.pl";
 
  55 require "bin/mozilla/arap.pl";
 
  56 require "bin/mozilla/reportgenerator.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');
 
  72 # $locale->text('Workflow purchase_order');
 
  73 # $locale->text('Workflow sales_order');
 
  74 # $locale->text('Workflow request_quotation');
 
  75 # $locale->text('Workflow sales_quotation');
 
  78   'sales_order'       => 'sales_order_edit',
 
  79   'purchase_order'    => 'purchase_order_edit',
 
  80   'request_quotation' => 'request_quotation_edit',
 
  81   'sales_quotation'   => 'sales_quotation_edit',
 
  85   my $form     = $main::form;
 
  87   my $right   = $oe_access_map->{$form->{type}};
 
  88   $right    ||= 'DOES_NOT_EXIST';
 
  90   $main::auth->assert($right);
 
  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;
 
  98   $::form->show_generic_error($::locale->text("You do not have the permissions to access this function."));
 
 104   $main::lxdebug->enter_sub();
 
 106   my $form     = $main::form;
 
 107   my $locale   = $main::locale;
 
 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';
 
 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';
 
 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';
 
 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';
 
 142   $main::lxdebug->leave_sub();
 
 146   $main::lxdebug->enter_sub();
 
 148   my $form     = $main::form;
 
 155     "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}"
 
 156     unless $form->{callback};
 
 158   $form->{show_details} = $::myconfig{show_form_details};
 
 164   $main::lxdebug->leave_sub();
 
 168   $main::lxdebug->enter_sub();
 
 170   my $form     = $main::form;
 
 174   $form->{show_details}                = $::myconfig{show_form_details};
 
 175   $form->{taxincluded_changed_by_user} = 1;
 
 177   # show history button
 
 178   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 179   #/show hhistory button
 
 181   $form->{simple_save} = 0;
 
 183   set_headings("edit");
 
 185   # editing without stuff to edit? try adding it first
 
 186   if ($form->{rowcount} && !$form->{print_and_save}) {
 
 188     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
 
 192       undef $form->{rowcount};
 
 194       $main::lxdebug->leave_sub();
 
 197   } elsif (!$form->{id}) {
 
 199     $main::lxdebug->leave_sub();
 
 203   my ($language_id, $printer_id);
 
 204   if ($form->{print_and_save}) {
 
 205     $form->{action}   = "dispatcher";
 
 206     $form->{action_print}   = "1";
 
 207     $form->{resubmit} = 1;
 
 208     $language_id = $form->{language_id};
 
 209     $printer_id = $form->{printer_id};
 
 212   set_headings("edit");
 
 216   $form->{rowcount} = 0;
 
 217   foreach my $ref (@{ $form->{form_details} }) {
 
 219     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{$ref};
 
 224   if ($form->{print_and_save}) {
 
 225     $form->{language_id} = $language_id;
 
 226     $form->{printer_id} = $printer_id;
 
 231   $main::lxdebug->leave_sub();
 
 235   $main::lxdebug->enter_sub();
 
 237   my $form     = $main::form;
 
 238   my %myconfig = %main::myconfig;
 
 239   my $locale   = $main::locale;
 
 243   # get customer/vendor
 
 244   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
 
 246   # retrieve order/quotation
 
 247   my $editing = $form->{id};
 
 249   OE->retrieve(\%myconfig, \%$form);
 
 251   # if multiple rowcounts (== collective order) then check if the
 
 252   # there were more than one customer (in that case OE::retrieve removes
 
 253   # the content from the field)
 
 254   $form->error($locale->text('Collective Orders only work for orders from one customer!'))
 
 255     if          $form->{rowcount}  && $form->{type}     eq 'sales_order'
 
 256      && defined $form->{customer}  && $form->{customer} eq '';
 
 258   $form->{"$form->{vc}_id"} ||= $form->{"all_$form->{vc}"}->[0]->{id} if $form->{"all_$form->{vc}"};
 
 260   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes shipto_id delivery_term_id currency));
 
 262   # get customer / vendor
 
 263   IR->get_vendor(\%myconfig, \%$form)   if $form->{type} =~ /(purchase_order|request_quotation)/;
 
 264   IS->get_customer(\%myconfig, \%$form) if $form->{type} =~ /sales_(order|quotation)/;
 
 266   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id shipto_id delivery_term_id));
 
 267   $form->restore_vars(qw(currency))    if $form->{id};
 
 268   $form->restore_vars(qw(taxincluded)) if $form->{id};
 
 269   $form->restore_vars(qw(salesman_id)) if $editing;
 
 270   $form->{forex}       = $form->{exchangerate};
 
 271   $form->{employee}    = "$form->{employee}--$form->{employee_id}";
 
 273   # build vendor/customer drop down comatibility... don't ask
 
 274   if (@{ $form->{"all_$form->{vc}"} || [] }) {
 
 275     $form->{"select$form->{vc}"} = 1;
 
 276     $form->{$form->{vc}}         = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
 
 279   $form->{"old$form->{vc}"}  = $form->{$form->{vc}};
 
 281   if ($form->{"old$form->{vc}"} !~ m/--\d+$/ && $form->{"$form->{vc}_id"}) {
 
 282     $form->{"old$form->{vc}"} .= qq|--$form->{"$form->{vc}_id"}|
 
 285   $main::lxdebug->leave_sub();
 
 289   $main::lxdebug->enter_sub();
 
 291   my $form     = $main::form;
 
 292   my %myconfig = %main::myconfig;
 
 296   $form->{formname} ||= $form->{type};
 
 298   # format discounts if values come from db. either as single id, or as a collective order
 
 299   my $format_discounts = $form->{id} || $form->{convert_from_oe_ids};
 
 301   for my $i (1 .. $form->{rowcount}) {
 
 302     $form->{"reqdate_$i"} ||= $form->{"deliverydate_$i"};
 
 303     $form->{"discount_$i"}  = $form->format_amount(\%myconfig, $form->{"discount_$i"} * ($format_discounts ? 100 : 1));
 
 304     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
 
 305     $form->{"lastcost_$i"}  = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
 
 306     $form->{"qty_$i"}       = $form->format_amount(\%myconfig, $form->{"qty_$i"});
 
 309   $main::lxdebug->leave_sub();
 
 313   $main::lxdebug->enter_sub();
 
 316   my $form     = $main::form;
 
 317   my %myconfig = %main::myconfig;
 
 318   my $locale   = $main::locale;
 
 319   my $cgi      = $::request->{cgi};
 
 323   # Container for template variables. Unfortunately this has to be
 
 324   # visible in form_footer too, so package local level and not my here.
 
 327     my $obj = SL::DB::Order->new(id => $form->{id})->load;
 
 328     $TMPL_VAR{warn_save_active_periodic_invoice} =
 
 329          $obj->is_type('sales_order')
 
 330       && $obj->periodic_invoices_config
 
 331       && $obj->periodic_invoices_config->active
 
 332       && (   !$obj->periodic_invoices_config->end_date
 
 333           || ($obj->periodic_invoices_config->end_date > DateTime->today_local))
 
 334       && $obj->periodic_invoices_config->get_previous_billed_period_start_date;
 
 336     $TMPL_VAR{oe_obj} = $obj;
 
 339   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 341   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
 
 342   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
 
 344   # openclosed checkboxes
 
 346   push @tmp, sprintf qq|<input name="delivered" id="delivered" type="checkbox" class="checkbox" value="1" %s><label for="delivered">%s</label>|,
 
 347                         $form->{"delivered"} ? "checked" : "",  $locale->text('Delivery Order(s) for full qty created') if $form->{"type"} =~ /_order$/;
 
 348   push @tmp, sprintf qq|<input name="closed" id="closed" type="checkbox" class="checkbox" value="1" %s><label for="closed">%s</label>|,
 
 349                         $form->{"closed"}    ? "checked" : "",  $locale->text('Closed')    if $form->{id};
 
 350   $TMPL_VAR{openclosed} = sprintf qq|<tr><td colspan=%d align=center>%s</td></tr>\n|, 2 * scalar @tmp, join "\n", @tmp if @tmp;
 
 352   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
 
 354   $form->get_lists("taxzones"      => ($form->{id} ? "ALL_TAXZONES" : "ALL_ACTIVE_TAXZONES"),
 
 355                    "payments"      => "ALL_PAYMENTS",
 
 356                    "currencies"    => "ALL_CURRENCIES",
 
 357                    "departments"   => "ALL_DEPARTMENTS",
 
 358                    $vc             => { key   => "ALL_" . uc($vc),
 
 359                                         limit => $myconfig{vclimit} + 1 },
 
 360                    "price_factors" => "ALL_PRICE_FACTORS");
 
 363   my @old_project_ids = uniq grep { $_ } map { $_ * 1 } ($form->{"globalproject_id"}, map { $form->{"project_id_$_"} } 1..$form->{"rowcount"});
 
 364   my @old_ids_cond    = @old_project_ids ? (id => \@old_project_ids) : ();
 
 366   if (($vc eq 'customers') && $::instance_conf->get_customer_projects_only_in_sales) {
 
 369         customer_id          => $::form->{customer_id},
 
 370         billable_customer_id => $::form->{customer_id},
 
 375       and => [ active => 1, @customer_cond ],
 
 379   $TMPL_VAR{ALL_PROJECTS}          = SL::DB::Manager::Project->get_all_sorted(query => \@conditions);
 
 380   $form->{ALL_PROJECTS}            = $TMPL_VAR{ALL_PROJECTS}; # make projects available for second row drop-down in io.pl
 
 383   my $employee_list_query_gen      = sub { $::form->{$_[0]} ? [ or => [ id => $::form->{$_[0]}, deleted => 0 ] ] : [ deleted => 0 ] };
 
 384   $TMPL_VAR{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all_sorted(query => $employee_list_query_gen->('employee_id'));
 
 385   $TMPL_VAR{ALL_SALESMEN}          = SL::DB::Manager::Employee->get_all_sorted(query => $employee_list_query_gen->('salesman_id'));
 
 386   $TMPL_VAR{ALL_SHIPTO}            = SL::DB::Manager::Shipto->get_all_sorted(query => [
 
 387     or => [ trans_id  => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
 
 389   $TMPL_VAR{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all_sorted(query => [
 
 391       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
 
 394         cp_id    => $::form->{cp_id} * 1
 
 398   $TMPL_VAR{sales_employee_labels} = sub { $_[0]->{name} || $_[0]->{login} };
 
 399   $TMPL_VAR{department_labels}     = sub { "$_[0]->{description}--$_[0]->{id}" };
 
 402   $TMPL_VAR{vc_keys} = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 403   $TMPL_VAR{vclimit} = $myconfig{vclimit};
 
 404   $TMPL_VAR{vc_select} = "customer_or_vendor_selection_window('$form->{vc}', '', @{[ $form->{vc} eq 'vendor' ? 1 : 0 ]}, 0)";
 
 405   push @custom_hiddens, "$form->{vc}_id";
 
 406   push @custom_hiddens, "old$form->{vc}";
 
 407   push @custom_hiddens, "select$form->{vc}";
 
 409   # currencies and exchangerate
 
 410   my @values = map { $_ } @{ $form->{ALL_CURRENCIES} };
 
 411   my %labels = map { $_ => $_ } @{ $form->{ALL_CURRENCIES} };
 
 412   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
 
 413   $TMPL_VAR{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
 
 414   $TMPL_VAR{currencies}        = NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"},
 
 415                                                       '-values' => \@values, '-labels' => \%labels,
 
 416                                                       '-onchange' => "document.getElementById('update_button').click();"
 
 417                                      )) if scalar @values;
 
 418   push @custom_hiddens, "forex";
 
 419   push @custom_hiddens, "exchangerate" if $form->{forex};
 
 422   my $creditwarning = (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) ? 1 : 0;
 
 423   $TMPL_VAR{is_credit_remaining_negativ} = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 426   $TMPL_VAR{business_label} = ($form->{vc} eq "customer" ? $locale->text('Customer type') : $locale->text('Vendor type'));
 
 428   push @custom_hiddens, "customer_klass" if $form->{vc} eq 'customer';
 
 430   my $credittext = $locale->text('Credit Limit exceeded!!!');
 
 432   my $follow_up_vc                =  $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };
 
 433   $follow_up_vc                   =~ s/--\d*\s*$//;
 
 434   $TMPL_VAR{follow_up_trans_info} =  ($form->{type} =~ /_quotation$/ ? $form->{quonumber} : $form->{ordnumber}) . " ($follow_up_vc)";
 
 437     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
 
 439     if (scalar @{ $follow_ups }) {
 
 440       $TMPL_VAR{num_follow_ups}     = scalar                    @{ $follow_ups };
 
 441       $TMPL_VAR{num_due_follow_ups} = sum map { $_->{due} * 1 } @{ $follow_ups };
 
 445   my $dispatch_to_popup = '';
 
 446   if ($form->{resubmit} && ($form->{format} eq "html")) {
 
 447       $dispatch_to_popup  = "window.open('about:blank','Beleg'); document.oe.target = 'Beleg';";
 
 448       $dispatch_to_popup .= "document.do.submit();";
 
 449   } elsif ($form->{resubmit}) {
 
 450     # emulate click for resubmitting actions
 
 451     $dispatch_to_popup  = "document.oe.${_}.click(); " for grep { /^action_/ } keys %$form;
 
 452   } elsif ($creditwarning) {
 
 453     $::request->{layout}->add_javascripts_inline("alert('$credittext');");
 
 456   $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup});");
 
 457   $TMPL_VAR{dateformat}          = $myconfig{dateformat};
 
 458   $TMPL_VAR{numberformat}        = $myconfig{numberformat};
 
 460   if ($form->{type} eq 'sales_order') {
 
 461     if (!$form->{periodic_invoices_config}) {
 
 462       $form->{periodic_invoices_status} = $locale->text('not configured');
 
 465       my $config                        = YAML::Load($form->{periodic_invoices_config});
 
 466       $form->{periodic_invoices_status} = $config->{active} ? $locale->text('active') : $locale->text('inactive');
 
 470   $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.SalesPurchase show_form_details show_history show_vc_details ckeditor/ckeditor ckeditor/adapters/jquery kivi.io autocomplete_customer autocomplete_part));
 
 473   if ($form->{CFDD_shipto} && $form->{CFDD_shipto_id} ) {
 
 474       $form->{shipto_id} = $form->{CFDD_shipto_id};
 
 477   push @custom_hiddens, map { "shiptocvar_" . $_->name } @{ SL::DB::Manager::CustomVariableConfig->get_all(where => [ module => 'ShipTo' ]) };
 
 479   $TMPL_VAR{HIDDENS} = [ map { name => $_, value => $form->{$_} },
 
 480      qw(id action type vc formname media format proforma queued printed emailed
 
 481         title creditlimit creditremaining tradediscount business
 
 482         max_dunning_level dunning_amount shiptoname shiptostreet shiptozipcode
 
 483         CFDD_shipto CFDD_shipto_id shiptocity shiptocountry shiptogln shiptocontact shiptophone shiptofax
 
 484         shiptodepartment_1 shiptodepartment_2 shiptoemail shiptocp_gender
 
 485         message email subject cc bcc taxpart taxservice taxaccounts cursor_fokus
 
 486         show_details useasnew),
 
 488         map { $_.'_rate', $_.'_description', $_.'_taxnumber' } split / /, $form->{taxaccounts} ];  # deleted: discount
 
 492      is_sales        => scalar ($form->{type} =~ /^sales_/),              # these vars are exported, so that the template
 
 493      is_order        => scalar ($form->{type} =~ /_order$/),              # may determine what to show
 
 494      is_sales_quo    => scalar ($form->{type} =~ /sales_quotation$/),
 
 495      is_req_quo      => scalar ($form->{type} =~ /request_quotation$/),
 
 496      is_sales_ord    => scalar ($form->{type} =~ /sales_order$/),
 
 497      is_pur_ord      => scalar ($form->{type} =~ /purchase_order$/),
 
 500   $TMPL_VAR{ORDER_PROBABILITIES} = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
 
 502   print $form->parse_html_template("oe/form_header", { %TMPL_VAR });
 
 504   $main::lxdebug->leave_sub();
 
 508   $main::lxdebug->enter_sub();
 
 510   my $form     = $main::form;
 
 511   my %myconfig = %main::myconfig;
 
 512   my $locale   = $main::locale;
 
 516   $form->{invtotal} = $form->{invsubtotal};
 
 518   my $introws = max 5, $form->numtextrows($form->{intnotes}, 35, 8);
 
 520   $TMPL_VAR{notes}    = qq|<textarea name="notes" class="texteditor" wrap="soft" style="width: 350px; height: 150px">| . H($form->{notes}) . qq|</textarea>|;
 
 521   $TMPL_VAR{intnotes} = qq|<textarea name=intnotes rows="$introws" cols="35">| . H($form->{intnotes}) . qq|</textarea>|;
 
 523   if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) {
 
 524     my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
 
 525     $form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
 
 528   if (!$form->{taxincluded}) {
 
 530     foreach my $item (split / /, $form->{taxaccounts}) {
 
 531       if ($form->{"${item}_base"}) {
 
 532         $form->{invtotal} += $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
 
 533         $form->{"${item}_total"} = $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 535         $TMPL_VAR{tax} .= qq|
 
 537                 <th align=right>$form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%</th>
 
 538                 <td align=right>$form->{"${item}_total"}</td>
 
 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);
 
 550         $TMPL_VAR{tax} .= qq|
 
 552                 <th align=right>Enthaltene $form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%</th>
 
 553                 <td align=right>$form->{"${item}_total"}</td>
 
 556                 <th align=right>Nettobetrag</th>
 
 557                 <td align=right>$form->{"${item}_netto"}</td>
 
 563   $form->{rounding} = $form->round_amount(
 
 564     $form->round_amount($form->{invtotal}, 2, 1) - $form->round_amount($form->{invtotal}, 2)
 
 566   $form->{invtotal} = $form->round_amount( $form->{invtotal}, 2, 1);
 
 567   $form->{oldinvtotal} = $form->{invtotal};
 
 569   $TMPL_VAR{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
 
 572   $tpca_reminder = check_transport_cost_reminder_article_number() if $::instance_conf->get_transport_cost_reminder_article_number_id;
 
 573   print $form->parse_html_template("oe/form_footer", {
 
 575      tpca_reminder   => $tpca_reminder,
 
 576      print_options   => print_options(inline => 1),
 
 577      label_edit      => $locale->text("Edit the $form->{type}"),
 
 578      label_workflow  => $locale->text("Workflow $form->{type}"),
 
 579      is_sales        => scalar ($form->{type} =~ /^sales_/),              # these vars are exported, so that the template
 
 580      is_order        => scalar ($form->{type} =~ /_order$/),              # may determine what to show
 
 581      is_sales_quo    => scalar ($form->{type} =~ /sales_quotation$/),
 
 582      is_req_quo      => scalar ($form->{type} =~ /request_quotation$/),
 
 583      is_sales_ord    => scalar ($form->{type} =~ /sales_order$/),
 
 584      is_pur_ord      => scalar ($form->{type} =~ /purchase_order$/),
 
 587   $main::lxdebug->leave_sub();
 
 591   $main::lxdebug->enter_sub();
 
 593   my ($recursive_call) = @_;
 
 595   my $form     = $main::form;
 
 596   my %myconfig = %main::myconfig;
 
 600   set_headings($form->{"id"} ? "edit" : "add");
 
 604   &check_name($form->{vc});
 
 606   if (!$form->{forex}) {        # read exchangerate from input field (not hidden)
 
 607     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate) unless $recursive_call;
 
 610   $buysell              = 'sell' if ($form->{vc} eq 'vendor');
 
 611   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 612   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 614   my $exchangerate = $form->{exchangerate} || 1;
 
 616 ##################### process items ######################################
 
 618   my $i = $form->{rowcount};
 
 619   if (   ($form->{"partnumber_$i"} eq "")
 
 620       && ($form->{"description_$i"} eq "")
 
 621       && ($form->{"partsgroup_$i"}  eq "")) {
 
 623     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 629     if ($form->{type} =~ /^sales/) {
 
 630       IS->retrieve_item(\%myconfig, \%$form);
 
 633       IR->retrieve_item(\%myconfig, \%$form);
 
 637     my $rows = scalar @{ $form->{item_list} };
 
 639     $form->{"discount_$i"}   = $form->parse_amount(\%myconfig, $form->{"discount_$i"}) / 100.0;
 
 640     $form->{"discount_$i"} ||= $form->{"$form->{vc}_discount"};
 
 642     $form->{"lastcost_$i"} = $form->parse_amount(\%myconfig, $form->{"lastcost_$i"});
 
 646       $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 647       if( !$form->{"qty_$i"} ) {
 
 648         $form->{"qty_$i"} = 1;
 
 653         select_item(mode => $mode, pre_entered_qty => $form->{"qty_$i"});
 
 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 ...
 
 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/\"/"/g }    qw(partnumber description unit);
 
 666         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
 
 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 "";
 
 672         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
 
 674         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
 
 675         my $dec_qty       = length $1;
 
 676         my $decimalplaces = max 2, $dec_qty;
 
 679           $form->{"sellprice_$i"} = $sellprice;
 
 681           my $record        = _make_record();
 
 682           my $price_source  = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
 
 683           my $best_price    = $price_source->best_price;
 
 684           my $best_discount = $price_source->best_discount;
 
 687             $::form->{"sellprice_$i"}           = $best_price->price;
 
 688             $::form->{"active_price_source_$i"} = $best_price->source;
 
 690           if ($best_discount) {
 
 691             $::form->{"discount_$i"}               = $best_discount->discount;
 
 692             $::form->{"active_discount_source_$i"} = $best_discount->source;
 
 695           $form->{"sellprice_$i"} /= $exchangerate;   # if there is an exchange rate adjust sellprice
 
 698         my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"});
 
 699         map { $form->{"${_}_base"} = 0 }                                 split / /, $form->{taxaccounts};
 
 700         map { $form->{"${_}_base"} += $amount }                          split / /, $form->{"taxaccounts_$i"};
 
 701         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{taxaccounts} if !$form->{taxincluded};
 
 703         $form->{creditremaining} -= $amount;
 
 705         $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 706         $form->{"lastcost_$i"}  = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
 
 707         $form->{"qty_$i"}       = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
 708         $form->{"discount_$i"}  = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0);
 
 714       # ok, so this is a new part
 
 715       # ask if it is a part or service item
 
 717       if (   $form->{"partsgroup_$i"}
 
 718           && ($form->{"partsnumber_$i"} eq "")
 
 719           && ($form->{"description_$i"} eq "")) {
 
 721         $form->{"discount_$i"} = "";
 
 725         $form->{"id_$i"}   = 0;
 
 730 ##################### process items ######################################
 
 733   $main::lxdebug->leave_sub();
 
 737   $main::lxdebug->enter_sub();
 
 739   my $form     = $main::form;
 
 740   my %myconfig = %main::myconfig;
 
 741   my $locale   = $main::locale;
 
 745   if ($form->{type} eq 'purchase_order') {
 
 746     $form->{vc}        = 'vendor';
 
 747     $form->{ordnrname} = 'ordnumber';
 
 748     $form->{title}     = $locale->text('Purchase Orders');
 
 749     $form->{ordlabel}  = $locale->text('Order Number');
 
 751   } elsif ($form->{type} eq 'request_quotation') {
 
 752     $form->{vc}        = 'vendor';
 
 753     $form->{ordnrname} = 'quonumber';
 
 754     $form->{title}     = $locale->text('Request for Quotations');
 
 755     $form->{ordlabel}  = $locale->text('RFQ Number');
 
 757   } elsif ($form->{type} eq 'sales_order') {
 
 758     $form->{vc}        = 'customer';
 
 759     $form->{ordnrname} = 'ordnumber';
 
 760     $form->{title}     = $locale->text('Sales Orders');
 
 761     $form->{ordlabel}  = $locale->text('Order Number');
 
 763   } elsif ($form->{type} eq 'sales_quotation') {
 
 764     $form->{vc}        = 'customer';
 
 765     $form->{ordnrname} = 'quonumber';
 
 766     $form->{title}     = $locale->text('Quotations');
 
 767     $form->{ordlabel}  = $locale->text('Quotation Number');
 
 770     $form->show_generic_error($locale->text('oe.pl::search called with unknown type'), back_button => 1);
 
 773   # setup vendor / customer data
 
 774   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
 
 775   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS", "all" => 1 },
 
 776                    "departments"  => "ALL_DEPARTMENTS",
 
 777                    "$form->{vc}s" => "ALL_VC",
 
 778                    "taxzones"     => "ALL_TAXZONES",
 
 779                    "business_types" => "ALL_BUSINESS_TYPES",);
 
 780   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 782   $form->{CT_CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
 
 783   ($form->{CT_CUSTOM_VARIABLES_FILTER_CODE},
 
 784    $form->{CT_CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CT_CUSTOM_VARIABLES},
 
 785                                                                               'include_prefix' => 'l_',
 
 786                                                                               'include_value'  => 'Y');
 
 788   # constants and subs for template
 
 789   $form->{vc_keys}         = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 791   $form->{ORDER_PROBABILITIES} = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
 
 795   print $form->parse_html_template('oe/search', {
 
 796     is_order => scalar($form->{type} =~ /_order/),
 
 799   $main::lxdebug->leave_sub();
 
 802 sub create_subtotal_row {
 
 803   $main::lxdebug->enter_sub();
 
 805   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
 807   my $form     = $main::form;
 
 808   my %myconfig = %main::myconfig;
 
 810   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
 812   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
 814   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
 816   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
 818   $main::lxdebug->leave_sub();
 
 824   $main::lxdebug->enter_sub();
 
 826   my $form     = $main::form;
 
 827   my %myconfig = %main::myconfig;
 
 828   my $locale   = $main::locale;
 
 829   my $cgi      = $::request->{cgi};
 
 833   my $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
 
 835   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
 
 837   report_generator_set_default_sort('transdate', 1);
 
 839   OE->transactions(\%myconfig, \%$form);
 
 841   $form->{rowcount} = scalar @{ $form->{OE} };
 
 844     "transdate",               "reqdate",
 
 845     "id",                      $ordnumber,             "edit_exp",
 
 846     "cusordnumber",            "customernumber",
 
 849     "remaining_netamount",     "remaining_amount",
 
 852     "shipvia",                 "globalprojectnumber",
 
 853     "transaction_description", "open",
 
 854     "delivered",               "periodic_invoices",
 
 855     "marge_total",             "marge_percent",
 
 857     "country",                 "shippingpoint",
 
 858     "taxzone",                 "insertdate",
 
 859     "order_probability",       "expected_billing_date", "expected_netamount",
 
 863   # only show checkboxes if gotten here via sales_order form.
 
 864   my $allow_multiple_orders = $form->{type} eq 'sales_order';
 
 865   if ($allow_multiple_orders) {
 
 866     unshift @columns, "ids";
 
 869   $form->{l_open}              = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
 
 870   $form->{l_delivered}         = "Y"                     if ($form->{delivered} && $form->{notdelivered});
 
 871   $form->{l_periodic_invoices} = "Y"                     if ($form->{periodic_invoices_active} && $form->{periodic_invoices_inactive});
 
 872   $form->{l_edit_exp}          = "Y"                     if (any { $form->{type} eq $_ } qw(sales_order purchase_order));
 
 873   map { $form->{"l_${_}"} = 'Y' } qw(order_probability expected_billing_date expected_netamount) if $form->{l_order_probability_expected_billing_date};
 
 875   my $attachment_basename;
 
 876   if ($form->{vc} eq 'vendor') {
 
 877     if ($form->{type} eq 'purchase_order') {
 
 878       $form->{title}       = $locale->text('Purchase Orders');
 
 879       $attachment_basename = $locale->text('purchase_order_list');
 
 881       $form->{title}       = $locale->text('Request for Quotations');
 
 882       $attachment_basename = $locale->text('rfq_list');
 
 886     if ($form->{type} eq 'sales_order') {
 
 887       $form->{title}       = $locale->text('Sales Orders');
 
 888       $attachment_basename = $locale->text('sales_order_list');
 
 890       $form->{title}       = $locale->text('Quotations');
 
 891       $attachment_basename = $locale->text('quotation_list');
 
 895   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 897   my $ct_cvar_configs = CVar->get_configs('module' => 'CT');
 
 898   my @ct_includeable_custom_variables = grep { $_->{includeable} } @{ $ct_cvar_configs };
 
 899   my @ct_searchable_custom_variables  = grep { $_->{searchable} }  @{ $ct_cvar_configs };
 
 901   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @ct_includeable_custom_variables;
 
 902   push @columns, map { "cvar_$_->{name}" } @ct_includeable_custom_variables;
 
 904   my @hidden_variables = map { "l_${_}" } @columns;
 
 905   push @hidden_variables, "l_subtotal", $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered ordnumber quonumber cusordnumber
 
 906                                                         transaction_description transdatefrom transdateto type vc employee_id salesman_id
 
 907                                                         reqdatefrom reqdateto projectnumber project_id periodic_invoices_active periodic_invoices_inactive
 
 908                                                         business_id shippingpoint taxzone_id reqdate_unset_or_old insertdatefrom insertdateto
 
 909                                                         order_probability_op order_probability_value expected_billing_date_from expected_billing_date_to
 
 910                                                         parts_partnumber parts_description);
 
 911   push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables;
 
 913   my   @keys_for_url = grep { $form->{$_} } @hidden_variables;
 
 914   push @keys_for_url, 'taxzone_id' if $form->{taxzone_id} ne ''; # taxzone_id could be 0
 
 916   my $href = build_std_url('action=orders', @keys_for_url);
 
 919     'ids'                     => { 'text' => '', },
 
 920     'transdate'               => { 'text' => $locale->text('Date'), },
 
 921     'reqdate'                 => { 'text' => $form->{type} =~ /_order/ ? $locale->text('Required by') : $locale->text('Valid until') },
 
 922     'id'                      => { 'text' => $locale->text('ID'), },
 
 923     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
 924     'quonumber'               => { 'text' => $form->{type} eq "request_quotation" ? $locale->text('RFQ') : $locale->text('Quotation'), },
 
 925     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
 
 926     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
 
 927     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
 
 928     'netamount'               => { 'text' => $locale->text('Amount'), },
 
 929     'tax'                     => { 'text' => $locale->text('Tax'), },
 
 930     'amount'                  => { 'text' => $locale->text('Total'), },
 
 931     'remaining_amount'        => { 'text' => $locale->text('Remaining Amount'), },
 
 932     'remaining_netamount'     => { 'text' => $locale->text('Remaining Net Amount'), },
 
 933     'curr'                    => { 'text' => $locale->text('Curr'), },
 
 934     'employee'                => { 'text' => $locale->text('Employee'), },
 
 935     'salesman'                => { 'text' => $locale->text('Salesman'), },
 
 936     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
 
 937     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
 
 938     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
 939     'open'                    => { 'text' => $locale->text('Open'), },
 
 940     'delivered'               => { 'text' => $locale->text('Delivery Order created'), },
 
 941     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
 
 942     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
 
 943     'vcnumber'                => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer Number') : $locale->text('Vendor Number'), },
 
 944     'country'                 => { 'text' => $locale->text('Country'), },
 
 945     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
 
 946     'periodic_invoices'       => { 'text' => $locale->text('Per. Inv.'), },
 
 947     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
 
 948     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
 
 949     'insertdate'              => { 'text' => $locale->text('Insert Date'), },
 
 950     'order_probability'       => { 'text' => $locale->text('Order probability'), },
 
 951     'expected_billing_date'   => { 'text' => $locale->text('Exp. bill. date'), },
 
 952     'expected_netamount'      => { 'text' => $locale->text('Exp. netamount'), },
 
 953     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
 
 954     'edit_exp'                => { 'text' => $locale->text('Edit (experimental)'), },
 
 958   foreach my $name (qw(id transdate reqdate quonumber ordnumber cusordnumber name employee salesman shipvia transaction_description shippingpoint taxzone insertdate payment_terms)) {
 
 959     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
 960     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
 963   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount curr remaining_amount remaining_netamount order_probability expected_billing_date expected_netamount);
 
 965   $form->{"l_type"} = "Y";
 
 966   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 967   $column_defs{ids}->{visible} = $allow_multiple_orders ? 'HTML' : 0;
 
 969   $report->set_columns(%column_defs);
 
 970   $report->set_column_order(@columns);
 
 971   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
 
 972   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
 974   CVar->add_custom_variables_to_report('module'         => 'CT',
 
 975                                        'trans_id_field' => "$form->{vc}_id",
 
 976                                        'configs'        => $ct_cvar_configs,
 
 977                                        'column_defs'    => \%column_defs,
 
 978                                        'data'           => $form->{OE});
 
 981   my ($department) = split m/--/, $form->{department};
 
 983   push @options, $locale->text('Customer')                . " : $form->{customer}"                        if $form->{customer};
 
 984   push @options, $locale->text('Vendor')                  . " : $form->{vendor}"                          if $form->{vendor};
 
 985   push @options, $locale->text('Contact Person')          . " : $form->{cp_name}"                         if $form->{cp_name};
 
 986   push @options, $locale->text('Department')              . " : $department"                              if $form->{department};
 
 987   push @options, $locale->text('Order Number')            . " : $form->{ordnumber}"                       if $form->{ordnumber};
 
 988   push @options, $locale->text('Customer Order Number')   . " : $form->{cusordnumber}"                    if $form->{cusordnumber};
 
 989   push @options, $locale->text('Notes')                   . " : $form->{notes}"                           if $form->{notes};
 
 990   push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"         if $form->{transaction_description};
 
 991   push @options, $locale->text('Quick Search')            . " : $form->{all}"                             if $form->{all};
 
 992   push @options, $locale->text('Shipping Point')          . " : $form->{shippingpoint}"                   if $form->{shippingpoint};
 
 993   push @options, $locale->text('Part Description')        . " : $form->{parts_description}"               if $form->{parts_description};
 
 994   push @options, $locale->text('Part Number')             . " : $form->{parts_partnumber}"                if $form->{parts_partnumber};
 
 995   if ( $form->{transdatefrom} or $form->{transdateto} ) {
 
 996     push @options, $locale->text('Order Date');
 
 997     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)     if $form->{transdatefrom};
 
 998     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)     if $form->{transdateto};
 
1000   if ( $form->{reqdatefrom} or $form->{reqdateto} ) {
 
1001     push @options, $locale->text('Delivery Date');
 
1002     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{reqdatefrom}, 1)       if $form->{reqdatefrom};
 
1003     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{reqdateto},   1)       if $form->{reqdateto};
 
1005   if ( $form->{insertdatefrom} or $form->{insertdateto} ) {
 
1006     push @options, $locale->text('Insert Date');
 
1007     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{insertdatefrom}, 1)    if $form->{insertdatefrom};
 
1008     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{insertdateto},   1)    if $form->{insertdateto};
 
1010   push @options, $locale->text('Open')                                                                    if $form->{open};
 
1011   push @options, $locale->text('Closed')                                                                  if $form->{closed};
 
1012   push @options, $locale->text('Delivery Order created')                                                               if $form->{delivered};
 
1013   push @options, $locale->text('Not delivered')                                                           if $form->{notdelivered};
 
1014   push @options, $locale->text('Periodic invoices active')                                                if $form->{periodic_invoices_active};
 
1015   push @options, $locale->text('Reqdate not set or before current month')                                 if $form->{reqdate_unset_or_old};
 
1017   if ($form->{business_id}) {
 
1018     my $vc_type_label = $form->{vc} eq 'customer' ? $locale->text('Customer type') : $locale->text('Vendor type');
 
1019     push @options, $vc_type_label . " : " . SL::DB::Business->new(id => $form->{business_id})->load->description;
 
1021   if ($form->{taxzone_id} ne '') { # taxzone_id could be 0
 
1022     push @options, $locale->text('Steuersatz') . " : " . SL::DB::TaxZone->new(id => $form->{taxzone_id})->load->description;
 
1025   if (($form->{order_probability_value} || '') ne '') {
 
1026     push @options, $::locale->text('Order probability') . ' ' . ($form->{order_probability_op} eq 'le' ? '<=' : '>=') . ' ' . $form->{order_probability_value} . '%';
 
1029   if ($form->{expected_billing_date_from} or $form->{expected_billing_date_to}) {
 
1030     push @options, $locale->text('Expected billing date');
 
1031     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{expected_billing_date_from}, 1) if $form->{expected_billing_date_from};
 
1032     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{expected_billing_date_to},   1) if $form->{expected_billing_date_to};
 
1035   $report->set_options('top_info_text'        => join("\n", @options),
 
1036                        'raw_top_info_text'    => $form->parse_html_template('oe/orders_top'),
 
1037                        'raw_bottom_info_text' => $form->parse_html_template('oe/orders_bottom', { 'SHOW_CONTINUE_BUTTON' => $allow_multiple_orders }),
 
1038                        'output_format'        => 'HTML',
 
1039                        'title'                => $form->{title},
 
1040                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
 
1042   $report->set_options_from_form();
 
1043   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
1045   # add sort and escape callback, this one we use for the add sub
 
1046   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1048   # escape callback for href
 
1049   my $callback = $form->escape($href);
 
1051   my @subtotal_columns = qw(netamount amount marge_total marge_percent remaining_amount remaining_netamount);
 
1052   push @subtotal_columns, 'expected_netamount' if $form->{l_order_probability_expected_billing_date};
 
1054   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1055   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1059   my $edit_url = build_std_url('action=edit', 'type', 'vc');
 
1061   foreach my $oe (@{ $form->{OE} }) {
 
1062     map { $oe->{$_} *= $oe->{exchangerate} } @subtotal_columns;
 
1064     $oe->{tax}               = $oe->{amount} - $oe->{netamount};
 
1065     $oe->{open}              = $oe->{closed}            ? $locale->text('No')  : $locale->text('Yes');
 
1066     $oe->{delivered}         = $oe->{delivered}         ? $locale->text('Yes') : $locale->text('No');
 
1067     $oe->{periodic_invoices} = $oe->{periodic_invoices} ? $locale->text('On')  : $locale->text('Off');
 
1069     map { $subtotals{$_} += $oe->{$_};
 
1070           $totals{$_}    += $oe->{$_} } @subtotal_columns;
 
1072     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
 
1073     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
 
1075     map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount marge_total marge_percent remaining_amount remaining_netamount expected_netamount);
 
1077     $oe->{order_probability} = ($oe->{order_probability} || 0) . '%';
 
1081     foreach my $column (@columns) {
 
1082       next if ($column eq 'ids');
 
1083       next if ($column eq 'edit_exp');
 
1085         'data'  => $oe->{$column},
 
1086         'align' => $column_alignment{$column},
 
1091       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $oe->{id})
 
1092                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
 
1093       'valign'   => 'center',
 
1094       'align'    => 'center',
 
1097     $row->{$ordnumber}->{link} = $edit_url . "&id=" . E($oe->{id}) . "&callback=${callback}";
 
1099     $row->{edit_exp}->{data}   = $oe->{ordnumber};
 
1100     $row->{edit_exp}->{link}   = build_std_url('script=controller.pl', 'action=Order/edit', "type=$form->{type}", 'id=' . E($oe->{id}));
 
1102     my $row_set = [ $row ];
 
1104     if (($form->{l_subtotal} eq 'Y')
 
1105         && (($idx == (scalar @{ $form->{OE} }))
 
1106             || ($oe->{ $form->{sort} } ne $form->{OE}->[$idx]->{ $form->{sort} }))) {
 
1107       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1110     $report->add_data($row_set);
 
1115   $report->add_separator();
 
1116   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1118   $report->generate_with_headers();
 
1120   $main::lxdebug->leave_sub();
 
1123 sub check_delivered_flag {
 
1124   $main::lxdebug->enter_sub();
 
1126   my $form     = $main::form;
 
1127   my %myconfig = %main::myconfig;
 
1131   if (($form->{type} ne 'sales_order') && ($form->{type} ne 'purchase_order')) {
 
1132     return $main::lxdebug->leave_sub();
 
1135   my $all_delivered = 0;
 
1137   foreach my $i (1 .. $form->{rowcount}) {
 
1138     next if (!$form->{"id_$i"});
 
1140     if ($form->parse_amount(\%myconfig, $form->{"qty_$i"}) == $form->parse_amount(\%myconfig, $form->{"ship_$i"})) {
 
1149   $form->{delivered} = 1 if $all_delivered;
 
1151   $main::lxdebug->leave_sub();
 
1154 sub save_and_close {
 
1155   $main::lxdebug->enter_sub();
 
1157   my $form     = $main::form;
 
1158   my %myconfig = %main::myconfig;
 
1159   my $locale   = $main::locale;
 
1162   $form->mtime_ischanged('oe');
 
1164   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
1166   if ($form->{type} =~ /_order$/) {
 
1167     $form->isblank("transdate", $locale->text('Order Date missing!'));
 
1169     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1172   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
 
1173   $form->{$idx} =~ s/^\s*//g;
 
1174   $form->{$idx} =~ s/\s*$//g;
 
1176   my $msg = ucfirst $form->{vc};
 
1177   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
 
1179   # $locale->text('Customer missing!');
 
1180   # $locale->text('Vendor missing!');
 
1182   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1183     if ($form->{currency} ne $form->{defaultcurrency});
 
1188   if($form->{payment_id}) {
 
1189     $payment_id = $form->{payment_id};
 
1192   # if the name changed get new values
 
1193   if (&check_name($form->{vc})) {
 
1194     if($form->{payment_id} eq "") {
 
1195       $form->{payment_id} = $payment_id;
 
1201   $form->{id} = 0 if $form->{saveasnew};
 
1203   my ($numberfld, $ordnumber, $err);
 
1204   # this is for the internal notes section for the [email] Subject
 
1205   if ($form->{type} =~ /_order$/) {
 
1206     if ($form->{type} eq 'sales_order') {
 
1207       $form->{label} = $locale->text('Sales Order');
 
1209       $numberfld = "sonumber";
 
1210       $ordnumber = "ordnumber";
 
1212       $form->{label} = $locale->text('Purchase Order');
 
1214       $numberfld = "ponumber";
 
1215       $ordnumber = "ordnumber";
 
1218     $err = $locale->text('Cannot save order!');
 
1220     check_delivered_flag();
 
1223     if ($form->{type} eq 'sales_quotation') {
 
1224       $form->{label} = $locale->text('Quotation');
 
1226       $numberfld = "sqnumber";
 
1227       $ordnumber = "quonumber";
 
1229       $form->{label} = $locale->text('Request for Quotation');
 
1231       $numberfld = "rfqnumber";
 
1232       $ordnumber = "quonumber";
 
1235     $err = $locale->text('Cannot save quotation!');
 
1239   # get new number in sequence if saveasnew was requested
 
1240   delete $form->{$ordnumber} if $form->{saveasnew};
 
1244   $form->error($err) if (!OE->save(\%myconfig, \%$form));
 
1246   # saving the history
 
1247   if(!exists $form->{addition}) {
 
1248     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1249     $form->{addition} = "SAVED";
 
1250     $form->save_history;
 
1252   # /saving the history
 
1254   $form->redirect($form->{label} . " $form->{$ordnumber} " .
 
1255                   $locale->text('saved!'));
 
1257   $main::lxdebug->leave_sub();
 
1261   $main::lxdebug->enter_sub();
 
1263   my $form     = $main::form;
 
1264   my %myconfig = %main::myconfig;
 
1265   my $locale   = $main::locale;
 
1269   $form->mtime_ischanged('oe');
 
1270   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
1273   if ($form->{type} =~ /_order$/) {
 
1274     $form->isblank("transdate", $locale->text('Order Date missing!'));
 
1276     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1279   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
 
1280   $form->{$idx} =~ s/^\s*//g;
 
1281   $form->{$idx} =~ s/\s*$//g;
 
1283   my $msg = ucfirst $form->{vc};
 
1284   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
 
1286   # $locale->text('Customer missing!');
 
1287   # $locale->text('Vendor missing!');
 
1289   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1290     if ($form->{currency} ne $form->{defaultcurrency});
 
1292   remove_emptied_rows();
 
1296   if($form->{payment_id}) {
 
1297     $payment_id = $form->{payment_id};
 
1300   # if the name changed get new values
 
1301   if (&check_name($form->{vc})) {
 
1302     if($form->{payment_id} eq "") {
 
1303       $form->{payment_id} = $payment_id;
 
1309   $form->{id} = 0 if $form->{saveasnew};
 
1311   my ($numberfld, $ordnumber, $err);
 
1313   # this is for the internal notes section for the [email] Subject
 
1314   if ($form->{type} =~ /_order$/) {
 
1315     if ($form->{type} eq 'sales_order') {
 
1316       $form->{label} = $locale->text('Sales Order');
 
1318       $numberfld = "sonumber";
 
1319       $ordnumber = "ordnumber";
 
1321       $form->{label} = $locale->text('Purchase Order');
 
1323       $numberfld = "ponumber";
 
1324       $ordnumber = "ordnumber";
 
1327     $err = $locale->text('Cannot save order!');
 
1329     check_delivered_flag();
 
1332     if ($form->{type} eq 'sales_quotation') {
 
1333       $form->{label} = $locale->text('Quotation');
 
1335       $numberfld = "sqnumber";
 
1336       $ordnumber = "quonumber";
 
1338       $form->{label} = $locale->text('Request for Quotation');
 
1340       $numberfld = "rfqnumber";
 
1341       $ordnumber = "quonumber";
 
1344     $err = $locale->text('Cannot save quotation!');
 
1350   OE->save(\%myconfig, \%$form);
 
1352   # saving the history
 
1353   if(!exists $form->{addition}) {
 
1354     if ( $form->{formname} eq 'sales_quotation' or  $form->{formname} eq 'request_quotation' ) {
 
1355         $form->{snumbers} = qq|quonumber_| . $form->{quonumber};
 
1356     } elsif ( $form->{formname} eq 'sales_order' or $form->{formname} eq 'purchase_order') {
 
1357         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1359     $form->{what_done} = $form->{formname};
 
1360     $form->{addition} = "SAVED";
 
1361     $form->save_history;
 
1363   # /saving the history
 
1365   $form->{simple_save} = 1;
 
1366   if(!$form->{print_and_save}) {
 
1367     delete @{$form}{ary_diff([keys %{ $form }], [qw(login id script type cursor_fokus)])};
 
1371   $main::lxdebug->leave_sub();
 
1375   $main::lxdebug->enter_sub();
 
1377   my $form     = $main::form;
 
1378   my %myconfig = %main::myconfig;
 
1379   my $locale   = $main::locale;
 
1384   if ($form->{type} =~ /_order$/) {
 
1385     $msg = $locale->text('Order deleted!');
 
1386     $err = $locale->text('Cannot delete order!');
 
1388     $msg = $locale->text('Quotation deleted!');
 
1389     $err = $locale->text('Cannot delete quotation!');
 
1391   if (OE->delete(\%myconfig, \%$form)){
 
1392     # saving the history
 
1393     if(!exists $form->{addition}) {
 
1394       if ( $form->{formname} eq 'sales_quotation' or  $form->{formname} eq 'request_quotation' ) {
 
1395           $form->{snumbers} = qq|quonumber_| . $form->{quonumber};
 
1396       } elsif ( $form->{formname} eq 'sales_order' or $form->{formname} eq 'purchase_order') {
 
1397           $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1399         $form->{what_done} = $form->{formname};
 
1400         $form->{addition} = "DELETED";
 
1401         $form->save_history;
 
1403     # /saving the history
 
1409   $main::lxdebug->leave_sub();
 
1413   $main::lxdebug->enter_sub();
 
1415   my $form     = $main::form;
 
1416   my %myconfig = %main::myconfig;
 
1417   my $locale   = $main::locale;
 
1420   check_oe_conversion_to_sales_invoice_allowed();
 
1421   $form->mtime_ischanged('oe');
 
1423   $main::auth->assert($form->{type} eq 'purchase_order' || $form->{type} eq 'request_quotation' ? 'vendor_invoice_edit' : 'invoice_edit');
 
1425   $form->{old_salesman_id} = $form->{salesman_id};
 
1426   $form->get_employee();
 
1429   if ($form->{type} =~ /_order$/) {
 
1431     # these checks only apply if the items don't bring their own ordnumbers/transdates.
 
1432     # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
 
1433     $form->isblank("ordnumber", $locale->text('Order Number missing!'))
 
1434       if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
 
1435     $form->isblank("transdate", $locale->text('Order Date missing!'))
 
1436       if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
 
1438     # also copy deliverydate from the order
 
1439     $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
 
1440     $form->{orddate}      = $form->{transdate};
 
1442     $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
 
1443     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1444     $form->{ordnumber}    = "";
 
1445     $form->{quodate}      = $form->{transdate};
 
1449   if ($form->{payment_id}) {
 
1450     $payment_id = $form->{payment_id};
 
1453   # if the name changed get new values
 
1454   if (&check_name($form->{vc})) {
 
1455     $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
 
1460   _oe_remove_delivered_or_billed_rows(id => $form->{id}, type => 'billed');
 
1462   $form->{cp_id} *= 1;
 
1464   for my $i (1 .. $form->{rowcount}) {
 
1465     for (qw(ship qty sellprice basefactor)) {
 
1466       $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"};
 
1468     $form->{"converted_from_orderitems_id_$i"} = delete $form->{"orderitems_id_$i"};
 
1471   my ($buysell, $orddate, $exchangerate);
 
1472   if (   $form->{type} =~ /_order/
 
1473       && $form->{currency} ne $form->{defaultcurrency}) {
 
1475     # check if we need a new exchangerate
 
1476     $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
 
1478     $orddate      = $form->current_date(\%myconfig);
 
1479     $exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate, $buysell);
 
1481     if (!$exchangerate) {
 
1486   $form->{convert_from_oe_ids} = $form->{id};
 
1487   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
 
1488   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
1489   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
 
1491   delete @{$form}{qw(id closed)};
 
1492   $form->{rowcount}--;
 
1494   if ($form->{type} =~ /_order$/) {
 
1495     $form->{exchangerate} = $exchangerate;
 
1500   if (   $form->{type} eq 'purchase_order'
 
1501       || $form->{type} eq 'request_quotation') {
 
1502     $form->{title}  = $locale->text('Add Vendor Invoice');
 
1503     $form->{script} = 'ir.pl';
 
1508   if (   $form->{type} eq 'sales_order'
 
1509       || $form->{type} eq 'sales_quotation') {
 
1510     $form->{title}  = $locale->text('Add Sales Invoice');
 
1511     $form->{script} = 'is.pl';
 
1516   # bo creates the id, reset it
 
1517   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
 
1518   $form->{ $form->{vc} } =~ s/--.*//g;
 
1519   $form->{type} = "invoice";
 
1522   $main::locale = Locale->new("$myconfig{countrycode}", "$script");
 
1523   $locale = $main::locale;
 
1525   require "bin/mozilla/$form->{script}";
 
1527   map { $form->{"select$_"} = "" } ($form->{vc}, "currency");
 
1529   my $currency = $form->{currency};
 
1532   $form->{currency}     = $currency;
 
1533   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, $buysell);
 
1534   $form->{exchangerate} = $form->{forex} || '';
 
1536   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
 
1541   for my $i (1 .. $form->{rowcount}) {
 
1542     $form->{"discount_$i"} =
 
1543       $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
1545     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
1547     my $decimalplaces = ($dec > 2) ? $dec : 2;
 
1549     # copy delivery date from reqdate for order -> invoice conversion
 
1550     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
 
1551       unless $form->{"deliverydate_$i"};
 
1553     $form->{"sellprice_$i"} =
 
1554       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
1557     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
1558     $dec_qty = length $dec_qty;
 
1560       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
1565   $main::lxdebug->leave_sub();
 
1568 sub save_exchangerate {
 
1569   $main::lxdebug->enter_sub();
 
1571   my $form     = $main::form;
 
1572   my %myconfig = %main::myconfig;
 
1573   my $locale   = $main::locale;
 
1575   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
 
1576   $form->{exchangerate} =
 
1577     $form->parse_amount(\%myconfig, $form->{exchangerate});
 
1578   $form->save_exchangerate(\%myconfig, $form->{currency},
 
1579                            $form->{exchangeratedate},
 
1580                            $form->{exchangerate}, $form->{buysell});
 
1584   $main::lxdebug->leave_sub();
 
1587 sub create_backorder {
 
1588   $main::lxdebug->enter_sub();
 
1590   my $form     = $main::form;
 
1591   my %myconfig = %main::myconfig;
 
1593   $form->{shipped} = 1;
 
1595   # figure out if we need to create a backorder
 
1596   # items aren't saved if qty != 0
 
1598   my ($totalqty, $totalship);
 
1599   for my $i (1 .. $form->{rowcount}) {
 
1600     my $qty  = $form->{"qty_$i"};
 
1601     my $ship = $form->{"ship_$i"};
 
1603     $totalship += $ship;
 
1605     $form->{"qty_$i"} = $qty - $ship;
 
1608   if ($totalship == 0) {
 
1609     map { $form->{"ship_$_"} = $form->{"qty_$_"} } (1 .. $form->{rowcount});
 
1610     $form->{ordtotal} = 0;
 
1611     $form->{shipped}  = 0;
 
1615   if ($totalqty == $totalship) {
 
1616     map { $form->{"qty_$_"} = $form->{"ship_$_"} } (1 .. $form->{rowcount});
 
1617     $form->{ordtotal} = 0;
 
1622     qw(partnumber description qty ship unit sellprice discount id inventory_accno bin income_accno expense_accno listprice assembly taxaccounts partsgroup)
 
1625   for my $i (1 .. $form->{rowcount}) {
 
1627       $form->{"${_}_$i"} =
 
1628         $form->format_amount(\%myconfig, $form->{"${_}_$i"})
 
1629     } qw(sellprice discount);
 
1634   OE->save(\%myconfig, \%$form);
 
1636   # rebuild rows for invoice
 
1640   for my $i (1 .. $form->{rowcount}) {
 
1641     $form->{"qty_$i"} = $form->{"ship_$i"};
 
1643     if ($form->{"qty_$i"}) {
 
1646       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
1651   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
1652   $form->{rowcount} = $count;
 
1654   $main::lxdebug->leave_sub();
 
1658   $main::lxdebug->enter_sub();
 
1660   my $form     = $main::form;
 
1664   $form->{saveasnew} = 1;
 
1665   map { delete $form->{$_} } qw(printed emailed queued delivered closed);
 
1666   $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
 
1668   # Let kivitendo assign a new order number if the user hasn't changed the
 
1669   # previous one. If it has been changed manually then use it as-is.
 
1670   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
 
1671   $form->{$idx} =~ s/^\s*//g;
 
1672   $form->{$idx} =~ s/\s*$//g;
 
1673   if ($form->{saved_xyznumber} &&
 
1674       ($form->{saved_xyznumber} eq $form->{$idx})) {
 
1675     delete($form->{$idx});
 
1678   # clear reqdate and transdate unless changed
 
1679   if ( $form->{reqdate} && $form->{id} ) {
 
1680     my $saved_order = OE->retrieve_simple(id => $form->{id});
 
1681     if ( $saved_order && $saved_order->{reqdate} eq $form->{reqdate} && $saved_order->{transdate} eq $form->{transdate} ) {
 
1682       my $extra_days     = $form->{type} eq 'sales_quotation' ? $::instance_conf->get_reqdate_interval : 1;
 
1683       $form->{reqdate}   = DateTime->today_local->next_workday(extra_days => $extra_days)->to_kivitendo;
 
1684       $form->{transdate} = DateTime->today_local->to_kivitendo;
 
1689   $form->get_employee();
 
1693   $main::lxdebug->leave_sub();
 
1696 sub check_for_direct_delivery_yes {
 
1697   $main::lxdebug->enter_sub();
 
1699   my $form     = $main::form;
 
1703   $form->{direct_delivery_checked} = 1;
 
1704   delete @{$form}{grep /^shipto/, keys %{ $form }};
 
1705   map { s/^CFDD_//; $form->{$_} = $form->{"CFDD_${_}"} } grep /^CFDD_/, keys %{ $form };
 
1706   $form->{CFDD_shipto} = 1;
 
1708   $main::lxdebug->leave_sub();
 
1711 sub check_for_direct_delivery_no {
 
1712   $main::lxdebug->enter_sub();
 
1714   my $form     = $main::form;
 
1718   $form->{direct_delivery_checked} = 1;
 
1719   delete @{$form}{grep /^shipto/, keys %{ $form }};
 
1720   $form->{CFDD_shipto} = 0;
 
1723   $main::lxdebug->leave_sub();
 
1726 sub check_for_direct_delivery {
 
1727   $main::lxdebug->enter_sub();
 
1729   my $form     = $main::form;
 
1730   my %myconfig = %main::myconfig;
 
1734   if ($form->{direct_delivery_checked}
 
1735       || (!$form->{shiptoname} && !$form->{shiptostreet} && !$form->{shipto_id})) {
 
1736     $main::lxdebug->leave_sub();
 
1740   my $cvars = SL::DB::Shipto->new->cvars_by_config;
 
1742   if ($form->{shipto_id}) {
 
1743     Common->get_shipto_by_id(\%myconfig, $form, $form->{shipto_id}, "CFDD_");
 
1746     map { $form->{"CFDD_${_}"} = $form->{$_ } } grep /^shipto/, keys %{ $form };
 
1749   $_->value($::form->{"CFDD_shiptocvar_" . $_->config->name}) for @{ $cvars };
 
1751   delete $form->{action};
 
1752   $form->{VARIABLES} = [ map { { "key" => $_, "value" => $form->{$_} } } grep { ($_ ne 'login') && ($_ ne 'password') && (ref $_ eq "") } keys %{ $form } ];
 
1755   print $form->parse_html_template("oe/check_for_direct_delivery", { cvars => $cvars });
 
1757   $main::lxdebug->leave_sub();
 
1762 sub purchase_order {
 
1763   $main::lxdebug->enter_sub();
 
1765   my $form     = $main::form;
 
1766   my $locale   = $main::locale;
 
1769   $form->mtime_ischanged('oe');
 
1771   $main::auth->assert('purchase_order_edit');
 
1773   $form->{sales_order_to_purchase_order} = 0;
 
1774   if ($form->{type} eq 'sales_order') {
 
1775     $form->{sales_order_to_purchase_order} = 1;
 
1776     check_for_direct_delivery();
 
1779   if ($form->{type} =~ /^sales_/) {
 
1780     delete($form->{ordnumber});
 
1781     delete($form->{payment_id});
 
1782     delete($form->{delivery_term_id});
 
1785   $form->{cp_id} *= 1;
 
1787   my $source_type = $form->{type};
 
1788   $form->{title} = $locale->text('Add Purchase Order');
 
1789   $form->{vc}    = "vendor";
 
1790   $form->{type}  = "purchase_order";
 
1792   $form->get_employee();
 
1794   poso(source_type => $form->{type});
 
1796   delete $form->{sales_order_to_purchase_order};
 
1798   $main::lxdebug->leave_sub();
 
1802   $main::lxdebug->enter_sub();
 
1804   my $form     = $main::form;
 
1805   my $locale   = $main::locale;
 
1808   $main::auth->assert('sales_order_edit');
 
1809   $form->mtime_ischanged('oe');
 
1811   if ($form->{type} eq "purchase_order") {
 
1812     delete($form->{ordnumber});
 
1813     $form->{"lastcost_$_"} = $form->{"sellprice_$_"} for (1..$form->{rowcount});
 
1816   $form->{cp_id} *= 1;
 
1818   my $source_type = $form->{type};
 
1819   $form->{title}  = $locale->text('Add Sales Order');
 
1820   $form->{vc}     = "customer";
 
1821   $form->{type}   = "sales_order";
 
1823   $form->get_employee();
 
1825   poso(source_type => $source_type);
 
1827   $main::lxdebug->leave_sub();
 
1831   $main::lxdebug->enter_sub();
 
1834   my $form     = $main::form;
 
1835   my %myconfig = %main::myconfig;
 
1838   $main::auth->assert('purchase_order_edit | sales_order_edit');
 
1840   $form->{transdate} = $form->current_date(\%myconfig);
 
1841   delete $form->{duedate};
 
1843   # "reqdate" is the validity date for a quotation and the delivery
 
1844   # date for an order. Therefore it makes no sense to keep the value
 
1845   # when converting from one into the other.
 
1846   delete $form->{reqdate} if ($param{source_type} =~ /_quotation$/) == ($form->{type} =~ /_quotation$/);
 
1848   $form->{convert_from_oe_ids} = $form->{id};
 
1849   $form->{closed}              = 0;
 
1851   $form->{old_employee_id}     = $form->{employee_id};
 
1852   $form->{old_salesman_id}     = $form->{salesman_id};
 
1855   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal delivered ordnumber);
 
1856   # this converted variable is also used for sales_order to purchase order and vice versa
 
1857   $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
 
1859   # if purchase_order was generated from sales_order, use  lastcost_$i as sellprice_$i
 
1860   # also reset discounts
 
1861   if ( $form->{sales_order_to_purchase_order} ) {
 
1862     for my $i (1 .. $form->{rowcount}) {
 
1863       $form->{"sellprice_${i}"} = $form->{"lastcost_${i}"};
 
1864       $form->{"discount_${i}"}  = 0;
 
1868   for my $i (1 .. $form->{rowcount}) {
 
1869     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice basefactor discount lastcost);
 
1872   my %saved_vars = map { $_ => $form->{$_} } grep { $form->{$_} } qw(currency);
 
1876   map { $form->{$_} = $saved_vars{$_} } keys %saved_vars;
 
1878   # prepare_order assumes that the discount is in db-notation (0.05) and not user-notation (5)
 
1879   # and therefore multiplies the values by 100 in the case of reading from db or making an order
 
1880   # from several quotation, so we convert this back into percent-notation for the user interface by multiplying with 0.01
 
1881   # ergänzung 03.10.2010 muss vor prepare_order passieren (s.a. Svens Kommentar zu Bug 1017)
 
1882   # das parse_amount wird oben schon ausgeführt, deswegen an dieser stelle raus (wichtig: kommawerte bei discount testen)
 
1883   for my $i (1 .. $form->{rowcount}) {
 
1884     $form->{"discount_$i"} /=100;
 
1890   $main::lxdebug->leave_sub();
 
1893 sub delivery_order {
 
1894   $main::lxdebug->enter_sub();
 
1896   my $form     = $main::form;
 
1897   my %myconfig = %main::myconfig;
 
1899   $form->mtime_ischanged('oe');
 
1901   if ($form->{type} =~ /^sales/) {
 
1902     $main::auth->assert('sales_delivery_order_edit');
 
1904     $form->{vc}    = 'customer';
 
1905     $form->{type}  = 'sales_delivery_order';
 
1908     $main::auth->assert('purchase_delivery_order_edit');
 
1910     $form->{vc}    = 'vendor';
 
1911     $form->{type}  = 'purchase_delivery_order';
 
1914   $form->get_employee();
 
1916   require "bin/mozilla/do.pl";
 
1918   $form->{script}               = 'do.pl';
 
1919   $form->{cp_id}               *= 1;
 
1920   $form->{convert_from_oe_ids}  = $form->{id};
 
1921   $form->{transdate}            = $form->current_date(\%myconfig);
 
1922   delete $form->{duedate};
 
1924   $form->{old_employee_id}  = $form->{employee_id};
 
1925   $form->{old_salesman_id}  = $form->{salesman_id};
 
1927   _oe_remove_delivered_or_billed_rows(id => $form->{id}, type => 'delivered');
 
1930   delete @{$form}{qw(id subject message cc bcc printed emailed queued creditlimit creditremaining discount tradediscount oldinvtotal closed delivered)};
 
1932   for my $i (1 .. $form->{rowcount}) {
 
1933     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice lastcost basefactor discount);
 
1934     $form->{"converted_from_orderitems_id_$i"} = delete $form->{"orderitems_id_$i"};
 
1937   my %old_values = map { $_ => $form->{$_} } qw(customer_id oldcustomer customer vendor_id oldvendor vendor shipto_id);
 
1943   map { $form->{$_} = $old_values{$_} if ($old_values{$_}) } keys %old_values;
 
1945   for my $i (1 .. $form->{rowcount}) {
 
1946     (my $dummy, $form->{"pricegroup_id_$i"}) = split /--/, $form->{"sellprice_pg_$i"};
 
1950   $main::lxdebug->leave_sub();
 
1953 sub oe_delivery_order_from_order {
 
1955   return if !$::form->{id};
 
1957   my $order = SL::DB::Order->new(id => $::form->{id})->load;
 
1958   $order->flatten_to_form($::form, format_amounts => 1);
 
1960   # fake last empty row
 
1961   $::form->{rowcount}++;
 
1967   $main::lxdebug->enter_sub();
 
1969   my $form     = $main::form;
 
1973   $form->mtime_ischanged('oe','mail');
 
1974   $form->{print_and_save} = 1;
 
1976   my $saved_form = save_form();
 
1980   restore_form($saved_form, 0, qw(id ordnumber quonumber));
 
1984   $main::lxdebug->leave_sub();
 
1988   call_sub($main::form->{yes_nextsub});
 
1992   call_sub($main::form->{no_nextsub});
 
1995 ######################################################################################################
 
1997 # ###############################################################################################
 
1999   $main::lxdebug->enter_sub();
 
2001   my $form     = $main::form;
 
2002   my %myconfig = %main::myconfig;
 
2006   retrieve_partunits() if ($form->{type} =~ /_delivery_order$/);
 
2008   $form->{"taxaccounts"} =~ s/\s*$//;
 
2009   $form->{"taxaccounts"} =~ s/^\s*//;
 
2010   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
2011     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
2013   $form->{"taxaccounts"} = "";
 
2015   IC->retrieve_accounts(\%myconfig, $form, map { $_ => $form->{"id_$_"} } 1 .. $form->{rowcount});
 
2017   $form->{rowcount}++;
 
2018   $form->{"project_id_$form->{rowcount}"} = $form->{globalproject_id};
 
2020   $form->language_payment(\%myconfig);
 
2022   Common::webdav_folder($form);
 
2027   display_row($form->{rowcount}) if $form->{rowcount};
 
2031   $main::lxdebug->leave_sub();
 
2034 sub report_for_todo_list {
 
2035   $main::lxdebug->enter_sub();
 
2037   my $form     = $main::form;
 
2039   my $quotations = OE->transactions_for_todo_list();
 
2042   if (@{ $quotations }) {
 
2043     my $edit_url = build_std_url('script=oe.pl', 'action=edit');
 
2045     $content     = $form->parse_html_template('oe/report_for_todo_list', { 'QUOTATIONS' => $quotations,
 
2046                                                                            'edit_url'   => $edit_url });
 
2049   $main::lxdebug->leave_sub();
 
2054 sub edit_periodic_invoices_config {
 
2055   $::lxdebug->enter_sub();
 
2057   $::form->{type} = 'sales_order';
 
2062   $config = YAML::Load($::form->{periodic_invoices_config}) if $::form->{periodic_invoices_config};
 
2064   if ('HASH' ne ref $config) {
 
2065     $config =  { periodicity             => 'm',
 
2066                  order_value_periodicity => 'p', # = same as periodicity
 
2067                  start_date_as_date      => $::form->{transdate} || $::form->current_date,
 
2068                  extend_automatically_by => 12,
 
2073   $config->{periodicity}             = 'm' if none { $_ eq $config->{periodicity}             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES;
 
2074   $config->{order_value_periodicity} = 'p' if none { $_ eq $config->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES);
 
2076   $::form->get_lists(printers => "ALL_PRINTERS",
 
2077                      charts   => { key       => 'ALL_CHARTS',
 
2078                                    transdate => 'current_date' });
 
2080   $::form->{AR}    = [ grep { $_->{link} =~ m/(?:^|:)AR(?::|$)/ } @{ $::form->{ALL_CHARTS} } ];
 
2081   $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
 
2083   if ($::form->{customer_id}) {
 
2084     $::form->{ALL_CONTACTS} = SL::DB::Manager::Contact->get_all_sorted(where => [ cp_cv_id => $::form->{customer_id} ]);
 
2087   $::form->header(no_layout => 1);
 
2088   print $::form->parse_html_template('oe/edit_periodic_invoices_config', $config);
 
2090   $::lxdebug->leave_sub();
 
2093 sub save_periodic_invoices_config {
 
2094   $::lxdebug->enter_sub();
 
2096   $::form->{type} = 'sales_order';
 
2100   $::form->isblank('start_date_as_date', $::locale->text('The start date is missing.'));
 
2102   my $config = { active                  => $::form->{active}     ? 1 : 0,
 
2103                  terminated              => $::form->{terminated} ? 1 : 0,
 
2104                  direct_debit            => $::form->{direct_debit} ? 1 : 0,
 
2105                  periodicity             => (any { $_ eq $::form->{periodicity}             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES)              ? $::form->{periodicity}             : 'm',
 
2106                  order_value_periodicity => (any { $_ eq $::form->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES)) ? $::form->{order_value_periodicity} : 'p',
 
2107                  start_date_as_date      => $::form->{start_date_as_date},
 
2108                  end_date_as_date        => $::form->{end_date_as_date},
 
2109                  first_billing_date_as_date => $::form->{first_billing_date_as_date},
 
2110                  print                   => $::form->{print} ? 1 : 0,
 
2111                  printer_id              => $::form->{print} ? $::form->{printer_id} * 1 : undef,
 
2112                  copies                  => $::form->{copies} * 1 ? $::form->{copies} : 1,
 
2113                  extend_automatically_by => $::form->{extend_automatically_by} * 1 || undef,
 
2114                  ar_chart_id             => $::form->{ar_chart_id} * 1,
 
2115                  send_email                 => $::form->{send_email} ? 1 : 0,
 
2116                  email_recipient_contact_id => $::form->{email_recipient_contact_id} * 1 || undef,
 
2117                  email_recipient_address    => $::form->{email_recipient_address},
 
2118                  email_sender               => $::form->{email_sender},
 
2119                  email_subject              => $::form->{email_subject},
 
2120                  email_body                 => $::form->{email_body},
 
2123   $::form->{periodic_invoices_config} = YAML::Dump($config);
 
2125   $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
 
2127   print $::form->parse_html_template('oe/save_periodic_invoices_config', $config);
 
2129   $::lxdebug->leave_sub();
 
2132 sub _remove_full_delivered_rows {
 
2134   my @fields = map { s/_1$//; $_ } grep { m/_1$/ } keys %{ $::form };
 
2137   my $removed_rows = 0;
 
2139   while ($row < $::form->{rowcount}) {
 
2141     next unless $::form->{"id_$row"};
 
2142     my $base_factor = SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor;
 
2143     my $base_qty = $::form->parse_amount(\%::myconfig, $::form->{"qty_$row"}) *  $base_factor;
 
2144     my $ship_qty = $::form->parse_amount(\%::myconfig, $::form->{"ship_$row"}) *  $base_factor;
 
2145     #$main::lxdebug->message(LXDebug->DEBUG2(),"shipto=".$ship_qty." qty=".$base_qty);
 
2147     if (!$ship_qty || ($ship_qty < $base_qty)) {
 
2148       $::form->{"qty_$row"}  = $::form->format_amount(\%::myconfig, ($base_qty - $ship_qty) / $base_factor );
 
2149       $::form->{"ship_$row"} = 0;
 
2150       push @new_rows, { map { $_ => $::form->{"${_}_${row}"} } @fields };
 
2156   $::form->redo_rows(\@fields, \@new_rows, scalar(@new_rows), $::form->{rowcount});
 
2157   $::form->{rowcount} -= $removed_rows;
 
2160 sub _oe_remove_delivered_or_billed_rows {
 
2163   return if !$params{id} || !$params{type};
 
2165   my $ord_quot = SL::DB::Order->new(id => $params{id})->load;
 
2166   return if !$ord_quot;
 
2168   # Prüfung ob itemlinks existieren, falls ja dann neue Implementierung
 
2170   if (  $params{type} eq 'delivered' ) {
 
2171       my $orderitem = SL::DB::Manager::OrderItem->get_first( where => [trans_id => $ord_quot->id]);
 
2173           my @links = $orderitem->linked_records(to => 'SL::DB::DeliveryOrderItem');
 
2174           if ( scalar(@links ) > 0 ) {
 
2175               #$main::lxdebug->message(LXDebug->DEBUG2(),"item recordlinks vorhanden");
 
2176               return _remove_full_delivered_rows();
 
2182     to        =>   $params{type} eq 'delivered' ? 'DeliveryOrder' : 'Invoice',
 
2183     via       => [ $params{type} eq 'delivered' ? qw(Order)       : qw(Order DeliveryOrder) ],
 
2186   my %handled_base_qtys;
 
2187   foreach my $record (@{ $ord_quot->linked_records(%args) }) {
 
2188     next if $ord_quot->is_sales != $record->is_sales;
 
2189     next if $record->type eq 'invoice' && $record->storno;
 
2191     foreach my $item (@{ $record->items }) {
 
2192       my $key  = $item->parts_id;
 
2193       $key    .= ':' . $item->serialnumber if $item->serialnumber;
 
2194       $handled_base_qtys{$key} += $item->qty * $item->unit_obj->base_factor;
 
2198   _remove_billed_or_delivered_rows(quantities => \%handled_base_qtys);
 
2201 # iterate all positions and match articlenumber
 
2202 sub check_transport_cost_reminder_article_number {
 
2203   $main::lxdebug->enter_sub();
 
2205   my $form     = $main::form;
 
2209   my $transport_article_id = $::instance_conf->get_transport_cost_reminder_article_number_id;
 
2210   for my $i (1 .. $form->{rowcount}) {
 
2211     return if $form->{"id_${i}"} eq $transport_article_id;
 
2214   # simply return the name of the part
 
2215   return SL::DB::Part->new(id => $transport_article_id)->load()->partnumber;
 
2217   $main::lxdebug->leave_sub();
 
2220   foreach my $action (qw(delete delivery_order e_mail invoice print purchase_order quotation
 
2221                          request_for_quotation sales_order save save_and_close save_as_new ship_to update)) {
 
2222     if ($::form->{"action_${action}"}) {
 
2228   $::form->error($::locale->text('No action defined.'));