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