Verknüpfungen Parts/Customers/Vendors -> Custom Variables
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 2 Mar 2011 14:32:40 +0000 (15:32 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 16 Jun 2011 06:44:38 +0000 (08:44 +0200)
SL/DB/Customer.pm
SL/DB/Part.pm
SL/DB/Vendor.pm

index f2893ae..c2c436d 100644 (file)
@@ -27,6 +27,12 @@ __PACKAGE__->meta->add_relationship(
     class        => 'SL::DB::Business',
     column_map   => { business_id => 'id' },
   },
+  custom_variables => {
+    type           => 'one to many',
+    class          => 'SL::DB::CustomVariable',
+    column_map     => { id => 'trans_id' },
+    query_args     => [ config_id => [ \"(SELECT custom_variable_configs.id FROM custom_variable_configs WHERE custom_variable_configs.module = 'CT')" ] ],
+  },
 );
 
 __PACKAGE__->meta->make_manager_class;
index 79ef2a4..fd53dd6 100644 (file)
@@ -37,6 +37,22 @@ __PACKAGE__->meta->add_relationships(
     class        => 'SL::DB::Price',
     column_map   => { id => 'parts_id' },
   },
+  makemodels     => {
+    type         => 'one to many',
+    class        => 'SL::DB::MakeModel',
+    column_map   => { id => 'parts_id' },
+  },
+  translations   => {
+    type         => 'one to many',
+    class        => 'SL::DB::Translation',
+    column_map   => { id => 'parts_id' },
+  },
+  custom_variables => {
+    type           => 'one to many',
+    class          => 'SL::DB::CustomVariable',
+    column_map     => { id => 'trans_id' },
+    query_args     => [ config_id => [ \"(SELECT custom_variable_configs.id FROM custom_variable_configs WHERE custom_variable_configs.module = 'IC')" ] ],
+  },
 );
 
 __PACKAGE__->meta->initialize;
index 13b70eb..53ac297 100644 (file)
@@ -26,6 +26,12 @@ __PACKAGE__->meta->add_relationship(
     class        => 'SL::DB::Business',
     column_map   => { business_id => 'id' },
   },
+  custom_variables => {
+    type           => 'one to many',
+    class          => 'SL::DB::CustomVariable',
+    column_map     => { id => 'trans_id' },
+    query_args     => [ config_id => [ \"(SELECT custom_variable_configs.id FROM custom_variable_configs WHERE custom_variable_configs.module = 'CT')" ] ],
+  },
 );
 
 __PACKAGE__->meta->make_manager_class;