X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6cf3f7762efd40bee49a2b8f11bb4ab6915d9071..da99c7bcf4a8ec82d9bc1d0c75aaba6ba4cd69ea:/SL/DB/InvoiceItem.pm?ds=sidebyside diff --git a/SL/DB/InvoiceItem.pm b/SL/DB/InvoiceItem.pm index d8b39034d..1407c3334 100644 --- a/SL/DB/InvoiceItem.pm +++ b/SL/DB/InvoiceItem.pm @@ -9,7 +9,17 @@ __PACKAGE__->meta->add_relationship( 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.