Bug 25501: Supress warnings on installing translation
[koha.git] / Koha / Hold.pm
blobe8d9e0cc2c8524fb871af1cbaf4b9396d63f45cb
1 package Koha::Hold;
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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
23 use Carp;
24 use Data::Dumper qw(Dumper);
26 use C4::Context qw(preference);
27 use C4::Log;
29 use Koha::DateUtils qw(dt_from_string output_pref);
30 use Koha::Patrons;
31 use Koha::Biblios;
32 use Koha::Items;
33 use Koha::Libraries;
34 use Koha::Old::Holds;
35 use Koha::Calendar;
37 use Koha::Exceptions::Hold;
39 use base qw(Koha::Object);
41 =head1 NAME
43 Koha::Hold - Koha Hold object class
45 =head1 API
47 =head2 Class Methods
49 =cut
51 =head3 age
53 returns the number of days since a hold was placed, optionally
54 using the calendar
56 my $age = $hold->age( $use_calendar );
58 =cut
60 sub age {
61 my ( $self, $use_calendar ) = @_;
63 my $today = dt_from_string;
64 my $age;
66 if ( $use_calendar ) {
67 my $calendar = Koha::Calendar->new( branchcode => $self->branchcode );
68 $age = $calendar->days_between( dt_from_string( $self->reservedate ), $today );
70 else {
71 $age = $today->delta_days( dt_from_string( $self->reservedate ) );
74 $age = $age->in_units( 'days' );
76 return $age;
79 =head3 suspend_hold
81 my $hold = $hold->suspend_hold( $suspend_until_dt );
83 =cut
85 sub suspend_hold {
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' );
97 else {
98 Koha::Exceptions::Hold::CannotSuspendFound->throw(
99 'Unhandled data exception on found hold (id='
100 . $self->id
101 . ', found='
102 . $self->found
103 . ')' );
107 $self->suspend(1);
108 $self->suspend_until($date);
109 $self->store();
111 logaction( 'HOLDS', 'SUSPEND', $self->reserve_id, Dumper( $self->unblessed ) )
112 if C4::Context->preference('HoldsLog');
114 return $self;
117 =head3 resume
119 my $hold = $hold->resume();
121 =cut
123 sub resume {
124 my ( $self ) = @_;
126 $self->suspend(0);
127 $self->suspend_until( undef );
129 $self->store();
131 logaction( 'HOLDS', 'RESUME', $self->reserve_id, Dumper($self->unblessed) )
132 if C4::Context->preference('HoldsLog');
134 return $self;
137 =head3 delete
139 $hold->delete();
141 =cut
143 sub delete {
144 my ( $self ) = @_;
146 my $deleted = $self->SUPER::delete($self);
148 logaction( 'HOLDS', 'DELETE', $self->reserve_id, Dumper($self->unblessed) )
149 if C4::Context->preference('HoldsLog');
151 return $deleted;
154 =head3 set_waiting
156 =cut
158 sub set_waiting {
159 my ( $self, $transferToDo ) = @_;
161 $self->priority(0);
163 if ($transferToDo) {
164 $self->found('T')->store();
165 return $self;
168 my $today = dt_from_string();
169 my $values = {
170 found => 'W',
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();
197 return $self;
200 =head3 is_found
202 Returns true if hold is a waiting or in transit
204 =cut
206 sub is_found {
207 my ($self) = @_;
209 return 0 unless $self->found();
210 return 1 if $self->found() eq 'W';
211 return 1 if $self->found() eq 'T';
214 =head3 is_waiting
216 Returns true if hold is a waiting hold
218 =cut
220 sub is_waiting {
221 my ($self) = @_;
223 my $found = $self->found;
224 return $found && $found eq 'W';
227 =head3 is_in_transit
229 Returns true if hold is a in_transit hold
231 =cut
233 sub is_in_transit {
234 my ($self) = @_;
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.
248 =cut
250 sub is_cancelable_from_opac {
251 my ($self) = @_;
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
263 =cut
265 sub is_at_destination {
266 my ($self) = @_;
268 return $self->is_waiting() && ( $self->branchcode() eq $self->item()->holdingbranch() );
271 =head3 biblio
273 Returns the related Koha::Biblio object for this hold
275 =cut
277 sub biblio {
278 my ($self) = @_;
280 $self->{_biblio} ||= Koha::Biblios->find( $self->biblionumber() );
282 return $self->{_biblio};
285 =head3 item
287 Returns the related Koha::Item object for this Hold
289 =cut
291 sub item {
292 my ($self) = @_;
294 $self->{_item} ||= Koha::Items->find( $self->itemnumber() );
296 return $self->{_item};
299 =head3 branch
301 Returns the related Koha::Library object for this Hold
303 =cut
305 sub branch {
306 my ($self) = @_;
308 $self->{_branch} ||= Koha::Libraries->find( $self->branchcode() );
310 return $self->{_branch};
313 =head3 borrower
315 Returns the related Koha::Patron object for this Hold
317 =cut
319 # FIXME Should be renamed with ->patron
320 sub borrower {
321 my ($self) = @_;
323 $self->{_borrower} ||= Koha::Patrons->find( $self->borrowernumber() );
325 return $self->{_borrower};
328 =head3 is_suspended
330 my $bool = $hold->is_suspended();
332 =cut
334 sub is_suspended {
335 my ( $self ) = @_;
337 return $self->suspend();
341 =head3 cancel
343 my $cancel_hold = $hold->cancel();
345 Cancel a hold:
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
351 =cut
353 sub cancel {
354 my ( $self, $params ) = @_;
355 $self->_result->result_source->schema->txn_do(
356 sub {
357 $self->cancellationdate( dt_from_string->strftime( '%Y-%m-%d %H:%M:%S' ) );
358 $self->priority(0);
359 $self->_move_to_old;
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'} ) {
368 my $account =
369 Koha::Account->new( { patron_id => $self->borrowernumber } );
370 $account->add_debit(
372 amount => $charge,
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 => 'RESERVE_EXPIRED',
377 item_id => $self->itemnumber
382 C4::Log::logaction( 'HOLDS', 'CANCEL', $self->reserve_id, Dumper($self->unblessed) )
383 if C4::Context->preference('HoldsLog');
386 return $self;
389 =head3 _move_to_old
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
395 =cut
397 sub _move_to_old {
398 my ($self) = @_;
399 my $hold_infos = $self->unblessed;
400 return Koha::Old::Hold->new( $hold_infos )->store;
403 =head3 to_api_mapping
405 This method returns the mapping for representing a Koha::Hold object
406 on the API.
408 =cut
410 sub to_api_mapping {
411 return {
412 reserve_id => 'hold_id',
413 borrowernumber => 'patron_id',
414 reservedate => 'hold_date',
415 biblionumber => 'biblio_id',
416 branchcode => 'pickup_library_id',
417 notificationdate => undef,
418 reminderdate => undef,
419 cancellationdate => 'cancellation_date',
420 reservenotes => 'notes',
421 found => 'status',
422 itemnumber => 'item_id',
423 waitingdate => 'waiting_date',
424 expirationdate => 'expiration_date',
425 lowestPriority => 'lowest_priority',
426 suspend => 'suspended',
427 suspend_until => 'suspended_until',
428 itemtype => 'item_type',
429 item_level_hold => 'item_level',
433 =head2 Internal methods
435 =head3 _type
437 =cut
439 sub _type {
440 return 'Reserve';
443 =head1 AUTHORS
445 Kyle M Hall <kyle@bywatersolutions.com>
446 Jonathan Druart <jonathan.druart@bugs.koha-community.org>
447 Martin Renvoize <martin.renvoize@ptfs-europe.com>
449 =cut