1 package SL::DB::InvoiceItem;
5 use SL::DB::MetaSetup::InvoiceItem;
6 use SL::DB::Helper::CustomVariables (
7 sub_module => 'invoice',
10 parts_id => 'SL::DB::Part',
14 __PACKAGE__->meta->add_relationship(
16 type => 'many to one',
17 class => 'SL::DB::Unit',
18 column_map => { unit => 'name' },
22 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
23 __PACKAGE__->meta->make_manager_class;
25 __PACKAGE__->meta->initialize;