From cd9e51e615b4a0a1395171311bfea0d5e8a3a507 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 7 Feb 2014 13:54:42 +0100 Subject: [PATCH] =?utf8?q?SL::DB::InvoiceItem:=20Relationships=20zu=20?= =?utf8?q?=E2=80=A6Invoice=20und=20=E2=80=A6PurchaseInvoice?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/DB/InvoiceItem.pm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/SL/DB/InvoiceItem.pm b/SL/DB/InvoiceItem.pm index eeeb679fc..4374a6cdc 100644 --- a/SL/DB/InvoiceItem.pm +++ b/SL/DB/InvoiceItem.pm @@ -14,9 +14,22 @@ use SL::DB::Helper::CustomVariables ( }, ); -# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. __PACKAGE__->meta->make_manager_class; +__PACKAGE__->meta->add_relationships( + invoice => { + type => 'one to one', + class => 'SL::DB::Invoice', + column_map => { trans_id => 'id' }, + }, + + purchase_invoice => { + type => 'one to one', + class => 'SL::DB::PurchaseInvoice', + column_map => { trans_id => 'id' }, + }, +); + __PACKAGE__->meta->initialize; 1; -- 2.20.1