e249196d19a9bb6cd64b5fb1c9ddaa402a2d3a97
[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   # Forcefully make it clear to Rose which custom_variables exist (or don't), so that the ones added with »add_custom_variables« are visible when calling »custom_variables«.
379   if ($is_new) {
380     $params->{custom_variables} = [];
381   } else {
382     $self->requirement_spec->custom_variables;
383   }
384
385   $self->requirement_spec->assign_attributes(%{ $params });
386
387   foreach my $var (@{ $self->requirement_spec->cvars_by_config }) {
388     my $value = $cvars->{ $var->config->name };
389     $value    = $::form->parse_amount(\%::myconfig, $value) if $var->config->type eq 'number';
390
391     $var->value($value);
392   }
393
394   my $title  = $is_new && $self->requirement_spec->is_template ? t8('Create a new requirement spec template')
395              : $is_new                                         ? t8('Create a new requirement spec')
396              :            $self->requirement_spec->is_template ? t8('Edit requirement spec template')
397              :                                                   t8('Edit requirement spec');
398
399   my @errors = $self->requirement_spec->validate;
400
401   if (@errors) {
402     return $self->js->error(@errors)->render($self) if $::request->is_ajax;
403
404     flash('error', @errors);
405     $self->render('requirement_spec/new', title => $title);
406     return;
407   }
408
409   my $db = $self->requirement_spec->db;
410   if (!$db->do_transaction(sub {
411     if ($self->copy_source) {
412       $self->requirement_spec($self->copy_source->create_copy(%{ $params }));
413     } else {
414       $self->requirement_spec->save(cascade => 1);
415     }
416   })) {
417     $::lxdebug->message(LXDebug::WARN(), "Error: " . $db->error);
418     @errors = ($::locale->text('Saving failed. Error message from the database: #1', $db->error));
419     return $self->js->error(@errors)->render($self) if $::request->is_ajax;
420
421     $self->requirement_spec->id(undef) if $is_new;
422     flash('error', @errors);
423     return $self->render('requirement_spec/new', title => $title);
424   }
425
426   my $info = $self->requirement_spec->is_template ? t8('The requirement spec template has been saved.') : t8('The requirement spec has been saved.');
427
428   if ($::request->is_ajax) {
429     my $header_html = $self->render('requirement_spec/_header', { output => 0 });
430     my $basics_html = $self->render('requirement_spec/_show_basic_settings', { output => 0 });
431     return $self->invalidate_version
432       ->replaceWith('#requirement-spec-header', $header_html)
433       ->replaceWith('#basic_settings',          $basics_html)
434       ->remove('#basic_settings_form')
435       ->flash('info', $info)
436       ->render($self);
437   }
438
439   flash_later('info', $info);
440   $self->redirect_to(action => 'show', id => $self->requirement_spec->id);
441 }
442
443 sub prepare_report {
444   my ($self)      = @_;
445
446   my $is_template = $::form->{is_template};
447   my $report      = SL::ReportGenerator->new(\%::myconfig, $::form);
448
449   $self->models->disable_plugin('paginated') if $report->{options}{output_format} =~ /^(pdf|csv)$/i;
450   $self->models->finalize; # for filter laundering
451   my $callback    = $self->models->get_callback;
452
453   $self->{report} = $report;
454
455   my @columns     = $is_template ? qw(title mtime) : qw(title customer status type projectnumber mtime version);
456   my @sortable    = $is_template ? qw(title mtime) : qw(title customer status type projectnumber mtime);
457
458   my %column_defs = (
459     title         => { obj_link => sub { $self->url_for(action => 'show', id => $_[0]->id, callback => $callback) } },
460     mtime         => { sub      => sub { ($_[0]->mtime || $_[0]->itime)->to_kivitendo(precision => 'minute') } },
461   );
462
463   if (!$is_template) {
464     %column_defs = (
465       %column_defs,
466       customer      => { raw_data => sub { $self->presenter->customer($_[0]->customer, display => 'table-cell', callback => $callback) },
467                          sub      => sub { $_[0]->customer->name } },
468       projectnumber => { raw_data => sub { $self->presenter->project($_[0]->project, display => 'table-cell', callback => $callback) },
469                          sub      => sub { $_[0]->project_id ? $_[0]->project->projectnumber : '' } },
470       status        => { sub      => sub { $_[0]->status->description } },
471       type          => { sub      => sub { $_[0]->type->description } },
472       version       => { sub      => sub { $_[0]->version ? $_[0]->version->version_number : t8('Working copy without version') } },
473     );
474   }
475
476   map { $column_defs{$_}->{text} ||= $::locale->text( $self->models->get_sort_spec->{$_}->{title} ) } keys %column_defs;
477
478   $report->set_options(
479     std_column_visibility => 1,
480     controller_class      => 'RequirementSpec',
481     output_format         => 'HTML',
482     raw_top_info_text     => $self->render('requirement_spec/report_top',    { output => 0 }, is_template => $is_template),
483     raw_bottom_info_text  => $self->render('requirement_spec/report_bottom', { output => 0 }, models => $self->models),
484     title                 => $is_template ? t8('Requirement Spec Templates') : t8('Requirement Specs'),
485     allow_pdf_export      => 1,
486     allow_csv_export      => 1,
487   );
488   $report->set_columns(%column_defs);
489   $report->set_column_order(@columns);
490   $report->set_export_options(qw(list filter));
491   $report->set_options_from_form;
492   $self->models->set_report_generator_sort_options(report => $report, sortable_columns => \@sortable);
493 }
494
495 sub invalidate_version {
496   my ($self) = @_;
497
498   my $rspec  = SL::DB::RequirementSpec->new(id => $self->requirement_spec->id)->load;
499   return $self->js if $rspec->is_template;
500
501   $rspec->invalidate_version;
502
503   my $html = $self->render('requirement_spec/_version', { output => 0 }, requirement_spec => $rspec);
504   return $self->js->html('#requirement_spec_version', $html);
505 }
506
507 sub render_pasted_text_block {
508   my ($self, $text_block, %params) = @_;
509
510   if ($self->current_text_block_output_position == $text_block->output_position) {
511     my $html = $self->render('requirement_spec_text_block/_text_block', { output => 0 }, text_block => $text_block);
512     $self->js
513       ->appendTo($html, '#text-block-list')
514       ->hide('#text-block-list-empty');
515   }
516
517   my $node       = $self->presenter->requirement_spec_text_block_jstree_data($text_block);
518   my $front_back = $text_block->output_position == 0 ? 'front' : 'back';
519   $self->js
520     ->jstree->create_node('#tree', "#tb-${front_back}", 'last', $node)
521     ->jstree->open_node(  '#tree', "#tb-${front_back}");
522 }
523
524 sub set_default_filter_args {
525   my ($self) = @_;
526
527   if (!$::form->{filter} && !$::form->{is_template}) {
528     $::form->{filter} = {
529       status_id => [ map { $_->{id} } grep { $_->name ne 'done' } @{ $self->statuses } ],
530     };
531   }
532
533   return 1;
534 }
535
536 sub render_pasted_section {
537   my ($self, $item, $parent_id) = @_;
538
539   my $node = $self->presenter->requirement_spec_item_jstree_data($item);
540   $self->js
541     ->jstree->create_node('#tree', $parent_id ? "#fb-${parent_id}" : '#sections', 'last', $node)
542     ->jstree->open_node(  '#tree', $parent_id ? "#fb-${parent_id}" : '#sections');
543
544   $self->render_pasted_section($_, $item->id) for @{ $item->children_sorted };
545 }
546
547 sub render_first_pasted_section_as_list {
548   my ($self, $section, %params) = @_;
549
550   my $html = $self->render('requirement_spec_item/_section', { output => 0 }, requirement_spec_item => $section);
551   $self->js
552     ->html('#column-content', $html)
553     ->val( '#current_content_type', $section->item_type)
554     ->val( '#current_content_id',   $section->id)
555     ->jstree->select_node('#tree', '#fb-' . $section->id);
556 }
557
558 sub prepare_pictures_for_printing {
559   my ($self) = @_;
560
561   my @files;
562   my $userspath = File::Spec->rel2abs($::lx_office_conf{paths}->{userspath});
563   my $target    =  "${userspath}/kivitendo-print-requirement-spec-picture-" . Common::unique_id() . '-';
564
565   foreach my $picture (map { @{ $_->pictures } } @{ $self->requirement_spec->text_blocks }) {
566     my $output_file_name        = $target . $picture->id . '.' . $picture->get_default_file_name_extension;
567     $picture->{print_file_name} = File::Spec->abs2rel($output_file_name, $userspath);
568     my $out                     = IO::File->new($output_file_name, 'w') || die("Could not create file " . $output_file_name);
569     $out->binmode;
570     $out->print($picture->picture_content);
571     $out->close;
572
573     push @files, $output_file_name;
574   }
575
576   return @files;
577 }
578
579 sub update_project_link_none_keep_existing {
580   my ($self, $action) = @_;
581
582   $self->requirement_spec->update_attributes(project_id => undef)                     if $action eq 'none';
583   $self->requirement_spec->update_attributes(project_id => $::form->{new_project_id}) if $action eq 'existing';
584
585   return $self->invalidate_version
586     ->replaceWith('#basic_settings', $self->render('requirement_spec/_show_basic_settings', { output => 0 }))
587     ->remove('#project_link_form')
588     ->flash('info', t8('The project link has been updated.'))
589     ->render($self);
590 }
591
592 sub update_project_link_new {
593   my ($self) = @_;
594
595   return $self->js
596     ->replaceWith('#project_link_form', $self->render('requirement_spec/_new_project_form', { output => 0 }))
597     ->render($self);
598 }
599
600 sub update_project_link_create {
601   my ($self)  = @_;
602   my $params  = delete($::form->{project}) || {};
603   my $project = SL::DB::Project->new(
604     %{ $params },
605     valid  => 1,
606     active => 1,
607   );
608
609   my @errors = $project->validate;
610
611   return $self->js->error(@errors)->render($self) if @errors;
612
613   my $db = $self->requirement_spec->db;
614   if (!$db->do_transaction(sub {
615     $project->save;
616     $self->requirement_spec->update_attributes(project_id => $project->id);
617
618   })) {
619     $::lxdebug->message(LXDebug::WARN(), "Error: " . $db->error);
620     return $self->js->error(t8('Saving failed. Error message from the database: #1', $db->error))->render($self);
621   }
622
623   return $self->invalidate_version
624     ->replaceWith('#basic_settings', $self->render('requirement_spec/_show_basic_settings', { output => 0 }))
625     ->remove('#project_link_form')
626     ->flash('info', t8('The project has been created.'))
627     ->flash('info', t8('The project link has been updated.'))
628     ->render($self);
629 }
630
631 sub init_models {
632   my ($self) = @_;
633
634   SL::Controller::Helper::GetModels->new(
635     controller   => $self,
636     sorted       => {
637       _default     => {
638         by           => 'customer',
639         dir          => 1,
640       },
641       %sort_columns,
642     },
643     query => [
644       and => [
645         working_copy_id => undef,
646         is_template     => $::form->{is_template} ? 1 : 0,
647       ],
648     ],
649     with_objects => [ 'customer', 'type', 'status', 'project' ],
650   );
651 }
652
653 sub init_html_template {
654   my ($self)    = @_;
655   my $base_name = $self->requirement_spec->type->template_file_name || 'requirement_spec';
656   my $template  = SL::Helper::CreatePDF->find_template(name => $base_name, extension => 'html');
657   return !!$template;
658 }
659
660 1;