X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FBusiness.pm;h=25a553656f99df9e3d262bd3520941d73e1dfef6;hb=b8ee6b6ed46e55095b955ee1800b8a4b8d8ccc3f;hp=be9120e3c6eb59e3baad7d58249b26b969b2f739;hpb=82515b2d93dc5632f24d6e0b6f8f05f3fd19fbb0;p=kivitendo-erp.git diff --git a/SL/DB/Business.pm b/SL/DB/Business.pm index be9120e3c..25a553656 100644 --- a/SL/DB/Business.pm +++ b/SL/DB/Business.pm @@ -1,15 +1,27 @@ -# 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::Business; use strict; use SL::DB::MetaSetup::Business; +use SL::DB::Manager::Business; + +__PACKAGE__->meta->initialize; + +sub validate { + my ($self) = @_; + + my @errors; + push @errors, $::locale->text('The description is missing.') if !$self->description; + push @errors, $::locale->text('The discount must not be negative.') if $self->discount < 0; + push @errors, $::locale->text('The discount must be less than 100%.') if $self->discount >= 1; + + return @errors; +} -__PACKAGE__->attr_percent('discount', places => -2); +sub displayable_name { + my $self = shift; -# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. -__PACKAGE__->meta->make_manager_class; + return join ' ', grep $_, $self->id, $self->description; +} 1;