X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FInvoiceItem.pm;h=80c406b772b11afe5bacd6f95b0e2eab7ccd101a;hb=f769991a4bd3d207cece79bb2cb3fc96cec4602d;hp=36f0870d0c7eafc5bc71073bba6072fce8dbbdb9;hpb=dd6282f6e20d531511ae35cadc491a8c7ab8bad5;p=kivitendo-erp.git diff --git a/SL/DB/InvoiceItem.pm b/SL/DB/InvoiceItem.pm index 36f0870d0..80c406b77 100644 --- a/SL/DB/InvoiceItem.pm +++ b/SL/DB/InvoiceItem.pm @@ -3,30 +3,46 @@ package SL::DB::InvoiceItem; use strict; use SL::DB::MetaSetup::InvoiceItem; +use SL::DB::Helper::ActsAsList; +use SL::DB::Helper::LinkedRecords; +use SL::DB::Helper::RecordItem; 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; -sub part { - # canonial alias for parts. - goto &parts; -} +sub record { + my ($self) = @_; + + return $self->invoice if $self->invoice; + return $self->purchase_invoice if $self->purchase_invoice; + return; +}; 1;