X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/6cf3f7762efd40bee49a2b8f11bb4ab6915d9071..2b8804456d1d3ee249a70d98679ea3a934b25a39:/SL/DB/Inventory.pm diff --git a/SL/DB/Inventory.pm b/SL/DB/Inventory.pm index 98d505d70..b8f28a37b 100644 --- a/SL/DB/Inventory.pm +++ b/SL/DB/Inventory.pm @@ -7,7 +7,14 @@ use strict; use SL::DB::MetaSetup::Inventory; +__PACKAGE__->meta->initialize; + # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. __PACKAGE__->meta->make_manager_class; +# part accessor is badly named +sub part { + goto &parts; +} + 1;