From 09e4a554054f19869c9cd10102899ee5525941b4 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 11 Jan 2016 17:35:46 +0100 Subject: [PATCH] SL::DB::Buchungsgruppe: Relationsnamen inventory_account gefixt MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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. --- SL/DB/Buchungsgruppe.pm | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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) = @_; -- 2.20.1