X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FBusiness.pm;h=91cdd672ab90e877166a56d94ed1920f7f283c3c;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=1fea0ef81b072eb500f2c5d506efd93ca92c9f24;hpb=508801bbaf7b9c5e144bf7ab9763a342ab80f176;p=kivitendo-erp.git diff --git a/SL/DB/Business.pm b/SL/DB/Business.pm index 1fea0ef81..91cdd672a 100644 --- a/SL/DB/Business.pm +++ b/SL/DB/Business.pm @@ -5,6 +5,23 @@ use strict; use SL::DB::MetaSetup::Business; use SL::DB::Manager::Business; +__PACKAGE__->meta->add_relationship( + customers => { + type => 'one to many', + class => 'SL::DB::Customer', + column_map => { id => 'business_id' }, + query_args => [ \' id IN ( SELECT id FROM customer ) ' ], + }, + vendors => { + type => 'one to many', + class => 'SL::DB::Vendor', + column_map => { id => 'business_id' }, + query_args => [ \' id IN ( SELECT id FROM vendor ) ' ], + }, +); + +__PACKAGE__->meta->initialize; + sub validate { my ($self) = @_; @@ -16,4 +33,10 @@ sub validate { return @errors; } +sub displayable_name { + my $self = shift; + + return join ' ', grep $_, $self->id, $self->description; +} + 1;