1 package SL::Controller::Order;
 
   4 use parent qw(SL::Controller::Base);
 
   6 use SL::Helper::Flash qw(flash_later);
 
   7 use SL::Presenter::Tag qw(select_tag hidden_tag);
 
   8 use SL::Locale::String qw(t8);
 
   9 use SL::SessionFile::Random;
 
  14 use SL::Util qw(trim);
 
  20 use SL::DB::PartsGroup;
 
  23 use SL::DB::RecordLink;
 
  25 use SL::Helper::CreatePDF qw(:all);
 
  26 use SL::Helper::PrintOptions;
 
  27 use SL::Helper::ShippedQty;
 
  28 use SL::Helper::UserPreferences::PositionsScrollbar;
 
  29 use SL::Helper::UserPreferences::UpdatePositions;
 
  31 use SL::Controller::Helper::GetModels;
 
  33 use List::Util qw(first sum0);
 
  34 use List::UtilsBy qw(sort_by uniq_by);
 
  35 use List::MoreUtils qw(any none pairwise first_index);
 
  36 use English qw(-no_match_vars);
 
  41 use Rose::Object::MakeMethods::Generic
 
  43  scalar => [ qw(item_ids_to_delete) ],
 
  44  'scalar --get_set_init' => [ qw(order valid_types type cv p multi_items_models all_price_factors search_cvpartnumber show_update_button) ],
 
  49 __PACKAGE__->run_before('check_auth');
 
  51 __PACKAGE__->run_before('recalc',
 
  52                         only => [ qw(save save_as_new save_and_delivery_order save_and_invoice save_and_ap_transaction
 
  55 __PACKAGE__->run_before('get_unalterable_data',
 
  56                         only => [ qw(save save_as_new save_and_delivery_order save_and_invoice save_and_ap_transaction
 
  67   $self->order->transdate(DateTime->now_local());
 
  68   my $extra_days = $self->{type} eq 'sales_quotation' ? $::instance_conf->get_reqdate_interval       :
 
  69                    $self->{type} eq 'sales_order'     ? $::instance_conf->get_delivery_date_interval : 1;
 
  70   $self->order->reqdate(DateTime->today_local->next_workday(extra_days => $extra_days)) if !$self->order->reqdate;
 
  76     title => $self->get_title_for('add'),
 
  77     %{$self->{template_args}}
 
  81 # edit an existing order
 
  89     # this is to edit an order from an unsaved order object
 
  91     # set item ids to new fake id, to identify them as new items
 
  92     foreach my $item (@{$self->order->items_sorted}) {
 
  93       $item->{new_fake_id} = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
 
  95     # trigger rendering values for second row/longdescription as hidden,
 
  96     # because they are loaded only on demand. So we need to keep the values
 
  98     $_->{render_second_row}      = 1 for @{ $self->order->items_sorted };
 
  99     $_->{render_longdescription} = 1 for @{ $self->order->items_sorted };
 
 106     title => $self->get_title_for('edit'),
 
 107     %{$self->{template_args}}
 
 111 # edit a collective order (consisting of one or more existing orders)
 
 112 sub action_edit_collective {
 
 116   my @multi_ids = map {
 
 117     $_ =~ m{^multi_id_(\d+)$} && $::form->{'multi_id_' . $1} && $::form->{'trans_id_' . $1} && $::form->{'trans_id_' . $1}
 
 118   } grep { $_ =~ m{^multi_id_\d+$} } keys %$::form;
 
 120   # fall back to add if no ids are given
 
 121   if (scalar @multi_ids == 0) {
 
 126   # fall back to save as new if only one id is given
 
 127   if (scalar @multi_ids == 1) {
 
 128     $self->order(SL::DB::Order->new(id => $multi_ids[0])->load);
 
 129     $self->action_save_as_new();
 
 133   # make new order from given orders
 
 134   my @multi_orders = map { SL::DB::Order->new(id => $_)->load } @multi_ids;
 
 135   $self->{converted_from_oe_id} = join ' ', map { $_->id } @multi_orders;
 
 136   $self->order(SL::DB::Order->new_from_multi(\@multi_orders, sort_sources_by => 'transdate'));
 
 138   $self->action_edit();
 
 145   my $errors = $self->delete();
 
 147   if (scalar @{ $errors }) {
 
 148     $self->js->flash('error', $_) foreach @{ $errors };
 
 149     return $self->js->render();
 
 152   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been deleted')
 
 153            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been deleted')
 
 154            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been deleted')
 
 155            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been deleted')
 
 157   flash_later('info', $text);
 
 159   my @redirect_params = (
 
 164   $self->redirect_to(@redirect_params);
 
 171   my $errors = $self->save();
 
 173   if (scalar @{ $errors }) {
 
 174     $self->js->flash('error', $_) foreach @{ $errors };
 
 175     return $self->js->render();
 
 178   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been saved')
 
 179            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been saved')
 
 180            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been saved')
 
 181            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been saved')
 
 183   flash_later('info', $text);
 
 185   my @redirect_params = (
 
 188     id     => $self->order->id,
 
 191   $self->redirect_to(@redirect_params);
 
 194 # save the order as new document an open it for edit
 
 195 sub action_save_as_new {
 
 198   my $order = $self->order;
 
 201     $self->js->flash('error', t8('This object has not been saved yet.'));
 
 202     return $self->js->render();
 
 205   # load order from db to check if values changed
 
 206   my $saved_order = SL::DB::Order->new(id => $order->id)->load;
 
 209   # Lets assign a new number if the user hasn't changed the previous one.
 
 210   # If it has been changed manually then use it as-is.
 
 211   $new_attrs{number}    = (trim($order->number) eq $saved_order->number)
 
 213                         : trim($order->number);
 
 215   # Clear transdate unless changed
 
 216   $new_attrs{transdate} = ($order->transdate == $saved_order->transdate)
 
 217                         ? DateTime->today_local
 
 220   # Set new reqdate unless changed
 
 221   if ($order->reqdate == $saved_order->reqdate) {
 
 222     my $extra_days = $self->{type} eq 'sales_quotation' ? $::instance_conf->get_reqdate_interval       :
 
 223                      $self->{type} eq 'sales_order'     ? $::instance_conf->get_delivery_date_interval : 1;
 
 224     $new_attrs{reqdate} = DateTime->today_local->next_workday(extra_days => $extra_days);
 
 226     $new_attrs{reqdate} = $order->reqdate;
 
 230   $new_attrs{employee}  = SL::DB::Manager::Employee->current;
 
 232   # Create new record from current one
 
 233   $self->order(SL::DB::Order->new_from($order, destination_type => $order->type, attributes => \%new_attrs));
 
 235   # no linked records on save as new
 
 236   delete $::form->{$_} for qw(converted_from_oe_id converted_from_orderitems_ids);
 
 239   $self->action_save();
 
 244 # This is called if "print" is pressed in the print dialog.
 
 245 # If PDF creation was requested and succeeded, the pdf is offered for download
 
 246 # via send_file (which uses ajax in this case).
 
 250   my $errors = $self->save();
 
 252   if (scalar @{ $errors }) {
 
 253     $self->js->flash('error', $_) foreach @{ $errors };
 
 254     return $self->js->render();
 
 257   $self->js_reset_order_and_item_ids_after_save;
 
 259   my $format      = $::form->{print_options}->{format};
 
 260   my $media       = $::form->{print_options}->{media};
 
 261   my $formname    = $::form->{print_options}->{formname};
 
 262   my $copies      = $::form->{print_options}->{copies};
 
 263   my $groupitems  = $::form->{print_options}->{groupitems};
 
 265   # only pdf and opendocument by now
 
 266   if (none { $format eq $_ } qw(pdf opendocument opendocument_pdf)) {
 
 267     return $self->js->flash('error', t8('Format \'#1\' is not supported yet/anymore.', $format))->render;
 
 270   # only screen or printer by now
 
 271   if (none { $media eq $_ } qw(screen printer)) {
 
 272     return $self->js->flash('error', t8('Media \'#1\' is not supported yet/anymore.', $media))->render;
 
 276   $language = SL::DB::Language->new(id => $::form->{print_options}->{language_id})->load if $::form->{print_options}->{language_id};
 
 278   # create a form for generate_attachment_filename
 
 279   my $form   = Form->new;
 
 280   $form->{$self->nr_key()}  = $self->order->number;
 
 281   $form->{type}             = $self->type;
 
 282   $form->{format}           = $format;
 
 283   $form->{formname}         = $formname;
 
 284   $form->{language}         = '_' . $language->template_code if $language;
 
 285   my $pdf_filename          = $form->generate_attachment_filename();
 
 288   my @errors = generate_pdf($self->order, \$pdf, { format     => $format,
 
 289                                                    formname   => $formname,
 
 290                                                    language   => $language,
 
 291                                                    groupitems => $groupitems });
 
 292   if (scalar @errors) {
 
 293     return $self->js->flash('error', t8('Conversion to PDF failed: #1', $errors[0]))->render;
 
 296   if ($media eq 'screen') {
 
 298     $self->js->flash('info', t8('The PDF has been created'));
 
 301       type         => SL::MIME->mime_type_from_ext($pdf_filename),
 
 302       name         => $pdf_filename,
 
 306   } elsif ($media eq 'printer') {
 
 308     my $printer_id = $::form->{print_options}->{printer_id};
 
 309     SL::DB::Printer->new(id => $printer_id)->load->print_document(
 
 314     $self->js->flash('info', t8('The PDF has been printed'));
 
 317   # copy file to webdav folder
 
 318   if ($self->order->number && $::instance_conf->get_webdav_documents) {
 
 319     my $webdav = SL::Webdav->new(
 
 321       number   => $self->order->number,
 
 323     my $webdav_file = SL::Webdav::File->new(
 
 325       filename => $pdf_filename,
 
 328       $webdav_file->store(data => \$pdf);
 
 331       $self->js->flash('error', t8('Storing PDF to webdav folder failed: #1', $@));
 
 334   if ($self->order->number && $::instance_conf->get_doc_storage) {
 
 336       SL::File->save(object_id     => $self->order->id,
 
 337                      object_type   => $self->type,
 
 338                      mime_type     => 'application/pdf',
 
 340                      file_type     => 'document',
 
 341                      file_name     => $pdf_filename,
 
 342                      file_contents => $pdf);
 
 345       $self->js->flash('error', t8('Storing PDF in storage backend failed: #1', $@));
 
 351 # open the email dialog
 
 352 sub action_show_email_dialog {
 
 355   my $cv_method = $self->cv;
 
 357   if (!$self->order->$cv_method) {
 
 358     return $self->js->flash('error', $self->cv eq 'customer' ? t8('Cannot send E-mail without customer given') : t8('Cannot send E-mail without vendor given'))
 
 363   $email_form->{to}   = $self->order->contact->cp_email if $self->order->contact;
 
 364   $email_form->{to} ||= $self->order->$cv_method->email;
 
 365   $email_form->{cc}   = $self->order->$cv_method->cc;
 
 366   $email_form->{bcc}  = join ', ', grep $_, $self->order->$cv_method->bcc, SL::DB::Default->get->global_bcc;
 
 367   # Todo: get addresses from shipto, if any
 
 369   my $form = Form->new;
 
 370   $form->{$self->nr_key()}  = $self->order->number;
 
 371   $form->{formname}         = $self->type;
 
 372   $form->{type}             = $self->type;
 
 373   $form->{language}         = '_' . $self->order->language->template_code if $self->order->language;
 
 374   $form->{language_id}      = $self->order->language->id                  if $self->order->language;
 
 375   $form->{format}           = 'pdf';
 
 377   $email_form->{subject}             = $form->generate_email_subject();
 
 378   $email_form->{attachment_filename} = $form->generate_attachment_filename();
 
 379   $email_form->{message}             = $form->generate_email_body();
 
 380   $email_form->{js_send_function}    = 'kivi.Order.send_email()';
 
 382   my %files = $self->get_files_for_email_dialog();
 
 383   my $dialog_html = $self->render('common/_send_email_dialog', { output => 0 },
 
 384                                   email_form  => $email_form,
 
 385                                   show_bcc    => $::auth->assert('email_bcc', 'may fail'),
 
 387                                   is_customer => $self->cv eq 'customer',
 
 391       ->run('kivi.Order.show_email_dialog', $dialog_html)
 
 398 # Todo: handling error messages: flash is not displayed in dialog, but in the main form
 
 399 sub action_send_email {
 
 402   my $errors = $self->save();
 
 404   if (scalar @{ $errors }) {
 
 405     $self->js->run('kivi.Order.close_email_dialog');
 
 406     $self->js->flash('error', $_) foreach @{ $errors };
 
 407     return $self->js->render();
 
 410   $self->js_reset_order_and_item_ids_after_save;
 
 412   my $email_form  = delete $::form->{email_form};
 
 413   my %field_names = (to => 'email');
 
 415   $::form->{ $field_names{$_} // $_ } = $email_form->{$_} for keys %{ $email_form };
 
 417   # for Form::cleanup which may be called in Form::send_email
 
 418   $::form->{cwd}    = getcwd();
 
 419   $::form->{tmpdir} = $::lx_office_conf{paths}->{userspath};
 
 421   $::form->{$_}     = $::form->{print_options}->{$_} for keys %{ $::form->{print_options} };
 
 422   $::form->{media}  = 'email';
 
 424   if (($::form->{attachment_policy} // '') !~ m{^(?:old_file|no_file)$}) {
 
 426     $language = SL::DB::Language->new(id => $::form->{print_options}->{language_id})->load if $::form->{print_options}->{language_id};
 
 429     my @errors = generate_pdf($self->order, \$pdf, {media      => $::form->{media},
 
 430                                                     format     => $::form->{print_options}->{format},
 
 431                                                     formname   => $::form->{print_options}->{formname},
 
 432                                                     language   => $language,
 
 433                                                     groupitems => $::form->{print_options}->{groupitems}});
 
 434     if (scalar @errors) {
 
 435       return $self->js->flash('error', t8('Conversion to PDF failed: #1', $errors[0]))->render($self);
 
 438     my $sfile = SL::SessionFile::Random->new(mode => "w");
 
 439     $sfile->fh->print($pdf);
 
 442     $::form->{tmpfile} = $sfile->file_name;
 
 443     $::form->{tmpdir}  = $sfile->get_path; # for Form::cleanup which may be called in Form::send_email
 
 446   $::form->send_email(\%::myconfig, 'pdf');
 
 449   my $intnotes = $self->order->intnotes;
 
 450   $intnotes   .= "\n\n" if $self->order->intnotes;
 
 451   $intnotes   .= t8('[email]')                                                                                        . "\n";
 
 452   $intnotes   .= t8('Date')       . ": " . $::locale->format_date_object(DateTime->now_local, precision => 'seconds') . "\n";
 
 453   $intnotes   .= t8('To (email)') . ": " . $::form->{email}                                                           . "\n";
 
 454   $intnotes   .= t8('Cc')         . ": " . $::form->{cc}                                                              . "\n"    if $::form->{cc};
 
 455   $intnotes   .= t8('Bcc')        . ": " . $::form->{bcc}                                                             . "\n"    if $::form->{bcc};
 
 456   $intnotes   .= t8('Subject')    . ": " . $::form->{subject}                                                         . "\n\n";
 
 457   $intnotes   .= t8('Message')    . ": " . $::form->{message};
 
 459   $self->order->update_attributes(intnotes => $intnotes);
 
 462       ->val('#order_intnotes', $intnotes)
 
 463       ->run('kivi.Order.close_email_dialog')
 
 464       ->flash('info', t8('The email has been sent.'))
 
 468 # open the periodic invoices config dialog
 
 470 # If there are values in the form (i.e. dialog was opened before),
 
 471 # then use this values. Create new ones, else.
 
 472 sub action_show_periodic_invoices_config_dialog {
 
 475   my $config = make_periodic_invoices_config_from_yaml(delete $::form->{config});
 
 476   $config  ||= SL::DB::Manager::PeriodicInvoicesConfig->find_by(oe_id => $::form->{id}) if $::form->{id};
 
 477   $config  ||= SL::DB::PeriodicInvoicesConfig->new(periodicity             => 'm',
 
 478                                                    order_value_periodicity => 'p', # = same as periodicity
 
 479                                                    start_date_as_date      => $::form->{transdate_as_date} || $::form->current_date,
 
 480                                                    extend_automatically_by => 12,
 
 482                                                    email_subject           => GenericTranslations->get(
 
 483                                                                                 language_id      => $::form->{language_id},
 
 484                                                                                 translation_type =>"preset_text_periodic_invoices_email_subject"),
 
 485                                                    email_body              => GenericTranslations->get(
 
 486                                                                                 language_id      => $::form->{language_id},
 
 487                                                                                 translation_type =>"preset_text_periodic_invoices_email_body"),
 
 489   $config->periodicity('m')             if none { $_ eq $config->periodicity             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES;
 
 490   $config->order_value_periodicity('p') if none { $_ eq $config->order_value_periodicity } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES);
 
 492   $::form->get_lists(printers => "ALL_PRINTERS",
 
 493                      charts   => { key       => 'ALL_CHARTS',
 
 494                                    transdate => 'current_date' });
 
 496   $::form->{AR} = [ grep { $_->{link} =~ m/(?:^|:)AR(?::|$)/ } @{ $::form->{ALL_CHARTS} } ];
 
 498   if ($::form->{customer_id}) {
 
 499     $::form->{ALL_CONTACTS} = SL::DB::Manager::Contact->get_all_sorted(where => [ cp_cv_id => $::form->{customer_id} ]);
 
 500     $::form->{email_recipient_invoice_address} = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id})->invoice_mail;
 
 503   $self->render('oe/edit_periodic_invoices_config', { layout => 0 },
 
 505                 popup_js_close_function  => 'kivi.Order.close_periodic_invoices_config_dialog()',
 
 506                 popup_js_assign_function => 'kivi.Order.assign_periodic_invoices_config()',
 
 511 # assign the values of the periodic invoices config dialog
 
 512 # as yaml in the hidden tag and set the status.
 
 513 sub action_assign_periodic_invoices_config {
 
 516   $::form->isblank('start_date_as_date', $::locale->text('The start date is missing.'));
 
 518   my $config = { active                     => $::form->{active}       ? 1 : 0,
 
 519                  terminated                 => $::form->{terminated}   ? 1 : 0,
 
 520                  direct_debit               => $::form->{direct_debit} ? 1 : 0,
 
 521                  periodicity                => (any { $_ eq $::form->{periodicity}             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES)              ? $::form->{periodicity}             : 'm',
 
 522                  order_value_periodicity    => (any { $_ eq $::form->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES)) ? $::form->{order_value_periodicity} : 'p',
 
 523                  start_date_as_date         => $::form->{start_date_as_date},
 
 524                  end_date_as_date           => $::form->{end_date_as_date},
 
 525                  first_billing_date_as_date => $::form->{first_billing_date_as_date},
 
 526                  print                      => $::form->{print}      ? 1                         : 0,
 
 527                  printer_id                 => $::form->{print}      ? $::form->{printer_id} * 1 : undef,
 
 528                  copies                     => $::form->{copies} * 1 ? $::form->{copies}         : 1,
 
 529                  extend_automatically_by    => $::form->{extend_automatically_by}    * 1 || undef,
 
 530                  ar_chart_id                => $::form->{ar_chart_id} * 1,
 
 531                  send_email                 => $::form->{send_email} ? 1 : 0,
 
 532                  email_recipient_contact_id => $::form->{email_recipient_contact_id} * 1 || undef,
 
 533                  email_recipient_address    => $::form->{email_recipient_address},
 
 534                  email_sender               => $::form->{email_sender},
 
 535                  email_subject              => $::form->{email_subject},
 
 536                  email_body                 => $::form->{email_body},
 
 539   my $periodic_invoices_config = SL::YAML::Dump($config);
 
 541   my $status = $self->get_periodic_invoices_status($config);
 
 544     ->remove('#order_periodic_invoices_config')
 
 545     ->insertAfter(hidden_tag('order.periodic_invoices_config', $periodic_invoices_config), '#periodic_invoices_status')
 
 546     ->run('kivi.Order.close_periodic_invoices_config_dialog')
 
 547     ->html('#periodic_invoices_status', $status)
 
 548     ->flash('info', t8('The periodic invoices config has been assigned.'))
 
 552 sub action_get_has_active_periodic_invoices {
 
 555   my $config = make_periodic_invoices_config_from_yaml(delete $::form->{config});
 
 556   $config  ||= SL::DB::Manager::PeriodicInvoicesConfig->find_by(oe_id => $::form->{id}) if $::form->{id};
 
 558   my $has_active_periodic_invoices =
 
 559        $self->type eq sales_order_type()
 
 562     && (!$config->end_date || ($config->end_date > DateTime->today_local))
 
 563     && $config->get_previous_billed_period_start_date;
 
 565   $_[0]->render(\ !!$has_active_periodic_invoices, { type => 'text' });
 
 568 # save the order and redirect to the frontend subroutine for a new
 
 570 sub action_save_and_delivery_order {
 
 573   my $errors = $self->save();
 
 575   if (scalar @{ $errors }) {
 
 576     $self->js->flash('error', $_) foreach @{ $errors };
 
 577     return $self->js->render();
 
 580   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been saved')
 
 581            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been saved')
 
 582            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been saved')
 
 583            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been saved')
 
 585   flash_later('info', $text);
 
 587   my @redirect_params = (
 
 588     controller => 'oe.pl',
 
 589     action     => 'oe_delivery_order_from_order',
 
 590     id         => $self->order->id,
 
 593   $self->redirect_to(@redirect_params);
 
 596 # save the order and redirect to the frontend subroutine for a new
 
 598 sub action_save_and_invoice {
 
 601   my $errors = $self->save();
 
 603   if (scalar @{ $errors }) {
 
 604     $self->js->flash('error', $_) foreach @{ $errors };
 
 605     return $self->js->render();
 
 608   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been saved')
 
 609            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been saved')
 
 610            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been saved')
 
 611            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been saved')
 
 613   flash_later('info', $text);
 
 615   my @redirect_params = (
 
 616     controller => 'oe.pl',
 
 617     action     => 'oe_invoice_from_order',
 
 618     id         => $self->order->id,
 
 621   $self->redirect_to(@redirect_params);
 
 624 # workflow from sales quotation to sales order
 
 625 sub action_sales_order {
 
 626   $_[0]->workflow_sales_or_purchase_order();
 
 629 # workflow from rfq to purchase order
 
 630 sub action_purchase_order {
 
 631   $_[0]->workflow_sales_or_purchase_order();
 
 634 # workflow from purchase order to ap transaction
 
 635 sub action_save_and_ap_transaction {
 
 638   my $errors = $self->save();
 
 640   if (scalar @{ $errors }) {
 
 641     $self->js->flash('error', $_) foreach @{ $errors };
 
 642     return $self->js->render();
 
 645   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been saved')
 
 646            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been saved')
 
 647            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been saved')
 
 648            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been saved')
 
 650   flash_later('info', $text);
 
 652   my @redirect_params = (
 
 653     controller => 'ap.pl',
 
 654     action     => 'add_from_purchase_order',
 
 655     id         => $self->order->id,
 
 658   $self->redirect_to(@redirect_params);
 
 661 # set form elements in respect to a changed customer or vendor
 
 663 # This action is called on an change of the customer/vendor picker.
 
 664 sub action_customer_vendor_changed {
 
 667   setup_order_from_cv($self->order);
 
 670   my $cv_method = $self->cv;
 
 672   if ($self->order->$cv_method->contacts && scalar @{ $self->order->$cv_method->contacts } > 0) {
 
 673     $self->js->show('#cp_row');
 
 675     $self->js->hide('#cp_row');
 
 678   if ($self->order->$cv_method->shipto && scalar @{ $self->order->$cv_method->shipto } > 0) {
 
 679     $self->js->show('#shipto_row');
 
 681     $self->js->hide('#shipto_row');
 
 684   $self->js->val( '#order_salesman_id',      $self->order->salesman_id)        if $self->order->is_sales;
 
 687     ->replaceWith('#order_cp_id',            $self->build_contact_select)
 
 688     ->replaceWith('#order_shipto_id',        $self->build_shipto_select)
 
 689     ->replaceWith('#business_info_row',      $self->build_business_info_row)
 
 690     ->val(        '#order_taxzone_id',       $self->order->taxzone_id)
 
 691     ->val(        '#order_taxincluded',      $self->order->taxincluded)
 
 692     ->val(        '#order_payment_id',       $self->order->payment_id)
 
 693     ->val(        '#order_delivery_term_id', $self->order->delivery_term_id)
 
 694     ->val(        '#order_intnotes',         $self->order->intnotes)
 
 695     ->val(        '#language_id',            $self->order->$cv_method->language_id)
 
 696     ->focus(      '#order_' . $self->cv . '_id');
 
 698   $self->js_redisplay_amounts_and_taxes;
 
 699   $self->js_redisplay_cvpartnumbers;
 
 703 # open the dialog for customer/vendor details
 
 704 sub action_show_customer_vendor_details_dialog {
 
 707   my $is_customer = 'customer' eq $::form->{vc};
 
 710     $cv = SL::DB::Customer->new(id => $::form->{vc_id})->load;
 
 712     $cv = SL::DB::Vendor->new(id => $::form->{vc_id})->load;
 
 715   my %details = map { $_ => $cv->$_ } @{$cv->meta->columns};
 
 716   $details{discount_as_percent} = $cv->discount_as_percent;
 
 717   $details{creditlimt}          = $cv->creditlimit_as_number;
 
 718   $details{business}            = $cv->business->description      if $cv->business;
 
 719   $details{language}            = $cv->language_obj->description  if $cv->language_obj;
 
 720   $details{delivery_terms}      = $cv->delivery_term->description if $cv->delivery_term;
 
 721   $details{payment_terms}       = $cv->payment->description       if $cv->payment;
 
 722   $details{pricegroup}          = $cv->pricegroup->pricegroup     if $is_customer && $cv->pricegroup;
 
 724   foreach my $entry (@{ $cv->shipto }) {
 
 725     push @{ $details{SHIPTO} },   { map { $_ => $entry->$_ } @{$entry->meta->columns} };
 
 727   foreach my $entry (@{ $cv->contacts }) {
 
 728     push @{ $details{CONTACTS} }, { map { $_ => $entry->$_ } @{$entry->meta->columns} };
 
 731   $_[0]->render('common/show_vc_details', { layout => 0 },
 
 732                 is_customer => $is_customer,
 
 737 # called if a unit in an existing item row is changed
 
 738 sub action_unit_changed {
 
 741   my $idx  = first_index { $_ eq $::form->{item_id} } @{ $::form->{orderitem_ids} };
 
 742   my $item = $self->order->items_sorted->[$idx];
 
 744   my $old_unit_obj = SL::DB::Unit->new(name => $::form->{old_unit})->load;
 
 745   $item->sellprice($item->unit_obj->convert_to($item->sellprice, $old_unit_obj));
 
 750     ->run('kivi.Order.update_sellprice', $::form->{item_id}, $item->sellprice_as_number);
 
 751   $self->js_redisplay_line_values;
 
 752   $self->js_redisplay_amounts_and_taxes;
 
 756 # add an item row for a new item entered in the input row
 
 757 sub action_add_item {
 
 760   my $form_attr = $::form->{add_item};
 
 762   return unless $form_attr->{parts_id};
 
 764   my $item = new_item($self->order, $form_attr);
 
 766   $self->order->add_items($item);
 
 770   $self->get_item_cvpartnumber($item);
 
 772   my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
 
 773   my $row_as_html = $self->p->render('order/tabs/_row',
 
 779   if ($::form->{insert_before_item_id}) {
 
 781       ->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
 
 784       ->append('#row_table_id', $row_as_html);
 
 787   if ( $item->part->is_assortment ) {
 
 788     $form_attr->{qty_as_number} = 1 unless $form_attr->{qty_as_number};
 
 789     foreach my $assortment_item ( @{$item->part->assortment_items} ) {
 
 790       my $attr = { parts_id => $assortment_item->parts_id,
 
 791                    qty      => $assortment_item->qty * $::form->parse_amount(\%::myconfig, $form_attr->{qty_as_number}), # TODO $form_attr->{unit}
 
 792                    unit     => $assortment_item->unit,
 
 793                    description => $assortment_item->part->description,
 
 795       my $item = new_item($self->order, $attr);
 
 797       # set discount to 100% if item isn't supposed to be charged, overwriting any customer discount
 
 798       $item->discount(1) unless $assortment_item->charge;
 
 800       $self->order->add_items( $item );
 
 802       $self->get_item_cvpartnumber($item);
 
 803       my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
 
 804       my $row_as_html = $self->p->render('order/tabs/_row',
 
 809       if ($::form->{insert_before_item_id}) {
 
 811           ->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
 
 814           ->append('#row_table_id', $row_as_html);
 
 820     ->val('.add_item_input', '')
 
 821     ->run('kivi.Order.init_row_handlers')
 
 822     ->run('kivi.Order.renumber_positions')
 
 823     ->focus('#add_item_parts_id_name');
 
 825   $self->js->run('kivi.Order.row_table_scroll_down') if !$::form->{insert_before_item_id};
 
 827   $self->js_redisplay_amounts_and_taxes;
 
 831 # open the dialog for entering multiple items at once
 
 832 sub action_show_multi_items_dialog {
 
 833   $_[0]->render('order/tabs/_multi_items_dialog', { layout => 0 },
 
 834                 all_partsgroups => SL::DB::Manager::PartsGroup->get_all);
 
 837 # update the filter results in the multi item dialog
 
 838 sub action_multi_items_update_result {
 
 841   $::form->{multi_items}->{filter}->{obsolete} = 0;
 
 843   my $count = $_[0]->multi_items_models->count;
 
 846     my $text = SL::Presenter::EscapedText->new(text => $::locale->text('No results.'));
 
 847     $_[0]->render($text, { layout => 0 });
 
 848   } elsif ($count > $max_count) {
 
 849     my $text = SL::Presenter::EscapedText->new(text => $::locale->text('Too many results (#1 from #2).', $count, $max_count));
 
 850     $_[0]->render($text, { layout => 0 });
 
 852     my $multi_items = $_[0]->multi_items_models->get;
 
 853     $_[0]->render('order/tabs/_multi_items_result', { layout => 0 },
 
 854                   multi_items => $multi_items);
 
 858 # add item rows for multiple items at once
 
 859 sub action_add_multi_items {
 
 862   my @form_attr = grep { $_->{qty_as_number} } @{ $::form->{add_multi_items} };
 
 863   return $self->js->render() unless scalar @form_attr;
 
 866   foreach my $attr (@form_attr) {
 
 867     my $item = new_item($self->order, $attr);
 
 869     if ( $item->part->is_assortment ) {
 
 870       foreach my $assortment_item ( @{$item->part->assortment_items} ) {
 
 871         my $attr = { parts_id => $assortment_item->parts_id,
 
 872                      qty      => $assortment_item->qty * $item->qty, # TODO $form_attr->{unit}
 
 873                      unit     => $assortment_item->unit,
 
 874                      description => $assortment_item->part->description,
 
 876         my $item = new_item($self->order, $attr);
 
 878         # set discount to 100% if item isn't supposed to be charged, overwriting any customer discount
 
 879         $item->discount(1) unless $assortment_item->charge;
 
 884   $self->order->add_items(@items);
 
 888   foreach my $item (@items) {
 
 889     $self->get_item_cvpartnumber($item);
 
 890     my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
 
 891     my $row_as_html = $self->p->render('order/tabs/_row',
 
 897     if ($::form->{insert_before_item_id}) {
 
 899         ->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
 
 902         ->append('#row_table_id', $row_as_html);
 
 907     ->run('kivi.Order.close_multi_items_dialog')
 
 908     ->run('kivi.Order.init_row_handlers')
 
 909     ->run('kivi.Order.renumber_positions')
 
 910     ->focus('#add_item_parts_id_name');
 
 912   $self->js->run('kivi.Order.row_table_scroll_down') if !$::form->{insert_before_item_id};
 
 914   $self->js_redisplay_amounts_and_taxes;
 
 918 # recalculate all linetotals, amounts and taxes and redisplay them
 
 919 sub action_recalc_amounts_and_taxes {
 
 924   $self->js_redisplay_line_values;
 
 925   $self->js_redisplay_amounts_and_taxes;
 
 929 # redisplay item rows if they are sorted by an attribute
 
 930 sub action_reorder_items {
 
 934     partnumber   => sub { $_[0]->part->partnumber },
 
 935     description  => sub { $_[0]->description },
 
 936     qty          => sub { $_[0]->qty },
 
 937     sellprice    => sub { $_[0]->sellprice },
 
 938     discount     => sub { $_[0]->discount },
 
 939     cvpartnumber => sub { $_[0]->{cvpartnumber} },
 
 942   $self->get_item_cvpartnumber($_) for @{$self->order->items_sorted};
 
 944   my $method = $sort_keys{$::form->{order_by}};
 
 945   my @to_sort = map { { old_pos => $_->position, order_by => $method->($_) } } @{ $self->order->items_sorted };
 
 946   if ($::form->{sort_dir}) {
 
 947     if ( $::form->{order_by} =~ m/qty|sellprice|discount/ ){
 
 948       @to_sort = sort { $a->{order_by} <=> $b->{order_by} } @to_sort;
 
 950       @to_sort = sort { $a->{order_by} cmp $b->{order_by} } @to_sort;
 
 953     if ( $::form->{order_by} =~ m/qty|sellprice|discount/ ){
 
 954       @to_sort = sort { $b->{order_by} <=> $a->{order_by} } @to_sort;
 
 956       @to_sort = sort { $b->{order_by} cmp $a->{order_by} } @to_sort;
 
 960     ->run('kivi.Order.redisplay_items', \@to_sort)
 
 964 # show the popup to choose a price/discount source
 
 965 sub action_price_popup {
 
 968   my $idx  = first_index { $_ eq $::form->{item_id} } @{ $::form->{orderitem_ids} };
 
 969   my $item = $self->order->items_sorted->[$idx];
 
 971   $self->render_price_dialog($item);
 
 974 # get the longdescription for an item if the dialog to enter/change the
 
 975 # longdescription was opened and the longdescription is empty
 
 977 # If this item is new, get the longdescription from Part.
 
 978 # Otherwise get it from OrderItem.
 
 979 sub action_get_item_longdescription {
 
 982   if ($::form->{item_id}) {
 
 983     $longdescription = SL::DB::OrderItem->new(id => $::form->{item_id})->load->longdescription;
 
 984   } elsif ($::form->{parts_id}) {
 
 985     $longdescription = SL::DB::Part->new(id => $::form->{parts_id})->load->notes;
 
 987   $_[0]->render(\ $longdescription, { type => 'text' });
 
 990 # load the second row for one or more items
 
 992 # This action gets the html code for all items second rows by rendering a template for
 
 993 # the second row and sets the html code via client js.
 
 994 sub action_load_second_rows {
 
 997   $self->recalc() if $self->order->is_sales; # for margin calculation
 
 999   foreach my $item_id (@{ $::form->{item_ids} }) {
 
1000     my $idx  = first_index { $_ eq $item_id } @{ $::form->{orderitem_ids} };
 
1001     my $item = $self->order->items_sorted->[$idx];
 
1003     $self->js_load_second_row($item, $item_id, 0);
 
1006   $self->js->run('kivi.Order.init_row_handlers') if $self->order->is_sales; # for lastcosts change-callback
 
1008   $self->js->render();
 
1011 # update description, notes and sellprice from master data
 
1012 sub action_update_row_from_master_data {
 
1015   foreach my $item_id (@{ $::form->{item_ids} }) {
 
1016     my $idx  = first_index { $_ eq $item_id } @{ $::form->{orderitem_ids} };
 
1017     my $item = $self->order->items_sorted->[$idx];
 
1019     $item->description($item->part->description);
 
1020     $item->longdescription($item->part->notes);
 
1022     my $price_source = SL::PriceSource->new(record_item => $item, record => $self->order);
 
1025     if ($item->part->is_assortment) {
 
1026     # add assortment items with price 0, as the components carry the price
 
1027       $price_src = $price_source->price_from_source("");
 
1028       $price_src->price(0);
 
1030       $price_src = $price_source->best_price
 
1031                  ? $price_source->best_price
 
1032                  : $price_source->price_from_source("");
 
1033       $price_src->price(0) if !$price_source->best_price;
 
1036     $item->sellprice($price_src->price);
 
1037     $item->active_price_source($price_src);
 
1040       ->run('kivi.Order.update_sellprice', $item_id, $item->sellprice_as_number)
 
1041       ->html('.row_entry:has(#item_' . $item_id . ') [name = "partnumber"] a', $item->part->partnumber)
 
1042       ->val ('.row_entry:has(#item_' . $item_id . ') [name = "order.orderitems[].description"]', $item->description)
 
1043       ->val ('.row_entry:has(#item_' . $item_id . ') [name = "order.orderitems[].longdescription"]', $item->longdescription);
 
1045     if ($self->search_cvpartnumber) {
 
1046       $self->get_item_cvpartnumber($item);
 
1047       $self->js->html('.row_entry:has(#item_' . $item_id . ') [name = "cvpartnumber"]', $item->{cvpartnumber});
 
1052   $self->js_redisplay_line_values;
 
1053   $self->js_redisplay_amounts_and_taxes;
 
1055   $self->js->render();
 
1058 sub js_load_second_row {
 
1059   my ($self, $item, $item_id, $do_parse) = @_;
 
1062     # Parse values from form (they are formated while rendering (template)).
 
1063     # Workaround to pre-parse number-cvars (parse_custom_variable_values does not parse number values).
 
1064     # This parsing is not necessary at all, if we assure that the second row/cvars are only loaded once.
 
1065     foreach my $var (@{ $item->cvars_by_config }) {
 
1066       $var->unparsed_value($::form->parse_amount(\%::myconfig, $var->{__unparsed_value})) if ($var->config->type eq 'number' && exists($var->{__unparsed_value}));
 
1068     $item->parse_custom_variable_values;
 
1071   my $row_as_html = $self->p->render('order/tabs/_second_row', ITEM => $item, TYPE => $self->type);
 
1074     ->html('#second_row_' . $item_id, $row_as_html)
 
1075     ->data('#second_row_' . $item_id, 'loaded', 1);
 
1078 sub js_redisplay_line_values {
 
1081   my $is_sales = $self->order->is_sales;
 
1083   # sales orders with margins
 
1088        $::form->format_amount(\%::myconfig, $_->{linetotal},     2, 0),
 
1089        $::form->format_amount(\%::myconfig, $_->{marge_total},   2, 0),
 
1090        $::form->format_amount(\%::myconfig, $_->{marge_percent}, 2, 0),
 
1091       ]} @{ $self->order->items_sorted };
 
1095        $::form->format_amount(\%::myconfig, $_->{linetotal},     2, 0),
 
1096       ]} @{ $self->order->items_sorted };
 
1100     ->run('kivi.Order.redisplay_line_values', $is_sales, \@data);
 
1103 sub js_redisplay_amounts_and_taxes {
 
1106   if (scalar @{ $self->{taxes} }) {
 
1107     $self->js->show('#taxincluded_row_id');
 
1109     $self->js->hide('#taxincluded_row_id');
 
1112   if ($self->order->taxincluded) {
 
1113     $self->js->hide('#subtotal_row_id');
 
1115     $self->js->show('#subtotal_row_id');
 
1118   if ($self->order->is_sales) {
 
1119     my $is_neg = $self->order->marge_total < 0;
 
1121       ->html('#marge_total_id',   $::form->format_amount(\%::myconfig, $self->order->marge_total,   2))
 
1122       ->html('#marge_percent_id', $::form->format_amount(\%::myconfig, $self->order->marge_percent, 2))
 
1123       ->action_if( $is_neg, 'addClass',    '#marge_total_id',        'plus0')
 
1124       ->action_if( $is_neg, 'addClass',    '#marge_percent_id',      'plus0')
 
1125       ->action_if( $is_neg, 'addClass',    '#marge_percent_sign_id', 'plus0')
 
1126       ->action_if(!$is_neg, 'removeClass', '#marge_total_id',        'plus0')
 
1127       ->action_if(!$is_neg, 'removeClass', '#marge_percent_id',      'plus0')
 
1128       ->action_if(!$is_neg, 'removeClass', '#marge_percent_sign_id', 'plus0');
 
1132     ->html('#netamount_id', $::form->format_amount(\%::myconfig, $self->order->netamount, -2))
 
1133     ->html('#amount_id',    $::form->format_amount(\%::myconfig, $self->order->amount,    -2))
 
1134     ->remove('.tax_row')
 
1135     ->insertBefore($self->build_tax_rows, '#amount_row_id');
 
1138 sub js_redisplay_cvpartnumbers {
 
1141   $self->get_item_cvpartnumber($_) for @{$self->order->items_sorted};
 
1143   my @data = map {[$_->{cvpartnumber}]} @{ $self->order->items_sorted };
 
1146     ->run('kivi.Order.redisplay_cvpartnumbers', \@data);
 
1149 sub js_reset_order_and_item_ids_after_save {
 
1153     ->val('#id', $self->order->id)
 
1154     ->val('#converted_from_oe_id', '')
 
1155     ->val('#order_' . $self->nr_key(), $self->order->number);
 
1158   foreach my $form_item_id (@{ $::form->{orderitem_ids} }) {
 
1159     next if !$self->order->items_sorted->[$idx]->id;
 
1160     next if $form_item_id !~ m{^new};
 
1162       ->val ('[name="orderitem_ids[+]"][value="' . $form_item_id . '"]', $self->order->items_sorted->[$idx]->id)
 
1163       ->val ('#item_' . $form_item_id, $self->order->items_sorted->[$idx]->id)
 
1164       ->attr('#item_' . $form_item_id, "id", 'item_' . $self->order->items_sorted->[$idx]->id);
 
1168   $self->js->val('[name="converted_from_orderitems_ids[+]"]', '');
 
1175 sub init_valid_types {
 
1176   [ sales_order_type(), purchase_order_type(), sales_quotation_type(), request_quotation_type() ];
 
1182   if (none { $::form->{type} eq $_ } @{$self->valid_types}) {
 
1183     die "Not a valid type for order";
 
1186   $self->type($::form->{type});
 
1192   my $cv = (any { $self->type eq $_ } (sales_order_type(),    sales_quotation_type()))   ? 'customer'
 
1193          : (any { $self->type eq $_ } (purchase_order_type(), request_quotation_type())) ? 'vendor'
 
1194          : die "Not a valid type for order";
 
1199 sub init_search_cvpartnumber {
 
1202   my $user_prefs = SL::Helper::UserPreferences::PartPickerSearch->new();
 
1203   my $search_cvpartnumber;
 
1204   $search_cvpartnumber = !!$user_prefs->get_sales_search_customer_partnumber() if $self->cv eq 'customer';
 
1205   $search_cvpartnumber = !!$user_prefs->get_purchase_search_makemodel()        if $self->cv eq 'vendor';
 
1207   return $search_cvpartnumber;
 
1210 sub init_show_update_button {
 
1213   !!SL::Helper::UserPreferences::UpdatePositions->new()->get_show_update_button();
 
1224 # model used to filter/display the parts in the multi-items dialog
 
1225 sub init_multi_items_models {
 
1226   SL::Controller::Helper::GetModels->new(
 
1227     controller     => $_[0],
 
1229     with_objects   => [ qw(unit_obj) ],
 
1230     disable_plugin => 'paginated',
 
1231     source         => $::form->{multi_items},
 
1237       partnumber  => t8('Partnumber'),
 
1238       description => t8('Description')}
 
1242 sub init_all_price_factors {
 
1243   SL::DB::Manager::PriceFactor->get_all;
 
1249   my $right_for = { map { $_ => $_.'_edit' } @{$self->valid_types} };
 
1251   my $right   = $right_for->{ $self->type };
 
1252   $right    ||= 'DOES_NOT_EXIST';
 
1254   $::auth->assert($right);
 
1257 # build the selection box for contacts
 
1259 # Needed, if customer/vendor changed.
 
1260 sub build_contact_select {
 
1263   select_tag('order.cp_id', [ $self->order->{$self->cv}->contacts ],
 
1264     value_key  => 'cp_id',
 
1265     title_key  => 'full_name_dep',
 
1266     default    => $self->order->cp_id,
 
1268     style      => 'width: 300px',
 
1272 # build the selection box for shiptos
 
1274 # Needed, if customer/vendor changed.
 
1275 sub build_shipto_select {
 
1278   select_tag('order.shipto_id', [ $self->order->{$self->cv}->shipto ],
 
1279     value_key  => 'shipto_id',
 
1280     title_key  => 'displayable_id',
 
1281     default    => $self->order->shipto_id,
 
1283     style      => 'width: 300px',
 
1287 # render the info line for business
 
1289 # Needed, if customer/vendor changed.
 
1290 sub build_business_info_row
 
1292   $_[0]->p->render('order/tabs/_business_info_row', SELF => $_[0]);
 
1295 # build the rows for displaying taxes
 
1297 # Called if amounts where recalculated and redisplayed.
 
1298 sub build_tax_rows {
 
1302   foreach my $tax (sort { $a->{tax}->rate cmp $b->{tax}->rate } @{ $self->{taxes} }) {
 
1303     $rows_as_html .= $self->p->render('order/tabs/_tax_row', TAX => $tax, TAXINCLUDED => $self->order->taxincluded);
 
1305   return $rows_as_html;
 
1309 sub render_price_dialog {
 
1310   my ($self, $record_item) = @_;
 
1312   my $price_source = SL::PriceSource->new(record_item => $record_item, record => $self->order);
 
1316       'kivi.io.price_chooser_dialog',
 
1317       t8('Available Prices'),
 
1318       $self->render('order/tabs/_price_sources_dialog', { output => 0 }, price_source => $price_source)
 
1323 #     $self->js->text('#dialog_flash_error_content', join ' ', @errors);
 
1324 #     $self->js->show('#dialog_flash_error');
 
1333   return if !$::form->{id};
 
1335   $self->order(SL::DB::Order->new(id => $::form->{id})->load);
 
1338 # load or create a new order object
 
1340 # And assign changes from the form to this object.
 
1341 # If the order is loaded from db, check if items are deleted in the form,
 
1342 # remove them form the object and collect them for removing from db on saving.
 
1343 # Then create/update items from form (via make_item) and add them.
 
1347   # add_items adds items to an order with no items for saving, but they cannot
 
1348   # be retrieved via items until the order is saved. Adding empty items to new
 
1349   # order here solves this problem.
 
1351   $order   = SL::DB::Order->new(id => $::form->{id})->load(with => [ 'orderitems', 'orderitems.part' ]) if $::form->{id};
 
1352   $order ||= SL::DB::Order->new(orderitems => [],
 
1353                                 quotation  => (any { $self->type eq $_ } (sales_quotation_type(), request_quotation_type())));
 
1355   my $cv_id_method = $self->cv . '_id';
 
1356   if (!$::form->{id} && $::form->{$cv_id_method}) {
 
1357     $order->$cv_id_method($::form->{$cv_id_method});
 
1358     setup_order_from_cv($order);
 
1361   my $form_orderitems               = delete $::form->{order}->{orderitems};
 
1362   my $form_periodic_invoices_config = delete $::form->{order}->{periodic_invoices_config};
 
1364   $order->assign_attributes(%{$::form->{order}});
 
1366   if (my $periodic_invoices_config_attrs = $form_periodic_invoices_config ? SL::YAML::Load($form_periodic_invoices_config) : undef) {
 
1367     my $periodic_invoices_config = $order->periodic_invoices_config || $order->periodic_invoices_config(SL::DB::PeriodicInvoicesConfig->new);
 
1368     $periodic_invoices_config->assign_attributes(%$periodic_invoices_config_attrs);
 
1371   # remove deleted items
 
1372   $self->item_ids_to_delete([]);
 
1373   foreach my $idx (reverse 0..$#{$order->orderitems}) {
 
1374     my $item = $order->orderitems->[$idx];
 
1375     if (none { $item->id == $_->{id} } @{$form_orderitems}) {
 
1376       splice @{$order->orderitems}, $idx, 1;
 
1377       push @{$self->item_ids_to_delete}, $item->id;
 
1383   foreach my $form_attr (@{$form_orderitems}) {
 
1384     my $item = make_item($order, $form_attr);
 
1385     $item->position($pos);
 
1389   $order->add_items(grep {!$_->id} @items);
 
1394 # create or update items from form
 
1396 # Make item objects from form values. For items already existing read from db.
 
1397 # Create a new item else. And assign attributes.
 
1399   my ($record, $attr) = @_;
 
1402   $item = first { $_->id == $attr->{id} } @{$record->items} if $attr->{id};
 
1404   my $is_new = !$item;
 
1406   # add_custom_variables adds cvars to an orderitem with no cvars for saving, but
 
1407   # they cannot be retrieved via custom_variables until the order/orderitem is
 
1408   # saved. Adding empty custom_variables to new orderitem here solves this problem.
 
1409   $item ||= SL::DB::OrderItem->new(custom_variables => []);
 
1411   $item->assign_attributes(%$attr);
 
1412   $item->longdescription($item->part->notes)                     if $is_new && !defined $attr->{longdescription};
 
1413   $item->project_id($record->globalproject_id)                   if $is_new && !defined $attr->{project_id};
 
1414   $item->lastcost($record->is_sales ? $item->part->lastcost : 0) if $is_new && !defined $attr->{lastcost_as_number};
 
1421 # This is used to add one item
 
1423   my ($record, $attr) = @_;
 
1425   my $item = SL::DB::OrderItem->new;
 
1427   # Remove attributes where the user left or set the inputs empty.
 
1428   # So these attributes will be undefined and we can distinguish them
 
1429   # from zero later on.
 
1430   for (qw(qty_as_number sellprice_as_number discount_as_percent)) {
 
1431     delete $attr->{$_} if $attr->{$_} eq '';
 
1434   $item->assign_attributes(%$attr);
 
1436   my $part         = SL::DB::Part->new(id => $attr->{parts_id})->load;
 
1437   my $price_source = SL::PriceSource->new(record_item => $item, record => $record);
 
1439   $item->unit($part->unit) if !$item->unit;
 
1442   if ( $part->is_assortment ) {
 
1443     # add assortment items with price 0, as the components carry the price
 
1444     $price_src = $price_source->price_from_source("");
 
1445     $price_src->price(0);
 
1446   } elsif (defined $item->sellprice) {
 
1447     $price_src = $price_source->price_from_source("");
 
1448     $price_src->price($item->sellprice);
 
1450     $price_src = $price_source->best_price
 
1451            ? $price_source->best_price
 
1452            : $price_source->price_from_source("");
 
1453     $price_src->price(0) if !$price_source->best_price;
 
1457   if (defined $item->discount) {
 
1458     $discount_src = $price_source->discount_from_source("");
 
1459     $discount_src->discount($item->discount);
 
1461     $discount_src = $price_source->best_discount
 
1462                   ? $price_source->best_discount
 
1463                   : $price_source->discount_from_source("");
 
1464     $discount_src->discount(0) if !$price_source->best_discount;
 
1468   $new_attr{part}                   = $part;
 
1469   $new_attr{description}            = $part->description     if ! $item->description;
 
1470   $new_attr{qty}                    = 1.0                    if ! $item->qty;
 
1471   $new_attr{price_factor_id}        = $part->price_factor_id if ! $item->price_factor_id;
 
1472   $new_attr{sellprice}              = $price_src->price;
 
1473   $new_attr{discount}               = $discount_src->discount;
 
1474   $new_attr{active_price_source}    = $price_src;
 
1475   $new_attr{active_discount_source} = $discount_src;
 
1476   $new_attr{longdescription}        = $part->notes           if ! defined $attr->{longdescription};
 
1477   $new_attr{project_id}             = $record->globalproject_id;
 
1478   $new_attr{lastcost}               = $record->is_sales ? $part->lastcost : 0;
 
1480   # add_custom_variables adds cvars to an orderitem with no cvars for saving, but
 
1481   # they cannot be retrieved via custom_variables until the order/orderitem is
 
1482   # saved. Adding empty custom_variables to new orderitem here solves this problem.
 
1483   $new_attr{custom_variables} = [];
 
1485   $item->assign_attributes(%new_attr);
 
1490 sub setup_order_from_cv {
 
1493   $order->$_($order->customervendor->$_) for (qw(taxzone_id payment_id delivery_term_id));
 
1495   $order->intnotes($order->customervendor->notes);
 
1497   if ($order->is_sales) {
 
1498     $order->salesman_id($order->customer->salesman_id || SL::DB::Manager::Employee->current->id);
 
1499     $order->taxincluded(defined($order->customer->taxincluded_checked)
 
1500                         ? $order->customer->taxincluded_checked
 
1501                         : $::myconfig{taxincluded_checked});
 
1506 # recalculate prices and taxes
 
1508 # Using the PriceTaxCalculator. Store linetotals in the item objects.
 
1512   # bb: todo: currency later
 
1513   $self->order->currency_id($::instance_conf->get_currency_id());
 
1515   my %pat = $self->order->calculate_prices_and_taxes();
 
1517   $self->{taxes} = [];
 
1518   foreach my $tax_id (keys %{ $pat{taxes_by_tax_id} }) {
 
1519     my $netamount = sum0 map { $pat{amounts}->{$_}->{amount} } grep { $pat{amounts}->{$_}->{tax_id} == $tax_id } keys %{ $pat{amounts} };
 
1521     push(@{ $self->{taxes} }, { amount    => $pat{taxes_by_tax_id}->{$tax_id},
 
1522                                 netamount => $netamount,
 
1523                                 tax       => SL::DB::Tax->new(id => $tax_id)->load });
 
1525   pairwise { $a->{linetotal} = $b->{linetotal} } @{$self->order->items_sorted}, @{$pat{items}};
 
1528 # get data for saving, printing, ..., that is not changed in the form
 
1530 # Only cvars for now.
 
1531 sub get_unalterable_data {
 
1534   foreach my $item (@{ $self->order->items }) {
 
1535     # autovivify all cvars that are not in the form (cvars_by_config can do it).
 
1536     # workaround to pre-parse number-cvars (parse_custom_variable_values does not parse number values).
 
1537     foreach my $var (@{ $item->cvars_by_config }) {
 
1538       $var->unparsed_value($::form->parse_amount(\%::myconfig, $var->{__unparsed_value})) if ($var->config->type eq 'number' && exists($var->{__unparsed_value}));
 
1540     $item->parse_custom_variable_values;
 
1546 # And remove related files in the spool directory
 
1551   my $db     = $self->order->db;
 
1553   $db->with_transaction(
 
1555       my @spoolfiles = grep { $_ } map { $_->spoolfile } @{ SL::DB::Manager::Status->get_all(where => [ trans_id => $self->order->id ]) };
 
1556       $self->order->delete;
 
1557       my $spool = $::lx_office_conf{paths}->{spool};
 
1558       unlink map { "$spool/$_" } @spoolfiles if $spool;
 
1561   }) || push(@{$errors}, $db->error);
 
1568 # And delete items that are deleted in the form.
 
1573   my $db     = $self->order->db;
 
1575   $db->with_transaction(sub {
 
1576     SL::DB::OrderItem->new(id => $_)->delete for @{$self->item_ids_to_delete || []};
 
1577     $self->order->save(cascade => 1);
 
1580     if ($::form->{converted_from_oe_id}) {
 
1581       my @converted_from_oe_ids = split ' ', $::form->{converted_from_oe_id};
 
1582       foreach my $converted_from_oe_id (@converted_from_oe_ids) {
 
1583         my $src = SL::DB::Order->new(id => $converted_from_oe_id)->load;
 
1584         $src->update_attributes(closed => 1) if $src->type =~ /_quotation$/;
 
1585         $src->link_to_record($self->order);
 
1587       if (scalar @{ $::form->{converted_from_orderitems_ids} || [] }) {
 
1589         foreach (@{ $self->order->items_sorted }) {
 
1590           my $from_id = $::form->{converted_from_orderitems_ids}->[$idx];
 
1592           SL::DB::RecordLink->new(from_table => 'orderitems',
 
1593                                   from_id    => $from_id,
 
1594                                   to_table   => 'orderitems',
 
1602   }) || push(@{$errors}, $db->error);
 
1607 sub workflow_sales_or_purchase_order {
 
1611   my $errors = $self->save();
 
1613   if (scalar @{ $errors }) {
 
1614     $self->js->flash('error', $_) foreach @{ $errors };
 
1615     return $self->js->render();
 
1618   my $destination_type = $::form->{type} eq sales_quotation_type()   ? sales_order_type()
 
1619                        : $::form->{type} eq request_quotation_type() ? purchase_order_type()
 
1620                        : $::form->{type} eq purchase_order_type()    ? sales_order_type()
 
1621                        : $::form->{type} eq sales_order_type()       ? purchase_order_type()
 
1624   $self->order(SL::DB::Order->new_from($self->order, destination_type => $destination_type));
 
1625   $self->{converted_from_oe_id} = delete $::form->{id};
 
1627   # set item ids to new fake id, to identify them as new items
 
1628   foreach my $item (@{$self->order->items_sorted}) {
 
1629     $item->{new_fake_id} = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
 
1633   $::form->{type} = $destination_type;
 
1634   $self->type($self->init_type);
 
1635   $self->cv  ($self->init_cv);
 
1639   $self->get_unalterable_data();
 
1640   $self->pre_render();
 
1642   # trigger rendering values for second row/longdescription as hidden,
 
1643   # because they are loaded only on demand. So we need to keep the values
 
1645   $_->{render_second_row}      = 1 for @{ $self->order->items_sorted };
 
1646   $_->{render_longdescription} = 1 for @{ $self->order->items_sorted };
 
1650     title => $self->get_title_for('edit'),
 
1651     %{$self->{template_args}}
 
1659   $self->{all_taxzones}               = SL::DB::Manager::TaxZone->get_all_sorted();
 
1660   $self->{all_departments}            = SL::DB::Manager::Department->get_all_sorted();
 
1661   $self->{all_employees}              = SL::DB::Manager::Employee->get_all(where => [ or => [ id => $self->order->employee_id,
 
1664   $self->{all_salesmen}               = SL::DB::Manager::Employee->get_all(where => [ or => [ id => $self->order->salesman_id,
 
1667   $self->{all_payment_terms}          = SL::DB::Manager::PaymentTerm->get_all_sorted(where => [ or => [ id => $self->order->payment_id,
 
1669   $self->{all_delivery_terms}         = SL::DB::Manager::DeliveryTerm->get_all_sorted();
 
1670   $self->{current_employee_id}        = SL::DB::Manager::Employee->current->id;
 
1671   $self->{periodic_invoices_status}   = $self->get_periodic_invoices_status($self->order->periodic_invoices_config);
 
1672   $self->{order_probabilities}        = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
 
1673   $self->{positions_scrollbar_height} = SL::Helper::UserPreferences::PositionsScrollbar->new()->get_height();
 
1675   my $print_form = Form->new('');
 
1676   $print_form->{type}        = $self->type;
 
1677   $print_form->{printers}    = SL::DB::Manager::Printer->get_all_sorted;
 
1678   $print_form->{languages}   = SL::DB::Manager::Language->get_all_sorted;
 
1679   $print_form->{language_id} = $self->order->language_id;
 
1680   $self->{print_options}     = SL::Helper::PrintOptions->get_print_options(
 
1681     form => $print_form,
 
1682     options => {dialog_name_prefix => 'print_options.',
 
1686                 no_opendocument    => 0,
 
1690   foreach my $item (@{$self->order->orderitems}) {
 
1691     my $price_source = SL::PriceSource->new(record_item => $item, record => $self->order);
 
1692     $item->active_price_source(   $price_source->price_from_source(   $item->active_price_source   ));
 
1693     $item->active_discount_source($price_source->discount_from_source($item->active_discount_source));
 
1696   if (any { $self->type eq $_ } (sales_order_type(), purchase_order_type())) {
 
1697     # calculate shipped qtys here to prevent calling calculate for every item via the items method
 
1698     SL::Helper::ShippedQty->new->calculate($self->order)->write_to_objects;
 
1701   if ($self->order->number && $::instance_conf->get_webdav) {
 
1702     my $webdav = SL::Webdav->new(
 
1703       type     => $self->type,
 
1704       number   => $self->order->number,
 
1706     my @all_objects = $webdav->get_all_objects;
 
1707     @{ $self->{template_args}->{WEBDAV} } = map { { name => $_->filename,
 
1709                                                     link => File::Spec->catfile($_->full_filedescriptor),
 
1713   $self->get_item_cvpartnumber($_) for @{$self->order->items_sorted};
 
1715   $::request->{layout}->use_javascript("${_}.js") for qw(kivi.SalesPurchase kivi.Order kivi.File ckeditor/ckeditor ckeditor/adapters/jquery edit_periodic_invoices_config calculate_qty);
 
1716   $self->setup_edit_action_bar;
 
1719 sub setup_edit_action_bar {
 
1720   my ($self, %params) = @_;
 
1722   my $deletion_allowed = (any { $self->type eq $_ } (sales_quotation_type(), request_quotation_type()))
 
1723                       || (($self->type eq sales_order_type())    && $::instance_conf->get_sales_order_show_delete)
 
1724                       || (($self->type eq purchase_order_type()) && $::instance_conf->get_purchase_order_show_delete);
 
1726   for my $bar ($::request->layout->get('actionbar')) {
 
1731           call      => [ 'kivi.Order.save', 'save', $::instance_conf->get_order_warn_duplicate_parts,
 
1732                                                     $::instance_conf->get_order_warn_no_deliverydate,
 
1734           checks    => [ 'kivi.Order.check_save_active_periodic_invoices' ],
 
1738           call      => [ 'kivi.Order.save', 'save_as_new', $::instance_conf->get_order_warn_duplicate_parts ],
 
1739           checks    => [ 'kivi.Order.check_save_active_periodic_invoices' ],
 
1740           disabled  => !$self->order->id ? t8('This object has not been saved yet.') : undef,
 
1742       ], # end of combobox "Save"
 
1749           t8('Save and Sales Order'),
 
1750           submit   => [ '#order_form', { action => "Order/sales_order" } ],
 
1751           only_if  => (any { $self->type eq $_ } (sales_quotation_type(), purchase_order_type())),
 
1752           disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
 
1755           t8('Save and Purchase Order'),
 
1756           submit   => [ '#order_form', { action => "Order/purchase_order" } ],
 
1757           only_if  => (any { $self->type eq $_ } (sales_order_type(), request_quotation_type())),
 
1758           disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
 
1761           t8('Save and Delivery Order'),
 
1762           call      => [ 'kivi.Order.save', 'save_and_delivery_order', $::instance_conf->get_order_warn_duplicate_parts,
 
1763                                                                        $::instance_conf->get_order_warn_no_deliverydate,
 
1765           checks    => [ 'kivi.Order.check_save_active_periodic_invoices' ],
 
1766           only_if   => (any { $self->type eq $_ } (sales_order_type(), purchase_order_type()))
 
1769           t8('Save and Invoice'),
 
1770           call      => [ 'kivi.Order.save', 'save_and_invoice', $::instance_conf->get_order_warn_duplicate_parts ],
 
1771           checks    => [ 'kivi.Order.check_save_active_periodic_invoices' ],
 
1774           t8('Save and AP Transaction'),
 
1775           call      => [ 'kivi.Order.save', 'save_and_ap_transaction', $::instance_conf->get_order_warn_duplicate_parts ],
 
1776           only_if   => (any { $self->type eq $_ } (purchase_order_type()))
 
1779       ], # end of combobox "Workflow"
 
1786           t8('Save and print'),
 
1787           call => [ 'kivi.Order.show_print_options', $::instance_conf->get_order_warn_duplicate_parts ],
 
1790           t8('Save and E-mail'),
 
1791           call => [ 'kivi.Order.email', $::instance_conf->get_order_warn_duplicate_parts ],
 
1794           t8('Download attachments of all parts'),
 
1795           call     => [ 'kivi.File.downloadOrderitemsFiles', $::form->{type}, $::form->{id} ],
 
1796           disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
 
1797           only_if  => $::instance_conf->get_doc_storage,
 
1799       ], # end of combobox "Export"
 
1803         call     => [ 'kivi.Order.delete_order' ],
 
1804         confirm  => $::locale->text('Do you really want to delete this object?'),
 
1805         disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
 
1806         only_if  => $deletion_allowed,
 
1813   my ($order, $pdf_ref, $params) = @_;
 
1817   my $print_form = Form->new('');
 
1818   $print_form->{type}        = $order->type;
 
1819   $print_form->{formname}    = $params->{formname} || $order->type;
 
1820   $print_form->{format}      = $params->{format}   || 'pdf';
 
1821   $print_form->{media}       = $params->{media}    || 'file';
 
1822   $print_form->{groupitems}  = $params->{groupitems};
 
1823   $print_form->{media}       = 'file'                             if $print_form->{media} eq 'screen';
 
1825   $order->language($params->{language});
 
1826   $order->flatten_to_form($print_form, format_amounts => 1);
 
1830   if ($print_form->{format} =~ /(opendocument|oasis)/i) {
 
1831     $template_ext  = 'odt';
 
1832     $template_type = 'OpenDocument';
 
1835   # search for the template
 
1836   my ($template_file, @template_files) = SL::Helper::CreatePDF->find_template(
 
1837     name        => $print_form->{formname},
 
1838     extension   => $template_ext,
 
1839     email       => $print_form->{media} eq 'email',
 
1840     language    => $params->{language},
 
1841     printer_id  => $print_form->{printer_id},  # todo
 
1844   if (!defined $template_file) {
 
1845     push @errors, $::locale->text('Cannot find matching template for this print request. Please contact your template maintainer. I tried these: #1.', join ', ', map { "'$_'"} @template_files);
 
1848   return @errors if scalar @errors;
 
1850   $print_form->throw_on_error(sub {
 
1852       $print_form->prepare_for_printing;
 
1854       $$pdf_ref = SL::Helper::CreatePDF->create_pdf(
 
1855         format        => $print_form->{format},
 
1856         template_type => $template_type,
 
1857         template      => $template_file,
 
1858         variables     => $print_form,
 
1859         variable_content_types => {
 
1860           longdescription => 'html',
 
1861           partnotes       => 'html',
 
1866     } || push @errors, ref($EVAL_ERROR) eq 'SL::X::FormError' ? $EVAL_ERROR->error : $EVAL_ERROR;
 
1872 sub get_files_for_email_dialog {
 
1875   my %files = map { ($_ => []) } qw(versions files vc_files part_files);
 
1877   return %files if !$::instance_conf->get_doc_storage;
 
1879   if ($self->order->id) {
 
1880     $files{versions} = [ SL::File->get_all_versions(object_id => $self->order->id,              object_type => $self->order->type, file_type => 'document') ];
 
1881     $files{files}    = [ SL::File->get_all(         object_id => $self->order->id,              object_type => $self->order->type, file_type => 'attachment') ];
 
1882     $files{vc_files} = [ SL::File->get_all(         object_id => $self->order->{$self->cv}->id, object_type => $self->cv,          file_type => 'attachment') ];
 
1886     uniq_by { $_->{id} }
 
1888       +{ id         => $_->part->id,
 
1889          partnumber => $_->part->partnumber }
 
1890     } @{$self->order->items_sorted};
 
1892   foreach my $part (@parts) {
 
1893     my @pfiles = SL::File->get_all(object_id => $part->{id}, object_type => 'part');
 
1894     push @{ $files{part_files} }, map { +{ %{ $_ }, partnumber => $part->{partnumber} } } @pfiles;
 
1897   foreach my $key (keys %files) {
 
1898     $files{$key} = [ sort_by { lc $_->{db_file}->{file_name} } @{ $files{$key} } ];
 
1904 sub make_periodic_invoices_config_from_yaml {
 
1905   my ($yaml_config) = @_;
 
1907   return if !$yaml_config;
 
1908   my $attr = SL::YAML::Load($yaml_config);
 
1909   return if 'HASH' ne ref $attr;
 
1910   return SL::DB::PeriodicInvoicesConfig->new(%$attr);
 
1914 sub get_periodic_invoices_status {
 
1915   my ($self, $config) = @_;
 
1917   return                      if $self->type ne sales_order_type();
 
1918   return t8('not configured') if !$config;
 
1920   my $active = ('HASH' eq ref $config)                           ? $config->{active}
 
1921              : ('SL::DB::PeriodicInvoicesConfig' eq ref $config) ? $config->active
 
1922              :                                                     die "Cannot get status of periodic invoices config";
 
1924   return $active ? t8('active') : t8('inactive');
 
1928   my ($self, $action) = @_;
 
1930   return '' if none { lc($action)} qw(add edit);
 
1933   # $::locale->text("Add Sales Order");
 
1934   # $::locale->text("Add Purchase Order");
 
1935   # $::locale->text("Add Quotation");
 
1936   # $::locale->text("Add Request for Quotation");
 
1937   # $::locale->text("Edit Sales Order");
 
1938   # $::locale->text("Edit Purchase Order");
 
1939   # $::locale->text("Edit Quotation");
 
1940   # $::locale->text("Edit Request for Quotation");
 
1942   $action = ucfirst(lc($action));
 
1943   return $self->type eq sales_order_type()       ? $::locale->text("$action Sales Order")
 
1944        : $self->type eq purchase_order_type()    ? $::locale->text("$action Purchase Order")
 
1945        : $self->type eq sales_quotation_type()   ? $::locale->text("$action Quotation")
 
1946        : $self->type eq request_quotation_type() ? $::locale->text("$action Request for Quotation")
 
1950 sub get_item_cvpartnumber {
 
1951   my ($self, $item) = @_;
 
1953   return if !$self->search_cvpartnumber;
 
1954   return if !$self->order->customervendor;
 
1956   if ($self->cv eq 'vendor') {
 
1957     my @mms = grep { $_->make eq $self->order->customervendor->id } @{$item->part->makemodels};
 
1958     $item->{cvpartnumber} = $mms[0]->model if scalar @mms;
 
1959   } elsif ($self->cv eq 'customer') {
 
1960     my @cps = grep { $_->customer_id eq $self->order->customervendor->id } @{$item->part->customerprices};
 
1961     $item->{cvpartnumber} = $cps[0]->customer_partnumber if scalar @cps;
 
1965 sub sales_order_type {
 
1969 sub purchase_order_type {
 
1973 sub sales_quotation_type {
 
1977 sub request_quotation_type {
 
1978   'request_quotation';
 
1982   return $_[0]->type eq sales_order_type()       ? 'ordnumber'
 
1983        : $_[0]->type eq purchase_order_type()    ? 'ordnumber'
 
1984        : $_[0]->type eq sales_quotation_type()   ? 'quonumber'
 
1985        : $_[0]->type eq request_quotation_type() ? 'quonumber'
 
1997 SL::Controller::Order - controller for orders
 
2001 This is a new form to enter orders, completely rewritten with the use
 
2002 of controller and java script techniques.
 
2004 The aim is to provide the user a better experience and a faster workflow. Also
 
2005 the code should be more readable, more reliable and better to maintain.
 
2013 One input row, so that input happens every time at the same place.
 
2017 Use of pickers where possible.
 
2021 Possibility to enter more than one item at once.
 
2025 Item list in a scrollable area, so that the workflow buttons stay at
 
2030 Reordering item rows with drag and drop is possible. Sorting item rows is
 
2031 possible (by partnumber, description, qty, sellprice and discount for now).
 
2035 No C<update> is necessary. All entries and calculations are managed
 
2036 with ajax-calls and the page only reloads on C<save>.
 
2040 User can see changes immediately, because of the use of java script
 
2051 =item * C<SL/Controller/Order.pm>
 
2055 =item * C<template/webpages/order/form.html>
 
2059 =item * C<template/webpages/order/tabs/basic_data.html>
 
2061 Main tab for basic_data.
 
2063 This is the only tab here for now. "linked records" and "webdav" tabs are
 
2064 reused from generic code.
 
2068 =item * C<template/webpages/order/tabs/_business_info_row.html>
 
2070 For displaying information on business type
 
2072 =item * C<template/webpages/order/tabs/_item_input.html>
 
2074 The input line for items
 
2076 =item * C<template/webpages/order/tabs/_row.html>
 
2078 One row for already entered items
 
2080 =item * C<template/webpages/order/tabs/_tax_row.html>
 
2082 Displaying tax information
 
2084 =item * C<template/webpages/order/tabs/_multi_items_dialog.html>
 
2086 Dialog for entering more than one item at once
 
2088 =item * C<template/webpages/order/tabs/_multi_items_result.html>
 
2090 Results for the filter in the multi items dialog
 
2092 =item * C<template/webpages/order/tabs/_price_sources_dialog.html>
 
2094 Dialog for selecting price and discount sources
 
2098 =item * C<js/kivi.Order.js>
 
2100 java script functions
 
2112 =item * credit limit
 
2114 =item * more workflows (quotation, rfq)
 
2116 =item * price sources: little symbols showing better price / better discount
 
2118 =item * select units in input row?
 
2120 =item * custom shipto address
 
2122 =item * check for direct delivery (workflow sales order -> purchase order)
 
2124 =item * language / part translations
 
2126 =item * access rights
 
2128 =item * display weights
 
2134 =item * optional client/user behaviour
 
2136 (transactions has to be set - department has to be set -
 
2137  force project if enabled in client config - transport cost reminder)
 
2141 =head1 KNOWN BUGS AND CAVEATS
 
2147 Customer discount is not displayed as a valid discount in price source popup
 
2148 (this might be a bug in price sources)
 
2150 (I cannot reproduce this (Bernd))
 
2154 No indication that <shift>-up/down expands/collapses second row.
 
2158 Inline creation of parts is not currently supported
 
2162 Table header is not sticky in the scrolling area.
 
2166 Sorting does not include C<position>, neither does reordering.
 
2168 This behavior was implemented intentionally. But we can discuss, which behavior
 
2169 should be implemented.
 
2173 C<show_multi_items_dialog> does not use the currently inserted string for
 
2178 =head1 To discuss / Nice to have
 
2184 How to expand/collapse second row. Now it can be done clicking the icon or
 
2189 Possibility to change longdescription in input row?
 
2193 Possibility to select PriceSources in input row?
 
2197 This controller uses a (changed) copy of the template for the PriceSource
 
2198 dialog. Maybe there could be used one code source.
 
2202 Rounding-differences between this controller (PriceTaxCalculator) and the old
 
2203 form. This is not only a problem here, but also in all parts using the PTC.
 
2204 There exists a ticket and a patch. This patch should be testet.
 
2208 An indicator, if the actual inputs are saved (like in an
 
2209 editor or on text processing application).
 
2213 A warning when leaving the page without saveing unchanged inputs.
 
2220 Bernd Bleßmann E<lt>bernd@kivitendo-premium.deE<gt>