X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FInvoiceItem.pm;h=1407c33343ba6726c5fe5f689c4f91f9b443a3c8;hb=0c32dd23e6c2d104239bd489fc61b81db8f19f59;hp=20afb033f4d37c2fd10758da149270b7c5ccee09;hpb=82515b2d93dc5632f24d6e0b6f8f05f3fd19fbb0;p=kivitendo-erp.git diff --git a/SL/DB/InvoiceItem.pm b/SL/DB/InvoiceItem.pm index 20afb033f..1407c3334 100644 --- a/SL/DB/InvoiceItem.pm +++ b/SL/DB/InvoiceItem.pm @@ -4,19 +4,22 @@ 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' }, - } + }, + price_factor_obj => { + type => 'one to one', + class => 'SL::DB::PriceFactor', + column_map => { price_factor_id => 'id' }, + }, + unit_obj => { + type => 'one to one', + class => 'SL::DB::Unit', + column_map => { unit => 'name' }, + }, ); # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.