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., 51 Franklin Street, Fifth Floor, Boston,
 
  29 #======================================================================
 
  33 #======================================================================
 
  37 use POSIX qw(strftime);
 
  45 use SL::Helper::UserPreferences::DisplayPreferences;
 
  46 use SL::MoreCommon qw(ary_diff restore_form save_form);
 
  47 use SL::ReportGenerator;
 
  49 use List::MoreUtils qw(uniq any none);
 
  50 use List::Util qw(min max reduce sum);
 
  53 use SL::Controller::Order;
 
  56 use SL::DB::PaymentTerm;
 
  59 require "bin/mozilla/common.pl";
 
  60 require "bin/mozilla/io.pl";
 
  61 require "bin/mozilla/reportgenerator.pl";
 
  70 # $locale->text('Edit the purchase_order');
 
  71 # $locale->text('Edit the sales_order');
 
  72 # $locale->text('Edit the request_quotation');
 
  73 # $locale->text('Edit the sales_quotation');
 
  75 # $locale->text('Workflow purchase_order');
 
  76 # $locale->text('Workflow sales_order');
 
  77 # $locale->text('Workflow request_quotation');
 
  78 # $locale->text('Workflow sales_quotation');
 
  81   'sales_order'       => 'sales_order_edit',
 
  82   'purchase_order'    => 'purchase_order_edit',
 
  83   'request_quotation' => 'request_quotation_edit',
 
  84   'sales_quotation'   => 'sales_quotation_edit',
 
  87 my $oe_view_access_map = {
 
  88   'sales_order'       => 'sales_order_edit       | sales_order_view',
 
  89   'purchase_order'    => 'purchase_order_edit    | purchase_order_view',
 
  90   'request_quotation' => 'request_quotation_edit | request_quotation_view',
 
  91   'sales_quotation'   => 'sales_quotation_edit   | sales_quotation_view',
 
  96   my $form     = $main::form;
 
  98   my $right   = ($params{with_view}) ? $oe_view_access_map->{$form->{type}} : $oe_access_map->{$form->{type}};
 
  99   $right    ||= 'DOES_NOT_EXIST';
 
 101   $main::auth->assert($right);
 
 104 sub check_oe_conversion_to_sales_invoice_allowed {
 
 105   return 1 if  $::form->{type} !~ m/^sales/;
 
 106   return 1 if ($::form->{type} =~ m/quotation/) && $::instance_conf->get_allow_sales_invoice_from_sales_quotation;
 
 107   return 1 if ($::form->{type} =~ m/order/)     && $::instance_conf->get_allow_sales_invoice_from_sales_order;
 
 109   $::form->show_generic_error($::locale->text("You do not have the permissions to access this function."));
 
 115   $main::lxdebug->enter_sub();
 
 117   my $form     = $main::form;
 
 118   my $locale   = $main::locale;
 
 124   if ($form->{type} eq 'purchase_order') {
 
 125     $form->{title}   = $action eq "edit" ?
 
 126       $locale->text('Edit Purchase Order') :
 
 127       $locale->text('Add Purchase Order');
 
 128     $form->{heading} = $locale->text('Purchase Order');
 
 129     $form->{vc}      = 'vendor';
 
 131   if ($form->{type} eq 'sales_order') {
 
 132     $form->{title}   = $action eq "edit" ?
 
 133       $locale->text('Edit Sales Order') :
 
 134       $locale->text('Add Sales Order');
 
 135     $form->{heading} = $locale->text('Sales Order');
 
 136     $form->{vc}      = 'customer';
 
 138   if ($form->{type} eq 'request_quotation') {
 
 139     $form->{title}   = $action eq "edit" ?
 
 140       $locale->text('Edit Request for Quotation') :
 
 141       $locale->text('Add Request for Quotation');
 
 142     $form->{heading} = $locale->text('Request for Quotation');
 
 143     $form->{vc}      = 'vendor';
 
 145   if ($form->{type} eq 'sales_quotation') {
 
 146     $form->{title}   = $action eq "edit" ?
 
 147       $locale->text('Edit Quotation') :
 
 148       $locale->text('Add Quotation');
 
 149     $form->{heading} = $locale->text('Quotation');
 
 150     $form->{vc}      = 'customer';
 
 153   $main::lxdebug->leave_sub();
 
 157   $main::lxdebug->enter_sub();
 
 159   my $form     = $main::form;
 
 166     "$form->{script}?action=add&type=$form->{type}&vc=$form->{vc}"
 
 167     unless $form->{callback};
 
 169   $form->{show_details} = $::myconfig{show_form_details};
 
 171   order_links(is_new => 1);
 
 175   $main::lxdebug->leave_sub();
 
 179   $main::lxdebug->enter_sub();
 
 181   my $form     = $main::form;
 
 185   $form->{show_details}                = $::myconfig{show_form_details};
 
 186   $form->{taxincluded_changed_by_user} = 1;
 
 188   # show history button
 
 189   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 190   #/show hhistory button
 
 192   $form->{simple_save} = 0;
 
 194   set_headings("edit");
 
 196   # editing without stuff to edit? try adding it first
 
 197   if ($form->{rowcount} && !$form->{print_and_save}) {
 
 198     if ($::instance_conf->get_feature_experimental_order) {
 
 199       my $c = SL::Controller::Order->new;
 
 200       $c->action_edit_collective();
 
 202       $main::lxdebug->leave_sub();
 
 203       $::dispatcher->end_request;
 
 207     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
 
 211       undef $form->{rowcount};
 
 213       $main::lxdebug->leave_sub();
 
 216   } elsif (!$form->{id}) {
 
 218     $main::lxdebug->leave_sub();
 
 222   my ($language_id, $printer_id);
 
 223   if ($form->{print_and_save}) {
 
 224     $form->{action}   = "dispatcher";
 
 225     $form->{action_print}   = "1";
 
 226     $form->{resubmit} = 1;
 
 227     $language_id = $form->{language_id};
 
 228     $printer_id = $form->{printer_id};
 
 231   set_headings("edit");
 
 235   $form->{rowcount} = 0;
 
 236   foreach my $ref (@{ $form->{form_details} }) {
 
 238     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{$ref};
 
 243   if ($form->{print_and_save}) {
 
 244     $form->{language_id} = $language_id;
 
 245     $form->{printer_id} = $printer_id;
 
 250   $main::lxdebug->leave_sub();
 
 254   $main::lxdebug->enter_sub();
 
 258   my $form     = $main::form;
 
 259   my %myconfig = %main::myconfig;
 
 260   my $locale   = $main::locale;
 
 264   # retrieve order/quotation
 
 265   my $editing = $form->{id};
 
 267   OE->retrieve(\%myconfig, \%$form);
 
 269   # if multiple rowcounts (== collective order) then check if the
 
 270   # there were more than one customer (in that case OE::retrieve removes
 
 271   # the content from the field)
 
 272   $form->error($locale->text('Collective Orders only work for orders from one customer!'))
 
 273     if          $form->{rowcount}  && $form->{type}     eq 'sales_order'
 
 274      && defined $form->{customer}  && $form->{customer} eq '';
 
 276   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes shipto_id delivery_term_id currency));
 
 278   # get customer / vendor
 
 279   if ($form->{type} =~ /(purchase_order|request_quotation)/) {
 
 280     IR->get_vendor(\%myconfig, \%$form);
 
 282     IS->get_customer(\%myconfig, \%$form);
 
 283     $form->{billing_address_id} = $form->{default_billing_address_id} if $params{is_new};
 
 286   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id shipto_id delivery_term_id));
 
 287   $form->restore_vars(qw(currency))    if $form->{id};
 
 288   $form->restore_vars(qw(taxincluded)) if $form->{id};
 
 289   $form->restore_vars(qw(salesman_id)) if $editing;
 
 290   $form->{forex}       = $form->{exchangerate};
 
 291   $form->{employee}    = "$form->{employee}--$form->{employee_id}";
 
 293   $main::lxdebug->leave_sub();
 
 297   $main::lxdebug->enter_sub();
 
 299   my $form     = $main::form;
 
 300   my %myconfig = %main::myconfig;
 
 304   $form->{formname} ||= $form->{type};
 
 306   # format discounts if values come from db. either as single id, or as a collective order
 
 307   my $format_discounts = $form->{id} || $form->{convert_from_oe_ids};
 
 309   for my $i (1 .. $form->{rowcount}) {
 
 310     $form->{"reqdate_$i"} ||= $form->{"deliverydate_$i"};
 
 311     $form->{"discount_$i"}  = $form->format_amount(\%myconfig, $form->{"discount_$i"} * ($format_discounts ? 100 : 1));
 
 312     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
 
 313     $form->{"lastcost_$i"}  = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
 
 314     $form->{"qty_$i"}       = $form->format_amount(\%myconfig, $form->{"qty_$i"});
 
 317   $main::lxdebug->leave_sub();
 
 320 sub setup_oe_action_bar {
 
 324   my $has_active_periodic_invoice;
 
 325   if ($params{oe_obj}) {
 
 326     $has_active_periodic_invoice =
 
 327          $params{oe_obj}->is_type('sales_order')
 
 328       && $params{oe_obj}->periodic_invoices_config
 
 329       && $params{oe_obj}->periodic_invoices_config->active
 
 330       && (   !$params{oe_obj}->periodic_invoices_config->end_date
 
 331           || ($params{oe_obj}->periodic_invoices_config->end_date > DateTime->today_local))
 
 332       && $params{oe_obj}->periodic_invoices_config->get_previous_billed_period_start_date;
 
 335   my $allow_invoice      = $params{is_req_quo}
 
 336                         || $params{is_pur_ord}
 
 337                         || ($params{is_sales_quo} && $::instance_conf->get_allow_sales_invoice_from_sales_quotation)
 
 338                         || ($params{is_sales_ord} && $::instance_conf->get_allow_sales_invoice_from_sales_order);
 
 339   my @req_trans_cost_art = qw(kivi.SalesPurchase.check_transport_cost_article_presence) x!!$::instance_conf->get_transport_cost_reminder_article_number_id;
 
 340   my @warn_p_invoice     = qw(kivi.SalesPurchase.oe_warn_save_active_periodic_invoice)  x!!$has_active_periodic_invoice;
 
 342   for my $bar ($::request->layout->get('actionbar')) {
 
 346         submit    => [ '#form', { action => "update" } ],
 
 347         id        => 'update_button',
 
 348         accesskey => 'enter',
 
 354           submit  => [ '#form', { action => "save" } ],
 
 355           checks  => [ 'kivi.validate_form', @req_trans_cost_art, @warn_p_invoice ],
 
 359           submit   => [ '#form', { action => "save_as_new" } ],
 
 360           checks   => [ 'kivi.validate_form', @req_trans_cost_art ],
 
 361           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 364           t8('Save and Close'),
 
 365           submit  => [ '#form', { action => "save_and_close" } ],
 
 366           checks  => [ 'kivi.validate_form', @req_trans_cost_art, @warn_p_invoice ],
 
 370           submit   => [ '#form', { action => "delete" } ],
 
 371           confirm  => t8('Do you really want to delete this object?'),
 
 372           disabled => !$form->{id}                                                                      ? t8('This record has not been saved yet.')
 
 373                     : (   ($params{is_sales_ord} && !$::instance_conf->get_sales_order_show_delete)
 
 374                        || ($params{is_pur_ord}   && !$::instance_conf->get_purchase_order_show_delete)) ? t8('Deleting this type of record has been disabled in the configuration.')
 
 377       ], # end of combobox "Save"
 
 382         action => [ t8('Workflow') ],
 
 385           submit   => [ '#form', { action => "sales_order" } ],
 
 386           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 387           checks   => [ 'kivi.validate_form' ],
 
 388           only_if  => $params{is_sales_quo} || $params{is_pur_ord},
 
 391           t8('Purchase Order'),
 
 392           submit   => [ '#form', { action => "purchase_order" } ],
 
 393           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 394           checks   => [ 'kivi.validate_form' ],
 
 395           only_if  => $params{is_sales_ord} || $params{is_req_quo},
 
 398           t8('Delivery Order'),
 
 399           submit   => [ '#form', { action => "delivery_order" } ],
 
 400           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 401           checks   => [ 'kivi.validate_form' ],
 
 402           only_if  => $params{is_sales_ord} || $params{is_pur_ord},
 
 406           submit   => [ '#form', { action => "invoice" } ],
 
 407           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 408           checks   => [ 'kivi.validate_form' ],
 
 409           only_if  => $allow_invoice,
 
 413           submit   => [ '#form', { action => "quotation" } ],
 
 414           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 415           checks   => [ 'kivi.validate_form' ],
 
 416           only_if  => $params{is_sales_ord},
 
 419           t8('Request for Quotation'),
 
 420           submit   => [ '#form', { action => "request_for_quotation" } ],
 
 421           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 422           checks   => [ 'kivi.validate_form' ],
 
 423           only_if  => $params{is_pur_ord},
 
 425       ], # end of combobox "Workflow"
 
 428         action => [ t8('Export') ],
 
 431           call   => [ 'kivi.SalesPurchase.show_print_dialog' ],
 
 432           checks => [ 'kivi.validate_form' ],
 
 436           call     => [ 'kivi.SalesPurchase.show_email_dialog' ],
 
 437           checks   => [ 'kivi.validate_form' ],
 
 438           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 441           t8('Download attachments of all parts'),
 
 442           call     => [ 'kivi.File.downloadOrderitemsFiles', $::form->{type}, $::form->{id} ],
 
 443           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 444           only_if  => $::instance_conf->get_doc_storage,
 
 446       ], #end of combobox "Export"
 
 449         action => [ t8('more') ],
 
 452           call     => [ 'set_history_window', $form->{id} * 1, 'id' ],
 
 453           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 457           call     => [ 'follow_up_window' ],
 
 458           disabled => !$form->{id} ? t8('This record has not been saved yet.') : undef,
 
 460       ], # end of combobox "more"
 
 463   $::request->layout->add_javascripts('kivi.Validator.js');
 
 466 sub setup_oe_search_action_bar {
 
 469   for my $bar ($::request->layout->get('actionbar')) {
 
 473         submit    => [ '#form' ],
 
 474         accesskey => 'enter',
 
 475         checks    => [ 'kivi.validate_form' ],
 
 479   $::request->layout->add_javascripts('kivi.Validator.js');
 
 482 sub setup_oe_orders_action_bar {
 
 485   return unless $::form->{type} eq 'sales_order';
 
 487   for my $bar ($::request->layout->get('actionbar')) {
 
 490         t8('New sales order'),
 
 491         submit    => [ '#form', { action => 'edit' } ],
 
 492         checks    => [ [ 'kivi.check_if_entries_selected', '[name^=multi_id_]' ] ],
 
 493         accesskey => 'enter',
 
 500   $main::lxdebug->enter_sub();
 
 503   my $form     = $main::form;
 
 504   my %myconfig = %main::myconfig;
 
 505   my $locale   = $main::locale;
 
 506   my $cgi      = $::request->{cgi};
 
 510   # Container for template variables. Unfortunately this has to be
 
 511   # visible in form_footer too, so package local level and not my here.
 
 512   my $TMPL_VAR = $::request->cache('tmpl_var', {});
 
 514     $TMPL_VAR->{oe_obj} = SL::DB::Order->new(id => $form->{id})->load;
 
 516   $TMPL_VAR->{vc_obj} = SL::DB::Customer->new(id => $form->{customer_id})->load if $form->{customer_id};
 
 517   $TMPL_VAR->{vc_obj} = SL::DB::Vendor->new(id => $form->{vendor_id})->load     if $form->{vendor_id};
 
 519   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 521   my $current_employee   = SL::DB::Manager::Employee->current;
 
 522   $form->{employee_id}   = $form->{old_employee_id} if $form->{old_employee_id};
 
 523   $form->{salesman_id}   = $form->{old_salesman_id} if $form->{old_salesman_id};
 
 524   $form->{employee_id} ||= $current_employee->id;
 
 525   $form->{salesman_id} ||= $current_employee->id;
 
 527   # openclosed checkboxes
 
 529   push @tmp, sprintf qq|<input name="delivered" id="delivered" type="checkbox" class="checkbox" value="1" %s><label for="delivered">%s</label>|,
 
 530                         $form->{"delivered"} ? "checked" : "",  $locale->text('Delivery Order(s) for full qty created') if $form->{"type"} =~ /_order$/;
 
 531   push @tmp, sprintf qq|<input name="closed" id="closed" type="checkbox" class="checkbox" value="1" %s><label for="closed">%s</label>|,
 
 532                         $form->{"closed"}    ? "checked" : "",  $locale->text('Closed')    if $form->{id};
 
 533   $TMPL_VAR->{openclosed} = sprintf qq|<tr><td colspan=%d align=center>%s</td></tr>\n|, 2 * scalar @tmp, join "\n", @tmp if @tmp;
 
 535   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
 
 537   $form->get_lists("taxzones"      => ($form->{id} ? "ALL_TAXZONES" : "ALL_ACTIVE_TAXZONES"),
 
 538                    "currencies"    => "ALL_CURRENCIES",
 
 539                    "price_factors" => "ALL_PRICE_FACTORS");
 
 540   $form->{ALL_PAYMENTS} = SL::DB::Manager::PaymentTerm->get_all( where => [ or => [ obsolete => 0, id => $form->{payment_id} || undef ] ]);
 
 542   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all_sorted;
 
 543   $form->{ALL_LANGUAGES}   = SL::DB::Manager::Language->get_all_sorted;
 
 546   my @old_project_ids = uniq grep { $_ } map { $_ * 1 } ($form->{"globalproject_id"}, map { $form->{"project_id_$_"} } 1..$form->{"rowcount"});
 
 547   my @old_ids_cond    = @old_project_ids ? (id => \@old_project_ids) : ();
 
 549   if (($vc eq 'customers') && $::instance_conf->get_customer_projects_only_in_sales) {
 
 552         customer_id          => $::form->{customer_id},
 
 553         billable_customer_id => $::form->{customer_id},
 
 558       and => [ active => 1, @customer_cond ],
 
 562   $TMPL_VAR->{ALL_PROJECTS}          = SL::DB::Manager::Project->get_all_sorted(query => \@conditions);
 
 563   $form->{ALL_PROJECTS}            = $TMPL_VAR->{ALL_PROJECTS}; # make projects available for second row drop-down in io.pl
 
 566   my $employee_list_query_gen      = sub { $::form->{$_[0]} ? [ or => [ id => $::form->{$_[0]}, deleted => 0 ] ] : [ deleted => 0 ] };
 
 567   $TMPL_VAR->{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all_sorted(query => $employee_list_query_gen->('employee_id'));
 
 568   $TMPL_VAR->{ALL_SALESMEN}          = SL::DB::Manager::Employee->get_all_sorted(query => $employee_list_query_gen->('salesman_id'));
 
 569   $TMPL_VAR->{ALL_SHIPTO}            = SL::DB::Manager::Shipto->get_all_sorted(query => [
 
 570     or => [ trans_id  => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
 
 572   $TMPL_VAR->{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all_sorted(query => [
 
 574       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
 
 577         cp_id    => $::form->{cp_id} * 1
 
 581   $TMPL_VAR->{sales_employee_labels} = sub { $_[0]->{name} || $_[0]->{login} };
 
 583   # currencies and exchangerate
 
 584   $form->{currency}            = $form->{defaultcurrency} unless $form->{currency};
 
 585   $TMPL_VAR->{show_exchangerate} = $form->{currency} ne $form->{defaultcurrency};
 
 586   push @custom_hiddens, "forex";
 
 587   push @custom_hiddens, "exchangerate" if $form->{forex};
 
 590   my $creditwarning = (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) ? 1 : 0;
 
 591   $TMPL_VAR->{is_credit_remaining_negativ} = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 594   $TMPL_VAR->{business_label} = ($form->{vc} eq "customer" ? $locale->text('Customer type') : $locale->text('Vendor type'));
 
 596   push @custom_hiddens, "customer_pricegroup_id" if $form->{vc} eq 'customer';
 
 598   my $credittext = $locale->text('Credit Limit exceeded!!!');
 
 600   my $follow_up_vc                =  $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };
 
 601   $follow_up_vc                   =~ s/--\d*\s*$//;
 
 602   $TMPL_VAR->{follow_up_trans_info} =  ($form->{type} =~ /_quotation$/ ? $form->{quonumber} : $form->{ordnumber}) . " ($follow_up_vc)";
 
 605     my $follow_ups = FU->follow_ups('trans_id' => $form->{id}, 'not_done' => 1);
 
 607     if (scalar @{ $follow_ups }) {
 
 608       $TMPL_VAR->{num_follow_ups}     = scalar                    @{ $follow_ups };
 
 609       $TMPL_VAR->{num_due_follow_ups} = sum map { $_->{due} * 1 } @{ $follow_ups };
 
 613   my $dispatch_to_popup = '';
 
 614   if ($form->{resubmit} && ($form->{format} eq "html")) {
 
 615       $dispatch_to_popup  = "window.open('about:blank','Beleg'); document.oe.target = 'Beleg';";
 
 616       $dispatch_to_popup .= "document.do.submit();";
 
 617   } elsif ($form->{resubmit}  && $form->{action_print}) {
 
 618     # emulate click for resubmitting actions
 
 619     $dispatch_to_popup  = "kivi.SalesPurchase.show_print_dialog(); kivi.SalesPurchase.print_record();";
 
 620   } elsif ($creditwarning) {
 
 621     $::request->{layout}->add_javascripts_inline("alert('$credittext');");
 
 624   $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup});");
 
 625   $TMPL_VAR->{dateformat}                             = $myconfig{dateformat};
 
 626   $TMPL_VAR->{numberformat}                           = $myconfig{numberformat};
 
 627   $TMPL_VAR->{longdescription_dialog_size_percentage} = SL::Helper::UserPreferences::DisplayPreferences->new()->get_longdescription_dialog_size_percentage();
 
 629   if ($form->{type} eq 'sales_order') {
 
 630     if (!$form->{periodic_invoices_config}) {
 
 631       $form->{periodic_invoices_status} = $locale->text('not configured');
 
 634       my $config                        = SL::YAML::Load($form->{periodic_invoices_config});
 
 635       $form->{periodic_invoices_status} = $config->{active} ? $locale->text('active') : $locale->text('inactive');
 
 639   $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.SalesPurchase kivi.File kivi.Part kivi.CustomerVendor kivi.Validator show_form_details show_history show_vc_details ckeditor/ckeditor ckeditor/adapters/jquery kivi.io));
 
 643   my %type_check_vars = (
 
 644     is_sales     => scalar($form->{type} =~ /^sales_/),
 
 645     is_order     => scalar($form->{type} =~ /_order$/),
 
 646     is_sales_quo => scalar($form->{type} =~ /sales_quotation$/),
 
 647     is_req_quo   => scalar($form->{type} =~ /request_quotation$/),
 
 648     is_sales_ord => scalar($form->{type} =~ /sales_order$/),
 
 649     is_pur_ord   => scalar($form->{type} =~ /purchase_order$/),
 
 654     oe_obj => $TMPL_VAR->{oe_obj},
 
 655     vc_obj => $TMPL_VAR->{vc_obj},
 
 659   if ($form->{CFDD_shipto} && $form->{CFDD_shipto_id} ) {
 
 660       $form->{shipto_id} = $form->{CFDD_shipto_id};
 
 663   $TMPL_VAR->{HIDDENS} = [ map { name => $_, value => $form->{$_} },
 
 664      qw(id type vc proforma queued printed emailed
 
 665         title creditlimit creditremaining tradediscount business
 
 666         max_dunning_level dunning_amount
 
 667         CFDD_shipto CFDD_shipto_id
 
 668         taxpart taxservice taxaccounts cursor_fokus
 
 669         show_details useasnew),
 
 671         map { $_.'_rate', $_.'_description', $_.'_taxnumber', $_.'_tax_id' } split / /, $form->{taxaccounts} ];  # deleted: discount
 
 673   $TMPL_VAR->{$_} = $type_check_vars{$_} for keys %type_check_vars;
 
 675   $TMPL_VAR->{ORDER_PROBABILITIES} = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
 
 677   if ($type_check_vars{is_sales} && $::instance_conf->get_transport_cost_reminder_article_number_id) {
 
 678     $TMPL_VAR->{transport_cost_reminder_article} = SL::DB::Part->new(id => $::instance_conf->get_transport_cost_reminder_article_number_id)->load;
 
 681   print $form->parse_html_template("oe/form_header", {
 
 686   $main::lxdebug->leave_sub();
 
 690   $main::lxdebug->enter_sub();
 
 692   my $form     = $main::form;
 
 693   my %myconfig = %main::myconfig;
 
 694   my $locale   = $main::locale;
 
 698   $form->{invtotal} = $form->{invsubtotal};
 
 700   my $TMPL_VAR = $::request->cache('tmpl_var', {});
 
 702   if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) {
 
 703     my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
 
 704     $form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
 
 707   if (!$form->{taxincluded}) {
 
 709     foreach my $item (split / /, $form->{taxaccounts}) {
 
 710       if ($form->{"${item}_base"}) {
 
 711         $form->{invtotal} += $form->{"${item}_total"} = $form->round_amount( $form->{"${item}_base"} * $form->{"${item}_rate"}, 2);
 
 712         $form->{"${item}_total"} = $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 714         $TMPL_VAR->{tax} .= qq|
 
 716                 <th align=right>$form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%</th>
 
 717                 <td align=right>$form->{"${item}_total"}</td>
 
 722     foreach my $item (split / /, $form->{taxaccounts}) {
 
 723       if ($form->{"${item}_base"}) {
 
 724         $form->{"${item}_total"} = $form->round_amount( ($form->{"${item}_base"} * $form->{"${item}_rate"} / (1 + $form->{"${item}_rate"})), 2);
 
 725         $form->{"${item}_netto"} = $form->round_amount( ($form->{"${item}_base"} - $form->{"${item}_total"}), 2);
 
 726         $form->{"${item}_total"} = $form->format_amount(\%myconfig, $form->{"${item}_total"}, 2);
 
 727         $form->{"${item}_netto"} = $form->format_amount(\%myconfig, $form->{"${item}_netto"}, 2);
 
 729         $TMPL_VAR->{tax} .= qq|
 
 731                 <th align=right>Enthaltene $form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%</th>
 
 732                 <td align=right>$form->{"${item}_total"}</td>
 
 735                 <th align=right>Nettobetrag</th>
 
 736                 <td align=right>$form->{"${item}_netto"}</td>
 
 742   my $grossamount = $form->{invtotal};
 
 743   $form->{invtotal} = $form->round_amount( $form->{invtotal}, 2, 1);
 
 744   $form->{rounding} = $form->round_amount(
 
 745     $form->{invtotal} - $form->round_amount($grossamount, 2),
 
 748   $form->{oldinvtotal} = $form->{invtotal};
 
 750   $TMPL_VAR->{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
 
 752   my $print_options_html = setup_sales_purchase_print_options();
 
 754   my $shipto_cvars       = SL::DB::Shipto->new->cvars_by_config;
 
 755   foreach my $var (@{ $shipto_cvars }) {
 
 756     my $name = "shiptocvar_" . $var->config->name;
 
 757     $var->value($form->{$name}) if exists $form->{$name};
 
 760   print $form->parse_html_template("oe/form_footer", {
 
 762      print_options   => $print_options_html,
 
 763      is_sales        => scalar ($form->{type} =~ /^sales_/),              # these vars are exported, so that the template
 
 764      is_order        => scalar ($form->{type} =~ /_order$/),              # may determine what to show
 
 765      is_sales_quo    => scalar ($form->{type} =~ /sales_quotation$/),
 
 766      is_req_quo      => scalar ($form->{type} =~ /request_quotation$/),
 
 767      is_sales_ord    => scalar ($form->{type} =~ /sales_order$/),
 
 768      is_pur_ord      => scalar ($form->{type} =~ /purchase_order$/),
 
 769      shipto_cvars    => $shipto_cvars,
 
 772   $main::lxdebug->leave_sub();
 
 776   $main::lxdebug->enter_sub();
 
 778   my ($recursive_call) = @_;
 
 780   my $form     = $main::form;
 
 781   my %myconfig = %main::myconfig;
 
 785   set_headings($form->{"id"} ? "edit" : "add");
 
 789   my $vc = $form->{vc};
 
 790   if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
 
 791     $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
 
 793     if ($vc eq 'customer') {
 
 794       IS->get_customer(\%myconfig, $form);
 
 795       $::form->{billing_address_id} = $::form->{default_billing_address_id};
 
 797       IR->get_vendor(\%myconfig, $form);
 
 801   if (!$form->{forex}) {        # read exchangerate from input field (not hidden)
 
 802     map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate) unless $recursive_call;
 
 805   $buysell              = 'sell' if ($form->{vc} eq 'vendor');
 
 806   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{transdate}, $buysell);
 
 807   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 809   my $exchangerate = $form->{exchangerate} || 1;
 
 811 ##################### process items ######################################
 
 813   my $i = $form->{rowcount};
 
 814   if (   ($form->{"partnumber_$i"} eq "")
 
 815       && ($form->{"description_$i"} eq "")
 
 816       && ($form->{"partsgroup_$i"}  eq "")) {
 
 818     $form->{creditremaining} += ($form->{oldinvtotal} - $form->{oldtotalpaid});
 
 824     if ($form->{type} =~ /^sales/) {
 
 825       IS->retrieve_item(\%myconfig, \%$form);
 
 828       IR->retrieve_item(\%myconfig, \%$form);
 
 832     my $rows = scalar @{ $form->{item_list} };
 
 834     $form->{"discount_$i"}   = $form->parse_amount(\%myconfig, $form->{"discount_$i"}) / 100.0;
 
 835     $form->{"discount_$i"} ||= $form->{"$form->{vc}_discount"};
 
 837     $form->{"lastcost_$i"} = $form->parse_amount(\%myconfig, $form->{"lastcost_$i"});
 
 841       $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 842       if( !$form->{"qty_$i"} ) {
 
 843         $form->{"qty_$i"} = 1;
 
 848         select_item(mode => $mode, pre_entered_qty => $form->{"qty_$i"});
 
 849         $::dispatcher->end_request;
 
 853         my $sellprice             = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
 
 854         # hier werden parts (Artikeleigenschaften) aus item_list (retrieve_item aus IS.pm)
 
 855         # (item wahrscheinlich synonym für parts) entsprechend in die form geschrieben ...
 
 857         # Wäre dieses Mapping nicht besser in retrieve_items aufgehoben?
 
 858         #(Eine Funktion bekommt Daten -> ARBEIT -> Rückgabe DATEN)
 
 859         #  Das quot sieht doch auch nach Ãœberarbeitung aus ... (hmm retrieve_items gibt es in IS und IR)
 
 860         map { $form->{item_list}[$i]{$_} =~ s/\"/"/g }    qw(partnumber description unit);
 
 861         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
 
 863         # ... deswegen muss die prüfung, ob es sich um einen nicht rabattierfähigen artikel handelt später erfolgen (Bug 1136)
 
 864         $form->{"discount_$i"} = 0 if $form->{"not_discountable_$i"};
 
 865         $form->{payment_id} = $form->{"part_payment_id_$i"} if $form->{"part_payment_id_$i"} ne "";
 
 867         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
 
 869         ($sellprice || $form->{"sellprice_$i"}) =~ /\.(\d+)/;
 
 870         my $dec_qty       = length $1;
 
 871         my $decimalplaces = max 2, $dec_qty;
 
 874           $form->{"sellprice_$i"} = $sellprice;
 
 876           my $record        = _make_record();
 
 877           my $price_source  = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
 
 878           my $best_price    = $price_source->best_price;
 
 879           my $best_discount = $price_source->best_discount;
 
 882             $::form->{"sellprice_$i"}           = $best_price->price;
 
 883             $::form->{"active_price_source_$i"} = $best_price->source;
 
 885           if ($best_discount) {
 
 886             $::form->{"discount_$i"}               = $best_discount->discount;
 
 887             $::form->{"active_discount_source_$i"} = $best_discount->source;
 
 890           $form->{"sellprice_$i"} /= $exchangerate;   # if there is an exchange rate adjust sellprice
 
 893         my $amount = $form->{"sellprice_$i"} * $form->{"qty_$i"} * (1 - $form->{"discount_$i"});
 
 894         map { $form->{"${_}_base"} = 0 }                                 split / /, $form->{taxaccounts};
 
 895         map { $form->{"${_}_base"} += $amount }                          split / /, $form->{"taxaccounts_$i"};
 
 896         map { $amount += ($form->{"${_}_base"} * $form->{"${_}_rate"}) } split / /, $form->{taxaccounts} if !$form->{taxincluded};
 
 898         $form->{creditremaining} -= $amount;
 
 900         $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 901         $form->{"lastcost_$i"}  = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
 
 902         $form->{"qty_$i"}       = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
 903         $form->{"discount_$i"}  = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100.0);
 
 909       # ok, so this is a new part
 
 910       # ask if it is a part or service item
 
 912       if (   $form->{"partsgroup_$i"}
 
 913           && ($form->{"partsnumber_$i"} eq "")
 
 914           && ($form->{"description_$i"} eq "")) {
 
 916         $form->{"discount_$i"} = "";
 
 920         $form->{"id_$i"}   = 0;
 
 925 ##################### process items ######################################
 
 928   $main::lxdebug->leave_sub();
 
 932   $main::lxdebug->enter_sub();
 
 934   my $form     = $main::form;
 
 935   my %myconfig = %main::myconfig;
 
 936   my $locale   = $main::locale;
 
 938   check_oe_access(with_view => 1);
 
 940   if ($form->{type} eq 'purchase_order') {
 
 941     $form->{vc}        = 'vendor';
 
 942     $form->{ordnrname} = 'ordnumber';
 
 943     $form->{title}     = $locale->text('Purchase Orders');
 
 944     $form->{ordlabel}  = $locale->text('Order Number');
 
 946   } elsif ($form->{type} eq 'request_quotation') {
 
 947     $form->{vc}        = 'vendor';
 
 948     $form->{ordnrname} = 'quonumber';
 
 949     $form->{title}     = $locale->text('Request for Quotations');
 
 950     $form->{ordlabel}  = $locale->text('RFQ Number');
 
 952   } elsif ($form->{type} eq 'sales_order') {
 
 953     $form->{vc}        = 'customer';
 
 954     $form->{ordnrname} = 'ordnumber';
 
 955     $form->{title}     = $locale->text('Sales Orders');
 
 956     $form->{ordlabel}  = $locale->text('Order Number');
 
 958   } elsif ($form->{type} eq 'sales_quotation') {
 
 959     $form->{vc}        = 'customer';
 
 960     $form->{ordnrname} = 'quonumber';
 
 961     $form->{title}     = $locale->text('Quotations');
 
 962     $form->{ordlabel}  = $locale->text('Quotation Number');
 
 965     $form->show_generic_error($locale->text('oe.pl::search called with unknown type'));
 
 968   # setup vendor / customer data
 
 969   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS", "all" => 1 },
 
 970                    "taxzones"     => "ALL_TAXZONES",
 
 971                    "business_types" => "ALL_BUSINESS_TYPES",);
 
 972   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 973   $form->{ALL_DEPARTMENTS} = SL::DB::Manager::Department->get_all;
 
 975   $form->{CT_CUSTOM_VARIABLES}                  = CVar->get_configs('module' => 'CT');
 
 976   ($form->{CT_CUSTOM_VARIABLES_FILTER_CODE},
 
 977    $form->{CT_CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables'      => $form->{CT_CUSTOM_VARIABLES},
 
 978                                                                               'include_prefix' => 'l_',
 
 979                                                                               'include_value'  => 'Y');
 
 981   # constants and subs for template
 
 982   $form->{vc_keys}         = sub { "$_[0]->{name}--$_[0]->{id}" };
 
 984   $form->{ORDER_PROBABILITIES} = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
 
 986   $::request->{layout}->use_javascript(map { "${_}.js" } qw(autocomplete_project));
 
 988   setup_oe_search_action_bar();
 
 992   print $form->parse_html_template('oe/search', {
 
 993     is_order => scalar($form->{type} =~ /_order/),
 
 996   $main::lxdebug->leave_sub();
 
 999 sub create_subtotal_row {
 
1000   $main::lxdebug->enter_sub();
 
1002   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
1004   my $form     = $main::form;
 
1005   my %myconfig = %main::myconfig;
 
1007   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
1009   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
1011   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
1013   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
1015   $main::lxdebug->leave_sub();
 
1021   $main::lxdebug->enter_sub();
 
1023   my $form     = $main::form;
 
1024   my %myconfig = %main::myconfig;
 
1025   my $locale   = $main::locale;
 
1026   my $cgi      = $::request->{cgi};
 
1029   check_oe_access(with_view => 1);
 
1031   my $ordnumber = ($form->{type} =~ /_order$/) ? "ordnumber" : "quonumber";
 
1033   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
 
1034   report_generator_set_default_sort('transdate', 1);
 
1035   OE->transactions(\%myconfig, \%$form);
 
1037   $form->{rowcount} = scalar @{ $form->{OE} };
 
1040     "transdate",               "reqdate",
 
1042     "cusordnumber",            "customernumber",
 
1043     "name",                    "netamount",
 
1045     "remaining_netamount",     "remaining_amount",
 
1048     "shipvia",                 "globalprojectnumber",
 
1049     "transaction_description", "department",            "open",
 
1050     "delivered",               "periodic_invoices",
 
1051     "marge_total",             "marge_percent",
 
1052     "vcnumber",                "ustid",
 
1053     "country",                 "shippingpoint",
 
1054     "taxzone",                 "insertdate",
 
1055     "order_probability",       "expected_billing_date", "expected_netamount",
 
1056     "payment_terms",           "intnotes",
 
1059   # only show checkboxes if gotten here via sales_order form.
 
1060   my $allow_multiple_orders = $form->{type} eq 'sales_order';
 
1061   if ($allow_multiple_orders) {
 
1062     unshift @columns, "ids";
 
1065   $form->{l_open}              = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
 
1066   $form->{l_delivered}         = "Y"                     if ($form->{delivered} && $form->{notdelivered});
 
1067   $form->{l_periodic_invoices} = "Y"                     if ($form->{periodic_invoices_active} && $form->{periodic_invoices_inactive});
 
1068   map { $form->{"l_${_}"} = 'Y' } qw(order_probability expected_billing_date expected_netamount) if $form->{l_order_probability_expected_billing_date};
 
1070   my $attachment_basename;
 
1071   if ($form->{vc} eq 'vendor') {
 
1072     if ($form->{type} eq 'purchase_order') {
 
1073       $form->{title}       = $locale->text('Purchase Orders');
 
1074       $attachment_basename = $locale->text('purchase_order_list');
 
1076       $form->{title}       = $locale->text('Request for Quotations');
 
1077       $attachment_basename = $locale->text('rfq_list');
 
1081     if ($form->{type} eq 'sales_order') {
 
1082       $form->{title}       = $locale->text('Sales Orders');
 
1083       $attachment_basename = $locale->text('sales_order_list');
 
1085       $form->{title}       = $locale->text('Quotations');
 
1086       $attachment_basename = $locale->text('quotation_list');
 
1090   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
1092   my $ct_cvar_configs = CVar->get_configs('module' => 'CT');
 
1093   my @ct_includeable_custom_variables = grep { $_->{includeable} } @{ $ct_cvar_configs };
 
1094   my @ct_searchable_custom_variables  = grep { $_->{searchable} }  @{ $ct_cvar_configs };
 
1096   my %column_defs_cvars            = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @ct_includeable_custom_variables;
 
1097   push @columns, map { "cvar_$_->{name}" } @ct_includeable_custom_variables;
 
1099   my @hidden_variables = map { "l_${_}" } @columns;
 
1100   push @hidden_variables, "l_subtotal", $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered ordnumber quonumber cusordnumber
 
1101                                                         transaction_description transdatefrom transdateto type vc employee_id salesman_id
 
1102                                                         reqdatefrom reqdateto projectnumber project_id periodic_invoices_active periodic_invoices_inactive
 
1103                                                         business_id shippingpoint taxzone_id reqdate_unset_or_old insertdatefrom insertdateto
 
1104                                                         order_probability_op order_probability_value expected_billing_date_from expected_billing_date_to
 
1105                                                         parts_partnumber parts_description all department_id intnotes phone_notes fulltext);
 
1106   push @hidden_variables, map { "cvar_$_->{name}" } @ct_searchable_custom_variables;
 
1108   my   @keys_for_url = grep { $form->{$_} } @hidden_variables;
 
1109   push @keys_for_url, 'taxzone_id' if $form->{taxzone_id} ne ''; # taxzone_id could be 0
 
1111   my $href = $params{want_binary_pdf} ? '' : build_std_url('action=orders', @keys_for_url);
 
1114     'ids'                     => { 'text' => '', },
 
1115     'transdate'               => { 'text' => $locale->text('Date'), },
 
1116     'reqdate'                 => { 'text' => $form->{type} =~ /_order/ ? $locale->text('Required by') : $locale->text('Valid until') },
 
1117     'id'                      => { 'text' => $locale->text('ID'), },
 
1118     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
1119     'quonumber'               => { 'text' => $form->{type} eq "request_quotation" ? $locale->text('RFQ') : $locale->text('Quotation'), },
 
1120     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
 
1121     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
 
1122     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
 
1123     'netamount'               => { 'text' => $locale->text('Amount'), },
 
1124     'tax'                     => { 'text' => $locale->text('Tax'), },
 
1125     'amount'                  => { 'text' => $locale->text('Total'), },
 
1126     'remaining_amount'        => { 'text' => $locale->text('Remaining Amount'), },
 
1127     'remaining_netamount'     => { 'text' => $locale->text('Remaining Net Amount'), },
 
1128     'curr'                    => { 'text' => $locale->text('Curr'), },
 
1129     'employee'                => { 'text' => $locale->text('Employee'), },
 
1130     'salesman'                => { 'text' => $locale->text('Salesman'), },
 
1131     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
 
1132     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
 
1133     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
1134     'department'              => { 'text' => $locale->text('Department'), },
 
1135     'open'                    => { 'text' => $locale->text('Open'), },
 
1136     'delivered'               => { 'text' => $locale->text('Delivery Order created'), },
 
1137     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
 
1138     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
 
1139     'vcnumber'                => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer Number') : $locale->text('Vendor Number'), },
 
1140     'country'                 => { 'text' => $locale->text('Country'), },
 
1141     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
 
1142     'periodic_invoices'       => { 'text' => $locale->text('Per. Inv.'), },
 
1143     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
 
1144     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
 
1145     'insertdate'              => { 'text' => $locale->text('Insert Date'), },
 
1146     'order_probability'       => { 'text' => $locale->text('Order probability'), },
 
1147     'expected_billing_date'   => { 'text' => $locale->text('Exp. bill. date'), },
 
1148     'expected_netamount'      => { 'text' => $locale->text('Exp. netamount'), },
 
1149     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
 
1150     'intnotes'                => { 'text' => $locale->text('Internal Notes'), },
 
1154   foreach my $name (qw(id transdate reqdate quonumber ordnumber cusordnumber name employee salesman shipvia transaction_description shippingpoint taxzone insertdate payment_terms department intnotes)) {
 
1155     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
1156     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
1159   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount curr remaining_amount remaining_netamount order_probability expected_billing_date expected_netamount);
 
1161   $form->{"l_type"} = "Y";
 
1162   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
1163   $column_defs{ids}->{visible} = $allow_multiple_orders ? 'HTML' : 0;
 
1165   $report->set_columns(%column_defs);
 
1166   $report->set_column_order(@columns);
 
1167   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
 
1168   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
1170   CVar->add_custom_variables_to_report('module'         => 'CT',
 
1171                                        'trans_id_field' => "$form->{vc}_id",
 
1172                                        'configs'        => $ct_cvar_configs,
 
1173                                        'column_defs'    => \%column_defs,
 
1174                                        'data'           => $form->{OE});
 
1178   push @options, $locale->text('Customer')                . " : $form->{customer}"                        if $form->{customer};
 
1179   push @options, $locale->text('Vendor')                  . " : $form->{vendor}"                          if $form->{vendor};
 
1180   push @options, $locale->text('Contact Person')          . " : $form->{cp_name}"                         if $form->{cp_name};
 
1181   push @options, $locale->text('Department')              . " : $form->{department}"                      if $form->{department};
 
1182   push @options, $locale->text('Order Number')            . " : $form->{ordnumber}"                       if $form->{ordnumber};
 
1183   push @options, $locale->text('Customer Order Number')   . " : $form->{cusordnumber}"                    if $form->{cusordnumber};
 
1184   push @options, $locale->text('Notes')                   . " : $form->{notes}"                           if $form->{notes};
 
1185   push @options, $locale->text('Internal Notes')          . " : $form->{intnotes}"                        if $form->{intnotes};
 
1186   push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"         if $form->{transaction_description};
 
1187   push @options, $locale->text('Quick Search')            . " : $form->{all}"                             if $form->{all};
 
1188   push @options, $locale->text('Shipping Point')          . " : $form->{shippingpoint}"                   if $form->{shippingpoint};
 
1189   push @options, $locale->text('Part Description')        . " : $form->{parts_description}"               if $form->{parts_description};
 
1190   push @options, $locale->text('Part Number')             . " : $form->{parts_partnumber}"                if $form->{parts_partnumber};
 
1191   push @options, $locale->text('Phone Notes')             . " : $form->{phone_notes}"                     if $form->{phone_notes};
 
1192   push @options, $locale->text('Full Text')               . " : $form->{fulltext}"                        if $form->{fulltext};
 
1193   if ( $form->{transdatefrom} or $form->{transdateto} ) {
 
1194     push @options, $locale->text('Order Date');
 
1195     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)     if $form->{transdatefrom};
 
1196     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)     if $form->{transdateto};
 
1198   if ( $form->{reqdatefrom} or $form->{reqdateto} ) {
 
1199     push @options, $locale->text('Delivery Date');
 
1200     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{reqdatefrom}, 1)       if $form->{reqdatefrom};
 
1201     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{reqdateto},   1)       if $form->{reqdateto};
 
1203   if ( $form->{insertdatefrom} or $form->{insertdateto} ) {
 
1204     push @options, $locale->text('Insert Date');
 
1205     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{insertdatefrom}, 1)    if $form->{insertdatefrom};
 
1206     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{insertdateto},   1)    if $form->{insertdateto};
 
1208   push @options, $locale->text('Open')                                                                    if $form->{open};
 
1209   push @options, $locale->text('Closed')                                                                  if $form->{closed};
 
1210   push @options, $locale->text('Delivery Order created')                                                               if $form->{delivered};
 
1211   push @options, $locale->text('Not delivered')                                                           if $form->{notdelivered};
 
1212   push @options, $locale->text('Periodic invoices active')                                                if $form->{periodic_invoices_active};
 
1213   push @options, $locale->text('Reqdate not set or before current month')                                 if $form->{reqdate_unset_or_old};
 
1215   if ($form->{business_id}) {
 
1216     my $vc_type_label = $form->{vc} eq 'customer' ? $locale->text('Customer type') : $locale->text('Vendor type');
 
1217     push @options, $vc_type_label . " : " . SL::DB::Business->new(id => $form->{business_id})->load->description;
 
1219   if ($form->{taxzone_id} ne '') { # taxzone_id could be 0
 
1220     push @options, $locale->text('Steuersatz') . " : " . SL::DB::TaxZone->new(id => $form->{taxzone_id})->load->description;
 
1223   if ($form->{department_id}) {
 
1224     push @options, $locale->text('Department') . " : " . SL::DB::Department->new(id => $form->{department_id})->load->description;
 
1227   if (($form->{order_probability_value} || '') ne '') {
 
1228     push @options, $::locale->text('Order probability') . ' ' . ($form->{order_probability_op} eq 'le' ? '<=' : '>=') . ' ' . $form->{order_probability_value} . '%';
 
1231   if ($form->{expected_billing_date_from} or $form->{expected_billing_date_to}) {
 
1232     push @options, $locale->text('Expected billing date');
 
1233     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{expected_billing_date_from}, 1) if $form->{expected_billing_date_from};
 
1234     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{expected_billing_date_to},   1) if $form->{expected_billing_date_to};
 
1237   $report->set_options('top_info_text'        => join("\n", @options),
 
1238                        'raw_top_info_text'    => $form->parse_html_template('oe/orders_top'),
 
1239                        'raw_bottom_info_text' => $form->parse_html_template('oe/orders_bottom'),
 
1240                        'output_format'        => 'HTML',
 
1241                        'title'                => $form->{title},
 
1242                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
 
1244   $report->set_options_from_form();
 
1245   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
1247   # add sort and escape callback, this one we use for the add sub
 
1248   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1250   # escape callback for href
 
1251   my $callback = $form->escape($href);
 
1253   my @subtotal_columns = qw(netamount amount marge_total marge_percent remaining_amount remaining_netamount);
 
1254   push @subtotal_columns, 'expected_netamount' if $form->{l_order_probability_expected_billing_date};
 
1256   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1257   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1261   my $edit_url = $params{want_binary_pdf}
 
1263                : ($::instance_conf->get_feature_experimental_order)
 
1264                ? build_std_url('script=controller.pl', 'action=Order/edit', 'type')
 
1265                : build_std_url('action=edit', 'type', 'vc');
 
1266   foreach my $oe (@{ $form->{OE} }) {
 
1267     map { $oe->{$_} *= $oe->{exchangerate} } @subtotal_columns;
 
1269     $oe->{tax}               = $oe->{amount} - $oe->{netamount};
 
1270     $oe->{open}              = $oe->{closed}            ? $locale->text('No')  : $locale->text('Yes');
 
1271     $oe->{delivered}         = $oe->{delivered}         ? $locale->text('Yes') : $locale->text('No');
 
1272     $oe->{periodic_invoices} = $oe->{periodic_invoices} ? $locale->text('On')  : $locale->text('Off');
 
1274     map { $subtotals{$_} += $oe->{$_};
 
1275           $totals{$_}    += $oe->{$_} } @subtotal_columns;
 
1277     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
 
1278     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
 
1280     map { $oe->{$_} = $form->format_amount(\%myconfig, $oe->{$_}, 2) } qw(netamount tax amount marge_total marge_percent remaining_amount remaining_netamount expected_netamount);
 
1282     $oe->{order_probability} = ($oe->{order_probability} || 0) . '%';
 
1286     foreach my $column (@columns) {
 
1287       next if ($column eq 'ids');
 
1289         'data'  => $oe->{$column},
 
1290         'align' => $column_alignment{$column},
 
1295       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $oe->{id})
 
1296                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
 
1297       'valign'   => 'center',
 
1298       'align'    => 'center',
 
1301     $row->{$ordnumber}->{link} = $edit_url . "&id=" . E($oe->{id}) . "&callback=${callback}" unless $params{want_binary_pdf};
 
1303     my $row_set = [ $row ];
 
1305     if (($form->{l_subtotal} eq 'Y')
 
1306         && (($idx == (scalar @{ $form->{OE} }))
 
1307             || ($oe->{ $form->{sort} } ne $form->{OE}->[$idx]->{ $form->{sort} }))) {
 
1308       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1311     $report->add_data($row_set);
 
1316   $report->add_separator();
 
1317   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1318   if ($params{want_binary_pdf}) {
 
1319     $report->generate_with_headers();
 
1320     return $report->generate_pdf_content(want_binary_pdf => 1);
 
1322   setup_oe_orders_action_bar();
 
1323   $report->generate_with_headers();
 
1325   $main::lxdebug->leave_sub();
 
1328 sub check_delivered_flag {
 
1329   $main::lxdebug->enter_sub();
 
1331   my $form     = $main::form;
 
1332   my %myconfig = %main::myconfig;
 
1336   if (($form->{type} ne 'sales_order') && ($form->{type} ne 'purchase_order')) {
 
1337     return $main::lxdebug->leave_sub();
 
1340   my $all_delivered = 0;
 
1342   foreach my $i (1 .. $form->{rowcount}) {
 
1343     next if (!$form->{"id_$i"});
 
1345     $form->{"ship_$i"} = 0 if $form->{saveasnew};
 
1347     if ($form->parse_amount(\%myconfig, $form->{"qty_$i"}) == $form->parse_amount(\%myconfig, $form->{"ship_$i"})) {
 
1356   $form->{delivered} = 1 if $all_delivered;
 
1357   $form->{delivered} = 0 if $form->{saveasnew};
 
1359   $main::lxdebug->leave_sub();
 
1362 sub save_and_close {
 
1363   $main::lxdebug->enter_sub();
 
1365   my $form     = $main::form;
 
1366   my %myconfig = %main::myconfig;
 
1367   my $locale   = $main::locale;
 
1370   $form->mtime_ischanged('oe');
 
1372   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
1374   if ($form->{type} =~ /_order$/) {
 
1375     $form->isblank("transdate", $locale->text('Order Date missing!'));
 
1377     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1380   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
 
1381   $form->{$idx} =~ s/^\s*//g;
 
1382   $form->{$idx} =~ s/\s*$//g;
 
1384   my $msg = ucfirst $form->{vc};
 
1385   $form->isblank($form->{vc} . '_id', $locale->text($msg . " missing!"));
 
1387   # $locale->text('Customer missing!');
 
1388   # $locale->text('Vendor missing!');
 
1390   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1391     if ($form->{currency} ne $form->{defaultcurrency});
 
1395   my $vc = $form->{vc};
 
1396   if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
 
1397     $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
 
1399     IS->get_customer(\%myconfig, $form) if $vc eq 'customer';
 
1400     IR->get_vendor(\%myconfig, $form)   if $vc eq 'vendor';
 
1402     $::form->{billing_address_id} = $::form->{default_billing_address_id};
 
1405     $::dispatcher->end_request;
 
1408   $form->{id} = 0 if $form->{saveasnew};
 
1410   my ($numberfld, $ordnumber, $err);
 
1411   # this is for the internal notes section for the [email] Subject
 
1412   if ($form->{type} =~ /_order$/) {
 
1413     if ($form->{type} eq 'sales_order') {
 
1414       $form->{label} = $locale->text('Sales Order');
 
1416       $numberfld = "sonumber";
 
1417       $ordnumber = "ordnumber";
 
1419       $form->{label} = $locale->text('Purchase Order');
 
1421       $numberfld = "ponumber";
 
1422       $ordnumber = "ordnumber";
 
1425     $err = $locale->text('Cannot save order!');
 
1427     check_delivered_flag();
 
1430     if ($form->{type} eq 'sales_quotation') {
 
1431       $form->{label} = $locale->text('Quotation');
 
1433       $numberfld = "sqnumber";
 
1434       $ordnumber = "quonumber";
 
1436       $form->{label} = $locale->text('Request for Quotation');
 
1438       $numberfld = "rfqnumber";
 
1439       $ordnumber = "quonumber";
 
1442     $err = $locale->text('Cannot save quotation!');
 
1446   # get new number in sequence if saveasnew was requested
 
1447   delete $form->{$ordnumber} if $form->{saveasnew};
 
1451   $form->error($err) if (!OE->save(\%myconfig, \%$form));
 
1453   # saving the history
 
1454   if(!exists $form->{addition}) {
 
1455     $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1456     $form->{addition} = "SAVED";
 
1457     $form->save_history;
 
1459   # /saving the history
 
1461   $form->redirect($form->{label} . " $form->{$ordnumber} " .
 
1462                   $locale->text('saved!'));
 
1464   $main::lxdebug->leave_sub();
 
1468   $main::lxdebug->enter_sub();
 
1470   my $form     = $main::form;
 
1471   my %myconfig = %main::myconfig;
 
1472   my $locale   = $main::locale;
 
1476   $form->mtime_ischanged('oe');
 
1477   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
1480   if ($form->{type} =~ /_order$/) {
 
1481     $form->isblank("transdate", $locale->text('Order Date missing!'));
 
1483     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1486   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
 
1487   $form->{$idx} =~ s/^\s*//g;
 
1488   $form->{$idx} =~ s/\s*$//g;
 
1490   my $msg = ucfirst $form->{vc};
 
1491   $form->isblank($form->{vc} . '_id', $locale->text($msg . " missing!"));
 
1493   # $locale->text('Customer missing!');
 
1494   # $locale->text('Vendor missing!');
 
1496   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1497     if ($form->{currency} ne $form->{defaultcurrency});
 
1499   remove_emptied_rows();
 
1502   my $vc = $form->{vc};
 
1503   if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
 
1504     $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
 
1506     if ($vc eq 'customer') {
 
1507       IS->get_customer(\%myconfig, $form);
 
1508       $::form->{billing_address_id} = $::form->{default_billing_address_id};
 
1511       IR->get_vendor(\%myconfig, $form);
 
1515     $::dispatcher->end_request;
 
1518   $form->{id} = 0 if $form->{saveasnew};
 
1520   my ($numberfld, $ordnumber, $err);
 
1522   # this is for the internal notes section for the [email] Subject
 
1523   if ($form->{type} =~ /_order$/) {
 
1524     if ($form->{type} eq 'sales_order') {
 
1525       $form->{label} = $locale->text('Sales Order');
 
1527       $numberfld = "sonumber";
 
1528       $ordnumber = "ordnumber";
 
1530       $form->{label} = $locale->text('Purchase Order');
 
1532       $numberfld = "ponumber";
 
1533       $ordnumber = "ordnumber";
 
1536     $err = $locale->text('Cannot save order!');
 
1538     check_delivered_flag();
 
1541     if ($form->{type} eq 'sales_quotation') {
 
1542       $form->{label} = $locale->text('Quotation');
 
1544       $numberfld = "sqnumber";
 
1545       $ordnumber = "quonumber";
 
1547       $form->{label} = $locale->text('Request for Quotation');
 
1549       $numberfld = "rfqnumber";
 
1550       $ordnumber = "quonumber";
 
1553     $err = $locale->text('Cannot save quotation!');
 
1559   OE->save(\%myconfig, \%$form);
 
1561   # saving the history
 
1562   if(!exists $form->{addition}) {
 
1563     if ( $form->{formname} eq 'sales_quotation' or  $form->{formname} eq 'request_quotation' ) {
 
1564         $form->{snumbers} = qq|quonumber_| . $form->{quonumber};
 
1565     } elsif ( $form->{formname} eq 'sales_order' or $form->{formname} eq 'purchase_order') {
 
1566         $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1568     $form->{what_done} = $form->{formname};
 
1569     $form->{addition} = "SAVED";
 
1570     $form->save_history;
 
1572   # /saving the history
 
1574   $form->{simple_save} = 1;
 
1575   if(!$form->{print_and_save}) {
 
1576     delete @{$form}{ary_diff([keys %{ $form }], [qw(login id script type cursor_fokus)])};
 
1578     $::dispatcher->end_request;
 
1580   $main::lxdebug->leave_sub();
 
1584   $main::lxdebug->enter_sub();
 
1586   my $form     = $main::form;
 
1587   my %myconfig = %main::myconfig;
 
1588   my $locale   = $main::locale;
 
1593   if ($form->{type} =~ /_order$/) {
 
1594     $msg = $locale->text('Order deleted!');
 
1595     $err = $locale->text('Cannot delete order!');
 
1597     $msg = $locale->text('Quotation deleted!');
 
1598     $err = $locale->text('Cannot delete quotation!');
 
1600   if (OE->delete(\%myconfig, \%$form)){
 
1601     # saving the history
 
1602     if(!exists $form->{addition}) {
 
1603       if ( $form->{formname} eq 'sales_quotation' or  $form->{formname} eq 'request_quotation' ) {
 
1604           $form->{snumbers} = qq|quonumber_| . $form->{quonumber};
 
1605       } elsif ( $form->{formname} eq 'sales_order' or $form->{formname} eq 'purchase_order') {
 
1606           $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
 
1608         $form->{what_done} = $form->{formname};
 
1609         $form->{addition} = "DELETED";
 
1610         $form->save_history;
 
1612     # /saving the history
 
1614     $::dispatcher->end_request;
 
1618   $main::lxdebug->leave_sub();
 
1622   $main::lxdebug->enter_sub();
 
1624   my $form     = $main::form;
 
1625   my %myconfig = %main::myconfig;
 
1626   my $locale   = $main::locale;
 
1629   check_oe_conversion_to_sales_invoice_allowed();
 
1630   $form->mtime_ischanged('oe');
 
1632   $main::auth->assert($form->{type} eq 'purchase_order' || $form->{type} eq 'request_quotation' ? 'vendor_invoice_edit' : 'invoice_edit');
 
1634   $form->{old_salesman_id} = $form->{salesman_id};
 
1635   $form->get_employee();
 
1638   if ($form->{type} =~ /_order$/) {
 
1640     # these checks only apply if the items don't bring their own ordnumbers/transdates.
 
1641     # The if clause ensures that by searching for empty ordnumber_#/transdate_# fields.
 
1642     $form->isblank("ordnumber", $locale->text('Order Number missing!'))
 
1643       if (+{ map { $form->{"ordnumber_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
 
1644     $form->isblank("transdate", $locale->text('Order Date missing!'))
 
1645       if (+{ map { $form->{"transdate_$_"}, 1 } (1 .. $form->{rowcount} - 1) }->{''});
 
1647     # also copy deliverydate from the order
 
1648     $form->{deliverydate} = $form->{reqdate} if $form->{reqdate};
 
1649     $form->{orddate}      = $form->{transdate};
 
1651     $form->isblank("quonumber", $locale->text('Quotation Number missing!'));
 
1652     $form->isblank("transdate", $locale->text('Quotation Date missing!'));
 
1653     $form->{ordnumber}    = "";
 
1654     $form->{quodate}      = $form->{transdate};
 
1657   my $vc = $form->{vc};
 
1658   if (($form->{"previous_${vc}_id"} || $form->{"${vc}_id"}) != $form->{"${vc}_id"}) {
 
1659     $::form->{salesman_id} = SL::DB::Manager::Employee->current->id if exists $::form->{salesman_id};
 
1661     IS->get_customer(\%myconfig, $form) if $vc eq 'customer';
 
1662     IR->get_vendor(\%myconfig, $form)   if $vc eq 'vendor';
 
1665     $::dispatcher->end_request;
 
1668   _oe_remove_delivered_or_billed_rows(id => $form->{id}, type => 'billed') if $form->{new_invoice_type} ne 'final_invoice';
 
1670   $form->{cp_id} *= 1;
 
1672   for my $i (1 .. $form->{rowcount}) {
 
1673     for (qw(ship qty sellprice basefactor discount)) {
 
1674       $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"};
 
1676     $form->{"converted_from_orderitems_id_$i"} = delete $form->{"orderitems_id_$i"};
 
1679   my ($buysell, $orddate, $exchangerate);
 
1680   if (   $form->{type} =~ /_order/
 
1681       && $form->{currency} ne $form->{defaultcurrency}) {
 
1683     # check if we need a new exchangerate
 
1684     $buysell = ($form->{type} eq 'sales_order') ? "buy" : "sell";
 
1686     $orddate      = $form->current_date(\%myconfig);
 
1687     $exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $orddate, $buysell);
 
1689     if (!$exchangerate) {
 
1694   $form->{convert_from_oe_ids} = $form->{id};
 
1695   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
 
1696   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
1697   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
 
1699   delete @{$form}{qw(id closed)};
 
1700   $form->{rowcount}--;
 
1703   if (   $form->{type} eq 'purchase_order'
 
1704       || $form->{type} eq 'request_quotation') {
 
1705     $form->{title}  = $locale->text('Add Vendor Invoice');
 
1706     $form->{script} = 'ir.pl';
 
1711   if (   $form->{type} eq 'sales_order'
 
1712       || $form->{type} eq 'sales_quotation') {
 
1713     $form->{title}  = ($form->{new_invoice_type} eq 'invoice_for_advance_payment') ? $locale->text('Add Invoice for Advance Payment')
 
1714                     : ($form->{new_invoice_type} eq 'final_invoice')               ? $locale->text('Add Final Invoice')
 
1715                     : $locale->text('Add Sales Invoice');
 
1716     $form->{script} = 'is.pl';
 
1721   # bo creates the id, reset it
 
1722   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
 
1723   $form->{ $form->{vc} } =~ s/--.*//g;
 
1724   $form->{type} = $form->{new_invoice_type} || "invoice";
 
1727   $main::locale = Locale->new("$myconfig{countrycode}", "$script");
 
1728   $locale = $main::locale;
 
1730   require "bin/mozilla/$form->{script}";
 
1732   my $currency = $form->{currency};
 
1735   $form->{currency}     = $currency;
 
1736   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{invdate}, $buysell);
 
1737   $form->{exchangerate} = $form->{forex} || '';
 
1739   $form->{creditremaining} -= ($form->{oldinvtotal} - $form->{ordtotal});
 
1744   for my $i (1 .. $form->{rowcount}) {
 
1745     $form->{"discount_$i"} =
 
1746       $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
1748     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
1750     my $decimalplaces = ($dec > 2) ? $dec : 2;
 
1752     # copy delivery date from reqdate for order -> invoice conversion
 
1753     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
 
1754       unless $form->{"deliverydate_$i"};
 
1756     $form->{"sellprice_$i"} =
 
1757       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
1760     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
1761     $dec_qty = length $dec_qty;
 
1763       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
1768   $main::lxdebug->leave_sub();
 
1771 sub save_exchangerate {
 
1772   $main::lxdebug->enter_sub();
 
1774   my $form     = $main::form;
 
1775   my %myconfig = %main::myconfig;
 
1776   my $locale   = $main::locale;
 
1778   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'));
 
1779   $form->{exchangerate} =
 
1780     $form->parse_amount(\%myconfig, $form->{exchangerate});
 
1781   $form->save_exchangerate(\%myconfig, $form->{currency},
 
1782                            $form->{exchangeratedate},
 
1783                            $form->{exchangerate}, $form->{buysell});
 
1787   $main::lxdebug->leave_sub();
 
1791   $main::lxdebug->enter_sub();
 
1793   my $form     = $main::form;
 
1797   $form->{saveasnew} = 1;
 
1798   map { delete $form->{$_} } qw(printed emailed queued delivered closed);
 
1799   $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
 
1801   # Let kivitendo assign a new order number if the user hasn't changed the
 
1802   # previous one. If it has been changed manually then use it as-is.
 
1803   my $idx = $form->{type} =~ /_quotation$/ ? "quonumber" : "ordnumber";
 
1804   $form->{$idx} =~ s/^\s*//g;
 
1805   $form->{$idx} =~ s/\s*$//g;
 
1806   if ($form->{saved_xyznumber} &&
 
1807       ($form->{saved_xyznumber} eq $form->{$idx})) {
 
1808     delete($form->{$idx});
 
1811   # clear reqdate and transdate unless changed
 
1812   if ( $form->{reqdate} && $form->{id} ) {
 
1813     my $saved_order = OE->retrieve_simple(id => $form->{id});
 
1814     if ( $saved_order && $saved_order->{reqdate} eq $form->{reqdate} && $saved_order->{transdate} eq $form->{transdate} ) {
 
1815       my $extra_days = $form->{type} eq 'sales_quotation' ? $::instance_conf->get_reqdate_interval       :
 
1816                        $form->{type} eq 'sales_order'     ? $::instance_conf->get_delivery_date_interval : 1;
 
1818     if (   ($form->{type} eq 'sales_order'     &&  !$::instance_conf->get_deliverydate_on)
 
1819         || ($form->{type} eq 'sales_quotation' &&  !$::instance_conf->get_reqdate_on)) {
 
1820       $form->{reqdate}   = '';
 
1822       $form->{reqdate}   = DateTime->today_local->next_workday(extra_days => $extra_days)->to_kivitendo;
 
1824       $form->{transdate} = DateTime->today_local->to_kivitendo;
 
1828   $form->get_employee();
 
1832   $main::lxdebug->leave_sub();
 
1835 sub check_for_direct_delivery_yes {
 
1836   $main::lxdebug->enter_sub();
 
1838   my $form     = $main::form;
 
1842   $form->{direct_delivery_checked} = 1;
 
1843   delete @{$form}{grep /^shipto/, keys %{ $form }};
 
1844   map { s/^CFDD_//; $form->{$_} = $form->{"CFDD_${_}"} } grep /^CFDD_/, keys %{ $form };
 
1845   $form->{CFDD_shipto} = 1;
 
1847   $main::lxdebug->leave_sub();
 
1850 sub check_for_direct_delivery_no {
 
1851   $main::lxdebug->enter_sub();
 
1853   my $form     = $main::form;
 
1857   $form->{direct_delivery_checked} = 1;
 
1858   delete @{$form}{grep /^shipto/, keys %{ $form }};
 
1859   $form->{CFDD_shipto} = 0;
 
1862   $main::lxdebug->leave_sub();
 
1865 sub check_for_direct_delivery {
 
1866   $main::lxdebug->enter_sub();
 
1868   my $form     = $main::form;
 
1869   my %myconfig = %main::myconfig;
 
1873   if ($form->{direct_delivery_checked}
 
1874       || (!$form->{shiptoname} && !$form->{shiptostreet} && !$form->{shipto_id})) {
 
1875     $main::lxdebug->leave_sub();
 
1879   my $cvars = SL::DB::Shipto->new->cvars_by_config;
 
1881   if ($form->{shipto_id}) {
 
1882     Common->get_shipto_by_id(\%myconfig, $form, $form->{shipto_id}, "CFDD_");
 
1885     map { $form->{"CFDD_${_}"} = $form->{$_ } } grep /^shipto/, keys %{ $form };
 
1888   $_->value($::form->{"CFDD_shiptocvar_" . $_->config->name}) for @{ $cvars };
 
1890   delete $form->{action};
 
1891   $form->{VARIABLES} = [ map { { "key" => $_, "value" => $form->{$_} } } grep { ($_ ne 'login') && ($_ ne 'password') && (ref $_ eq "") } keys %{ $form } ];
 
1894   print $form->parse_html_template("oe/check_for_direct_delivery", { cvars => $cvars });
 
1896   $main::lxdebug->leave_sub();
 
1898   $::dispatcher->end_request;
 
1901 sub purchase_order {
 
1902   $main::lxdebug->enter_sub();
 
1904   my $form     = $main::form;
 
1905   my $locale   = $main::locale;
 
1908   $form->mtime_ischanged('oe');
 
1910   $main::auth->assert('purchase_order_edit');
 
1912   $form->{sales_order_to_purchase_order} = 0;
 
1913   if ($form->{type} eq 'sales_order') {
 
1914     $form->{sales_order_to_purchase_order} = 1;
 
1915     check_for_direct_delivery();
 
1918   if ($form->{type} =~ /^sales_/) {
 
1919     delete($form->{ordnumber});
 
1920     delete($form->{payment_id});
 
1921     delete($form->{delivery_term_id});
 
1924   $form->{cp_id} *= 1;
 
1926   my $source_type = $form->{type};
 
1927   $form->{title} = $locale->text('Add Purchase Order');
 
1928   $form->{vc}    = "vendor";
 
1929   $form->{type}  = "purchase_order";
 
1931   $form->get_employee();
 
1933   poso(source_type => $form->{type});
 
1935   delete $form->{sales_order_to_purchase_order};
 
1937   $main::lxdebug->leave_sub();
 
1941   $main::lxdebug->enter_sub();
 
1943   my $form     = $main::form;
 
1944   my $locale   = $main::locale;
 
1947   $main::auth->assert('sales_order_edit');
 
1948   $form->mtime_ischanged('oe');
 
1950   if ($form->{type} eq "purchase_order") {
 
1951     delete($form->{ordnumber});
 
1952     $form->{"lastcost_$_"} = $form->{"sellprice_$_"} for (1..$form->{rowcount});
 
1955   $form->{cp_id} *= 1;
 
1957   my $source_type = $form->{type};
 
1958   $form->{title}  = $locale->text('Add Sales Order');
 
1959   $form->{vc}     = "customer";
 
1960   $form->{type}   = "sales_order";
 
1962   $form->get_employee();
 
1964   poso(source_type => $source_type);
 
1966   $main::lxdebug->leave_sub();
 
1970   $main::lxdebug->enter_sub();
 
1973   my $form     = $main::form;
 
1974   my %myconfig = %main::myconfig;
 
1977   $main::auth->assert('purchase_order_edit | sales_order_edit');
 
1979   $form->{transdate} = $form->current_date(\%myconfig);
 
1980   delete $form->{duedate};
 
1982   # "reqdate" is the validity date for a quotation and the delivery
 
1983   # date for an order. Therefore it makes no sense to keep the value
 
1984   # when converting from one into the other.
 
1985   delete $form->{reqdate} if ($param{source_type} =~ /_quotation$/) == ($form->{type} =~ /_quotation$/);
 
1987   $form->{convert_from_oe_ids} = $form->{id};
 
1988   $form->{closed}              = 0;
 
1990   $form->{old_employee_id}     = $form->{employee_id};
 
1991   $form->{old_salesman_id}     = $form->{salesman_id};
 
1994   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal delivered ordnumber
 
1995                                 taxzone_id currency);
 
1996   # this converted variable is also used for sales_order to purchase order and vice versa
 
1997   $form->{"converted_from_orderitems_id_$_"} = delete $form->{"orderitems_id_$_"} for 1 .. $form->{"rowcount"};
 
1999   # if purchase_order was generated from sales_order, use  lastcost_$i as sellprice_$i
 
2000   # also reset discounts
 
2001   if ( $form->{sales_order_to_purchase_order} ) {
 
2002     for my $i (1 .. $form->{rowcount}) {
 
2003       $form->{"sellprice_${i}"} = $form->{"lastcost_${i}"};
 
2004       $form->{"discount_${i}"}  = 0;
 
2008   for my $i (1 .. $form->{rowcount}) {
 
2009     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice basefactor discount lastcost);
 
2012   my %saved_vars = map { $_ => $form->{$_} } grep { $form->{$_} } qw(currency);
 
2016   map { $form->{$_} = $saved_vars{$_} } keys %saved_vars;
 
2018   # prepare_order assumes that the discount is in db-notation (0.05) and not user-notation (5)
 
2019   # and therefore multiplies the values by 100 in the case of reading from db or making an order
 
2020   # from several quotation, so we convert this back into percent-notation for the user interface by multiplying with 0.01
 
2021   # ergänzung 03.10.2010 muss vor prepare_order passieren (s.a. Svens Kommentar zu Bug 1017)
 
2022   # das parse_amount wird oben schon ausgeführt, deswegen an dieser stelle raus (wichtig: kommawerte bei discount testen)
 
2023   for my $i (1 .. $form->{rowcount}) {
 
2024     $form->{"discount_$i"} /=100;
 
2030   $main::lxdebug->leave_sub();
 
2033 sub delivery_order {
 
2034   $main::lxdebug->enter_sub();
 
2036   my $form     = $main::form;
 
2037   my %myconfig = %main::myconfig;
 
2039   $form->mtime_ischanged('oe');
 
2041   if ($form->{type} =~ /^sales/) {
 
2042     $main::auth->assert('sales_delivery_order_edit');
 
2044     $form->{vc}    = 'customer';
 
2045     $form->{type}  = 'sales_delivery_order';
 
2048     $main::auth->assert('purchase_delivery_order_edit');
 
2050     $form->{vc}    = 'vendor';
 
2051     $form->{type}  = 'purchase_delivery_order';
 
2054   $form->get_employee();
 
2056   require "bin/mozilla/do.pl";
 
2058   $form->{script}               = 'do.pl';
 
2059   $form->{cp_id}               *= 1;
 
2060   $form->{convert_from_oe_ids}  = $form->{id};
 
2061   $form->{transdate}            = $form->current_date(\%myconfig);
 
2062   delete $form->{duedate};
 
2064   $form->{old_employee_id}  = $form->{employee_id};
 
2065   $form->{old_salesman_id}  = $form->{salesman_id};
 
2067   _oe_remove_delivered_or_billed_rows(id => $form->{id}, type => 'delivered');
 
2070   delete @{$form}{qw(id subject message cc bcc printed emailed queued creditlimit creditremaining discount tradediscount oldinvtotal closed delivered)};
 
2072   for my $i (1 .. $form->{rowcount}) {
 
2073     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if ($form->{"${_}_${i}"}) } qw(ship qty sellprice lastcost basefactor discount);
 
2074     $form->{"converted_from_orderitems_id_$i"} = delete $form->{"orderitems_id_$i"};
 
2077   my %old_values = map { $_ => $form->{$_} } qw(customer_id oldcustomer customer vendor_id oldvendor vendor shipto_id);
 
2083   map { $form->{$_} = $old_values{$_} if ($old_values{$_}) } keys %old_values;
 
2085   for my $i (1 .. $form->{rowcount}) {
 
2086     (my $dummy, $form->{"pricegroup_id_$i"}) = split /--/, $form->{"sellprice_pg_$i"};
 
2090   $main::lxdebug->leave_sub();
 
2093 sub oe_prepare_xyz_from_order {
 
2094   return if !$::form->{id};
 
2096   my $order = SL::DB::Order->new(id => $::form->{id})->load;
 
2097   $order->flatten_to_form($::form, format_amounts => 1);
 
2098   $::form->{taxincluded_changed_by_user} = 1;
 
2100   # hack: add partsgroup for first row if it does not exists,
 
2101   # because _remove_billed_or_delivered_rows and _remove_full_delivered_rows
 
2102   # determine fields to handled by existing fields for the first row. If partsgroup
 
2103   # is missing there, for deleted rows the partsgroup_field is not emptied and in
 
2104   # update_delivery_order it will not considered an empty row ...
 
2105   $::form->{partsgroup_1} = '' if !exists $::form->{partsgroup_1};
 
2107   # fake last empty row
 
2108   $::form->{rowcount}++;
 
2113 sub oe_delivery_order_from_order {
 
2114   oe_prepare_xyz_from_order();
 
2118 sub oe_invoice_from_order {
 
2119   oe_prepare_xyz_from_order();
 
2124   call_sub($main::form->{yes_nextsub});
 
2128   call_sub($main::form->{no_nextsub});
 
2131 ######################################################################################################
 
2133 # ###############################################################################################
 
2135   $main::lxdebug->enter_sub();
 
2137   my $form     = $main::form;
 
2138   my %myconfig = %main::myconfig;
 
2142   retrieve_partunits() if ($form->{type} =~ /_delivery_order$/);
 
2144   $form->{"taxaccounts"} =~ s/\s*$//;
 
2145   $form->{"taxaccounts"} =~ s/^\s*//;
 
2146   foreach my $accno (split(/\s*/, $form->{"taxaccounts"})) {
 
2147     map({ delete($form->{"${accno}_${_}"}); } qw(rate description taxnumber));
 
2149   $form->{"taxaccounts"} = "";
 
2151   IC->retrieve_accounts(\%myconfig, $form, map { $_ => $form->{"id_$_"} } 1 .. $form->{rowcount});
 
2153   $form->{rowcount}++;
 
2154   $form->{"project_id_$form->{rowcount}"} = $form->{globalproject_id};
 
2156   $form->language_payment(\%myconfig);
 
2158   Common::webdav_folder($form);
 
2163   display_row($form->{rowcount}) if $form->{rowcount};
 
2167   $main::lxdebug->leave_sub();
 
2170 sub report_for_todo_list {
 
2171   $main::lxdebug->enter_sub();
 
2173   my $form     = $main::form;
 
2175   my $quotations = OE->transactions_for_todo_list();
 
2178   if (@{ $quotations }) {
 
2179     my $edit_url = ($::instance_conf->get_feature_experimental_order)
 
2180                  ? build_std_url('script=controller.pl', 'action=Order/edit')
 
2181                  : build_std_url('script=oe.pl', 'action=edit');
 
2183     $content     = $form->parse_html_template('oe/report_for_todo_list', { 'QUOTATIONS' => $quotations,
 
2184                                                                            'edit_url'   => $edit_url });
 
2187   $main::lxdebug->leave_sub();
 
2192 sub edit_periodic_invoices_config {
 
2193   $::lxdebug->enter_sub();
 
2195   $::form->{type} = 'sales_order';
 
2200   $config = SL::YAML::Load($::form->{periodic_invoices_config}) if $::form->{periodic_invoices_config};
 
2202   if ('HASH' ne ref $config) {
 
2203     $config =  { periodicity             => 'm',
 
2204                  order_value_periodicity => 'p', # = same as periodicity
 
2205                  start_date_as_date      => $::form->{transdate} || $::form->current_date,
 
2206                  extend_automatically_by => 12,
 
2210   # for older configs, replace email preset text if not yet set.
 
2211   $config->{email_subject} ||= GenericTranslations->get(language_id => $::form->{lanuage_id}, translation_type => "preset_text_periodic_invoices_email_subject");
 
2212   $config->{email_body}    ||= GenericTranslations->get(language_id => $::form->{lanuage_id}, translation_type => "salutation_general")
 
2213                              . GenericTranslations->get(language_id => $::form->{lanuage_id}, translation_type => "salutation_punctuation_mark")
 
2215                              . GenericTranslations->get(language_id => $::form->{lanuage_id}, translation_type => "preset_text_periodic_invoices_email_body");
 
2216   $config->{email_body}      =~ s{\A[ \n\r]+|[ \n\r]+\Z}{}g;
 
2218   $config->{periodicity}             = 'm' if none { $_ eq $config->{periodicity}             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES;
 
2219   $config->{order_value_periodicity} = 'p' if none { $_ eq $config->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES);
 
2221   $::form->get_lists(printers => "ALL_PRINTERS",
 
2222                      charts   => { key       => 'ALL_CHARTS',
 
2223                                    transdate => 'current_date' });
 
2225   $::form->{AR}    = [ grep { $_->{link} =~ m/(?:^|:)AR(?::|$)/ } @{ $::form->{ALL_CHARTS} } ];
 
2226   $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
 
2228   if ($::form->{customer_id}) {
 
2229     $::form->{ALL_CONTACTS} = SL::DB::Manager::Contact->get_all_sorted(where => [ cp_cv_id => $::form->{customer_id} ]);
 
2230     $::form->{email_recipient_invoice_address} = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id})->invoice_mail;
 
2233   $::form->header(no_layout => 1);
 
2234   print $::form->parse_html_template('oe/edit_periodic_invoices_config', {config => $config});
 
2236   $::lxdebug->leave_sub();
 
2239 sub save_periodic_invoices_config {
 
2240   $::lxdebug->enter_sub();
 
2242   $::form->{type} = 'sales_order';
 
2246   $::form->isblank('start_date_as_date', $::locale->text('The start date is missing.'));
 
2248   my $config = { active                  => $::form->{active}     ? 1 : 0,
 
2249                  terminated              => $::form->{terminated} ? 1 : 0,
 
2250                  direct_debit            => $::form->{direct_debit} ? 1 : 0,
 
2251                  periodicity             => (any { $_ eq $::form->{periodicity}             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES)              ? $::form->{periodicity}             : 'm',
 
2252                  order_value_periodicity => (any { $_ eq $::form->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES)) ? $::form->{order_value_periodicity} : 'p',
 
2253                  start_date_as_date      => $::form->{start_date_as_date},
 
2254                  end_date_as_date        => $::form->{end_date_as_date},
 
2255                  first_billing_date_as_date => $::form->{first_billing_date_as_date},
 
2256                  print                   => $::form->{print} ? 1 : 0,
 
2257                  printer_id              => $::form->{print} ? $::form->{printer_id} * 1 : undef,
 
2258                  copies                  => $::form->{copies} * 1 ? $::form->{copies} : 1,
 
2259                  extend_automatically_by => $::form->{extend_automatically_by} * 1 || undef,
 
2260                  ar_chart_id             => $::form->{ar_chart_id} * 1,
 
2261                  send_email                 => $::form->{send_email} ? 1 : 0,
 
2262                  email_recipient_contact_id => $::form->{email_recipient_contact_id} * 1 || undef,
 
2263                  email_recipient_address    => $::form->{email_recipient_address},
 
2264                  email_sender               => $::form->{email_sender},
 
2265                  email_subject              => $::form->{email_subject},
 
2266                  email_body                 => $::form->{email_body},
 
2269   $::form->{periodic_invoices_config} = SL::YAML::Dump($config);
 
2271   $::form->{title} = $::locale->text('Edit the configuration for periodic invoices');
 
2273   print $::form->parse_html_template('oe/save_periodic_invoices_config', $config);
 
2275   $::lxdebug->leave_sub();
 
2278 sub _remove_full_delivered_rows {
 
2280   my @fields = map { s/_1$//; $_ } grep { m/_1$/ } keys %{ $::form };
 
2283   my $removed_rows = 0;
 
2285   while ($row < $::form->{rowcount}) {
 
2287     next unless $::form->{"id_$row"};
 
2288     my $base_factor = SL::DB::Manager::Unit->find_by(name => $::form->{"unit_$row"})->base_factor;
 
2289     my $base_qty = $::form->parse_amount(\%::myconfig, $::form->{"qty_$row"}) *  $base_factor;
 
2290     my $ship_qty = $::form->{"ship_$row"} *  $base_factor;
 
2291     #$main::lxdebug->message(LXDebug->DEBUG2(),"shipto=".$ship_qty." qty=".$base_qty);
 
2293     if (!$ship_qty || ($ship_qty < $base_qty)) {
 
2294       $::form->{"qty_$row"}  = $::form->format_amount(\%::myconfig, ($base_qty - $ship_qty) / $base_factor );
 
2295       $::form->{"ship_$row"} = 0;
 
2296       push @new_rows, { map { $_ => $::form->{"${_}_${row}"} } @fields };
 
2302   $::form->redo_rows(\@fields, \@new_rows, scalar(@new_rows), $::form->{rowcount});
 
2303   $::form->{rowcount} -= $removed_rows;
 
2306 sub _oe_remove_delivered_or_billed_rows {
 
2309   return if !$params{id} || !$params{type};
 
2311   my $ord_quot = SL::DB::Order->new(id => $params{id})->load;
 
2312   return if !$ord_quot;
 
2314   # Prüfung ob itemlinks existieren, falls ja dann neue Implementierung
 
2316   if (  $params{type} eq 'delivered' ) {
 
2317       my $orderitem = SL::DB::Manager::OrderItem->get_first( where => [trans_id => $ord_quot->id]);
 
2319           my @links = $orderitem->linked_records(to => 'SL::DB::DeliveryOrderItem');
 
2320           if ( scalar(@links ) > 0 ) {
 
2321               #$main::lxdebug->message(LXDebug->DEBUG2(),"item recordlinks vorhanden");
 
2322               return _remove_full_delivered_rows();
 
2328     to        =>   $params{type} eq 'delivered' ? 'DeliveryOrder' : 'Invoice',
 
2329     via       => [ $params{type} eq 'delivered' ? qw(Order)       : qw(Order DeliveryOrder) ],
 
2332   my %handled_base_qtys;
 
2333   foreach my $record (@{ $ord_quot->linked_records(%args) }) {
 
2334     next if $ord_quot->is_sales != $record->is_sales;
 
2335     next if $record->type eq 'invoice' && $record->storno;
 
2337     foreach my $item (@{ $record->items }) {
 
2338       my $key  = $item->parts_id;
 
2339       $key    .= ':' . $item->serialnumber if $item->serialnumber;
 
2340       $handled_base_qtys{$key} += $item->qty * $item->unit_obj->base_factor;
 
2344   _remove_billed_or_delivered_rows(quantities => \%handled_base_qtys);
 
2348   foreach my $action (qw(delete delivery_order invoice print purchase_order quotation
 
2349                          request_for_quotation sales_order save save_and_close save_as_new ship_to update)) {
 
2350     if ($::form->{"action_${action}"}) {
 
2356   $::form->error($::locale->text('No action defined.'));