3 # Copyright ByWater Solutions 2014
4 # Copyright 2017 Koha Development team
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 use Data
::Dumper
qw(Dumper);
26 use C4
::Context
qw(preference);
29 use Koha
::DateUtils
qw(dt_from_string output_pref);
37 use Koha
::Exceptions
::Hold
;
39 use base
qw(Koha::Object);
43 Koha::Hold - Koha Hold object class
53 returns the number of days since a hold was placed, optionally
56 my $age = $hold->age( $use_calendar );
61 my ( $self, $use_calendar ) = @_;
63 my $today = dt_from_string
;
66 if ( $use_calendar ) {
67 my $calendar = Koha
::Calendar
->new( branchcode
=> $self->branchcode );
68 $age = $calendar->days_between( dt_from_string
( $self->reservedate ), $today );
71 $age = $today->delta_days( dt_from_string
( $self->reservedate ) );
74 $age = $age->in_units( 'days' );
81 my $hold = $hold->suspend_hold( $suspend_until_dt );
86 my ( $self, $dt ) = @_;
88 my $date = $dt ?
$dt->clone()->truncate( to
=> 'day' )->datetime : undef;
90 if ( $self->is_found ) { # We can't suspend found holds
91 if ( $self->is_waiting ) {
92 Koha
::Exceptions
::Hold
::CannotSuspendFound
->throw( status
=> 'W' );
94 elsif ( $self->is_in_transit ) {
95 Koha
::Exceptions
::Hold
::CannotSuspendFound
->throw( status
=> 'T' );
98 Koha
::Exceptions
::Hold
::CannotSuspendFound
->throw(
99 'Unhandled data exception on found hold (id='
108 $self->suspend_until($date);
111 logaction
( 'HOLDS', 'SUSPEND', $self->reserve_id, Dumper
( $self->unblessed ) )
112 if C4
::Context
->preference('HoldsLog');
119 my $hold = $hold->resume();
127 $self->suspend_until( undef );
131 logaction
( 'HOLDS', 'RESUME', $self->reserve_id, Dumper
($self->unblessed) )
132 if C4
::Context
->preference('HoldsLog');
146 my $deleted = $self->SUPER::delete($self);
148 logaction
( 'HOLDS', 'DELETE', $self->reserve_id, Dumper
($self->unblessed) )
149 if C4
::Context
->preference('HoldsLog');
159 my ( $self, $transferToDo ) = @_;
164 $self->found('T')->store();
168 my $today = dt_from_string
();
171 waitingdate
=> $today->ymd,
174 my $requested_expiration;
175 if ($self->expirationdate) {
176 $requested_expiration = dt_from_string
($self->expirationdate);
179 my $max_pickup_delay = C4
::Context
->preference("ReservesMaxPickUpDelay");
180 my $cancel_on_holidays = C4
::Context
->preference('ExpireReservesOnHolidays');
181 my $calendar = Koha
::Calendar
->new( branchcode
=> $self->branchcode );
183 my $expirationdate = $today->clone;
184 $expirationdate->add(days
=> $max_pickup_delay);
186 if ( C4
::Context
->preference("ExcludeHolidaysFromMaxPickUpDelay") ) {
187 $expirationdate = $calendar->days_forward( dt_from_string
(), $max_pickup_delay );
190 # If patron's requested expiration date is prior to the
191 # calculated one, we keep the patron's one.
192 my $cmp = $requested_expiration ? DateTime
->compare($requested_expiration, $expirationdate) : 0;
193 $values->{expirationdate
} = $cmp == -1 ?
$requested_expiration->ymd : $expirationdate->ymd;
195 $self->set($values)->store();
202 Returns true if hold is a waiting or in transit
209 return 0 unless $self->found();
210 return 1 if $self->found() eq 'W';
211 return 1 if $self->found() eq 'T';
216 Returns true if hold is a waiting hold
223 my $found = $self->found;
224 return $found && $found eq 'W';
229 Returns true if hold is a in_transit hold
236 return 0 unless $self->found();
237 return $self->found() eq 'T';
240 =head3 is_cancelable_from_opac
242 Returns true if hold is a cancelable hold
244 Holds may be only canceled if they are not found.
246 This is used from the OPAC.
250 sub is_cancelable_from_opac
{
253 return 1 unless $self->is_found();
254 return 0; # if ->is_in_transit or if ->is_waiting
257 =head3 is_at_destination
259 Returns true if hold is waiting
260 and the hold's pickup branch matches
261 the hold item's holding branch
265 sub is_at_destination
{
268 return $self->is_waiting() && ( $self->branchcode() eq $self->item()->holdingbranch() );
273 Returns the related Koha::Biblio object for this hold
280 $self->{_biblio
} ||= Koha
::Biblios
->find( $self->biblionumber() );
282 return $self->{_biblio
};
287 Returns the related Koha::Item object for this Hold
294 $self->{_item
} ||= Koha
::Items
->find( $self->itemnumber() );
296 return $self->{_item
};
301 Returns the related Koha::Library object for this Hold
308 $self->{_branch
} ||= Koha
::Libraries
->find( $self->branchcode() );
310 return $self->{_branch
};
315 Returns the related Koha::Patron object for this Hold
319 # FIXME Should be renamed with ->patron
323 $self->{_borrower
} ||= Koha
::Patrons
->find( $self->borrowernumber() );
325 return $self->{_borrower
};
330 my $bool = $hold->is_suspended();
337 return $self->suspend();
343 my $cancel_hold = $hold->cancel();
346 - The hold will be moved to the old_reserves table with a priority=0
347 - The priority of other holds will be updated
348 - The patron will be charge (see ExpireReservesMaxPickUpDelayCharge) if the charge_cancel_fee parameter is set
349 - a CANCEL HOLDS log will be done if the pref HoldsLog is on
354 my ( $self, $params ) = @_;
355 $self->_result->result_source->schema->txn_do(
357 $self->cancellationdate( dt_from_string
->strftime( '%Y-%m-%d %H:%M:%S' ) );
360 $self->SUPER::delete(); # Do not add a DELETE log
362 # now fix the priority on the others....
363 C4
::Reserves
::_FixPriority
({ biblionumber
=> $self->biblionumber });
365 # and, if desired, charge a cancel fee
366 my $charge = C4
::Context
->preference("ExpireReservesMaxPickUpDelayCharge");
367 if ( $charge && $params->{'charge_cancel_fee'} ) {
369 Koha
::Account
->new( { patron_id
=> $self->borrowernumber } );
373 user_id
=> C4
::Context
->userenv ? C4
::Context
->userenv->{'number'} : undef,
374 interface
=> C4
::Context
->interface,
375 library_id
=> C4
::Context
->userenv ? C4
::Context
->userenv->{'branch'} : undef,
376 type
=> 'hold_expired',
377 item_id
=> $self->itemnumber
382 C4
::Log
::logaction
( 'HOLDS', 'CANCEL', $self->reserve_id, Dumper
($self->unblessed) )
383 if C4
::Context
->preference('HoldsLog');
391 my $is_moved = $hold->_move_to_old;
393 Move a hold to the old_reserve table following the same pattern as Koha::Patron->move_to_deleted
399 my $hold_infos = $self->unblessed;
400 return Koha
::Old
::Hold
->new( $hold_infos )->store;
413 Kyle M Hall <kyle@bywatersolutions.com>
414 Jonathan Druart <jonathan.druart@bugs.koha-community.org>
415 Martin Renvoize <martin.renvoize@ptfs-europe.com>