1cb0147aff
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Hmm. I would have liked the opac parameter even better ;) Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
394 lines
8.1 KiB
Perl
394 lines
8.1 KiB
Perl
package Koha::Hold;
|
|
|
|
# Copyright ByWater Solutions 2014
|
|
# Copyright 2017 Koha Development team
|
|
#
|
|
# 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 Carp;
|
|
use Data::Dumper qw(Dumper);
|
|
|
|
use C4::Context qw(preference);
|
|
use C4::Log;
|
|
|
|
use Koha::DateUtils qw(dt_from_string output_pref);
|
|
use Koha::Patrons;
|
|
use Koha::Biblios;
|
|
use Koha::Items;
|
|
use Koha::Libraries;
|
|
use Koha::Old::Holds;
|
|
use Koha::Calendar;
|
|
|
|
use base qw(Koha::Object);
|
|
|
|
=head1 NAME
|
|
|
|
Koha::Hold - Koha Hold object class
|
|
|
|
=head1 API
|
|
|
|
=head2 Class Methods
|
|
|
|
=cut
|
|
|
|
=head3 age
|
|
|
|
returns the number of days since a hold was placed, optionally
|
|
using the calendar
|
|
|
|
my $age = $hold->age( $use_calendar );
|
|
|
|
=cut
|
|
|
|
sub age {
|
|
my ( $self, $use_calendar ) = @_;
|
|
|
|
my $today = dt_from_string;
|
|
my $age;
|
|
|
|
if ( $use_calendar ) {
|
|
my $calendar = Koha::Calendar->new( branchcode => $self->branchcode );
|
|
$age = $calendar->days_between( dt_from_string( $self->reservedate ), $today );
|
|
}
|
|
else {
|
|
$age = $today->delta_days( dt_from_string( $self->reservedate ) );
|
|
}
|
|
|
|
$age = $age->in_units( 'days' );
|
|
|
|
return $age;
|
|
}
|
|
|
|
=head3 suspend_hold
|
|
|
|
my $hold = $hold->suspend_hold( $suspend_until_dt );
|
|
|
|
=cut
|
|
|
|
sub suspend_hold {
|
|
my ( $self, $dt ) = @_;
|
|
|
|
my $date = $dt ? $dt->clone()->truncate( to => 'day' )->datetime : undef;
|
|
|
|
if ( $self->is_waiting ) { # We can't suspend waiting holds
|
|
carp "Unable to suspend waiting hold!";
|
|
return $self;
|
|
}
|
|
|
|
$self->suspend(1);
|
|
$self->suspend_until( $date );
|
|
$self->store();
|
|
|
|
logaction( 'HOLDS', 'SUSPEND', $self->reserve_id, Dumper($self->unblessed) )
|
|
if C4::Context->preference('HoldsLog');
|
|
|
|
return $self;
|
|
}
|
|
|
|
=head3 resume
|
|
|
|
my $hold = $hold->resume();
|
|
|
|
=cut
|
|
|
|
sub resume {
|
|
my ( $self ) = @_;
|
|
|
|
$self->suspend(0);
|
|
$self->suspend_until( undef );
|
|
|
|
$self->store();
|
|
|
|
logaction( 'HOLDS', 'RESUME', $self->reserve_id, Dumper($self->unblessed) )
|
|
if C4::Context->preference('HoldsLog');
|
|
|
|
return $self;
|
|
}
|
|
|
|
=head3 delete
|
|
|
|
$hold->delete();
|
|
|
|
=cut
|
|
|
|
sub delete {
|
|
my ( $self ) = @_;
|
|
|
|
my $deleted = $self->SUPER::delete($self);
|
|
|
|
logaction( 'HOLDS', 'DELETE', $self->reserve_id, Dumper($self->unblessed) )
|
|
if C4::Context->preference('HoldsLog');
|
|
|
|
return $deleted;
|
|
}
|
|
|
|
=head3 set_waiting
|
|
|
|
=cut
|
|
|
|
sub set_waiting {
|
|
my ( $self, $transferToDo ) = @_;
|
|
|
|
$self->priority(0);
|
|
|
|
if ($transferToDo) {
|
|
$self->found('T')->store();
|
|
return $self;
|
|
}
|
|
|
|
my $today = dt_from_string();
|
|
my $values = {
|
|
found => 'W',
|
|
waitingdate => $today->ymd,
|
|
};
|
|
|
|
my $requested_expiration;
|
|
if ($self->expirationdate) {
|
|
$requested_expiration = dt_from_string($self->expirationdate);
|
|
}
|
|
|
|
my $max_pickup_delay = C4::Context->preference("ReservesMaxPickUpDelay");
|
|
my $cancel_on_holidays = C4::Context->preference('ExpireReservesOnHolidays');
|
|
my $calendar = Koha::Calendar->new( branchcode => $self->branchcode );
|
|
|
|
my $expirationdate = $today->clone;
|
|
$expirationdate->add(days => $max_pickup_delay);
|
|
|
|
if ( C4::Context->preference("ExcludeHolidaysFromMaxPickUpDelay") ) {
|
|
$expirationdate = $calendar->days_forward( dt_from_string(), $max_pickup_delay );
|
|
}
|
|
|
|
# If patron's requested expiration date is prior to the
|
|
# calculated one, we keep the patron's one.
|
|
my $cmp = $requested_expiration ? DateTime->compare($requested_expiration, $expirationdate) : 0;
|
|
$values->{expirationdate} = $cmp == -1 ? $requested_expiration->ymd : $expirationdate->ymd;
|
|
|
|
$self->set($values)->store();
|
|
|
|
return $self;
|
|
}
|
|
|
|
=head3 is_found
|
|
|
|
Returns true if hold is a waiting or in transit
|
|
|
|
=cut
|
|
|
|
sub is_found {
|
|
my ($self) = @_;
|
|
|
|
return 0 unless $self->found();
|
|
return 1 if $self->found() eq 'W';
|
|
return 1 if $self->found() eq 'T';
|
|
}
|
|
|
|
=head3 is_waiting
|
|
|
|
Returns true if hold is a waiting hold
|
|
|
|
=cut
|
|
|
|
sub is_waiting {
|
|
my ($self) = @_;
|
|
|
|
my $found = $self->found;
|
|
return $found && $found eq 'W';
|
|
}
|
|
|
|
=head3 is_in_transit
|
|
|
|
Returns true if hold is a in_transit hold
|
|
|
|
=cut
|
|
|
|
sub is_in_transit {
|
|
my ($self) = @_;
|
|
|
|
return 0 unless $self->found();
|
|
return $self->found() eq 'T';
|
|
}
|
|
|
|
=head3 is_cancelable_from_opac
|
|
|
|
Returns true if hold is a cancelable hold
|
|
|
|
Holds may be only canceled if they are not found.
|
|
|
|
This is used from the OPAC.
|
|
|
|
=cut
|
|
|
|
sub is_cancelable_from_opac {
|
|
my ($self) = @_;
|
|
|
|
return 1 unless $self->is_found();
|
|
return 0; # if ->is_in_transit or if ->is_waiting
|
|
}
|
|
|
|
=head3 is_at_destination
|
|
|
|
Returns true if hold is waiting
|
|
and the hold's pickup branch matches
|
|
the hold item's holding branch
|
|
|
|
=cut
|
|
|
|
sub is_at_destination {
|
|
my ($self) = @_;
|
|
|
|
return $self->is_waiting() && ( $self->branchcode() eq $self->item()->holdingbranch() );
|
|
}
|
|
|
|
=head3 biblio
|
|
|
|
Returns the related Koha::Biblio object for this hold
|
|
|
|
=cut
|
|
|
|
sub biblio {
|
|
my ($self) = @_;
|
|
|
|
$self->{_biblio} ||= Koha::Biblios->find( $self->biblionumber() );
|
|
|
|
return $self->{_biblio};
|
|
}
|
|
|
|
=head3 item
|
|
|
|
Returns the related Koha::Item object for this Hold
|
|
|
|
=cut
|
|
|
|
sub item {
|
|
my ($self) = @_;
|
|
|
|
$self->{_item} ||= Koha::Items->find( $self->itemnumber() );
|
|
|
|
return $self->{_item};
|
|
}
|
|
|
|
=head3 branch
|
|
|
|
Returns the related Koha::Library object for this Hold
|
|
|
|
=cut
|
|
|
|
sub branch {
|
|
my ($self) = @_;
|
|
|
|
$self->{_branch} ||= Koha::Libraries->find( $self->branchcode() );
|
|
|
|
return $self->{_branch};
|
|
}
|
|
|
|
=head3 borrower
|
|
|
|
Returns the related Koha::Patron object for this Hold
|
|
|
|
=cut
|
|
|
|
# FIXME Should be renamed with ->patron
|
|
sub borrower {
|
|
my ($self) = @_;
|
|
|
|
$self->{_borrower} ||= Koha::Patrons->find( $self->borrowernumber() );
|
|
|
|
return $self->{_borrower};
|
|
}
|
|
|
|
=head3 is_suspended
|
|
|
|
my $bool = $hold->is_suspended();
|
|
|
|
=cut
|
|
|
|
sub is_suspended {
|
|
my ( $self ) = @_;
|
|
|
|
return $self->suspend();
|
|
}
|
|
|
|
|
|
=head3 cancel
|
|
|
|
my $cancel_hold = $hold->cancel();
|
|
|
|
Cancel a hold:
|
|
- The hold will be moved to the old_reserves table with a priority=0
|
|
- The priority of other holds will be updated
|
|
- The patron will be charge (see ExpireReservesMaxPickUpDelayCharge) if the charge_cancel_fee parameter is set
|
|
- a CANCEL HOLDS log will be done if the pref HoldsLog is on
|
|
|
|
=cut
|
|
|
|
sub cancel {
|
|
my ( $self, $params ) = @_;
|
|
$self->_result->result_source->schema->txn_do(
|
|
sub {
|
|
$self->cancellationdate(dt_from_string);
|
|
$self->priority(0);
|
|
$self->_move_to_old;
|
|
$self->SUPER::delete(); # Do not add a DELETE log
|
|
|
|
# now fix the priority on the others....
|
|
C4::Reserves::_FixPriority({ biblionumber => $self->biblionumber });
|
|
|
|
# and, if desired, charge a cancel fee
|
|
my $charge = C4::Context->preference("ExpireReservesMaxPickUpDelayCharge");
|
|
if ( $charge && $params->{'charge_cancel_fee'} ) {
|
|
C4::Accounts::manualinvoice($self->borrowernumber, $self->itemnumber, '', 'HE', $charge);
|
|
}
|
|
|
|
C4::Log::logaction( 'HOLDS', 'CANCEL', $self->reserve_id, Dumper($self->unblessed) )
|
|
if C4::Context->preference('HoldsLog');
|
|
}
|
|
);
|
|
return $self;
|
|
}
|
|
|
|
=head3 _move_to_old
|
|
|
|
my $is_moved = $hold->_move_to_old;
|
|
|
|
Move a hold to the old_reserve table following the same pattern as Koha::Patron->move_to_deleted
|
|
|
|
=cut
|
|
|
|
sub _move_to_old {
|
|
my ($self) = @_;
|
|
my $hold_infos = $self->unblessed;
|
|
return Koha::Old::Hold->new( $hold_infos )->store;
|
|
}
|
|
|
|
=head3 type
|
|
|
|
=cut
|
|
|
|
sub _type {
|
|
return 'Reserve';
|
|
}
|
|
|
|
=head1 AUTHORS
|
|
|
|
Kyle M Hall <kyle@bywatersolutions.com>
|
|
|
|
Jonathan Druart <jonathan.druart@bugs.koha-community.org>
|
|
|
|
=cut
|
|
|
|
1;
|