X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDB%2FInvoiceItem.pm;h=1e0e4e749e334a94c0447354492e1290444c7be3;hb=b9d2f81497c6ff60be298ed1e7697c0c6a4316fa;hp=a4135fc4c67b9acdd1c4cc40be90dab70187c9fe;hpb=0845c4b7d7a969d68cd55a15780c0af2fbe4d2db;p=kivitendo-erp.git diff --git a/SL/DB/InvoiceItem.pm b/SL/DB/InvoiceItem.pm index a4135fc4c..1e0e4e749 100644 --- a/SL/DB/InvoiceItem.pm +++ b/SL/DB/InvoiceItem.pm @@ -3,24 +3,35 @@ package SL::DB::InvoiceItem; use strict; use SL::DB::MetaSetup::InvoiceItem; +use SL::DB::Helper::ActsAsList; use SL::DB::Helper::CustomVariables ( sub_module => 'invoice', cvars_alias => 1, overloads => { - parts_id => 'SL::DB::Part', + parts_id => { + class => 'SL::DB::Part', + module => 'IC', + }, }, ); -__PACKAGE__->meta->add_relationship( - unit_obj => { - type => 'many to one', - class => 'SL::DB::Unit', - column_map => { unit => 'name' }, +__PACKAGE__->meta->make_manager_class; + +__PACKAGE__->configure_acts_as_list(group_by => [qw(trans_id)]); + +__PACKAGE__->meta->add_relationships( + invoice => { + type => 'one to one', + class => 'SL::DB::Invoice', + column_map => { trans_id => 'id' }, }, -); -# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. -__PACKAGE__->meta->make_manager_class; + purchase_invoice => { + type => 'one to one', + class => 'SL::DB::PurchaseInvoice', + column_map => { trans_id => 'id' }, + }, +); __PACKAGE__->meta->initialize;