X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/8f07fac1fa6772d354d2766a060b01244624a0a5..ad4bebf4dfcc48d0e313bfc4cb045de485c4d9fb:/SL/DB/Dunning.pm diff --git a/SL/DB/Dunning.pm b/SL/DB/Dunning.pm index 9be274b64..c61bf0f0d 100644 --- a/SL/DB/Dunning.pm +++ b/SL/DB/Dunning.pm @@ -6,10 +6,16 @@ package SL::DB::Dunning; use strict; use SL::DB::MetaSetup::Dunning; +use SL::DB::Helper::LinkedRecords; __PACKAGE__->meta->initialize; # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. __PACKAGE__->meta->make_manager_class; + +sub date { + goto &transdate; +} + 1;