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