Preisaktualisierung bestehender Artikel
[kivitendo-erp.git] / SL / DB / Vendor.pm
index d1d972a..53ac297 100644 (file)
@@ -13,13 +13,25 @@ __PACKAGE__->meta->add_relationship(
     class        => 'SL::DB::Shipto',
     column_map   => { id      => 'trans_id' },
     manager_args => { sort_by => 'lower(shipto.shiptoname)' },
-    query_args   => [ 'shipto.module' => 'CT' ],
+    query_args   => [ module  => 'CT' ],
+  },
+  contacts => {
+    type         => 'one to many',
+    class        => 'SL::DB::Contact',
+    column_map   => { id      => 'cp_cv_id' },
+    manager_args => { sort_by => 'lower(contacts.cp_name)' },
   },
   business => {
     type         => 'one to one',
     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;