From: Moritz Bunkus Date: Mon, 11 Jan 2016 16:35:46 +0000 (+0100) Subject: SL::DB::Buchungsgruppe: Relationsnamen inventory_account gefixt X-Git-Tag: release-3.4.1~468 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=09e4a554054f19869c9cd10102899ee5525941b4;p=kivitendo-erp.git SL::DB::Buchungsgruppe: Relationsnamen inventory_account gefixt Aus irgend einem Grund registriert Rose keine neue Relationship, wenn es bereits eine (mit leicht anderem Namen) als Foreign Key für dieselbe Spalte gibt. --- diff --git a/SL/DB/Buchungsgruppe.pm b/SL/DB/Buchungsgruppe.pm index 9074fb90b..addbe33ad 100644 --- a/SL/DB/Buchungsgruppe.pm +++ b/SL/DB/Buchungsgruppe.pm @@ -6,16 +6,10 @@ use SL::DB::MetaSetup::Buchungsgruppe; use SL::DB::Manager::Buchungsgruppe; use SL::DB::Helper::ActsAsList; -__PACKAGE__->meta->add_relationship( - inventory_account => { - type => 'many to one', - class => 'SL::DB::Chart', - column_map => { inventory_accno_id => 'id' }, - }, -); - __PACKAGE__->meta->initialize; +sub inventory_account { goto &inventory_accno; } + sub validate { my ($self) = @_;