X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FInventory.pm;h=b8f28a37b076abb4d1f626a6e4489dc795dd14f1;hb=bbb98e034f3fe6f7ca508f3482a51c6d8a120c92;hp=98d505d703dbedcad8ea5fbdeddc959a417f4fa1;hpb=6cf3f7762efd40bee49a2b8f11bb4ab6915d9071;p=kivitendo-erp.git 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;