]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/RequirementSpecItem.pm
Pflichtenhefte: Auflisten von Abschnitten
[mfinanz.git] / SL / DB / RequirementSpecItem.pm
index 19f36a90e205d8258348819bc90ce658352ef87a..072b59b09abdb2c15c143df2a38f44e9759abfe2 100644 (file)
@@ -4,5 +4,52 @@ use strict;
 
 use SL::DB::MetaSetup::RequirementSpecItem;
 use SL::DB::Manager::RequirementSpecItem;
+use SL::DB::Helper::ActsAsList;
+
+__PACKAGE__->meta->add_relationship(
+  children       => {
+    type         => 'one to many',
+    class        => 'SL::DB::RequirementSpecItem',
+    column_map   => { id => 'parent_id' },
+  },
+);
+
+__PACKAGE__->meta->initialize;
+
+__PACKAGE__->configure_acts_as_list(group_by => [qw(requirement_spec_id parent_id)]);
+
+__PACKAGE__->before_delete(\&_before_delete_delete_children);
+
+sub _before_delete_delete_children {
+  my ($self) = @_;
+
+  foreach my $child (@{ SL::DB::Manager::RequirementSpecItem->get_all(where => [ parent_id => $self->id ]) }) {
+    my $result = $child->delete;
+    return $result if !$result;
+  }
+
+  1;
+}
+
+sub sorted_children {
+  my ($self) = @_;
+
+  return [ sort { $a->position <=> $b->position } @{ $self->children } ];
+}
+
+sub get_section {
+  my ($self) = @_;
+
+  $self = $self->parent while $self->parent_id;
+
+  return $self;
+}
+
+sub get_type {
+  my ($self) = @_;
+
+  return 'section' if !$self->parent_id;
+  return $self->parent->parent_id ? 'sub-function-block' : 'function-block';
+}
 
 1;