Business - Rose relationships customers und vendors
authorG. Richardson <grichardson@kivitec.de>
Wed, 4 Oct 2017 08:00:35 +0000 (10:00 +0200)
committerG. Richardson <grichardson@kivitec.de>
Wed, 4 Oct 2017 08:04:07 +0000 (10:04 +0200)
SL/DB/Business.pm

index 25a5536..91cdd67 100644 (file)
@@ -5,6 +5,21 @@ 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 {