X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FInvoiceItem.pm;h=1e0e4e749e334a94c0447354492e1290444c7be3;hb=c51601f019f963dcdc875469514aa40802b5c574;hp=20afb033f4d37c2fd10758da149270b7c5ccee09;hpb=82515b2d93dc5632f24d6e0b6f8f05f3fd19fbb0;p=kivitendo-erp.git diff --git a/SL/DB/InvoiceItem.pm b/SL/DB/InvoiceItem.pm index 20afb033f..1e0e4e749 100644 --- a/SL/DB/InvoiceItem.pm +++ b/SL/DB/InvoiceItem.pm @@ -3,25 +3,36 @@ package SL::DB::InvoiceItem; use strict; use SL::DB::MetaSetup::InvoiceItem; - -for my $field (qw( - qty allocated sellprice fxsellprice discount base_qty marge_total - marge_percent lastcost price_factor marge_price_factor -)) { - __PACKAGE__->attr_number($field, places => -2); -} - -__PACKAGE__->meta->add_relationship( - part => { - type => 'one to one', - class => 'SL::DB::Part', - column_map => { parts_id => 'id' }, - } +use SL::DB::Helper::ActsAsList; +use SL::DB::Helper::CustomVariables ( + sub_module => 'invoice', + cvars_alias => 1, + overloads => { + parts_id => { + class => 'SL::DB::Part', + module => 'IC', + }, + }, ); -# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. __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' }, + }, + + purchase_invoice => { + type => 'one to one', + class => 'SL::DB::PurchaseInvoice', + column_map => { trans_id => 'id' }, + }, +); + __PACKAGE__->meta->initialize; 1;