projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6cde4d1
)
SL::DB::InvoiceItem: Relationships zu …Invoice und …PurchaseInvoice
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Fri, 7 Feb 2014 12:54:42 +0000
(13:54 +0100)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 24 Feb 2014 13:40:01 +0000
(14:40 +0100)
SL/DB/InvoiceItem.pm
patch
|
blob
|
history
diff --git
a/SL/DB/InvoiceItem.pm
b/SL/DB/InvoiceItem.pm
index
eeeb679
..
4374a6c
100644
(file)
--- 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;