Verwaltung von Pflichtenheftkomplexitätsgraden
[kivitendo-erp.git] / SL / DB / RequirementSpecComplexity.pm
index 279a9c9..2ec63fe 100644 (file)
@@ -11,7 +11,8 @@ sub validate {
   my ($self) = @_;
 
   my @errors;
-  push @errors, t8('The description is missing.') if !$self->description;
+  push @errors, t8('The description is missing.')    if !$self->description;
+  push @errors, t8('The description is not unique.') if  $self->get_first_conflicting('description');
 
   return @errors;
 }