@@ -, +, @@ - Check the referenced schema files are the right ones. - QA scripts shoudl be happy. - Sign off :-D --- Koha/Acquisition/Budget.pm | 40 +++++++++++++++++++++++++++++++++++++ Koha/Acquisition/Budgets.pm | 48 +++++++++++++++++++++++++++++++++++++++++++++ Koha/Acquisition/Fund.pm | 40 +++++++++++++++++++++++++++++++++++++ Koha/Acquisition/Funds.pm | 48 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 176 insertions(+) create mode 100644 Koha/Acquisition/Budget.pm create mode 100644 Koha/Acquisition/Budgets.pm create mode 100644 Koha/Acquisition/Fund.pm create mode 100644 Koha/Acquisition/Funds.pm --- a/Koha/Acquisition/Budget.pm +++ a/Koha/Acquisition/Budget.pm @@ -0,0 +1,40 @@ +package Koha::Acquisition::Budget; + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; + +use base qw(Koha::Object); + +=head1 NAME + +Koha::Acquisition::Budget object class + +=head1 API + +=head2 Internal methods + +=head3 _type + +=cut + +sub _type { + return 'Aqbudgetperiod'; +} + +1; --- a/Koha/Acquisition/Budgets.pm +++ a/Koha/Acquisition/Budgets.pm @@ -0,0 +1,48 @@ +package Koha::Acquisition::Budgets; + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; + +use base qw(Koha::Objects); + +=head1 NAME + +Koha::Acquisition::Budgets object set class + +=head1 API + +=head2 Internal methods + +=head3 _type (internal) + +=cut + +sub _type { + return 'Aqbudgetperiod'; +} + +=head3 object_class (internal) + +=cut + +sub object_class { + return 'Koha::Acquisition::Budget'; +} + +1; --- a/Koha/Acquisition/Fund.pm +++ a/Koha/Acquisition/Fund.pm @@ -0,0 +1,40 @@ +package Koha::Acquisition::Fund; + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; + +use base qw(Koha::Object); + +=head1 NAME + +Koha::Acquisition::Fund object class + +=head1 API + +=head2 Internal methods + +=head3 _type + +=cut + +sub _type { + return 'Aqbudget'; +} + +1; --- a/Koha/Acquisition/Funds.pm +++ a/Koha/Acquisition/Funds.pm @@ -0,0 +1,48 @@ +package Koha::Acquisition::Funds; + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Koha::Database; + +use base qw(Koha::Objects); + +=head1 NAME + +Koha::Acquisition::Funds object set class + +=head1 API + +=head2 Internal methods + +=head3 _type (internal) + +=cut + +sub _type { + return 'Aqbudget'; +} + +=head3 object_class (internal) + +=cut + +sub object_class { + return 'Koha::Acquisition::Fund'; +} + +1; --