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