Pflichtenhefte: benutzerdefinierte Variablen anzeigen und bearbeiten
[kivitendo-erp.git] / SL / Controller / RequirementSpec.pm
1 package SL::Controller::RequirementSpec;
2
3 use strict;
4 use utf8;
5
6 use parent qw(SL::Controller::Base);
7
8 use File::Spec ();
9
10 use SL::ClientJS;
11 use SL::Common ();
12 use SL::Controller::Helper::GetModels;
13 use SL::Controller::Helper::ReportGenerator;
14 use SL::Controller::Helper::RequirementSpec;
15 use SL::DB::Customer;
16 use SL::DB::Project;
17 use SL::DB::ProjectStatus;
18 use SL::DB::ProjectType;
19 use SL::DB::RequirementSpecComplexity;
20 use SL::DB::RequirementSpecRisk;
21 use SL::DB::RequirementSpecStatus;
22 use SL::DB::RequirementSpecType;
23 use SL::DB::RequirementSpec;
24 use SL::Helper::CreatePDF qw();
25 use SL::Helper::Flash;
26 use SL::Locale::String;
27 use SL::Template::LaTeX;
28
29 use Rose::Object::MakeMethods::Generic
30 (
31   scalar                  => [ qw(requirement_spec_item visible_item visible_section) ],
32   'scalar --get_set_init' => [ qw(requirement_spec customers types statuses complexities risks projects project_types project_statuses default_project_type default_project_status copy_source js
33                                   current_text_block_output_position models time_based_units html_template) ],
34 );
35
36 __PACKAGE__->run_before('setup');
37 __PACKAGE__->run_before('set_default_filter_args', only => [ qw(list) ]);
38
39 my %sort_columns = (
40   customer      => t8('Customer'),
41   title         => t8('Title'),
42   type          => t8('Requirement Spec Type'),
43   status        => t8('Requirement Spec Status'),
44   projectnumber => t8('Project Number'),
45   version       => t8('Version'),
46   mtime         => t8('Last modification'),
47 );
48
49 #
50 # actions
51 #
52
53
54 sub action_list {
55   my ($self) = @_;
56
57   $self->prepare_report;
58   $self->report_generator_list_objects(report => $self->{report}, objects => $self->models->get);
59 }
60
61 sub action_new {
62   my ($self) = @_;
63
64   $self->requirement_spec(SL::DB::RequirementSpec->new(is_template => $::form->{is_template}));
65
66   if ($self->copy_source) {
67     $self->requirement_spec->$_($self->copy_source->$_) for qw(type_id status_id customer_id title hourly_rate is_template)
68   }
69
70   $self->render('requirement_spec/new', title => $self->requirement_spec->is_template ? t8('Create a new requirement spec template') : t8('Create a new requirement spec'));
71 }
72
73 sub action_ajax_show_basic_settings {
74   my ($self) = @_;
75
76   $self->render('requirement_spec/_show_basic_settings', { layout => 0 });
77 }
78
79 sub action_ajax_edit {
80   my ($self) = @_;
81
82   my $html   = $self->render('requirement_spec/_form', { output => 0 }, submit_as => 'ajax');
83
84   $self->js
85     ->hide('#basic_settings')
86     ->after('#basic_settings', $html)
87     ->render($self);
88 }
89
90 sub action_ajax_edit_project_link {
91   my ($self) = @_;
92
93   my $html   = $self->render('requirement_spec/_project_link_form', { output => 0 }, submit_as => 'ajax');
94
95   $self->js
96     ->hide('#basic_settings')
97     ->after('#basic_settings', $html)
98     ->render($self);
99 }
100
101 sub action_ajax_show_time_and_cost_estimate {
102   my ($self) = @_;
103
104   $self->render('requirement_spec/_show_time_and_cost_estimate', { layout => 0 });
105 }
106
107 sub action_ajax_edit_time_and_cost_estimate {
108   my ($self) = @_;
109
110   my $html   = $self->render('requirement_spec/_edit_time_and_cost_estimate', { output => 0 });
111   my $first  = ($self->requirement_spec->sections_sorted || [])->[0];
112   $first     = ($first->children_sorted || [])->[0] if $first;
113
114   $self->js
115    ->hide('#time_cost_estimate')
116    ->after('#time_cost_estimate', $html)
117    ->on('#time_cost_estimate INPUT[type=text]', 'keydown', 'kivi.requirement_spec.time_cost_estimate_input_key_down')
118    ->action_if($first && $first->id, 'focus', '#time_and_cost_estimate_form_complexity_id_' . $first->id)
119    ->render($self);
120 }
121
122 sub action_ajax_save_time_and_cost_estimate {
123   my ($self) = @_;
124
125   $self->requirement_spec->db->do_transaction(sub {
126     # Make Emacs happy
127     1;
128     foreach my $attributes (@{ $::form->{requirement_spec_items} || [] }) {
129       SL::DB::RequirementSpecItem
130         ->new(id => delete $attributes->{id})
131         ->load
132         ->update_attributes(%{ $attributes });
133     }
134
135     1;
136   });
137
138   $self->requirement_spec(SL::DB::RequirementSpec->new(id => $self->requirement_spec->id)->load);
139
140   my $html = $self->render('requirement_spec/_show_time_and_cost_estimate', { output => 0 }, initially_hidden => !!$::form->{keep_open});
141   $self->js->replaceWith('#time_cost_estimate', $html);
142
143   return $self->js->render($self) if $::form->{keep_open};
144
145   $self->js->remove('#time_cost_estimate_form_container');
146
147   if ($self->visible_section) {
148     $html = $self->render('requirement_spec_item/_section', { output => 0 }, requirement_spec_item => $self->visible_section);
149     $self->js->html('#column-content', $html);
150   }
151
152   $self->js->render($self);
153 }
154
155 sub action_show {
156   my ($self) = @_;
157
158   my $title  = $self->requirement_spec->is_template ? t8('Show requirement spec template') : t8('Show requirement spec');
159   my $item   = $::form->{requirement_spec_item_id} ? SL::DB::RequirementSpecItem->new(id => $::form->{requirement_spec_item_id})->load : @{ $self->requirement_spec->sections_sorted }[0];
160   $self->requirement_spec_item($item);
161
162   $self->render('requirement_spec/show', title => $title);
163 }
164
165 sub action_create {
166   my ($self) = @_;
167
168   $self->requirement_spec(SL::DB::RequirementSpec->new);
169   $self->create_or_update;
170 }
171
172 sub action_update {
173   my ($self) = @_;
174   $self->create_or_update;
175 }
176
177 sub action_update_project_link {
178   my $self   = shift;
179   my $action = delete($::form->{project_link_action}) || 'keep';
180
181   return $self->update_project_link_none_keep_existing($action) if $action =~ m{none|keep|existing};
182   return $self->update_project_link_new($action)                if $action eq 'new';
183   return $self->update_project_link_create($action)             if $action eq 'create';
184
185   die "Unknown project link action '$action'";
186 }
187
188 sub action_destroy {
189   my ($self) = @_;
190
191   if (eval { $self->requirement_spec->delete; 1; }) {
192     flash_later('info',  t8('The requirement spec has been deleted.'));
193   } else {
194     flash_later('error', t8('The requirement spec is in use and cannot be deleted.'));
195   }
196
197   $self->redirect_to(action => 'list');
198 }
199
200 sub action_revert_to {
201   my ($self, %params) = @_;
202
203   return $self->js->error(t8('Cannot revert a versioned copy.'))->render($self) if $self->requirement_spec->working_copy_id;
204
205   my $versioned_copy = SL::DB::RequirementSpec->new(id => $::form->{versioned_copy_id})->load;
206
207   $self->requirement_spec->copy_from($versioned_copy);
208   my $version = $versioned_copy->versions->[0];
209   $version->update_attributes(working_copy_id => $self->requirement_spec->id);
210
211   flash_later('info', t8('The requirement spec has been reverted to version #1.', $versioned_copy->version->version_number));
212   $self->js->redirect_to($self->url_for(action => 'show', id => $self->requirement_spec->id))->render($self);
213 }
214
215 sub action_create_pdf {
216   my ($self, %params) = @_;
217
218   my $base_name       = $self->requirement_spec->type->template_file_name || 'requirement_spec';
219   my @pictures        = $self->prepare_pictures_for_printing;
220   my %result          = SL::Template::LaTeX->parse_and_create_pdf("${base_name}.tex", SELF => $self, rspec => $self->requirement_spec);
221
222   unlink @pictures unless ($::lx_office_conf{debug} || {})->{keep_temp_files};
223
224   $::form->error(t8('Conversion to PDF failed: #1', $result{error})) if $result{error};
225
226   my $attachment_name  =  $self->requirement_spec->type->description . ' ' . ($self->requirement_spec->working_copy_id || $self->requirement_spec->id);
227   $attachment_name    .=  ' (v' . $self->requirement_spec->version->version_number . ')' if $self->requirement_spec->version;
228   $attachment_name    .=  '.pdf';
229   $attachment_name     =~ s/[^\wäöüÄÖÜß \-\+\(\)\[\]\{\}\.,]+/_/g;
230
231   $self->send_file($result{file_name}, type => 'application/pdf', name => $attachment_name);
232   unlink $result{file_name};
233 }
234
235 sub action_create_html {
236   my ($self, %params) = @_;
237
238   my $base_name       = $self->requirement_spec->type->template_file_name || 'requirement_spec';
239   my @pictures        = $self->prepare_pictures_for_printing;
240   my $content         = SL::Helper::CreatePDF->create_parsed_file(
241     template      => "${base_name}.html",
242     format        => 'html',
243     template_type => 'HTML',
244     variables     => {
245       SELF        => $self,
246       rspec       => $self->requirement_spec,
247     });
248
249   # $content is now a scalar of bytes, but $self->render() expects a
250   # scalar of characters.
251   $content = Encode::decode('utf-8', $content);
252
253   $self->render(\$content, { layout => 0, process => 0 });
254 }
255
256 sub action_select_template_to_paste {
257   my ($self) = @_;
258
259   my @templates = @{ SL::DB::Manager::RequirementSpec->get_all(
260     where   => [ is_template => 1, SL::DB::Manager::RequirementSpec->not_empty_filter ],
261     sort_by => 'lower(requirement_specs.title)',
262   ) };
263   $self->render('requirement_spec/select_template_to_paste', { layout => 0 }, TEMPLATES => \@templates);
264 }
265
266 sub action_paste_template {
267   my ($self, %params) = @_;
268
269   my $template = SL::DB::RequirementSpec->new(id => $::form->{template_id})->load;
270   my %result   = $self->requirement_spec->paste_template($template);
271
272   return $self->js->error($self->requirement_spec->error)->render($self) if !%result;
273
274   $self->render_pasted_text_block($_) for sort { $a->position <=> $b->position } @{ $result{text_blocks} };
275   $self->render_pasted_section($_)    for sort { $a->position <=> $b->position } @{ $result{sections}    };
276
277   if (@{ $result{sections} } && (($::form->{current_content_type} || 'sections') eq 'sections') && !$::form->{current_content_id}) {
278     $self->render_first_pasted_section_as_list($result{sections}->[0]);
279   }
280
281   my $parts_list = $self->render('requirement_spec_part/show', { output => 0 });
282   $self->js
283     ->replaceWith('#additional_parts_list_container', $parts_list)
284     ->show(       '#additional_parts_list_container')
285     ->remove(     '#additional_parts_form_container');
286
287   $self->invalidate_version->render($self);
288 }
289
290 sub action_renumber_sections {
291   my ($self)  = @_;
292
293   my %numbers = map { ($_ => 1)                                                                         } qw(section function_block);
294   my %formats = map { my $method = "${_}_number_format"; ($_ => $self->requirement_spec->type->$method) } qw(section function_block);
295   my @items   = @{ $self->requirement_spec->sections_sorted };
296
297   $self->requirement_spec->db->with_transaction(sub {
298     while (@items) {
299       my $item = shift @items;
300       my $type = $item->parent_id ? 'function_block' : 'section';
301
302       $item->update_attributes(fb_number => SL::PrefixedNumber->new(number => $formats{$type} || 0)->set_to($numbers{$type}));
303
304       $numbers{$type}++;
305
306       unshift @items, @{ $item->children_sorted };
307     }
308
309     $self->requirement_spec->invalidate_version unless $self->requirement_spec->is_template;
310
311     1;
312   });
313
314   $self->redirect_to(action => 'show', id => $self->requirement_spec->id);
315 }
316
317 #
318 # filters
319 #
320
321 sub setup {
322   my ($self) = @_;
323
324   $::auth->assert('requirement_spec_edit');
325   $::request->{layout}->use_stylesheet("${_}.css") for qw(jquery.contextMenu requirement_spec);
326   $::request->{layout}->use_javascript("${_}.js")  for qw(jquery.jstree jquery/jquery.contextMenu jquery/jquery.hotkeys requirement_spec ckeditor/ckeditor ckeditor/adapters/jquery autocomplete_part);
327   $self->init_visible_section;
328
329   return 1;
330 }
331
332 sub init_js                     { SL::ClientJS->new                                           }
333 sub init_complexities           { SL::DB::Manager::RequirementSpecComplexity->get_all_sorted  }
334 sub init_default_project_status { SL::DB::Manager::ProjectStatus->find_by(name => 'planning') }
335 sub init_default_project_type   { SL::DB::ProjectType->new(id => 1)->load                     }
336 sub init_project_statuses       { SL::DB::Manager::ProjectStatus->get_all_sorted              }
337 sub init_project_types          { SL::DB::Manager::ProjectType->get_all_sorted                }
338 sub init_projects               { SL::DB::Manager::Project->get_all_sorted                    }
339 sub init_risks                  { SL::DB::Manager::RequirementSpecRisk->get_all_sorted        }
340 sub init_statuses               { SL::DB::Manager::RequirementSpecStatus->get_all_sorted      }
341 sub init_time_based_units       { SL::DB::Manager::Unit->time_based_units                     }
342 sub init_types                  { SL::DB::Manager::RequirementSpecType->get_all_sorted        }
343
344 sub init_customers {
345   my ($self) = @_;
346
347   my @filter = ('!obsolete' => 1);
348   @filter    = ( or => [ @filter, id => $self->requirement_spec->customer_id ] ) if $self->requirement_spec && $self->requirement_spec->customer_id;
349
350   return SL::DB::Manager::Customer->get_all_sorted(where => \@filter);
351 }
352
353 sub init_requirement_spec {
354   my ($self) = @_;
355   $self->requirement_spec(SL::DB::RequirementSpec->new(id => $::form->{id})->load || die "No such requirement spec") if $::form->{id};
356 }
357
358 sub init_copy_source {
359   my ($self) = @_;
360   $self->copy_source(SL::DB::RequirementSpec->new(id => $::form->{copy_source_id})->load) if $::form->{copy_source_id};
361 }
362
363 sub init_current_text_block_output_position {
364   my ($self) = @_;
365   $self->current_text_block_output_position($::form->{current_content_type} !~ m/^(?:text-blocks|tb)-(front|back)/ ? -1 : $1 eq 'front' ? 0 : 1);
366 }
367
368 #
369 # helpers
370 #
371
372 sub create_or_update {
373   my $self   = shift;
374   my $is_new = !$self->requirement_spec->id;
375   my $params = delete($::form->{requirement_spec}) || { };
376   my $cvars  = delete($::form->{cvars})            || { };
377
378   $self->requirement_spec->assign_attributes(%{ $params });
379
380   foreach my $var (@{ $self->requirement_spec->cvars_by_config }) {
381     my $value = $cvars->{ $var->config->name };
382     $value    = $::form->parse_amount(\%::myconfig, $value) if $var->config->type eq 'number';
383
384     $var->value($value);
385   }
386
387   my $title  = $is_new && $self->requirement_spec->is_template ? t8('Create a new requirement spec template')
388              : $is_new                                         ? t8('Create a new requirement spec')
389              :            $self->requirement_spec->is_template ? t8('Edit requirement spec template')
390              :                                                   t8('Edit requirement spec');
391
392   my @errors = $self->requirement_spec->validate;
393
394   if (@errors) {
395     return $self->js->error(@errors)->render($self) if $::request->is_ajax;
396
397     flash('error', @errors);
398     $self->render('requirement_spec/new', title => $title);
399     return;
400   }
401
402   my $db = $self->requirement_spec->db;
403   if (!$db->do_transaction(sub {
404     if ($self->copy_source) {
405       $self->requirement_spec($self->copy_source->create_copy(%{ $params }));
406     } else {
407       $self->requirement_spec->save(cascade => 1);
408     }
409   })) {
410     $::lxdebug->message(LXDebug::WARN(), "Error: " . $db->error);
411     @errors = ($::locale->text('Saving failed. Error message from the database: #1', $db->error));
412     return $self->js->error(@errors)->render($self) if $::request->is_ajax;
413
414     $self->requirement_spec->id(undef) if $is_new;
415     flash('error', @errors);
416     return $self->render('requirement_spec/new', title => $title);
417   }
418
419   my $info = $self->requirement_spec->is_template ? t8('The requirement spec template has been saved.') : t8('The requirement spec has been saved.');
420
421   if ($::request->is_ajax) {
422     my $header_html = $self->render('requirement_spec/_header', { output => 0 });
423     my $basics_html = $self->render('requirement_spec/_show_basic_settings', { output => 0 });
424     return $self->invalidate_version
425       ->replaceWith('#requirement-spec-header', $header_html)
426       ->replaceWith('#basic_settings',          $basics_html)
427       ->remove('#basic_settings_form')
428       ->flash('info', $info)
429       ->render($self);
430   }
431
432   flash_later('info', $info);
433   $self->redirect_to(action => 'show', id => $self->requirement_spec->id);
434 }
435
436 sub prepare_report {
437   my ($self)      = @_;
438
439   my $is_template = $::form->{is_template};
440   my $report      = SL::ReportGenerator->new(\%::myconfig, $::form);
441
442   $self->models->disable_plugin('paginated') if $report->{options}{output_format} =~ /^(pdf|csv)$/i;
443   $self->models->finalize; # for filter laundering
444   my $callback    = $self->models->get_callback;
445
446   $self->{report} = $report;
447
448   my @columns     = $is_template ? qw(title mtime) : qw(title customer status type projectnumber mtime version);
449   my @sortable    = $is_template ? qw(title mtime) : qw(title customer status type projectnumber mtime);
450
451   my %column_defs = (
452     title         => { obj_link => sub { $self->url_for(action => 'show', id => $_[0]->id, callback => $callback) } },
453     mtime         => { sub      => sub { ($_[0]->mtime || $_[0]->itime)->to_kivitendo(precision => 'minute') } },
454   );
455
456   if (!$is_template) {
457     %column_defs = (
458       %column_defs,
459       customer      => { raw_data => sub { $self->presenter->customer($_[0]->customer, display => 'table-cell', callback => $callback) },
460                          sub      => sub { $_[0]->customer->name } },
461       projectnumber => { raw_data => sub { $self->presenter->project($_[0]->project, display => 'table-cell', callback => $callback) },
462                          sub      => sub { $_[0]->project_id ? $_[0]->project->projectnumber : '' } },
463       status        => { sub      => sub { $_[0]->status->description } },
464       type          => { sub      => sub { $_[0]->type->description } },
465       version       => { sub      => sub { $_[0]->version ? $_[0]->version->version_number : t8('Working copy without version') } },
466     );
467   }
468
469   map { $column_defs{$_}->{text} ||= $::locale->text( $self->models->get_sort_spec->{$_}->{title} ) } keys %column_defs;
470
471   $report->set_options(
472     std_column_visibility => 1,
473     controller_class      => 'RequirementSpec',
474     output_format         => 'HTML',
475     raw_top_info_text     => $self->render('requirement_spec/report_top',    { output => 0 }, is_template => $is_template),
476     raw_bottom_info_text  => $self->render('requirement_spec/report_bottom', { output => 0 }, models => $self->models),
477     title                 => $is_template ? t8('Requirement Spec Templates') : t8('Requirement Specs'),
478     allow_pdf_export      => 1,
479     allow_csv_export      => 1,
480   );
481   $report->set_columns(%column_defs);
482   $report->set_column_order(@columns);
483   $report->set_export_options(qw(list filter));
484   $report->set_options_from_form;
485   $self->models->set_report_generator_sort_options(report => $report, sortable_columns => \@sortable);
486 }
487
488 sub invalidate_version {
489   my ($self) = @_;
490
491   my $rspec  = SL::DB::RequirementSpec->new(id => $self->requirement_spec->id)->load;
492   return $self->js if $rspec->is_template;
493
494   $rspec->invalidate_version;
495
496   my $html = $self->render('requirement_spec/_version', { output => 0 }, requirement_spec => $rspec);
497   return $self->js->html('#requirement_spec_version', $html);
498 }
499
500 sub render_pasted_text_block {
501   my ($self, $text_block, %params) = @_;
502
503   if ($self->current_text_block_output_position == $text_block->output_position) {
504     my $html = $self->render('requirement_spec_text_block/_text_block', { output => 0 }, text_block => $text_block);
505     $self->js
506       ->appendTo($html, '#text-block-list')
507       ->hide('#text-block-list-empty');
508   }
509
510   my $node       = $self->presenter->requirement_spec_text_block_jstree_data($text_block);
511   my $front_back = $text_block->output_position == 0 ? 'front' : 'back';
512   $self->js
513     ->jstree->create_node('#tree', "#tb-${front_back}", 'last', $node)
514     ->jstree->open_node(  '#tree', "#tb-${front_back}");
515 }
516
517 sub set_default_filter_args {
518   my ($self) = @_;
519
520   if (!$::form->{filter} && !$::form->{is_template}) {
521     $::form->{filter} = {
522       status_id => [ map { $_->{id} } grep { $_->name ne 'done' } @{ $self->statuses } ],
523     };
524   }
525
526   return 1;
527 }
528
529 sub render_pasted_section {
530   my ($self, $item, $parent_id) = @_;
531
532   my $node = $self->presenter->requirement_spec_item_jstree_data($item);
533   $self->js
534     ->jstree->create_node('#tree', $parent_id ? "#fb-${parent_id}" : '#sections', 'last', $node)
535     ->jstree->open_node(  '#tree', $parent_id ? "#fb-${parent_id}" : '#sections');
536
537   $self->render_pasted_section($_, $item->id) for @{ $item->children_sorted };
538 }
539
540 sub render_first_pasted_section_as_list {
541   my ($self, $section, %params) = @_;
542
543   my $html = $self->render('requirement_spec_item/_section', { output => 0 }, requirement_spec_item => $section);
544   $self->js
545     ->html('#column-content', $html)
546     ->val( '#current_content_type', $section->item_type)
547     ->val( '#current_content_id',   $section->id)
548     ->jstree->select_node('#tree', '#fb-' . $section->id);
549 }
550
551 sub prepare_pictures_for_printing {
552   my ($self) = @_;
553
554   my @files;
555   my $userspath = File::Spec->rel2abs($::lx_office_conf{paths}->{userspath});
556   my $target    =  "${userspath}/kivitendo-print-requirement-spec-picture-" . Common::unique_id() . '-';
557
558   foreach my $picture (map { @{ $_->pictures } } @{ $self->requirement_spec->text_blocks }) {
559     my $output_file_name        = $target . $picture->id . '.' . $picture->get_default_file_name_extension;
560     $picture->{print_file_name} = File::Spec->abs2rel($output_file_name, $userspath);
561     my $out                     = IO::File->new($output_file_name, 'w') || die("Could not create file " . $output_file_name);
562     $out->binmode;
563     $out->print($picture->picture_content);
564     $out->close;
565
566     push @files, $output_file_name;
567   }
568
569   return @files;
570 }
571
572 sub update_project_link_none_keep_existing {
573   my ($self, $action) = @_;
574
575   $self->requirement_spec->update_attributes(project_id => undef)                     if $action eq 'none';
576   $self->requirement_spec->update_attributes(project_id => $::form->{new_project_id}) if $action eq 'existing';
577
578   return $self->invalidate_version
579     ->replaceWith('#basic_settings', $self->render('requirement_spec/_show_basic_settings', { output => 0 }))
580     ->remove('#project_link_form')
581     ->flash('info', t8('The project link has been updated.'))
582     ->render($self);
583 }
584
585 sub update_project_link_new {
586   my ($self) = @_;
587
588   return $self->js
589     ->replaceWith('#project_link_form', $self->render('requirement_spec/_new_project_form', { output => 0 }))
590     ->render($self);
591 }
592
593 sub update_project_link_create {
594   my ($self)  = @_;
595   my $params  = delete($::form->{project}) || {};
596   my $project = SL::DB::Project->new(
597     %{ $params },
598     valid  => 1,
599     active => 1,
600   );
601
602   my @errors = $project->validate;
603
604   return $self->js->error(@errors)->render($self) if @errors;
605
606   my $db = $self->requirement_spec->db;
607   if (!$db->do_transaction(sub {
608     $project->save;
609     $self->requirement_spec->update_attributes(project_id => $project->id);
610
611   })) {
612     $::lxdebug->message(LXDebug::WARN(), "Error: " . $db->error);
613     return $self->js->error(t8('Saving failed. Error message from the database: #1', $db->error))->render($self);
614   }
615
616   return $self->invalidate_version
617     ->replaceWith('#basic_settings', $self->render('requirement_spec/_show_basic_settings', { output => 0 }))
618     ->remove('#project_link_form')
619     ->flash('info', t8('The project has been created.'))
620     ->flash('info', t8('The project link has been updated.'))
621     ->render($self);
622 }
623
624 sub init_models {
625   my ($self) = @_;
626
627   SL::Controller::Helper::GetModels->new(
628     controller   => $self,
629     sorted       => {
630       _default     => {
631         by           => 'customer',
632         dir          => 1,
633       },
634       %sort_columns,
635     },
636     query => [
637       and => [
638         working_copy_id => undef,
639         is_template     => $::form->{is_template} ? 1 : 0,
640       ],
641     ],
642     with_objects => [ 'customer', 'type', 'status', 'project' ],
643   );
644 }
645
646 sub init_html_template {
647   my ($self)    = @_;
648   my $base_name = $self->requirement_spec->type->template_file_name || 'requirement_spec';
649   my $template  = SL::Helper::CreatePDF->find_template(name => $base_name, extension => 'html');
650   return !!$template;
651 }
652
653 1;