Koha/Koha/Suggestion.pm
Tomas Cohen Arazi e68f715340 Bug 17314: Implement /suggestions routes
This patch introduces routes to handle purchase suggestions, from the
staff POV.

Tests are added as well.

To test:
1. Apply this patches
2. Run:
   $ kshell
  k$ prove t/db_dependent/api/v1/suggestions.t
=> SUCCESS: Tests pass! And they are meaningful!
3. Play with your favourite REST tool (Postman?)
4. Sign off :-D

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-10-28 17:32:34 +02:00

193 lines
4.6 KiB
Perl

package Koha::Suggestion;
# Copyright ByWater Solutions 2015
#
# 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, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use Koha::Database;
use Koha::DateUtils qw( dt_from_string );
use Koha::Patrons;
use base qw(Koha::Object);
=head1 NAME
Koha::Suggestion - Koha Suggestion object class
=head1 API
=head2 Class methods
=cut
=head3 store
Override the default store behavior so that new suggestions have
a suggesteddate of today
=cut
sub store {
my ($self) = @_;
unless ( $self->suggesteddate() ) {
$self->suggesteddate( dt_from_string()->ymd );
}
return $self->SUPER::store();
}
=head3 suggester
my $patron = $suggestion->suggester
Returns the I<Koha::Patron> for the suggestion generator. I<undef> is
returned if no suggester is linked.
=cut
sub suggester {
my ($self) = @_;
my $suggester_rs = $self->_result->suggester;
return unless $suggester_rs;
return Koha::Patron->_new_from_dbic($suggester_rs);
}
=head3 manager
my $manager = $suggestion->manager;
Returns the manager of the suggestion (Koha::Patron for managedby field)
=cut
sub manager {
my ($self) = @_;
my $manager_rs = $self->_result->managedby;
return unless $manager_rs;
return Koha::Patron->_new_from_dbic($manager_rs);
}
=head3 rejecter
my $rejecter = $suggestion->rejecter;
Returns the rejecter of the suggestion (Koha::Patron for rejectebby field)
=cut
sub rejecter {
my ($self) = @_;
my $rejecter_rs = $self->_result->managedby;
return unless $rejecter_rs;
return Koha::Patron->_new_from_dbic($rejecter_rs);
}
=head3 last_modifier
my $last_modifier = $suggestion->last_modifier;
Returns the librarian who last modified the suggestion (Koha::Patron for lastmodificationby field)
=cut
sub last_modifier {
my ($self) = @_;
my $last_modifier_rs = $self->_result->managedby;
return unless $last_modifier_rs;
return Koha::Patron->_new_from_dbic($last_modifier_rs);
}
=head3 fund
my $fund = $suggestion->fund;
Return the fund associated to the suggestion
=cut
sub fund {
my ($self) = @_;
my $fund_rs = $self->_result->budgetid;
return unless $fund_rs;
return Koha::Acquisition::Fund->_new_from_dbic($fund_rs);
}
=head3 type
=cut
sub _type {
return 'Suggestion';
}
=head3 to_api_mapping
This method returns the mapping for representing a Koha::Patron object
on the API.
=cut
sub to_api_mapping {
return {
suggestionid => 'suggestion_id',
suggestedby => 'suggested_by',
suggesteddate => 'suggestion_date',
managedby => 'managed_by',
manageddate => 'managed_date',
acceptedby => 'accepted_by',
accepteddate => 'accepted_date',
rejectedby => 'rejected_by',
rejecteddate => 'rejected_date',
lastmodificationdate => 'last_status_change_date',
lastmodificationby => 'last_status_change_by',
STATUS => 'status',
note => 'note',
author => 'author',
title => 'title',
copyrightdate => 'copyright_date',
publishercode => 'publisher_code',
date => 'timestamp',
volumedesc => 'volume_desc',
publicationyear => 'publication_year',
place => 'publication_place',
isbn => 'isbn',
biblionumber => 'biblio_id',
reason => 'reason',
patronreason => 'patron_reason',
budgetid => 'budget_id',
branchcode => 'library_id',
collectiontitle => 'collection_title',
itemtype => 'item_type',
quantity => 'quantity',
currency => 'currency',
price => 'item_price',
total => 'total_price',
archived => 'archived',
};
}
=head1 AUTHOR
Kyle M Hall <kyle@bywatersolutions.com>
=cut
1;