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