X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/8d87ea5750980847720a4dd48f7f62e378416895..d2ab88c96257071dd0a3792108f64fc5d6aa541e:/SL/DB/Part.pm diff --git a/SL/DB/Part.pm b/SL/DB/Part.pm index 79ef2a482..fd53dd64e 100644 --- a/SL/DB/Part.pm +++ b/SL/DB/Part.pm @@ -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;