X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FPart.pm;h=22fbc1b4c0b8a62dd629821a2808b2412ccc6b20;hb=d5a003cf54b65b18d75401d2b7fc27ae6184efe0;hp=79ef2a482f00f92043f4d0bce3122d0dcb0e5805;hpb=8d87ea5750980847720a4dd48f7f62e378416895;p=kivitendo-erp.git diff --git a/SL/DB/Part.pm b/SL/DB/Part.pm index 79ef2a482..22fbc1b4c 100644 --- a/SL/DB/Part.pm +++ b/SL/DB/Part.pm @@ -10,6 +10,10 @@ use SL::DB::MetaSetup::Part; use SL::DB::Manager::Part; use SL::DB::Chart; use SL::DB::Helper::TransNumberGenerator; +use SL::DB::Helper::CustomVariables ( + module => 'IC', + cvars_alias => 1, +); __PACKAGE__->meta->add_relationships( unit_obj => { @@ -37,6 +41,16 @@ __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' }, + }, ); __PACKAGE__->meta->initialize;