Vorbelegte E-Mail-Texte für wiederkehrende Rechnungen genau wie in oe.pl
[kivitendo-erp.git] / SL / Controller / Order.pm
1 package SL::Controller::Order;
2
3 use strict;
4 use parent qw(SL::Controller::Base);
5
6 use SL::Helper::Flash qw(flash_later);
7 use SL::Presenter::Tag qw(select_tag hidden_tag div_tag);
8 use SL::Locale::String qw(t8);
9 use SL::SessionFile::Random;
10 use SL::PriceSource;
11 use SL::Webdav;
12 use SL::File;
13 use SL::MIME;
14 use SL::Util qw(trim);
15 use SL::YAML;
16 use SL::DB::AdditionalBillingAddress;
17 use SL::DB::AuthUser;
18 use SL::DB::History;
19 use SL::DB::Order;
20 use SL::DB::Default;
21 use SL::DB::Unit;
22 use SL::DB::Part;
23 use SL::DB::PartClassification;
24 use SL::DB::PartsGroup;
25 use SL::DB::Printer;
26 use SL::DB::Language;
27 use SL::DB::RecordLink;
28 use SL::DB::RequirementSpec;
29 use SL::DB::Shipto;
30 use SL::DB::Translation;
31
32 use SL::Helper::CreatePDF qw(:all);
33 use SL::Helper::PrintOptions;
34 use SL::Helper::ShippedQty;
35 use SL::Helper::UserPreferences::PositionsScrollbar;
36 use SL::Helper::UserPreferences::UpdatePositions;
37
38 use SL::Controller::Helper::GetModels;
39
40 use List::Util qw(first sum0);
41 use List::UtilsBy qw(sort_by uniq_by);
42 use List::MoreUtils qw(any none pairwise first_index);
43 use English qw(-no_match_vars);
44 use File::Spec;
45 use Cwd;
46 use Sort::Naturally;
47
48 use Rose::Object::MakeMethods::Generic
49 (
50  scalar => [ qw(item_ids_to_delete is_custom_shipto_to_delete) ],
51  'scalar --get_set_init' => [ qw(order valid_types type cv p all_price_factors search_cvpartnumber show_update_button part_picker_classification_ids) ],
52 );
53
54
55 # safety
56 __PACKAGE__->run_before('check_auth');
57
58 __PACKAGE__->run_before('recalc',
59                         only => [ qw(save save_as_new save_and_delivery_order save_and_invoice save_and_ap_transaction
60                                      print send_email) ]);
61
62 __PACKAGE__->run_before('get_unalterable_data',
63                         only => [ qw(save save_as_new save_and_delivery_order save_and_invoice save_and_ap_transaction
64                                      print send_email) ]);
65
66 #
67 # actions
68 #
69
70 # add a new order
71 sub action_add {
72   my ($self) = @_;
73
74   $self->order->transdate(DateTime->now_local());
75   my $extra_days = $self->type eq sales_quotation_type() ? $::instance_conf->get_reqdate_interval       :
76                    $self->type eq sales_order_type()     ? $::instance_conf->get_delivery_date_interval : 1;
77
78   if (   ($self->type eq sales_order_type()     &&  $::instance_conf->get_deliverydate_on)
79       || ($self->type eq sales_quotation_type() &&  $::instance_conf->get_reqdate_on)
80       && (!$self->order->reqdate)) {
81     $self->order->reqdate(DateTime->today_local->next_workday(extra_days => $extra_days));
82   }
83
84
85   $self->pre_render();
86   $self->render(
87     'order/form',
88     title => $self->get_title_for('add'),
89     %{$self->{template_args}}
90   );
91 }
92
93 # edit an existing order
94 sub action_edit {
95   my ($self) = @_;
96
97   if ($::form->{id}) {
98     $self->load_order;
99
100   } else {
101     # this is to edit an order from an unsaved order object
102
103     # set item ids to new fake id, to identify them as new items
104     foreach my $item (@{$self->order->items_sorted}) {
105       $item->{new_fake_id} = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
106     }
107     # trigger rendering values for second row as hidden, because they
108     # are loaded only on demand. So we need to keep the values from
109     # the source.
110     $_->{render_second_row} = 1 for @{ $self->order->items_sorted };
111   }
112
113   $self->recalc();
114   $self->pre_render();
115   $self->render(
116     'order/form',
117     title => $self->get_title_for('edit'),
118     %{$self->{template_args}}
119   );
120 }
121
122 # edit a collective order (consisting of one or more existing orders)
123 sub action_edit_collective {
124   my ($self) = @_;
125
126   # collect order ids
127   my @multi_ids = map {
128     $_ =~ m{^multi_id_(\d+)$} && $::form->{'multi_id_' . $1} && $::form->{'trans_id_' . $1} && $::form->{'trans_id_' . $1}
129   } grep { $_ =~ m{^multi_id_\d+$} } keys %$::form;
130
131   # fall back to add if no ids are given
132   if (scalar @multi_ids == 0) {
133     $self->action_add();
134     return;
135   }
136
137   # fall back to save as new if only one id is given
138   if (scalar @multi_ids == 1) {
139     $self->order(SL::DB::Order->new(id => $multi_ids[0])->load);
140     $self->action_save_as_new();
141     return;
142   }
143
144   # make new order from given orders
145   my @multi_orders = map { SL::DB::Order->new(id => $_)->load } @multi_ids;
146   $self->{converted_from_oe_id} = join ' ', map { $_->id } @multi_orders;
147   $self->order(SL::DB::Order->new_from_multi(\@multi_orders, sort_sources_by => 'transdate'));
148
149   $self->action_edit();
150 }
151
152 # delete the order
153 sub action_delete {
154   my ($self) = @_;
155
156   my $errors = $self->delete();
157
158   if (scalar @{ $errors }) {
159     $self->js->flash('error', $_) foreach @{ $errors };
160     return $self->js->render();
161   }
162
163   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been deleted')
164            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been deleted')
165            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been deleted')
166            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been deleted')
167            : '';
168   flash_later('info', $text);
169
170   my @redirect_params = (
171     action => 'add',
172     type   => $self->type,
173   );
174
175   $self->redirect_to(@redirect_params);
176 }
177
178 # save the order
179 sub action_save {
180   my ($self) = @_;
181
182   my $errors = $self->save();
183
184   if (scalar @{ $errors }) {
185     $self->js->flash('error', $_) foreach @{ $errors };
186     return $self->js->render();
187   }
188
189   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been saved')
190            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been saved')
191            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been saved')
192            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been saved')
193            : '';
194   flash_later('info', $text);
195
196   my @redirect_params = (
197     action => 'edit',
198     type   => $self->type,
199     id     => $self->order->id,
200   );
201
202   $self->redirect_to(@redirect_params);
203 }
204
205 # save the order as new document an open it for edit
206 sub action_save_as_new {
207   my ($self) = @_;
208
209   my $order = $self->order;
210
211   if (!$order->id) {
212     $self->js->flash('error', t8('This object has not been saved yet.'));
213     return $self->js->render();
214   }
215
216   # load order from db to check if values changed
217   my $saved_order = SL::DB::Order->new(id => $order->id)->load;
218
219   my %new_attrs;
220   # Lets assign a new number if the user hasn't changed the previous one.
221   # If it has been changed manually then use it as-is.
222   $new_attrs{number}    = (trim($order->number) eq $saved_order->number)
223                         ? ''
224                         : trim($order->number);
225
226   # Clear transdate unless changed
227   $new_attrs{transdate} = ($order->transdate == $saved_order->transdate)
228                         ? DateTime->today_local
229                         : $order->transdate;
230
231   # Set new reqdate unless changed if it is enabled in client config
232   if ($order->reqdate == $saved_order->reqdate) {
233     my $extra_days = $self->type eq sales_quotation_type() ? $::instance_conf->get_reqdate_interval       :
234                      $self->type eq sales_order_type()     ? $::instance_conf->get_delivery_date_interval : 1;
235
236     if (   ($self->type eq sales_order_type()     &&  !$::instance_conf->get_deliverydate_on)
237         || ($self->type eq sales_quotation_type() &&  !$::instance_conf->get_reqdate_on)) {
238       $new_attrs{reqdate} = '';
239     } else {
240       $new_attrs{reqdate} = DateTime->today_local->next_workday(extra_days => $extra_days);
241     }
242   } else {
243     $new_attrs{reqdate} = $order->reqdate;
244   }
245
246   # Update employee
247   $new_attrs{employee}  = SL::DB::Manager::Employee->current;
248
249   # Create new record from current one
250   $self->order(SL::DB::Order->new_from($order, destination_type => $order->type, attributes => \%new_attrs));
251
252   # no linked records on save as new
253   delete $::form->{$_} for qw(converted_from_oe_id converted_from_orderitems_ids);
254
255   # save
256   $self->action_save();
257 }
258
259 # print the order
260 #
261 # This is called if "print" is pressed in the print dialog.
262 # If PDF creation was requested and succeeded, the pdf is offered for download
263 # via send_file (which uses ajax in this case).
264 sub action_print {
265   my ($self) = @_;
266
267   my $errors = $self->save();
268
269   if (scalar @{ $errors }) {
270     $self->js->flash('error', $_) foreach @{ $errors };
271     return $self->js->render();
272   }
273
274   $self->js_reset_order_and_item_ids_after_save;
275
276   my $format      = $::form->{print_options}->{format};
277   my $media       = $::form->{print_options}->{media};
278   my $formname    = $::form->{print_options}->{formname};
279   my $copies      = $::form->{print_options}->{copies};
280   my $groupitems  = $::form->{print_options}->{groupitems};
281   my $printer_id  = $::form->{print_options}->{printer_id};
282
283   # only PDF, OpenDocument & HTML for now
284   if (none { $format eq $_ } qw(pdf opendocument opendocument_pdf html)) {
285     return $self->js->flash('error', t8('Format \'#1\' is not supported yet/anymore.', $format))->render;
286   }
287
288   # only screen or printer by now
289   if (none { $media eq $_ } qw(screen printer)) {
290     return $self->js->flash('error', t8('Media \'#1\' is not supported yet/anymore.', $media))->render;
291   }
292
293   # create a form for generate_attachment_filename
294   my $form   = Form->new;
295   $form->{$self->nr_key()}  = $self->order->number;
296   $form->{type}             = $self->type;
297   $form->{format}           = $format;
298   $form->{formname}         = $formname;
299   $form->{language}         = '_' . $self->order->language->template_code if $self->order->language;
300   my $doc_filename          = $form->generate_attachment_filename();
301
302   my $doc;
303   my @errors = $self->generate_doc(\$doc, { format     => $format,
304                                             formname   => $formname,
305                                             language   => $self->order->language,
306                                             printer_id => $printer_id,
307                                             groupitems => $groupitems });
308   if (scalar @errors) {
309     return $self->js->flash('error', t8('Generating the document failed: #1', $errors[0]))->render;
310   }
311
312   if ($media eq 'screen') {
313     # screen/download
314     $self->js->flash('info', t8('The document has been created.'));
315     $self->send_file(
316       \$doc,
317       type         => SL::MIME->mime_type_from_ext($doc_filename),
318       name         => $doc_filename,
319       js_no_render => 1,
320     );
321
322   } elsif ($media eq 'printer') {
323     # printer
324     my $printer_id = $::form->{print_options}->{printer_id};
325     SL::DB::Printer->new(id => $printer_id)->load->print_document(
326       copies  => $copies,
327       content => $doc,
328     );
329
330     $self->js->flash('info', t8('The document has been printed.'));
331   }
332
333   my @warnings = $self->store_doc_to_webdav_and_filemanagement($doc, $doc_filename, $formname);
334   if (scalar @warnings) {
335     $self->js->flash('warning', $_) for @warnings;
336   }
337
338   $self->save_history('PRINTED');
339
340   $self->js
341     ->run('kivi.ActionBar.setEnabled', '#save_and_email_action')
342     ->render;
343 }
344 sub action_preview_pdf {
345   my ($self) = @_;
346
347   my $errors = $self->save();
348   if (scalar @{ $errors }) {
349     $self->js->flash('error', $_) foreach @{ $errors };
350     return $self->js->render();
351   }
352
353   $self->js_reset_order_and_item_ids_after_save;
354
355   my $format      = 'pdf';
356   my $media       = 'screen';
357   my $formname    = $self->type;
358
359   # only pdf
360   # create a form for generate_attachment_filename
361   my $form   = Form->new;
362   $form->{$self->nr_key()}  = $self->order->number;
363   $form->{type}             = $self->type;
364   $form->{format}           = $format;
365   $form->{formname}         = $formname;
366   $form->{language}         = '_' . $self->order->language->template_code if $self->order->language;
367   my $pdf_filename          = $form->generate_attachment_filename();
368
369   my $pdf;
370   my @errors = $self->generate_doc(\$pdf, { format     => $format,
371                                             formname   => $formname,
372                                             language   => $self->order->language,
373                                           });
374   if (scalar @errors) {
375     return $self->js->flash('error', t8('Conversion to PDF failed: #1', $errors[0]))->render;
376   }
377   $self->save_history('PREVIEWED');
378   $self->js->flash('info', t8('The PDF has been previewed'));
379   # screen/download
380   $self->send_file(
381     \$pdf,
382     type         => SL::MIME->mime_type_from_ext($pdf_filename),
383     name         => $pdf_filename,
384     js_no_render => 0,
385   );
386 }
387
388 # open the email dialog
389 sub action_save_and_show_email_dialog {
390   my ($self) = @_;
391
392   my $errors = $self->save();
393
394   if (scalar @{ $errors }) {
395     $self->js->flash('error', $_) foreach @{ $errors };
396     return $self->js->render();
397   }
398
399   my $cv_method = $self->cv;
400
401   if (!$self->order->$cv_method) {
402     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'))
403                     ->render($self);
404   }
405
406   my $email_form;
407   $email_form->{to}   = $self->order->contact->cp_email if $self->order->contact;
408   $email_form->{to} ||= $self->order->$cv_method->email;
409   $email_form->{cc}   = $self->order->$cv_method->cc;
410   $email_form->{bcc}  = join ', ', grep $_, $self->order->$cv_method->bcc, SL::DB::Default->get->global_bcc;
411   # Todo: get addresses from shipto, if any
412
413   my $form = Form->new;
414   $form->{$self->nr_key()}  = $self->order->number;
415   $form->{cusordnumber}     = $self->order->cusordnumber;
416   $form->{formname}         = $self->type;
417   $form->{type}             = $self->type;
418   $form->{language}         = '_' . $self->order->language->template_code if $self->order->language;
419   $form->{language_id}      = $self->order->language->id                  if $self->order->language;
420   $form->{format}           = 'pdf';
421   $form->{cp_id}            = $self->order->contact->cp_id if $self->order->contact;
422
423   $email_form->{subject}             = $form->generate_email_subject();
424   $email_form->{attachment_filename} = $form->generate_attachment_filename();
425   $email_form->{message}             = $form->generate_email_body();
426   $email_form->{js_send_function}    = 'kivi.Order.send_email()';
427
428   my %files = $self->get_files_for_email_dialog();
429
430   my @employees_with_email = grep {
431     my $user = SL::DB::Manager::AuthUser->find_by(login => $_->login);
432     $user && !!trim($user->get_config_value('email'));
433   } @{ SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]) };
434
435   my $dialog_html = $self->render('common/_send_email_dialog', { output => 0 },
436                                   email_form    => $email_form,
437                                   show_bcc      => $::auth->assert('email_bcc', 'may fail'),
438                                   FILES         => \%files,
439                                   is_customer   => $self->cv eq 'customer',
440                                   ALL_EMPLOYEES => \@employees_with_email,
441   );
442
443   $self->js
444       ->run('kivi.Order.show_email_dialog', $dialog_html)
445       ->reinit_widgets
446       ->render($self);
447 }
448
449 # send email
450 #
451 # Todo: handling error messages: flash is not displayed in dialog, but in the main form
452 sub action_send_email {
453   my ($self) = @_;
454
455   my $errors = $self->save();
456
457   if (scalar @{ $errors }) {
458     $self->js->run('kivi.Order.close_email_dialog');
459     $self->js->flash('error', $_) foreach @{ $errors };
460     return $self->js->render();
461   }
462
463   $self->js_reset_order_and_item_ids_after_save;
464
465   my $email_form  = delete $::form->{email_form};
466   my %field_names = (to => 'email');
467
468   $::form->{ $field_names{$_} // $_ } = $email_form->{$_} for keys %{ $email_form };
469
470   # for Form::cleanup which may be called in Form::send_email
471   $::form->{cwd}    = getcwd();
472   $::form->{tmpdir} = $::lx_office_conf{paths}->{userspath};
473
474   $::form->{$_}     = $::form->{print_options}->{$_} for keys %{ $::form->{print_options} };
475   $::form->{media}  = 'email';
476
477   $::form->{attachment_policy} //= '';
478
479   # Is an old file version available?
480   my $attfile;
481   if ($::form->{attachment_policy} eq 'old_file') {
482     $attfile = SL::File->get_all(object_id     => $self->order->id,
483                                  object_type   => $self->type,
484                                  file_type     => 'document',
485                                  print_variant => $::form->{formname});
486   }
487
488   if ($::form->{attachment_policy} ne 'no_file' && !($::form->{attachment_policy} eq 'old_file' && $attfile)) {
489     my $doc;
490     my @errors = $self->generate_doc(\$doc, {media      => $::form->{media},
491                                              format     => $::form->{print_options}->{format},
492                                              formname   => $::form->{print_options}->{formname},
493                                              language   => $self->order->language,
494                                              printer_id => $::form->{print_options}->{printer_id},
495                                              groupitems => $::form->{print_options}->{groupitems}});
496     if (scalar @errors) {
497       return $self->js->flash('error', t8('Generating the document failed: #1', $errors[0]))->render($self);
498     }
499
500     my @warnings = $self->store_doc_to_webdav_and_filemanagement($doc, $::form->{attachment_filename}, $::form->{formname});
501     if (scalar @warnings) {
502       flash_later('warning', $_) for @warnings;
503     }
504
505     my $sfile = SL::SessionFile::Random->new(mode => "w");
506     $sfile->fh->print($doc);
507     $sfile->fh->close;
508
509     $::form->{tmpfile} = $sfile->file_name;
510     $::form->{tmpdir}  = $sfile->get_path; # for Form::cleanup which may be called in Form::send_email
511   }
512
513   $::form->{id} = $self->order->id; # this is used in SL::Mailer to create a linked record to the mail
514   $::form->send_email(\%::myconfig, $::form->{print_options}->{format});
515
516   # internal notes
517   my $intnotes = $self->order->intnotes;
518   $intnotes   .= "\n\n" if $self->order->intnotes;
519   $intnotes   .= t8('[email]')                                                                                        . "\n";
520   $intnotes   .= t8('Date')       . ": " . $::locale->format_date_object(DateTime->now_local, precision => 'seconds') . "\n";
521   $intnotes   .= t8('To (email)') . ": " . $::form->{email}                                                           . "\n";
522   $intnotes   .= t8('Cc')         . ": " . $::form->{cc}                                                              . "\n"    if $::form->{cc};
523   $intnotes   .= t8('Bcc')        . ": " . $::form->{bcc}                                                             . "\n"    if $::form->{bcc};
524   $intnotes   .= t8('Subject')    . ": " . $::form->{subject}                                                         . "\n\n";
525   $intnotes   .= t8('Message')    . ": " . $::form->{message};
526
527   $self->order->update_attributes(intnotes => $intnotes);
528
529   $self->save_history('MAILED');
530
531   flash_later('info', t8('The email has been sent.'));
532
533   my @redirect_params = (
534     action => 'edit',
535     type   => $self->type,
536     id     => $self->order->id,
537   );
538
539   $self->redirect_to(@redirect_params);
540 }
541
542 # open the periodic invoices config dialog
543 #
544 # If there are values in the form (i.e. dialog was opened before),
545 # then use this values. Create new ones, else.
546 sub action_show_periodic_invoices_config_dialog {
547   my ($self) = @_;
548
549   my $config = make_periodic_invoices_config_from_yaml(delete $::form->{config});
550   $config  ||= SL::DB::Manager::PeriodicInvoicesConfig->find_by(oe_id => $::form->{id}) if $::form->{id};
551   $config  ||= SL::DB::PeriodicInvoicesConfig->new(periodicity             => 'm',
552                                                    order_value_periodicity => 'p', # = same as periodicity
553                                                    start_date_as_date      => $::form->{transdate_as_date} || $::form->current_date,
554                                                    extend_automatically_by => 12,
555                                                    active                  => 1,
556                                                    email_subject           => GenericTranslations->get(
557                                                                                 language_id      => $::form->{language_id},
558                                                                                 translation_type =>"preset_text_periodic_invoices_email_subject"),
559                                                    email_body              => GenericTranslations->get(
560                                                                                 language_id      => $::form->{language_id},
561                                                                                 translation_type => "salutation_general")
562                                                                             . GenericTranslations->get(
563                                                                                 language_id      => $::form->{language_id},
564                                                                                 translation_type => "salutation_punctuation_mark") . "\n\n"
565                                                                             . GenericTranslations->get(
566                                                                                 language_id      => $::form->{language_id},
567                                                                                 translation_type =>"preset_text_periodic_invoices_email_body"),
568   );
569   $config->periodicity('m')             if none { $_ eq $config->periodicity             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES;
570   $config->order_value_periodicity('p') if none { $_ eq $config->order_value_periodicity } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES);
571
572   $::form->get_lists(printers => "ALL_PRINTERS",
573                      charts   => { key       => 'ALL_CHARTS',
574                                    transdate => 'current_date' });
575
576   $::form->{AR} = [ grep { $_->{link} =~ m/(?:^|:)AR(?::|$)/ } @{ $::form->{ALL_CHARTS} } ];
577
578   if ($::form->{customer_id}) {
579     $::form->{ALL_CONTACTS} = SL::DB::Manager::Contact->get_all_sorted(where => [ cp_cv_id => $::form->{customer_id} ]);
580     my $customer_object = SL::DB::Manager::Customer->find_by(id => $::form->{customer_id});
581     $::form->{postal_invoice}                  = $customer_object->postal_invoice;
582     $::form->{email_recipient_invoice_address} = $::form->{postal_invoice} ? '' : $customer_object->invoice_mail;
583     $config->send_email(0) if $::form->{postal_invoice};
584   }
585
586   $self->render('oe/edit_periodic_invoices_config', { layout => 0 },
587                 popup_dialog             => 1,
588                 popup_js_close_function  => 'kivi.Order.close_periodic_invoices_config_dialog()',
589                 popup_js_assign_function => 'kivi.Order.assign_periodic_invoices_config()',
590                 config                   => $config,
591                 %$::form);
592 }
593
594 # assign the values of the periodic invoices config dialog
595 # as yaml in the hidden tag and set the status.
596 sub action_assign_periodic_invoices_config {
597   my ($self) = @_;
598
599   $::form->isblank('start_date_as_date', $::locale->text('The start date is missing.'));
600
601   my $config = { active                     => $::form->{active}       ? 1 : 0,
602                  terminated                 => $::form->{terminated}   ? 1 : 0,
603                  direct_debit               => $::form->{direct_debit} ? 1 : 0,
604                  periodicity                => (any { $_ eq $::form->{periodicity}             }       @SL::DB::PeriodicInvoicesConfig::PERIODICITIES)              ? $::form->{periodicity}             : 'm',
605                  order_value_periodicity    => (any { $_ eq $::form->{order_value_periodicity} } ('p', @SL::DB::PeriodicInvoicesConfig::ORDER_VALUE_PERIODICITIES)) ? $::form->{order_value_periodicity} : 'p',
606                  start_date_as_date         => $::form->{start_date_as_date},
607                  end_date_as_date           => $::form->{end_date_as_date},
608                  first_billing_date_as_date => $::form->{first_billing_date_as_date},
609                  print                      => $::form->{print}      ? 1                         : 0,
610                  printer_id                 => $::form->{print}      ? $::form->{printer_id} * 1 : undef,
611                  copies                     => $::form->{copies} * 1 ? $::form->{copies}         : 1,
612                  extend_automatically_by    => $::form->{extend_automatically_by}    * 1 || undef,
613                  ar_chart_id                => $::form->{ar_chart_id} * 1,
614                  send_email                 => $::form->{send_email} ? 1 : 0,
615                  email_recipient_contact_id => $::form->{email_recipient_contact_id} * 1 || undef,
616                  email_recipient_address    => $::form->{email_recipient_address},
617                  email_sender               => $::form->{email_sender},
618                  email_subject              => $::form->{email_subject},
619                  email_body                 => $::form->{email_body},
620                };
621
622   my $periodic_invoices_config = SL::YAML::Dump($config);
623
624   my $status = $self->get_periodic_invoices_status($config);
625
626   $self->js
627     ->remove('#order_periodic_invoices_config')
628     ->insertAfter(hidden_tag('order.periodic_invoices_config', $periodic_invoices_config), '#periodic_invoices_status')
629     ->run('kivi.Order.close_periodic_invoices_config_dialog')
630     ->html('#periodic_invoices_status', $status)
631     ->flash('info', t8('The periodic invoices config has been assigned.'))
632     ->render($self);
633 }
634
635 sub action_get_has_active_periodic_invoices {
636   my ($self) = @_;
637
638   my $config = make_periodic_invoices_config_from_yaml(delete $::form->{config});
639   $config  ||= SL::DB::Manager::PeriodicInvoicesConfig->find_by(oe_id => $::form->{id}) if $::form->{id};
640
641   my $has_active_periodic_invoices =
642        $self->type eq sales_order_type()
643     && $config
644     && $config->active
645     && (!$config->end_date || ($config->end_date > DateTime->today_local))
646     && $config->get_previous_billed_period_start_date;
647
648   $_[0]->render(\ !!$has_active_periodic_invoices, { type => 'text' });
649 }
650
651 # save the order and redirect to the frontend subroutine for a new
652 # delivery order
653 sub action_save_and_delivery_order {
654   my ($self) = @_;
655
656   $self->save_and_redirect_to(
657     controller => 'oe.pl',
658     action     => 'oe_delivery_order_from_order',
659   );
660 }
661
662 # save the order and redirect to the frontend subroutine for a new
663 # invoice
664 sub action_save_and_invoice {
665   my ($self) = @_;
666
667   $self->save_and_redirect_to(
668     controller => 'oe.pl',
669     action     => 'oe_invoice_from_order',
670   );
671 }
672
673 # workflow from sales order to sales quotation
674 sub action_sales_quotation {
675   $_[0]->workflow_sales_or_request_for_quotation();
676 }
677
678 # workflow from sales order to sales quotation
679 sub action_request_for_quotation {
680   $_[0]->workflow_sales_or_request_for_quotation();
681 }
682
683 # workflow from sales quotation to sales order
684 sub action_sales_order {
685   $_[0]->workflow_sales_or_purchase_order();
686 }
687
688 # workflow from rfq to purchase order
689 sub action_purchase_order {
690   $_[0]->workflow_sales_or_purchase_order();
691 }
692
693 # workflow from purchase order to ap transaction
694 sub action_save_and_ap_transaction {
695   my ($self) = @_;
696
697   $self->save_and_redirect_to(
698     controller => 'ap.pl',
699     action     => 'add_from_purchase_order',
700   );
701 }
702
703 # set form elements in respect to a changed customer or vendor
704 #
705 # This action is called on an change of the customer/vendor picker.
706 sub action_customer_vendor_changed {
707   my ($self) = @_;
708
709   setup_order_from_cv($self->order);
710   $self->recalc();
711
712   my $cv_method = $self->cv;
713
714   if ($self->order->$cv_method->contacts && scalar @{ $self->order->$cv_method->contacts } > 0) {
715     $self->js->show('#cp_row');
716   } else {
717     $self->js->hide('#cp_row');
718   }
719
720   if ($self->order->$cv_method->shipto && scalar @{ $self->order->$cv_method->shipto } > 0) {
721     $self->js->show('#shipto_selection');
722   } else {
723     $self->js->hide('#shipto_selection');
724   }
725
726   if ($cv_method eq 'customer') {
727     my $show_hide = scalar @{ $self->order->customer->additional_billing_addresses } > 0 ? 'show' : 'hide';
728     $self->js->$show_hide('#billing_address_row');
729   }
730
731   $self->js->val( '#order_salesman_id',      $self->order->salesman_id)        if $self->order->is_sales;
732
733   $self->js
734     ->replaceWith('#order_cp_id',              $self->build_contact_select)
735     ->replaceWith('#order_shipto_id',          $self->build_shipto_select)
736     ->replaceWith('#shipto_inputs  ',          $self->build_shipto_inputs)
737     ->replaceWith('#order_billing_address_id', $self->build_billing_address_select)
738     ->replaceWith('#business_info_row',        $self->build_business_info_row)
739     ->val(        '#order_taxzone_id',         $self->order->taxzone_id)
740     ->val(        '#order_taxincluded',        $self->order->taxincluded)
741     ->val(        '#order_currency_id',        $self->order->currency_id)
742     ->val(        '#order_payment_id',         $self->order->payment_id)
743     ->val(        '#order_delivery_term_id',   $self->order->delivery_term_id)
744     ->val(        '#order_intnotes',           $self->order->intnotes)
745     ->val(        '#order_language_id',        $self->order->$cv_method->language_id)
746     ->focus(      '#order_' . $self->cv . '_id')
747     ->run('kivi.Order.update_exchangerate');
748
749   $self->js_redisplay_amounts_and_taxes;
750   $self->js_redisplay_cvpartnumbers;
751   $self->js->render();
752 }
753
754 # open the dialog for customer/vendor details
755 sub action_show_customer_vendor_details_dialog {
756   my ($self) = @_;
757
758   my $is_customer = 'customer' eq $::form->{vc};
759   my $cv;
760   if ($is_customer) {
761     $cv = SL::DB::Customer->new(id => $::form->{vc_id})->load;
762   } else {
763     $cv = SL::DB::Vendor->new(id => $::form->{vc_id})->load;
764   }
765
766   my %details = map { $_ => $cv->$_ } @{$cv->meta->columns};
767   $details{discount_as_percent} = $cv->discount_as_percent;
768   $details{creditlimt}          = $cv->creditlimit_as_number;
769   $details{business}            = $cv->business->description      if $cv->business;
770   $details{language}            = $cv->language_obj->description  if $cv->language_obj;
771   $details{delivery_terms}      = $cv->delivery_term->description if $cv->delivery_term;
772   $details{payment_terms}       = $cv->payment->description       if $cv->payment;
773   $details{pricegroup}          = $cv->pricegroup->pricegroup     if $is_customer && $cv->pricegroup;
774
775   if ($is_customer) {
776     foreach my $entry (@{ $cv->additional_billing_addresses }) {
777       push @{ $details{ADDITIONAL_BILLING_ADDRESSES} },   { map { $_ => $entry->$_ } @{$entry->meta->columns} };
778     }
779   }
780   foreach my $entry (@{ $cv->shipto }) {
781     push @{ $details{SHIPTO} },   { map { $_ => $entry->$_ } @{$entry->meta->columns} };
782   }
783   foreach my $entry (@{ $cv->contacts }) {
784     push @{ $details{CONTACTS} }, { map { $_ => $entry->$_ } @{$entry->meta->columns} };
785   }
786
787   $_[0]->render('common/show_vc_details', { layout => 0 },
788                 is_customer => $is_customer,
789                 %details);
790
791 }
792
793 # called if a unit in an existing item row is changed
794 sub action_unit_changed {
795   my ($self) = @_;
796
797   my $idx  = first_index { $_ eq $::form->{item_id} } @{ $::form->{orderitem_ids} };
798   my $item = $self->order->items_sorted->[$idx];
799
800   my $old_unit_obj = SL::DB::Unit->new(name => $::form->{old_unit})->load;
801   $item->sellprice($item->unit_obj->convert_to($item->sellprice, $old_unit_obj));
802
803   $self->recalc();
804
805   $self->js
806     ->run('kivi.Order.update_sellprice', $::form->{item_id}, $item->sellprice_as_number);
807   $self->js_redisplay_line_values;
808   $self->js_redisplay_amounts_and_taxes;
809   $self->js->render();
810 }
811
812 # add an item row for a new item entered in the input row
813 sub action_add_item {
814   my ($self) = @_;
815
816   delete $::form->{add_item}->{create_part_type};
817
818   my $form_attr = $::form->{add_item};
819
820   return unless $form_attr->{parts_id};
821
822   my $item = new_item($self->order, $form_attr);
823
824   $self->order->add_items($item);
825
826   $self->recalc();
827
828   $self->get_item_cvpartnumber($item);
829
830   my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
831   my $row_as_html = $self->p->render('order/tabs/_row',
832                                      ITEM => $item,
833                                      ID   => $item_id,
834                                      SELF => $self,
835   );
836
837   if ($::form->{insert_before_item_id}) {
838     $self->js
839       ->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
840   } else {
841     $self->js
842       ->append('#row_table_id', $row_as_html);
843   }
844
845   if ( $item->part->is_assortment ) {
846     $form_attr->{qty_as_number} = 1 unless $form_attr->{qty_as_number};
847     foreach my $assortment_item ( @{$item->part->assortment_items} ) {
848       my $attr = { parts_id => $assortment_item->parts_id,
849                    qty      => $assortment_item->qty * $::form->parse_amount(\%::myconfig, $form_attr->{qty_as_number}), # TODO $form_attr->{unit}
850                    unit     => $assortment_item->unit,
851                    description => $assortment_item->part->description,
852                  };
853       my $item = new_item($self->order, $attr);
854
855       # set discount to 100% if item isn't supposed to be charged, overwriting any customer discount
856       $item->discount(1) unless $assortment_item->charge;
857
858       $self->order->add_items( $item );
859       $self->recalc();
860       $self->get_item_cvpartnumber($item);
861       my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
862       my $row_as_html = $self->p->render('order/tabs/_row',
863                                          ITEM => $item,
864                                          ID   => $item_id,
865                                          SELF => $self,
866       );
867       if ($::form->{insert_before_item_id}) {
868         $self->js
869           ->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
870       } else {
871         $self->js
872           ->append('#row_table_id', $row_as_html);
873       }
874     };
875   };
876
877   $self->js
878     ->val('.add_item_input', '')
879     ->run('kivi.Order.init_row_handlers')
880     ->run('kivi.Order.renumber_positions')
881     ->focus('#add_item_parts_id_name');
882
883   $self->js->run('kivi.Order.row_table_scroll_down') if !$::form->{insert_before_item_id};
884
885   $self->js_redisplay_amounts_and_taxes;
886   $self->js->render();
887 }
888
889 # add item rows for multiple items at once
890 sub action_add_multi_items {
891   my ($self) = @_;
892
893   my @form_attr = grep { $_->{qty_as_number} } @{ $::form->{add_items} };
894   return $self->js->render() unless scalar @form_attr;
895
896   my @items;
897   foreach my $attr (@form_attr) {
898     my $item = new_item($self->order, $attr);
899     push @items, $item;
900     if ( $item->part->is_assortment ) {
901       foreach my $assortment_item ( @{$item->part->assortment_items} ) {
902         my $attr = { parts_id => $assortment_item->parts_id,
903                      qty      => $assortment_item->qty * $item->qty, # TODO $form_attr->{unit}
904                      unit     => $assortment_item->unit,
905                      description => $assortment_item->part->description,
906                    };
907         my $item = new_item($self->order, $attr);
908
909         # set discount to 100% if item isn't supposed to be charged, overwriting any customer discount
910         $item->discount(1) unless $assortment_item->charge;
911         push @items, $item;
912       }
913     }
914   }
915   $self->order->add_items(@items);
916
917   $self->recalc();
918
919   foreach my $item (@items) {
920     $self->get_item_cvpartnumber($item);
921     my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
922     my $row_as_html = $self->p->render('order/tabs/_row',
923                                        ITEM => $item,
924                                        ID   => $item_id,
925                                        SELF => $self,
926     );
927
928     if ($::form->{insert_before_item_id}) {
929       $self->js
930         ->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
931     } else {
932       $self->js
933         ->append('#row_table_id', $row_as_html);
934     }
935   }
936
937   $self->js
938     ->run('kivi.Part.close_picker_dialogs')
939     ->run('kivi.Order.init_row_handlers')
940     ->run('kivi.Order.renumber_positions')
941     ->focus('#add_item_parts_id_name');
942
943   $self->js->run('kivi.Order.row_table_scroll_down') if !$::form->{insert_before_item_id};
944
945   $self->js_redisplay_amounts_and_taxes;
946   $self->js->render();
947 }
948
949 # recalculate all linetotals, amounts and taxes and redisplay them
950 sub action_recalc_amounts_and_taxes {
951   my ($self) = @_;
952
953   $self->recalc();
954
955   $self->js_redisplay_line_values;
956   $self->js_redisplay_amounts_and_taxes;
957   $self->js->render();
958 }
959
960 sub action_update_exchangerate {
961   my ($self) = @_;
962
963   my $data = {
964     is_standard   => $self->order->currency_id == $::instance_conf->get_currency_id,
965     currency_name => $self->order->currency->name,
966     exchangerate  => $self->order->daily_exchangerate_as_null_number,
967   };
968
969   $self->render(\SL::JSON::to_json($data), { type => 'json', process => 0 });
970 }
971
972 # redisplay item rows if they are sorted by an attribute
973 sub action_reorder_items {
974   my ($self) = @_;
975
976   my %sort_keys = (
977     partnumber   => sub { $_[0]->part->partnumber },
978     description  => sub { $_[0]->description },
979     qty          => sub { $_[0]->qty },
980     sellprice    => sub { $_[0]->sellprice },
981     discount     => sub { $_[0]->discount },
982     cvpartnumber => sub { $_[0]->{cvpartnumber} },
983   );
984
985   $self->get_item_cvpartnumber($_) for @{$self->order->items_sorted};
986
987   my $method = $sort_keys{$::form->{order_by}};
988   my @to_sort = map { { old_pos => $_->position, order_by => $method->($_) } } @{ $self->order->items_sorted };
989   if ($::form->{sort_dir}) {
990     if ( $::form->{order_by} =~ m/qty|sellprice|discount/ ){
991       @to_sort = sort { $a->{order_by} <=> $b->{order_by} } @to_sort;
992     } else {
993       @to_sort = sort { $a->{order_by} cmp $b->{order_by} } @to_sort;
994     }
995   } else {
996     if ( $::form->{order_by} =~ m/qty|sellprice|discount/ ){
997       @to_sort = sort { $b->{order_by} <=> $a->{order_by} } @to_sort;
998     } else {
999       @to_sort = sort { $b->{order_by} cmp $a->{order_by} } @to_sort;
1000     }
1001   }
1002   $self->js
1003     ->run('kivi.Order.redisplay_items', \@to_sort)
1004     ->render;
1005 }
1006
1007 # show the popup to choose a price/discount source
1008 sub action_price_popup {
1009   my ($self) = @_;
1010
1011   my $idx  = first_index { $_ eq $::form->{item_id} } @{ $::form->{orderitem_ids} };
1012   my $item = $self->order->items_sorted->[$idx];
1013
1014   $self->render_price_dialog($item);
1015 }
1016
1017 # save the order in a session variable and redirect to the part controller
1018 sub action_create_part {
1019   my ($self) = @_;
1020
1021   my $previousform = $::auth->save_form_in_session(non_scalars => 1);
1022
1023   my $callback     = $self->url_for(
1024     action       => 'return_from_create_part',
1025     type         => $self->type, # type is needed for check_auth on return
1026     previousform => $previousform,
1027   );
1028
1029   flash_later('info', t8('You are adding a new part while you are editing another document. You will be redirected to your document when saving the new part or aborting this form.'));
1030
1031   my @redirect_params = (
1032     controller => 'Part',
1033     action     => 'add',
1034     part_type  => $::form->{add_item}->{create_part_type},
1035     callback   => $callback,
1036     show_abort => 1,
1037   );
1038
1039   $self->redirect_to(@redirect_params);
1040 }
1041
1042 sub action_return_from_create_part {
1043   my ($self) = @_;
1044
1045   $self->{created_part} = SL::DB::Part->new(id => delete $::form->{new_parts_id})->load if $::form->{new_parts_id};
1046
1047   $::auth->restore_form_from_session(delete $::form->{previousform});
1048
1049   # set item ids to new fake id, to identify them as new items
1050   foreach my $item (@{$self->order->items_sorted}) {
1051     $item->{new_fake_id} = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
1052   }
1053
1054   $self->recalc();
1055   $self->get_unalterable_data();
1056   $self->pre_render();
1057
1058   # trigger rendering values for second row/longdescription as hidden,
1059   # because they are loaded only on demand. So we need to keep the values
1060   # from the source.
1061   $_->{render_second_row}      = 1 for @{ $self->order->items_sorted };
1062   $_->{render_longdescription} = 1 for @{ $self->order->items_sorted };
1063
1064   $self->render(
1065     'order/form',
1066     title => $self->get_title_for('edit'),
1067     %{$self->{template_args}}
1068   );
1069
1070 }
1071
1072 # load the second row for one or more items
1073 #
1074 # This action gets the html code for all items second rows by rendering a template for
1075 # the second row and sets the html code via client js.
1076 sub action_load_second_rows {
1077   my ($self) = @_;
1078
1079   $self->recalc() if $self->order->is_sales; # for margin calculation
1080
1081   foreach my $item_id (@{ $::form->{item_ids} }) {
1082     my $idx  = first_index { $_ eq $item_id } @{ $::form->{orderitem_ids} };
1083     my $item = $self->order->items_sorted->[$idx];
1084
1085     $self->js_load_second_row($item, $item_id, 0);
1086   }
1087
1088   $self->js->run('kivi.Order.init_row_handlers') if $self->order->is_sales; # for lastcosts change-callback
1089
1090   $self->js->render();
1091 }
1092
1093 # update description, notes and sellprice from master data
1094 sub action_update_row_from_master_data {
1095   my ($self) = @_;
1096
1097   foreach my $item_id (@{ $::form->{item_ids} }) {
1098     my $idx   = first_index { $_ eq $item_id } @{ $::form->{orderitem_ids} };
1099     my $item  = $self->order->items_sorted->[$idx];
1100     my $texts = get_part_texts($item->part, $self->order->language_id);
1101
1102     $item->description($texts->{description});
1103     $item->longdescription($texts->{longdescription});
1104
1105     my $price_source = SL::PriceSource->new(record_item => $item, record => $self->order);
1106
1107     my $price_src;
1108     if ($item->part->is_assortment) {
1109     # add assortment items with price 0, as the components carry the price
1110       $price_src = $price_source->price_from_source("");
1111       $price_src->price(0);
1112     } else {
1113       $price_src = $price_source->best_price
1114                  ? $price_source->best_price
1115                  : $price_source->price_from_source("");
1116       $price_src->price($::form->round_amount($price_src->price / $self->order->exchangerate, 5)) if $self->order->exchangerate;
1117       $price_src->price(0) if !$price_source->best_price;
1118     }
1119
1120
1121     $item->sellprice($price_src->price);
1122     $item->active_price_source($price_src);
1123
1124     $self->js
1125       ->run('kivi.Order.update_sellprice', $item_id, $item->sellprice_as_number)
1126       ->html('.row_entry:has(#item_' . $item_id . ') [name = "partnumber"] a', $item->part->partnumber)
1127       ->val ('.row_entry:has(#item_' . $item_id . ') [name = "order.orderitems[].description"]', $item->description)
1128       ->val ('.row_entry:has(#item_' . $item_id . ') [name = "order.orderitems[].longdescription"]', $item->longdescription);
1129
1130     if ($self->search_cvpartnumber) {
1131       $self->get_item_cvpartnumber($item);
1132       $self->js->html('.row_entry:has(#item_' . $item_id . ') [name = "cvpartnumber"]', $item->{cvpartnumber});
1133     }
1134   }
1135
1136   $self->recalc();
1137   $self->js_redisplay_line_values;
1138   $self->js_redisplay_amounts_and_taxes;
1139
1140   $self->js->render();
1141 }
1142
1143 sub js_load_second_row {
1144   my ($self, $item, $item_id, $do_parse) = @_;
1145
1146   if ($do_parse) {
1147     # Parse values from form (they are formated while rendering (template)).
1148     # Workaround to pre-parse number-cvars (parse_custom_variable_values does not parse number values).
1149     # This parsing is not necessary at all, if we assure that the second row/cvars are only loaded once.
1150     foreach my $var (@{ $item->cvars_by_config }) {
1151       $var->unparsed_value($::form->parse_amount(\%::myconfig, $var->{__unparsed_value})) if ($var->config->type eq 'number' && exists($var->{__unparsed_value}));
1152     }
1153     $item->parse_custom_variable_values;
1154   }
1155
1156   my $row_as_html = $self->p->render('order/tabs/_second_row', ITEM => $item, TYPE => $self->type);
1157
1158   $self->js
1159     ->html('#second_row_' . $item_id, $row_as_html)
1160     ->data('#second_row_' . $item_id, 'loaded', 1);
1161 }
1162
1163 sub js_redisplay_line_values {
1164   my ($self) = @_;
1165
1166   my $is_sales = $self->order->is_sales;
1167
1168   # sales orders with margins
1169   my @data;
1170   if ($is_sales) {
1171     @data = map {
1172       [
1173        $::form->format_amount(\%::myconfig, $_->{linetotal},     2, 0),
1174        $::form->format_amount(\%::myconfig, $_->{marge_total},   2, 0),
1175        $::form->format_amount(\%::myconfig, $_->{marge_percent}, 2, 0),
1176       ]} @{ $self->order->items_sorted };
1177   } else {
1178     @data = map {
1179       [
1180        $::form->format_amount(\%::myconfig, $_->{linetotal},     2, 0),
1181       ]} @{ $self->order->items_sorted };
1182   }
1183
1184   $self->js
1185     ->run('kivi.Order.redisplay_line_values', $is_sales, \@data);
1186 }
1187
1188 sub js_redisplay_amounts_and_taxes {
1189   my ($self) = @_;
1190
1191   if (scalar @{ $self->{taxes} }) {
1192     $self->js->show('#taxincluded_row_id');
1193   } else {
1194     $self->js->hide('#taxincluded_row_id');
1195   }
1196
1197   if ($self->order->taxincluded) {
1198     $self->js->hide('#subtotal_row_id');
1199   } else {
1200     $self->js->show('#subtotal_row_id');
1201   }
1202
1203   if ($self->order->is_sales) {
1204     my $is_neg = $self->order->marge_total < 0;
1205     $self->js
1206       ->html('#marge_total_id',   $::form->format_amount(\%::myconfig, $self->order->marge_total,   2))
1207       ->html('#marge_percent_id', $::form->format_amount(\%::myconfig, $self->order->marge_percent, 2))
1208       ->action_if( $is_neg, 'addClass',    '#marge_total_id',        'plus0')
1209       ->action_if( $is_neg, 'addClass',    '#marge_percent_id',      'plus0')
1210       ->action_if( $is_neg, 'addClass',    '#marge_percent_sign_id', 'plus0')
1211       ->action_if(!$is_neg, 'removeClass', '#marge_total_id',        'plus0')
1212       ->action_if(!$is_neg, 'removeClass', '#marge_percent_id',      'plus0')
1213       ->action_if(!$is_neg, 'removeClass', '#marge_percent_sign_id', 'plus0');
1214   }
1215
1216   $self->js
1217     ->html('#netamount_id', $::form->format_amount(\%::myconfig, $self->order->netamount, -2))
1218     ->html('#amount_id',    $::form->format_amount(\%::myconfig, $self->order->amount,    -2))
1219     ->remove('.tax_row')
1220     ->insertBefore($self->build_tax_rows, '#amount_row_id');
1221 }
1222
1223 sub js_redisplay_cvpartnumbers {
1224   my ($self) = @_;
1225
1226   $self->get_item_cvpartnumber($_) for @{$self->order->items_sorted};
1227
1228   my @data = map {[$_->{cvpartnumber}]} @{ $self->order->items_sorted };
1229
1230   $self->js
1231     ->run('kivi.Order.redisplay_cvpartnumbers', \@data);
1232 }
1233
1234 sub js_reset_order_and_item_ids_after_save {
1235   my ($self) = @_;
1236
1237   $self->js
1238     ->val('#id', $self->order->id)
1239     ->val('#converted_from_oe_id', '')
1240     ->val('#order_' . $self->nr_key(), $self->order->number);
1241
1242   my $idx = 0;
1243   foreach my $form_item_id (@{ $::form->{orderitem_ids} }) {
1244     next if !$self->order->items_sorted->[$idx]->id;
1245     next if $form_item_id !~ m{^new};
1246     $self->js
1247       ->val ('[name="orderitem_ids[+]"][value="' . $form_item_id . '"]', $self->order->items_sorted->[$idx]->id)
1248       ->val ('#item_' . $form_item_id, $self->order->items_sorted->[$idx]->id)
1249       ->attr('#item_' . $form_item_id, "id", 'item_' . $self->order->items_sorted->[$idx]->id);
1250   } continue {
1251     $idx++;
1252   }
1253   $self->js->val('[name="converted_from_orderitems_ids[+]"]', '');
1254 }
1255
1256 #
1257 # helpers
1258 #
1259
1260 sub init_valid_types {
1261   [ sales_order_type(), purchase_order_type(), sales_quotation_type(), request_quotation_type() ];
1262 }
1263
1264 sub init_type {
1265   my ($self) = @_;
1266
1267   if (none { $::form->{type} eq $_ } @{$self->valid_types}) {
1268     die "Not a valid type for order";
1269   }
1270
1271   $self->type($::form->{type});
1272 }
1273
1274 sub init_cv {
1275   my ($self) = @_;
1276
1277   my $cv = (any { $self->type eq $_ } (sales_order_type(),    sales_quotation_type()))   ? 'customer'
1278          : (any { $self->type eq $_ } (purchase_order_type(), request_quotation_type())) ? 'vendor'
1279          : die "Not a valid type for order";
1280
1281   return $cv;
1282 }
1283
1284 sub init_search_cvpartnumber {
1285   my ($self) = @_;
1286
1287   my $user_prefs = SL::Helper::UserPreferences::PartPickerSearch->new();
1288   my $search_cvpartnumber;
1289   $search_cvpartnumber = !!$user_prefs->get_sales_search_customer_partnumber() if $self->cv eq 'customer';
1290   $search_cvpartnumber = !!$user_prefs->get_purchase_search_makemodel()        if $self->cv eq 'vendor';
1291
1292   return $search_cvpartnumber;
1293 }
1294
1295 sub init_show_update_button {
1296   my ($self) = @_;
1297
1298   !!SL::Helper::UserPreferences::UpdatePositions->new()->get_show_update_button();
1299 }
1300
1301 sub init_p {
1302   SL::Presenter->get;
1303 }
1304
1305 sub init_order {
1306   $_[0]->make_order;
1307 }
1308
1309 sub init_all_price_factors {
1310   SL::DB::Manager::PriceFactor->get_all;
1311 }
1312
1313 sub init_part_picker_classification_ids {
1314   my ($self)    = @_;
1315   my $attribute = 'used_for_' . ($self->type =~ m{sales} ? 'sale' : 'purchase');
1316
1317   return [ map { $_->id } @{ SL::DB::Manager::PartClassification->get_all(where => [ $attribute => 1 ]) } ];
1318 }
1319
1320 sub check_auth {
1321   my ($self) = @_;
1322
1323   my $right_for = { map { $_ => $_.'_edit' } @{$self->valid_types} };
1324
1325   my $right   = $right_for->{ $self->type };
1326   $right    ||= 'DOES_NOT_EXIST';
1327
1328   $::auth->assert($right);
1329 }
1330
1331 # build the selection box for contacts
1332 #
1333 # Needed, if customer/vendor changed.
1334 sub build_contact_select {
1335   my ($self) = @_;
1336
1337   select_tag('order.cp_id', [ $self->order->{$self->cv}->contacts ],
1338     value_key  => 'cp_id',
1339     title_key  => 'full_name_dep',
1340     default    => $self->order->cp_id,
1341     with_empty => 1,
1342     style      => 'width: 300px',
1343   );
1344 }
1345
1346 # build the selection box for the additional billing address
1347 #
1348 # Needed, if customer/vendor changed.
1349 sub build_billing_address_select {
1350   my ($self) = @_;
1351
1352   return '' if $self->cv ne 'customer';
1353
1354   select_tag('order.billing_address_id',
1355              [ {displayable_id => '', id => ''}, $self->order->{$self->cv}->additional_billing_addresses ],
1356              value_key  => 'id',
1357              title_key  => 'displayable_id',
1358              default    => $self->order->billing_address_id,
1359              with_empty => 0,
1360              style      => 'width: 300px',
1361   );
1362 }
1363
1364 # build the selection box for shiptos
1365 #
1366 # Needed, if customer/vendor changed.
1367 sub build_shipto_select {
1368   my ($self) = @_;
1369
1370   select_tag('order.shipto_id',
1371              [ {displayable_id => t8("No/individual shipping address"), shipto_id => ''}, $self->order->{$self->cv}->shipto ],
1372              value_key  => 'shipto_id',
1373              title_key  => 'displayable_id',
1374              default    => $self->order->shipto_id,
1375              with_empty => 0,
1376              style      => 'width: 300px',
1377   );
1378 }
1379
1380 # build the inputs for the cusom shipto dialog
1381 #
1382 # Needed, if customer/vendor changed.
1383 sub build_shipto_inputs {
1384   my ($self) = @_;
1385
1386   my $content = $self->p->render('common/_ship_to_dialog',
1387                                  vc_obj      => $self->order->customervendor,
1388                                  cs_obj      => $self->order->custom_shipto,
1389                                  cvars       => $self->order->custom_shipto->cvars_by_config,
1390                                  id_selector => '#order_shipto_id');
1391
1392   div_tag($content, id => 'shipto_inputs');
1393 }
1394
1395 # render the info line for business
1396 #
1397 # Needed, if customer/vendor changed.
1398 sub build_business_info_row
1399 {
1400   $_[0]->p->render('order/tabs/_business_info_row', SELF => $_[0]);
1401 }
1402
1403 # build the rows for displaying taxes
1404 #
1405 # Called if amounts where recalculated and redisplayed.
1406 sub build_tax_rows {
1407   my ($self) = @_;
1408
1409   my $rows_as_html;
1410   foreach my $tax (sort { $a->{tax}->rate cmp $b->{tax}->rate } @{ $self->{taxes} }) {
1411     $rows_as_html .= $self->p->render('order/tabs/_tax_row', TAX => $tax, TAXINCLUDED => $self->order->taxincluded);
1412   }
1413   return $rows_as_html;
1414 }
1415
1416
1417 sub render_price_dialog {
1418   my ($self, $record_item) = @_;
1419
1420   my $price_source = SL::PriceSource->new(record_item => $record_item, record => $self->order);
1421
1422   $self->js
1423     ->run(
1424       'kivi.io.price_chooser_dialog',
1425       t8('Available Prices'),
1426       $self->render('order/tabs/_price_sources_dialog', { output => 0 }, price_source => $price_source)
1427     )
1428     ->reinit_widgets;
1429
1430 #   if (@errors) {
1431 #     $self->js->text('#dialog_flash_error_content', join ' ', @errors);
1432 #     $self->js->show('#dialog_flash_error');
1433 #   }
1434
1435   $self->js->render;
1436 }
1437
1438 sub load_order {
1439   my ($self) = @_;
1440
1441   return if !$::form->{id};
1442
1443   $self->order(SL::DB::Order->new(id => $::form->{id})->load);
1444
1445   # Add an empty custom shipto to the order, so that the dialog can render the cvar inputs.
1446   # You need a custom shipto object to call cvars_by_config to get the cvars.
1447   $self->order->custom_shipto(SL::DB::Shipto->new(module => 'OE', custom_variables => [])) if !$self->order->custom_shipto;
1448
1449   return $self->order;
1450 }
1451
1452 # load or create a new order object
1453 #
1454 # And assign changes from the form to this object.
1455 # If the order is loaded from db, check if items are deleted in the form,
1456 # remove them form the object and collect them for removing from db on saving.
1457 # Then create/update items from form (via make_item) and add them.
1458 sub make_order {
1459   my ($self) = @_;
1460
1461   # add_items adds items to an order with no items for saving, but they cannot
1462   # be retrieved via items until the order is saved. Adding empty items to new
1463   # order here solves this problem.
1464   my $order;
1465   $order   = SL::DB::Order->new(id => $::form->{id})->load(with => [ 'orderitems', 'orderitems.part' ]) if $::form->{id};
1466   $order ||= SL::DB::Order->new(orderitems  => [],
1467                                 quotation   => (any { $self->type eq $_ } (sales_quotation_type(), request_quotation_type())),
1468                                 currency_id => $::instance_conf->get_currency_id(),);
1469
1470   my $cv_id_method = $self->cv . '_id';
1471   if (!$::form->{id} && $::form->{$cv_id_method}) {
1472     $order->$cv_id_method($::form->{$cv_id_method});
1473     setup_order_from_cv($order);
1474   }
1475
1476   my $form_orderitems                  = delete $::form->{order}->{orderitems};
1477   my $form_periodic_invoices_config    = delete $::form->{order}->{periodic_invoices_config};
1478
1479   $order->assign_attributes(%{$::form->{order}});
1480
1481   $self->setup_custom_shipto_from_form($order, $::form);
1482
1483   if (my $periodic_invoices_config_attrs = $form_periodic_invoices_config ? SL::YAML::Load($form_periodic_invoices_config) : undef) {
1484     my $periodic_invoices_config = $order->periodic_invoices_config || $order->periodic_invoices_config(SL::DB::PeriodicInvoicesConfig->new);
1485     $periodic_invoices_config->assign_attributes(%$periodic_invoices_config_attrs);
1486   }
1487
1488   # remove deleted items
1489   $self->item_ids_to_delete([]);
1490   foreach my $idx (reverse 0..$#{$order->orderitems}) {
1491     my $item = $order->orderitems->[$idx];
1492     if (none { $item->id == $_->{id} } @{$form_orderitems}) {
1493       splice @{$order->orderitems}, $idx, 1;
1494       push @{$self->item_ids_to_delete}, $item->id;
1495     }
1496   }
1497
1498   my @items;
1499   my $pos = 1;
1500   foreach my $form_attr (@{$form_orderitems}) {
1501     my $item = make_item($order, $form_attr);
1502     $item->position($pos);
1503     push @items, $item;
1504     $pos++;
1505   }
1506   $order->add_items(grep {!$_->id} @items);
1507
1508   return $order;
1509 }
1510
1511 # create or update items from form
1512 #
1513 # Make item objects from form values. For items already existing read from db.
1514 # Create a new item else. And assign attributes.
1515 sub make_item {
1516   my ($record, $attr) = @_;
1517
1518   my $item;
1519   $item = first { $_->id == $attr->{id} } @{$record->items} if $attr->{id};
1520
1521   my $is_new = !$item;
1522
1523   # add_custom_variables adds cvars to an orderitem with no cvars for saving, but
1524   # they cannot be retrieved via custom_variables until the order/orderitem is
1525   # saved. Adding empty custom_variables to new orderitem here solves this problem.
1526   $item ||= SL::DB::OrderItem->new(custom_variables => []);
1527
1528   $item->assign_attributes(%$attr);
1529
1530   if ($is_new) {
1531     my $texts = get_part_texts($item->part, $record->language_id);
1532     $item->longdescription($texts->{longdescription})              if !defined $attr->{longdescription};
1533     $item->project_id($record->globalproject_id)                   if !defined $attr->{project_id};
1534     $item->lastcost($record->is_sales ? $item->part->lastcost : 0) if !defined $attr->{lastcost_as_number};
1535   }
1536
1537   return $item;
1538 }
1539
1540 # create a new item
1541 #
1542 # This is used to add one item
1543 sub new_item {
1544   my ($record, $attr) = @_;
1545
1546   my $item = SL::DB::OrderItem->new;
1547
1548   # Remove attributes where the user left or set the inputs empty.
1549   # So these attributes will be undefined and we can distinguish them
1550   # from zero later on.
1551   for (qw(qty_as_number sellprice_as_number discount_as_percent)) {
1552     delete $attr->{$_} if $attr->{$_} eq '';
1553   }
1554
1555   $item->assign_attributes(%$attr);
1556
1557   my $part         = SL::DB::Part->new(id => $attr->{parts_id})->load;
1558   my $price_source = SL::PriceSource->new(record_item => $item, record => $record);
1559
1560   $item->unit($part->unit) if !$item->unit;
1561
1562   my $price_src;
1563   if ( $part->is_assortment ) {
1564     # add assortment items with price 0, as the components carry the price
1565     $price_src = $price_source->price_from_source("");
1566     $price_src->price(0);
1567   } elsif (defined $item->sellprice) {
1568     $price_src = $price_source->price_from_source("");
1569     $price_src->price($item->sellprice);
1570   } else {
1571     $price_src = $price_source->best_price
1572                ? $price_source->best_price
1573                : $price_source->price_from_source("");
1574     $price_src->price($::form->round_amount($price_src->price / $record->exchangerate, 5)) if $record->exchangerate;
1575     $price_src->price(0) if !$price_source->best_price;
1576   }
1577
1578   my $discount_src;
1579   if (defined $item->discount) {
1580     $discount_src = $price_source->discount_from_source("");
1581     $discount_src->discount($item->discount);
1582   } else {
1583     $discount_src = $price_source->best_discount
1584                   ? $price_source->best_discount
1585                   : $price_source->discount_from_source("");
1586     $discount_src->discount(0) if !$price_source->best_discount;
1587   }
1588
1589   my %new_attr;
1590   $new_attr{part}                   = $part;
1591   $new_attr{description}            = $part->description     if ! $item->description;
1592   $new_attr{qty}                    = 1.0                    if ! $item->qty;
1593   $new_attr{price_factor_id}        = $part->price_factor_id if ! $item->price_factor_id;
1594   $new_attr{sellprice}              = $price_src->price;
1595   $new_attr{discount}               = $discount_src->discount;
1596   $new_attr{active_price_source}    = $price_src;
1597   $new_attr{active_discount_source} = $discount_src;
1598   $new_attr{longdescription}        = $part->notes           if ! defined $attr->{longdescription};
1599   $new_attr{project_id}             = $record->globalproject_id;
1600   $new_attr{lastcost}               = $record->is_sales ? $part->lastcost : 0;
1601
1602   # add_custom_variables adds cvars to an orderitem with no cvars for saving, but
1603   # they cannot be retrieved via custom_variables until the order/orderitem is
1604   # saved. Adding empty custom_variables to new orderitem here solves this problem.
1605   $new_attr{custom_variables} = [];
1606
1607   my $texts = get_part_texts($part, $record->language_id, description => $new_attr{description}, longdescription => $new_attr{longdescription});
1608
1609   $item->assign_attributes(%new_attr, %{ $texts });
1610
1611   return $item;
1612 }
1613
1614 sub setup_order_from_cv {
1615   my ($order) = @_;
1616
1617   $order->$_($order->customervendor->$_) for (qw(taxzone_id payment_id delivery_term_id currency_id));
1618
1619   $order->intnotes($order->customervendor->notes);
1620
1621   return if !$order->is_sales;
1622
1623   $order->salesman_id($order->customer->salesman_id || SL::DB::Manager::Employee->current->id);
1624   $order->taxincluded(defined($order->customer->taxincluded_checked)
1625                       ? $order->customer->taxincluded_checked
1626                       : $::myconfig{taxincluded_checked});
1627
1628   my $address = $order->customer->default_billing_address;;
1629   $order->billing_address_id($address ? $address->id : undef);
1630 }
1631
1632 # setup custom shipto from form
1633 #
1634 # The dialog returns form variables starting with 'shipto' and cvars starting
1635 # with 'shiptocvar_'.
1636 # Mark it to be deleted if a shipto from master data is selected
1637 # (i.e. order has a shipto).
1638 # Else, update or create a new custom shipto. If the fields are empty, it
1639 # will not be saved on save.
1640 sub setup_custom_shipto_from_form {
1641   my ($self, $order, $form) = @_;
1642
1643   if ($order->shipto) {
1644     $self->is_custom_shipto_to_delete(1);
1645   } else {
1646     my $custom_shipto = $order->custom_shipto || $order->custom_shipto(SL::DB::Shipto->new(module => 'OE', custom_variables => []));
1647
1648     my $shipto_cvars  = {map { my ($key) = m{^shiptocvar_(.+)}; $key => delete $form->{$_}} grep { m{^shiptocvar_} } keys %$form};
1649     my $shipto_attrs  = {map {                                  $_   => delete $form->{$_}} grep { m{^shipto}      } keys %$form};
1650
1651     $custom_shipto->assign_attributes(%$shipto_attrs);
1652     $custom_shipto->cvar_by_name($_)->value($shipto_cvars->{$_}) for keys %$shipto_cvars;
1653   }
1654 }
1655
1656 # recalculate prices and taxes
1657 #
1658 # Using the PriceTaxCalculator. Store linetotals in the item objects.
1659 sub recalc {
1660   my ($self) = @_;
1661
1662   my %pat = $self->order->calculate_prices_and_taxes();
1663
1664   $self->{taxes} = [];
1665   foreach my $tax_id (keys %{ $pat{taxes_by_tax_id} }) {
1666     my $netamount = sum0 map { $pat{amounts}->{$_}->{amount} } grep { $pat{amounts}->{$_}->{tax_id} == $tax_id } keys %{ $pat{amounts} };
1667
1668     push(@{ $self->{taxes} }, { amount    => $pat{taxes_by_tax_id}->{$tax_id},
1669                                 netamount => $netamount,
1670                                 tax       => SL::DB::Tax->new(id => $tax_id)->load });
1671   }
1672   pairwise { $a->{linetotal} = $b->{linetotal} } @{$self->order->items_sorted}, @{$pat{items}};
1673 }
1674
1675 # get data for saving, printing, ..., that is not changed in the form
1676 #
1677 # Only cvars for now.
1678 sub get_unalterable_data {
1679   my ($self) = @_;
1680
1681   foreach my $item (@{ $self->order->items }) {
1682     # autovivify all cvars that are not in the form (cvars_by_config can do it).
1683     # workaround to pre-parse number-cvars (parse_custom_variable_values does not parse number values).
1684     foreach my $var (@{ $item->cvars_by_config }) {
1685       $var->unparsed_value($::form->parse_amount(\%::myconfig, $var->{__unparsed_value})) if ($var->config->type eq 'number' && exists($var->{__unparsed_value}));
1686     }
1687     $item->parse_custom_variable_values;
1688   }
1689 }
1690
1691 # delete the order
1692 #
1693 # And remove related files in the spool directory
1694 sub delete {
1695   my ($self) = @_;
1696
1697   my $errors = [];
1698   my $db     = $self->order->db;
1699
1700   $db->with_transaction(
1701     sub {
1702       my @spoolfiles = grep { $_ } map { $_->spoolfile } @{ SL::DB::Manager::Status->get_all(where => [ trans_id => $self->order->id ]) };
1703       $self->order->delete;
1704       my $spool = $::lx_office_conf{paths}->{spool};
1705       unlink map { "$spool/$_" } @spoolfiles if $spool;
1706
1707       $self->save_history('DELETED');
1708
1709       1;
1710   }) || push(@{$errors}, $db->error);
1711
1712   return $errors;
1713 }
1714
1715 # save the order
1716 #
1717 # And delete items that are deleted in the form.
1718 sub save {
1719   my ($self) = @_;
1720
1721   my $errors = [];
1722   my $db     = $self->order->db;
1723
1724   $db->with_transaction(sub {
1725     # delete custom shipto if it is to be deleted or if it is empty
1726     if ($self->order->custom_shipto && ($self->is_custom_shipto_to_delete || $self->order->custom_shipto->is_empty)) {
1727       $self->order->custom_shipto->delete if $self->order->custom_shipto->shipto_id;
1728       $self->order->custom_shipto(undef);
1729     }
1730
1731     SL::DB::OrderItem->new(id => $_)->delete for @{$self->item_ids_to_delete || []};
1732     $self->order->save(cascade => 1);
1733
1734     # link records
1735     if ($::form->{converted_from_oe_id}) {
1736       my @converted_from_oe_ids = split ' ', $::form->{converted_from_oe_id};
1737
1738       foreach my $converted_from_oe_id (@converted_from_oe_ids) {
1739         my $src = SL::DB::Order->new(id => $converted_from_oe_id)->load;
1740         $src->update_attributes(closed => 1) if $src->type =~ /_quotation$/;
1741         $src->link_to_record($self->order);
1742       }
1743       if (scalar @{ $::form->{converted_from_orderitems_ids} || [] }) {
1744         my $idx = 0;
1745         foreach (@{ $self->order->items_sorted }) {
1746           my $from_id = $::form->{converted_from_orderitems_ids}->[$idx];
1747           next if !$from_id;
1748           SL::DB::RecordLink->new(from_table => 'orderitems',
1749                                   from_id    => $from_id,
1750                                   to_table   => 'orderitems',
1751                                   to_id      => $_->id
1752           )->save;
1753           $idx++;
1754         }
1755       }
1756
1757       $self->link_requirement_specs_linking_to_created_from_objects(@converted_from_oe_ids);
1758     }
1759
1760     $self->set_project_in_linked_requirement_specs if $self->order->globalproject_id;
1761
1762     $self->save_history('SAVED');
1763
1764     1;
1765   }) || push(@{$errors}, $db->error);
1766
1767   return $errors;
1768 }
1769
1770 sub workflow_sales_or_request_for_quotation {
1771   my ($self) = @_;
1772
1773   # always save
1774   my $errors = $self->save();
1775
1776   if (scalar @{ $errors }) {
1777     $self->js->flash('error', $_) for @{ $errors };
1778     return $self->js->render();
1779   }
1780
1781   my $destination_type = $::form->{type} eq sales_order_type() ? sales_quotation_type() : request_quotation_type();
1782
1783   $self->order(SL::DB::Order->new_from($self->order, destination_type => $destination_type));
1784   $self->{converted_from_oe_id} = delete $::form->{id};
1785
1786   # set item ids to new fake id, to identify them as new items
1787   foreach my $item (@{$self->order->items_sorted}) {
1788     $item->{new_fake_id} = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
1789   }
1790
1791   # change form type
1792   $::form->{type} = $destination_type;
1793   $self->type($self->init_type);
1794   $self->cv  ($self->init_cv);
1795   $self->check_auth;
1796
1797   $self->recalc();
1798   $self->get_unalterable_data();
1799   $self->pre_render();
1800
1801   # trigger rendering values for second row as hidden, because they
1802   # are loaded only on demand. So we need to keep the values from the
1803   # source.
1804   $_->{render_second_row} = 1 for @{ $self->order->items_sorted };
1805
1806   $self->render(
1807     'order/form',
1808     title => $self->get_title_for('edit'),
1809     %{$self->{template_args}}
1810   );
1811 }
1812
1813 sub workflow_sales_or_purchase_order {
1814   my ($self) = @_;
1815
1816   # always save
1817   my $errors = $self->save();
1818
1819   if (scalar @{ $errors }) {
1820     $self->js->flash('error', $_) foreach @{ $errors };
1821     return $self->js->render();
1822   }
1823
1824   my $destination_type = $::form->{type} eq sales_quotation_type()   ? sales_order_type()
1825                        : $::form->{type} eq request_quotation_type() ? purchase_order_type()
1826                        : $::form->{type} eq purchase_order_type()    ? sales_order_type()
1827                        : $::form->{type} eq sales_order_type()       ? purchase_order_type()
1828                        : '';
1829
1830   # check for direct delivery
1831   # copy shipto in custom shipto (custom shipto will be copied by new_from() in case)
1832   my $custom_shipto;
1833   if (   $::form->{type} eq sales_order_type() && $destination_type eq purchase_order_type()
1834       && $::form->{use_shipto} && $self->order->shipto) {
1835     $custom_shipto = $self->order->shipto->clone('SL::DB::Order');
1836   }
1837
1838   $self->order(SL::DB::Order->new_from($self->order, destination_type => $destination_type));
1839   $self->{converted_from_oe_id} = delete $::form->{id};
1840
1841   # set item ids to new fake id, to identify them as new items
1842   foreach my $item (@{$self->order->items_sorted}) {
1843     $item->{new_fake_id} = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
1844   }
1845
1846   if ($::form->{type} eq sales_order_type() && $destination_type eq purchase_order_type()) {
1847     if ($::form->{use_shipto}) {
1848       $self->order->custom_shipto($custom_shipto) if $custom_shipto;
1849     } else {
1850       # remove any custom shipto if not wanted
1851       $self->order->custom_shipto(SL::DB::Shipto->new(module => 'OE', custom_variables => []));
1852     }
1853   }
1854
1855   # change form type
1856   $::form->{type} = $destination_type;
1857   $self->type($self->init_type);
1858   $self->cv  ($self->init_cv);
1859   $self->check_auth;
1860
1861   $self->recalc();
1862   $self->get_unalterable_data();
1863   $self->pre_render();
1864
1865   # trigger rendering values for second row as hidden, because they
1866   # are loaded only on demand. So we need to keep the values from the
1867   # source.
1868   $_->{render_second_row} = 1 for @{ $self->order->items_sorted };
1869
1870   $self->render(
1871     'order/form',
1872     title => $self->get_title_for('edit'),
1873     %{$self->{template_args}}
1874   );
1875 }
1876
1877
1878 sub pre_render {
1879   my ($self) = @_;
1880
1881   $self->{all_taxzones}               = SL::DB::Manager::TaxZone->get_all_sorted();
1882   $self->{all_currencies}             = SL::DB::Manager::Currency->get_all_sorted();
1883   $self->{all_departments}            = SL::DB::Manager::Department->get_all_sorted();
1884   $self->{all_languages}              = SL::DB::Manager::Language->get_all_sorted();
1885   $self->{all_employees}              = SL::DB::Manager::Employee->get_all(where => [ or => [ id => $self->order->employee_id,
1886                                                                                               deleted => 0 ] ],
1887                                                                            sort_by => 'name');
1888   $self->{all_salesmen}               = SL::DB::Manager::Employee->get_all(where => [ or => [ id => $self->order->salesman_id,
1889                                                                                               deleted => 0 ] ],
1890                                                                            sort_by => 'name');
1891   $self->{all_payment_terms}          = SL::DB::Manager::PaymentTerm->get_all_sorted(where => [ or => [ id => $self->order->payment_id,
1892                                                                                                         obsolete => 0 ] ]);
1893   $self->{all_delivery_terms}         = SL::DB::Manager::DeliveryTerm->get_all_sorted();
1894   $self->{current_employee_id}        = SL::DB::Manager::Employee->current->id;
1895   $self->{periodic_invoices_status}   = $self->get_periodic_invoices_status($self->order->periodic_invoices_config);
1896   $self->{order_probabilities}        = [ map { { title => ($_ * 10) . '%', id => $_ * 10 } } (0..10) ];
1897   $self->{positions_scrollbar_height} = SL::Helper::UserPreferences::PositionsScrollbar->new()->get_height();
1898
1899   my $print_form = Form->new('');
1900   $print_form->{type}        = $self->type;
1901   $print_form->{printers}    = SL::DB::Manager::Printer->get_all_sorted;
1902   $self->{print_options}     = SL::Helper::PrintOptions->get_print_options(
1903     form => $print_form,
1904     options => {dialog_name_prefix => 'print_options.',
1905                 show_headers       => 1,
1906                 no_queue           => 1,
1907                 no_postscript      => 1,
1908                 no_opendocument    => 0,
1909                 no_html            => 0},
1910   );
1911
1912   foreach my $item (@{$self->order->orderitems}) {
1913     my $price_source = SL::PriceSource->new(record_item => $item, record => $self->order);
1914     $item->active_price_source(   $price_source->price_from_source(   $item->active_price_source   ));
1915     $item->active_discount_source($price_source->discount_from_source($item->active_discount_source));
1916   }
1917
1918   if (any { $self->type eq $_ } (sales_order_type(), purchase_order_type())) {
1919     # Calculate shipped qtys here to prevent calling calculate for every item via the items method.
1920     # Do not use write_to_objects to prevent order->delivered to be set, because this should be
1921     # the value from db, which can be set manually or is set when linked delivery orders are saved.
1922     SL::Helper::ShippedQty->new->calculate($self->order)->write_to(\@{$self->order->items});
1923   }
1924
1925   if ($self->order->number && $::instance_conf->get_webdav) {
1926     my $webdav = SL::Webdav->new(
1927       type     => $self->type,
1928       number   => $self->order->number,
1929     );
1930     my @all_objects = $webdav->get_all_objects;
1931     @{ $self->{template_args}->{WEBDAV} } = map { { name => $_->filename,
1932                                                     type => t8('File'),
1933                                                     link => File::Spec->catfile($_->full_filedescriptor),
1934                                                 } } @all_objects;
1935   }
1936
1937   if (   (any { $self->type eq $_ } (sales_quotation_type(), sales_order_type()))
1938       && $::instance_conf->get_transport_cost_reminder_article_number_id ) {
1939     $self->{template_args}->{transport_cost_reminder_article} = SL::DB::Part->new(id => $::instance_conf->get_transport_cost_reminder_article_number_id)->load;
1940   }
1941
1942   $self->get_item_cvpartnumber($_) for @{$self->order->items_sorted};
1943
1944   $::request->{layout}->use_javascript("${_}.js") for qw(kivi.Validator kivi.SalesPurchase kivi.Order kivi.File ckeditor/ckeditor ckeditor/adapters/jquery
1945                                                          edit_periodic_invoices_config calculate_qty follow_up show_history);
1946   $self->setup_edit_action_bar;
1947 }
1948
1949 sub setup_edit_action_bar {
1950   my ($self, %params) = @_;
1951
1952   my $deletion_allowed = (any { $self->type eq $_ } (sales_quotation_type(), request_quotation_type()))
1953                       || (($self->type eq sales_order_type())    && $::instance_conf->get_sales_order_show_delete)
1954                       || (($self->type eq purchase_order_type()) && $::instance_conf->get_purchase_order_show_delete);
1955
1956   my @req_trans_cost_art = qw(kivi.Order.check_transport_cost_article_presence) x!!$::instance_conf->get_transport_cost_reminder_article_number_id;
1957   my @req_cusordnumber   = qw(kivi.Order.check_cusordnumber_presence)           x($self->type eq sales_order_type() && $::instance_conf->get_order_warn_no_cusordnumber);
1958
1959   for my $bar ($::request->layout->get('actionbar')) {
1960     $bar->add(
1961       combobox => [
1962         action => [
1963           t8('Save'),
1964           call      => [ 'kivi.Order.save', 'save', $::instance_conf->get_order_warn_duplicate_parts,
1965                                                     $::instance_conf->get_order_warn_no_deliverydate,
1966           ],
1967           checks    => [ 'kivi.Order.check_save_active_periodic_invoices', ['kivi.validate_form','#order_form'],
1968                          @req_trans_cost_art, @req_cusordnumber,
1969           ],
1970         ],
1971         action => [
1972           t8('Save as new'),
1973           call      => [ 'kivi.Order.save', 'save_as_new', $::instance_conf->get_order_warn_duplicate_parts ],
1974           checks    => [ 'kivi.Order.check_save_active_periodic_invoices',
1975                          @req_trans_cost_art, @req_cusordnumber,
1976           ],
1977           disabled  => !$self->order->id ? t8('This object has not been saved yet.') : undef,
1978         ],
1979       ], # end of combobox "Save"
1980
1981       combobox => [
1982         action => [
1983           t8('Workflow'),
1984         ],
1985         action => [
1986           t8('Save and Quotation'),
1987           submit   => [ '#order_form', { action => "Order/sales_quotation" } ],
1988           checks   => [ @req_trans_cost_art, @req_cusordnumber ],
1989           only_if  => (any { $self->type eq $_ } (sales_order_type())),
1990         ],
1991         action => [
1992           t8('Save and RFQ'),
1993           submit   => [ '#order_form', { action => "Order/request_for_quotation" } ],
1994           only_if  => (any { $self->type eq $_ } (purchase_order_type())),
1995         ],
1996         action => [
1997           t8('Save and Sales Order'),
1998           submit   => [ '#order_form', { action => "Order/sales_order" } ],
1999           checks   => [ @req_trans_cost_art ],
2000           only_if  => (any { $self->type eq $_ } (sales_quotation_type(), purchase_order_type())),
2001         ],
2002         action => [
2003           t8('Save and Purchase Order'),
2004           call      => [ 'kivi.Order.purchase_order_check_for_direct_delivery' ],
2005           checks    => [ @req_trans_cost_art, @req_cusordnumber ],
2006           only_if   => (any { $self->type eq $_ } (sales_order_type(), request_quotation_type())),
2007         ],
2008         action => [
2009           t8('Save and Delivery Order'),
2010           call      => [ 'kivi.Order.save', 'save_and_delivery_order', $::instance_conf->get_order_warn_duplicate_parts,
2011                                                                        $::instance_conf->get_order_warn_no_deliverydate,
2012                                                                                                                         ],
2013           checks    => [ 'kivi.Order.check_save_active_periodic_invoices',
2014                          @req_trans_cost_art, @req_cusordnumber,
2015           ],
2016           only_if   => (any { $self->type eq $_ } (sales_order_type(), purchase_order_type()))
2017         ],
2018         action => [
2019           t8('Save and Invoice'),
2020           call      => [ 'kivi.Order.save', 'save_and_invoice', $::instance_conf->get_order_warn_duplicate_parts ],
2021           checks    => [ 'kivi.Order.check_save_active_periodic_invoices',
2022                          @req_trans_cost_art, @req_cusordnumber,
2023           ],
2024         ],
2025         action => [
2026           t8('Save and AP Transaction'),
2027           call      => [ 'kivi.Order.save', 'save_and_ap_transaction', $::instance_conf->get_order_warn_duplicate_parts ],
2028           only_if   => (any { $self->type eq $_ } (purchase_order_type()))
2029         ],
2030
2031       ], # end of combobox "Workflow"
2032
2033       combobox => [
2034         action => [
2035           t8('Export'),
2036         ],
2037         action => [
2038           t8('Save and preview PDF'),
2039           call   => [ 'kivi.Order.save', 'preview_pdf', $::instance_conf->get_order_warn_duplicate_parts,
2040                                                         $::instance_conf->get_order_warn_no_deliverydate,
2041                     ],
2042           checks => [ @req_trans_cost_art, @req_cusordnumber ],
2043         ],
2044         action => [
2045           t8('Save and print'),
2046           call   => [ 'kivi.Order.show_print_options', $::instance_conf->get_order_warn_duplicate_parts,
2047                                                        $::instance_conf->get_order_warn_no_deliverydate,
2048                     ],
2049           checks => [ @req_trans_cost_art, @req_cusordnumber ],
2050         ],
2051         action => [
2052           t8('Save and E-mail'),
2053           id   => 'save_and_email_action',
2054           call => [ 'kivi.Order.save', 'save_and_show_email_dialog', $::instance_conf->get_order_warn_duplicate_parts,
2055                                                                      $::instance_conf->get_order_warn_no_deliverydate,
2056                   ],
2057           disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
2058         ],
2059         action => [
2060           t8('Download attachments of all parts'),
2061           call     => [ 'kivi.File.downloadOrderitemsFiles', $::form->{type}, $::form->{id} ],
2062           disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
2063           only_if  => $::instance_conf->get_doc_storage,
2064         ],
2065       ], # end of combobox "Export"
2066
2067       action => [
2068         t8('Delete'),
2069         call     => [ 'kivi.Order.delete_order' ],
2070         confirm  => $::locale->text('Do you really want to delete this object?'),
2071         disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
2072         only_if  => $deletion_allowed,
2073       ],
2074
2075       combobox => [
2076         action => [
2077           t8('more')
2078         ],
2079         action => [
2080           t8('History'),
2081           call     => [ 'set_history_window', $self->order->id, 'id' ],
2082           disabled => !$self->order->id ? t8('This record has not been saved yet.') : undef,
2083         ],
2084         action => [
2085           t8('Follow-Up'),
2086           call     => [ 'kivi.Order.follow_up_window' ],
2087           disabled => !$self->order->id ? t8('This object has not been saved yet.') : undef,
2088           only_if  => $::auth->assert('productivity', 1),
2089         ],
2090       ], # end of combobox "more"
2091     );
2092   }
2093 }
2094
2095 sub generate_doc {
2096   my ($self, $doc_ref, $params) = @_;
2097
2098   my $order  = $self->order;
2099   my @errors = ();
2100
2101   my $print_form = Form->new('');
2102   $print_form->{type}        = $order->type;
2103   $print_form->{formname}    = $params->{formname} || $order->type;
2104   $print_form->{format}      = $params->{format}   || 'pdf';
2105   $print_form->{media}       = $params->{media}    || 'file';
2106   $print_form->{groupitems}  = $params->{groupitems};
2107   $print_form->{printer_id}  = $params->{printer_id};
2108   $print_form->{media}       = 'file'                             if $print_form->{media} eq 'screen';
2109
2110   $order->language($params->{language});
2111   $order->flatten_to_form($print_form, format_amounts => 1);
2112
2113   my $template_ext;
2114   my $template_type;
2115   if ($print_form->{format} =~ /(opendocument|oasis)/i) {
2116     $template_ext  = 'odt';
2117     $template_type = 'OpenDocument';
2118   } elsif ($print_form->{format} =~ m{html}i) {
2119     $template_ext  = 'html';
2120     $template_type = 'HTML';
2121   }
2122
2123   # search for the template
2124   my ($template_file, @template_files) = SL::Helper::CreatePDF->find_template(
2125     name        => $print_form->{formname},
2126     extension   => $template_ext,
2127     email       => $print_form->{media} eq 'email',
2128     language    => $params->{language},
2129     printer_id  => $print_form->{printer_id},
2130   );
2131
2132   if (!defined $template_file) {
2133     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);
2134   }
2135
2136   return @errors if scalar @errors;
2137
2138   $print_form->throw_on_error(sub {
2139     eval {
2140       $print_form->prepare_for_printing;
2141
2142       $$doc_ref = SL::Helper::CreatePDF->create_pdf(
2143         format        => $print_form->{format},
2144         template_type => $template_type,
2145         template      => $template_file,
2146         variables     => $print_form,
2147         variable_content_types => {
2148           longdescription => 'html',
2149           partnotes       => 'html',
2150           notes           => 'html',
2151           $::form->get_variable_content_types_for_cvars,
2152         },
2153       );
2154       1;
2155     } || push @errors, ref($EVAL_ERROR) eq 'SL::X::FormError' ? $EVAL_ERROR->error : $EVAL_ERROR;
2156   });
2157
2158   return @errors;
2159 }
2160
2161 sub get_files_for_email_dialog {
2162   my ($self) = @_;
2163
2164   my %files = map { ($_ => []) } qw(versions files vc_files part_files);
2165
2166   return %files if !$::instance_conf->get_doc_storage;
2167
2168   if ($self->order->id) {
2169     $files{versions} = [ SL::File->get_all_versions(object_id => $self->order->id,              object_type => $self->order->type, file_type => 'document') ];
2170     $files{files}    = [ SL::File->get_all(         object_id => $self->order->id,              object_type => $self->order->type, file_type => 'attachment') ];
2171     $files{vc_files} = [ SL::File->get_all(         object_id => $self->order->{$self->cv}->id, object_type => $self->cv,          file_type => 'attachment') ];
2172     $files{project_files} = [ SL::File->get_all(    object_id => $self->order->globalproject_id, object_type => 'project',         file_type => 'attachment') ];
2173   }
2174
2175   my @parts =
2176     uniq_by { $_->{id} }
2177     map {
2178       +{ id         => $_->part->id,
2179          partnumber => $_->part->partnumber }
2180     } @{$self->order->items_sorted};
2181
2182   foreach my $part (@parts) {
2183     my @pfiles = SL::File->get_all(object_id => $part->{id}, object_type => 'part');
2184     push @{ $files{part_files} }, map { +{ %{ $_ }, partnumber => $part->{partnumber} } } @pfiles;
2185   }
2186
2187   foreach my $key (keys %files) {
2188     $files{$key} = [ sort_by { lc $_->{db_file}->{file_name} } @{ $files{$key} } ];
2189   }
2190
2191   return %files;
2192 }
2193
2194 sub make_periodic_invoices_config_from_yaml {
2195   my ($yaml_config) = @_;
2196
2197   return if !$yaml_config;
2198   my $attr = SL::YAML::Load($yaml_config);
2199   return if 'HASH' ne ref $attr;
2200   return SL::DB::PeriodicInvoicesConfig->new(%$attr);
2201 }
2202
2203
2204 sub get_periodic_invoices_status {
2205   my ($self, $config) = @_;
2206
2207   return                      if $self->type ne sales_order_type();
2208   return t8('not configured') if !$config;
2209
2210   my $active = ('HASH' eq ref $config)                           ? $config->{active}
2211              : ('SL::DB::PeriodicInvoicesConfig' eq ref $config) ? $config->active
2212              :                                                     die "Cannot get status of periodic invoices config";
2213
2214   return $active ? t8('active') : t8('inactive');
2215 }
2216
2217 sub get_title_for {
2218   my ($self, $action) = @_;
2219
2220   return '' if none { lc($action)} qw(add edit);
2221
2222   # for locales:
2223   # $::locale->text("Add Sales Order");
2224   # $::locale->text("Add Purchase Order");
2225   # $::locale->text("Add Quotation");
2226   # $::locale->text("Add Request for Quotation");
2227   # $::locale->text("Edit Sales Order");
2228   # $::locale->text("Edit Purchase Order");
2229   # $::locale->text("Edit Quotation");
2230   # $::locale->text("Edit Request for Quotation");
2231
2232   $action = ucfirst(lc($action));
2233   return $self->type eq sales_order_type()       ? $::locale->text("$action Sales Order")
2234        : $self->type eq purchase_order_type()    ? $::locale->text("$action Purchase Order")
2235        : $self->type eq sales_quotation_type()   ? $::locale->text("$action Quotation")
2236        : $self->type eq request_quotation_type() ? $::locale->text("$action Request for Quotation")
2237        : '';
2238 }
2239
2240 sub get_item_cvpartnumber {
2241   my ($self, $item) = @_;
2242
2243   return if !$self->search_cvpartnumber;
2244   return if !$self->order->customervendor;
2245
2246   if ($self->cv eq 'vendor') {
2247     my @mms = grep { $_->make eq $self->order->customervendor->id } @{$item->part->makemodels};
2248     $item->{cvpartnumber} = $mms[0]->model if scalar @mms;
2249   } elsif ($self->cv eq 'customer') {
2250     my @cps = grep { $_->customer_id eq $self->order->customervendor->id } @{$item->part->customerprices};
2251     $item->{cvpartnumber} = $cps[0]->customer_partnumber if scalar @cps;
2252   }
2253 }
2254
2255 sub get_part_texts {
2256   my ($part_or_id, $language_or_id, %defaults) = @_;
2257
2258   my $part        = ref($part_or_id)     ? $part_or_id         : SL::DB::Part->load_cached($part_or_id);
2259   my $language_id = ref($language_or_id) ? $language_or_id->id : $language_or_id;
2260   my $texts       = {
2261     description     => $defaults{description}     // $part->description,
2262     longdescription => $defaults{longdescription} // $part->notes,
2263   };
2264
2265   return $texts unless $language_id;
2266
2267   my $translation = SL::DB::Manager::Translation->get_first(
2268     where => [
2269       parts_id    => $part->id,
2270       language_id => $language_id,
2271     ]);
2272
2273   $texts->{description}     = $translation->translation     if $translation && $translation->translation;
2274   $texts->{longdescription} = $translation->longdescription if $translation && $translation->longdescription;
2275
2276   return $texts;
2277 }
2278
2279 sub sales_order_type {
2280   'sales_order';
2281 }
2282
2283 sub purchase_order_type {
2284   'purchase_order';
2285 }
2286
2287 sub sales_quotation_type {
2288   'sales_quotation';
2289 }
2290
2291 sub request_quotation_type {
2292   'request_quotation';
2293 }
2294
2295 sub nr_key {
2296   return $_[0]->type eq sales_order_type()       ? 'ordnumber'
2297        : $_[0]->type eq purchase_order_type()    ? 'ordnumber'
2298        : $_[0]->type eq sales_quotation_type()   ? 'quonumber'
2299        : $_[0]->type eq request_quotation_type() ? 'quonumber'
2300        : '';
2301 }
2302
2303 sub save_and_redirect_to {
2304   my ($self, %params) = @_;
2305
2306   my $errors = $self->save();
2307
2308   if (scalar @{ $errors }) {
2309     $self->js->flash('error', $_) foreach @{ $errors };
2310     return $self->js->render();
2311   }
2312
2313   my $text = $self->type eq sales_order_type()       ? $::locale->text('The order has been saved')
2314            : $self->type eq purchase_order_type()    ? $::locale->text('The order has been saved')
2315            : $self->type eq sales_quotation_type()   ? $::locale->text('The quotation has been saved')
2316            : $self->type eq request_quotation_type() ? $::locale->text('The rfq has been saved')
2317            : '';
2318   flash_later('info', $text);
2319
2320   $self->redirect_to(%params, id => $self->order->id);
2321 }
2322
2323 sub save_history {
2324   my ($self, $addition) = @_;
2325
2326   my $number_type = $self->order->type =~ m{order} ? 'ordnumber' : 'quonumber';
2327   my $snumbers    = $number_type . '_' . $self->order->$number_type;
2328
2329   SL::DB::History->new(
2330     trans_id    => $self->order->id,
2331     employee_id => SL::DB::Manager::Employee->current->id,
2332     what_done   => $self->order->type,
2333     snumbers    => $snumbers,
2334     addition    => $addition,
2335   )->save;
2336 }
2337
2338 sub store_doc_to_webdav_and_filemanagement {
2339   my ($self, $content, $filename, $variant) = @_;
2340
2341   my $order = $self->order;
2342   my @errors;
2343
2344   # copy file to webdav folder
2345   if ($order->number && $::instance_conf->get_webdav_documents) {
2346     my $webdav = SL::Webdav->new(
2347       type     => $order->type,
2348       number   => $order->number,
2349     );
2350     my $webdav_file = SL::Webdav::File->new(
2351       webdav   => $webdav,
2352       filename => $filename,
2353     );
2354     eval {
2355       $webdav_file->store(data => \$content);
2356       1;
2357     } or do {
2358       push @errors, t8('Storing the document to the WebDAV folder failed: #1', $@);
2359     };
2360   }
2361   if ($order->id && $::instance_conf->get_doc_storage) {
2362     eval {
2363       SL::File->save(object_id     => $order->id,
2364                      object_type   => $order->type,
2365                      mime_type     => SL::MIME->mime_type_from_ext($filename),
2366                      source        => 'created',
2367                      file_type     => 'document',
2368                      file_name     => $filename,
2369                      file_contents => $content,
2370                      print_variant => $variant);
2371       1;
2372     } or do {
2373       push @errors, t8('Storing the document in the storage backend failed: #1', $@);
2374     };
2375   }
2376
2377   return @errors;
2378 }
2379
2380 sub link_requirement_specs_linking_to_created_from_objects {
2381   my ($self, @converted_from_oe_ids) = @_;
2382
2383   return unless @converted_from_oe_ids;
2384
2385   my $rs_orders = SL::DB::Manager::RequirementSpecOrder->get_all(where => [ order_id => \@converted_from_oe_ids ]);
2386   foreach my $rs_order (@{ $rs_orders }) {
2387     SL::DB::RequirementSpecOrder->new(
2388       order_id            => $self->order->id,
2389       requirement_spec_id => $rs_order->requirement_spec_id,
2390       version_id          => $rs_order->version_id,
2391     )->save;
2392   }
2393 }
2394
2395 sub set_project_in_linked_requirement_specs {
2396   my ($self) = @_;
2397
2398   my $rs_orders = SL::DB::Manager::RequirementSpecOrder->get_all(where => [ order_id => $self->order->id ]);
2399   foreach my $rs_order (@{ $rs_orders }) {
2400     next if $rs_order->requirement_spec->project_id == $self->order->globalproject_id;
2401
2402     $rs_order->requirement_spec->update_attributes(project_id => $self->order->globalproject_id);
2403   }
2404 }
2405
2406 1;
2407
2408 __END__
2409
2410 =encoding utf-8
2411
2412 =head1 NAME
2413
2414 SL::Controller::Order - controller for orders
2415
2416 =head1 SYNOPSIS
2417
2418 This is a new form to enter orders, completely rewritten with the use
2419 of controller and java script techniques.
2420
2421 The aim is to provide the user a better experience and a faster workflow. Also
2422 the code should be more readable, more reliable and better to maintain.
2423
2424 =head2 Key Features
2425
2426 =over 4
2427
2428 =item *
2429
2430 One input row, so that input happens every time at the same place.
2431
2432 =item *
2433
2434 Use of pickers where possible.
2435
2436 =item *
2437
2438 Possibility to enter more than one item at once.
2439
2440 =item *
2441
2442 Item list in a scrollable area, so that the workflow buttons stay at
2443 the bottom.
2444
2445 =item *
2446
2447 Reordering item rows with drag and drop is possible. Sorting item rows is
2448 possible (by partnumber, description, qty, sellprice and discount for now).
2449
2450 =item *
2451
2452 No C<update> is necessary. All entries and calculations are managed
2453 with ajax-calls and the page only reloads on C<save>.
2454
2455 =item *
2456
2457 User can see changes immediately, because of the use of java script
2458 and ajax.
2459
2460 =back
2461
2462 =head1 CODE
2463
2464 =head2 Layout
2465
2466 =over 4
2467
2468 =item * C<SL/Controller/Order.pm>
2469
2470 the controller
2471
2472 =item * C<template/webpages/order/form.html>
2473
2474 main form
2475
2476 =item * C<template/webpages/order/tabs/basic_data.html>
2477
2478 Main tab for basic_data.
2479
2480 This is the only tab here for now. "linked records" and "webdav" tabs are
2481 reused from generic code.
2482
2483 =over 4
2484
2485 =item * C<template/webpages/order/tabs/_business_info_row.html>
2486
2487 For displaying information on business type
2488
2489 =item * C<template/webpages/order/tabs/_item_input.html>
2490
2491 The input line for items
2492
2493 =item * C<template/webpages/order/tabs/_row.html>
2494
2495 One row for already entered items
2496
2497 =item * C<template/webpages/order/tabs/_tax_row.html>
2498
2499 Displaying tax information
2500
2501 =item * C<template/webpages/order/tabs/_price_sources_dialog.html>
2502
2503 Dialog for selecting price and discount sources
2504
2505 =back
2506
2507 =item * C<js/kivi.Order.js>
2508
2509 java script functions
2510
2511 =back
2512
2513 =head1 TODO
2514
2515 =over 4
2516
2517 =item * testing
2518
2519 =item * price sources: little symbols showing better price / better discount
2520
2521 =item * select units in input row?
2522
2523 =item * check for direct delivery (workflow sales order -> purchase order)
2524
2525 =item * access rights
2526
2527 =item * display weights
2528
2529 =item * mtime check
2530
2531 =item * optional client/user behaviour
2532
2533 (transactions has to be set - department has to be set -
2534  force project if enabled in client config)
2535
2536 =back
2537
2538 =head1 KNOWN BUGS AND CAVEATS
2539
2540 =over 4
2541
2542 =item *
2543
2544 Customer discount is not displayed as a valid discount in price source popup
2545 (this might be a bug in price sources)
2546
2547 (I cannot reproduce this (Bernd))
2548
2549 =item *
2550
2551 No indication that <shift>-up/down expands/collapses second row.
2552
2553 =item *
2554
2555 Inline creation of parts is not currently supported
2556
2557 =item *
2558
2559 Table header is not sticky in the scrolling area.
2560
2561 =item *
2562
2563 Sorting does not include C<position>, neither does reordering.
2564
2565 This behavior was implemented intentionally. But we can discuss, which behavior
2566 should be implemented.
2567
2568 =back
2569
2570 =head1 To discuss / Nice to have
2571
2572 =over 4
2573
2574 =item *
2575
2576 How to expand/collapse second row. Now it can be done clicking the icon or
2577 <shift>-up/down.
2578
2579 =item *
2580
2581 Possibility to select PriceSources in input row?
2582
2583 =item *
2584
2585 This controller uses a (changed) copy of the template for the PriceSource
2586 dialog. Maybe there could be used one code source.
2587
2588 =item *
2589
2590 Rounding-differences between this controller (PriceTaxCalculator) and the old
2591 form. This is not only a problem here, but also in all parts using the PTC.
2592 There exists a ticket and a patch. This patch should be testet.
2593
2594 =item *
2595
2596 An indicator, if the actual inputs are saved (like in an
2597 editor or on text processing application).
2598
2599 =item *
2600
2601 A warning when leaving the page without saveing unchanged inputs.
2602
2603
2604 =back
2605
2606 =head1 AUTHOR
2607
2608 Bernd Bleßmann E<lt>bernd@kivitendo-premium.deE<gt>
2609
2610 =cut