X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FProjectStatus.pm;h=b80486d19211f2b68c410ee5aa703d44e2e098eb;hb=f5e39f21bd5f9c5dd9a8bbbdfa34d0c17a2fc44d;hp=fed4bedc131d41c9301ad5291f474e063a2fb4ce;hpb=03f5aaa3c601956206f0c2a142c1e19f6981b326;p=kivitendo-erp.git diff --git a/SL/DB/ProjectStatus.pm b/SL/DB/ProjectStatus.pm index fed4bedc1..b80486d19 100644 --- a/SL/DB/ProjectStatus.pm +++ b/SL/DB/ProjectStatus.pm @@ -1,13 +1,29 @@ -# This file has been auto-generated only because it didn't exist. -# Feel free to modify it at will; it will not be overwritten automatically. - package SL::DB::ProjectStatus; use strict; use SL::DB::MetaSetup::ProjectStatus; +use SL::DB::Manager::ProjectStatus; + +use SL::DB::Helper::ActsAsList; + +__PACKAGE__->meta->add_relationship( + projects => { + type => 'many to one', + class => 'SL::DB::Project', + column_map => { id => 'project_status_id' }, + }, +); + +__PACKAGE__->meta->initialize; + +sub validate { + my ($self) = @_; + + my @errors; + push @errors, $::locale->text('The description is missing.') if !$self->description; -# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. -__PACKAGE__->meta->make_manager_class; + return @errors; +} 1;