3 # Copyright 2000-2002 Katipo Communications
4 # 2006 SAN Ouest Provence
5 # 2007-2010 BibLibre Paul POULAIN
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
33 use C4
::Members
::Messaging
;
35 use Koha
::Account
::Lines
;
38 use Koha
::CirculationRules
;
51 use List
::MoreUtils
qw( firstidx any );
53 use vars
qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
57 C4::Reserves - Koha functions for dealing with reservation.
65 This modules provides somes functions to deal with reservations.
67 Reserves are stored in reserves table.
68 The following columns contains important values :
69 - priority >0 : then the reserve is at 1st stage, and not yet affected to any item.
70 =0 : then the reserve is being dealed
71 - found : NULL : means the patron requested the 1st available, and we haven't chosen the item
72 T(ransit) : the reserve is linked to an item but is in transit to the pickup branch
73 W(aiting) : the reserve is linked to an item, is at the pickup branch, and is waiting on the hold shelf
74 F(inished) : the reserve has been completed, and is done
75 - itemnumber : empty : the reserve is still unaffected to an item
76 filled: the reserve is attached to an item
77 The complete workflow is :
78 ==== 1st use case ====
79 patron request a document, 1st available : P >0, F=NULL, I=NULL
80 a library having it run "transfertodo", and clic on the list
81 if there is no transfer to do, the reserve waiting
82 patron can pick it up P =0, F=W, I=filled
83 if there is a transfer to do, write in branchtransfer P =0, F=T, I=filled
84 The pickup library receive the book, it check in P =0, F=W, I=filled
85 The patron borrow the book P =0, F=F, I=filled
87 ==== 2nd use case ====
88 patron requests a document, a given item,
89 If pickup is holding branch P =0, F=W, I=filled
90 If transfer needed, write in branchtransfer P =0, F=T, I=filled
91 The pickup library receive the book, it checks it in P =0, F=W, I=filled
92 The patron borrow the book P =0, F=F, I=filled
113 &ModReserveMinusPriority
119 &CanReserveBeCanceledFromOpac
120 &CancelExpiredReserves
122 &AutoUnsuspendReserves
124 &IsAvailableForItemLevelRequest
127 &ToggleLowestPriority
133 &GetReservesControlBranch
137 GetMaxPatronHoldsForRecord
139 @EXPORT_OK = qw( MergeHolds );
146 branch => $branchcode,
147 borrowernumber => $borrowernumber,
148 biblionumber => $biblionumber,
149 priority => $priority,
150 reservation_date => $reservation_date,
151 expiration_date => $expiration_date,
154 itemnumber => $itemnumber,
156 itemtype => $itemtype,
160 Adds reserve and generates HOLDPLACED message.
162 The following tables are available witin the HOLDPLACED message:
175 my $branch = $params->{branchcode
};
176 my $borrowernumber = $params->{borrowernumber
};
177 my $biblionumber = $params->{biblionumber
};
178 my $priority = $params->{priority
};
179 my $resdate = $params->{reservation_date
};
180 my $expdate = $params->{expiration_date
};
181 my $notes = $params->{notes
};
182 my $title = $params->{title
};
183 my $checkitem = $params->{itemnumber
};
184 my $found = $params->{found
};
185 my $itemtype = $params->{itemtype
};
187 $resdate = output_pref
( { str
=> dt_from_string
( $resdate ), dateonly
=> 1, dateformat
=> 'iso' })
188 or output_pref
({ dt
=> dt_from_string
, dateonly
=> 1, dateformat
=> 'iso' });
190 $expdate = output_pref
({ str
=> $expdate, dateonly
=> 1, dateformat
=> 'iso' });
192 # if we have an item selectionned, and the pickup branch is the same as the holdingbranch
193 # of the document, we force the value $priority and $found .
194 if ( $checkitem and not C4
::Context
->preference('ReservesNeedReturns') ) {
195 my $item = Koha
::Items
->find( $checkitem ); # FIXME Prevent bad calls
198 # If item is already checked out, it cannot be set waiting
201 # The item can't be waiting if it needs a transfer
202 && $item->holdingbranch eq $branch
204 # Similarly, if in transit it can't be waiting
205 && !$item->get_transfer
207 # If we can't hold damaged items, and it is damaged, it can't be waiting
208 && ( $item->damaged && C4
::Context
->preference('AllowHoldsOnDamagedItems') || !$item->damaged )
210 # Lastly, if this already has holds, we shouldn't make it waiting for the new hold
211 && !$item->current_holds->count )
218 if ( C4
::Context
->preference('AllowHoldDateInFuture') ) {
220 # Make room in reserves for this before those of a later reserve date
221 $priority = _ShiftPriorityByDateAndPriority
( $biblionumber, $resdate, $priority );
226 # If the reserv had the waiting status, we had the value of the resdate
227 if ( $found && $found eq 'W' ) {
228 $waitingdate = $resdate;
231 # Don't add itemtype limit if specific item is selected
232 $itemtype = undef if $checkitem;
234 # updates take place here
235 my $hold = Koha
::Hold
->new(
237 borrowernumber
=> $borrowernumber,
238 biblionumber
=> $biblionumber,
239 reservedate
=> $resdate,
240 branchcode
=> $branch,
241 priority
=> $priority,
242 reservenotes
=> $notes,
243 itemnumber
=> $checkitem,
245 waitingdate
=> $waitingdate,
246 expirationdate
=> $expdate,
247 itemtype
=> $itemtype,
248 item_level_hold
=> $checkitem ?
1 : 0,
251 $hold->set_waiting() if $found && $found eq 'W';
253 logaction
( 'HOLDS', 'CREATE', $hold->id, Dumper
($hold->unblessed) )
254 if C4
::Context
->preference('HoldsLog');
256 my $reserve_id = $hold->id();
258 # add a reserve fee if needed
259 if ( C4
::Context
->preference('HoldFeeMode') ne 'any_time_is_collected' ) {
260 my $reserve_fee = GetReserveFee
( $borrowernumber, $biblionumber );
261 ChargeReserveFee
( $borrowernumber, $reserve_fee, $title );
264 _FixPriority
({ biblionumber
=> $biblionumber});
266 # Send e-mail to librarian if syspref is active
267 if(C4
::Context
->preference("emailLibrarianWhenHoldIsPlaced")){
268 my $patron = Koha
::Patrons
->find( $borrowernumber );
269 my $library = $patron->library;
270 if ( my $letter = C4
::Letters
::GetPreparedLetter
(
271 module
=> 'reserves',
272 letter_code
=> 'HOLDPLACED',
273 branchcode
=> $branch,
274 lang
=> $patron->lang,
276 'branches' => $library->unblessed,
277 'borrowers' => $patron->unblessed,
278 'biblio' => $biblionumber,
279 'biblioitems' => $biblionumber,
280 'items' => $checkitem,
281 'reserves' => $hold->unblessed,
285 my $branch_email_address = $library->inbound_email_address;
287 C4
::Letters
::EnqueueLetter
(
290 borrowernumber
=> $borrowernumber,
291 message_transport_type
=> 'email',
292 to_address
=> $branch_email_address,
301 =head2 CanBookBeReserved
303 $canReserve = &CanBookBeReserved($borrowernumber, $biblionumber, $branchcode)
304 if ($canReserve eq 'OK') { #We can reserve this Item! }
306 See CanItemBeReserved() for possible return values.
310 sub CanBookBeReserved
{
311 my ($borrowernumber, $biblionumber, $pickup_branchcode) = @_;
313 my @itemnumbers = Koha
::Items
->search({ biblionumber
=> $biblionumber})->get_column("itemnumber");
314 #get items linked via host records
315 my @hostitems = get_hostitemnumbers_of
($biblionumber);
317 push (@itemnumbers, @hostitems);
320 my $canReserve = { status
=> '' };
321 foreach my $itemnumber (@itemnumbers) {
322 $canReserve = CanItemBeReserved
( $borrowernumber, $itemnumber, $pickup_branchcode );
323 return { status
=> 'OK' } if $canReserve->{status
} eq 'OK';
328 =head2 CanItemBeReserved
330 $canReserve = &CanItemBeReserved($borrowernumber, $itemnumber, $branchcode)
331 if ($canReserve->{status} eq 'OK') { #We can reserve this Item! }
333 @RETURNS { status => OK }, if the Item can be reserved.
334 { status => ageRestricted }, if the Item is age restricted for this borrower.
335 { status => damaged }, if the Item is damaged.
336 { status => cannotReserveFromOtherBranches }, if syspref 'canreservefromotherbranches' is OK.
337 { status => branchNotInHoldGroup }, if borrower home library is not in hold group, and holds are only allowed from hold groups.
338 { status => tooManyReserves, limit => $limit }, if the borrower has exceeded their maximum reserve amount.
339 { status => notReservable }, if holds on this item are not allowed
340 { status => libraryNotFound }, if given branchcode is not an existing library
341 { status => libraryNotPickupLocation }, if given branchcode is not configured to be a pickup location
342 { status => cannotBeTransferred }, if branch transfer limit applies on given item and branchcode
343 { status => pickupNotInHoldGroup }, pickup location is not in hold group, and pickup locations are only allowed from hold groups.
347 sub CanItemBeReserved
{
348 my ( $borrowernumber, $itemnumber, $pickup_branchcode ) = @_;
350 my $dbh = C4
::Context
->dbh;
351 my $ruleitemtype; # itemtype of the matching issuing rule
352 my $allowedreserves = 0; # Total number of holds allowed across all records
353 my $holds_per_record = 1; # Total number of holds allowed for this one given record
354 my $holds_per_day; # Default to unlimited
356 # we retrieve borrowers and items informations #
357 # item->{itype} will come for biblioitems if necessery
358 my $item = Koha
::Items
->find($itemnumber);
359 my $biblio = $item->biblio;
360 my $patron = Koha
::Patrons
->find( $borrowernumber );
361 my $borrower = $patron->unblessed;
363 # If an item is damaged and we don't allow holds on damaged items, we can stop right here
364 return { status
=>'damaged' }
366 && !C4
::Context
->preference('AllowHoldsOnDamagedItems') );
368 # Check for the age restriction
369 my ( $ageRestriction, $daysToAgeRestriction ) =
370 C4
::Circulation
::GetAgeRestriction
( $biblio->biblioitem->agerestriction, $borrower );
371 return { status
=> 'ageRestricted' } if $daysToAgeRestriction && $daysToAgeRestriction > 0;
373 # Check that the patron doesn't have an item level hold on this item already
374 return { status
=>'itemAlreadyOnHold' }
375 if Koha
::Holds
->search( { borrowernumber
=> $borrowernumber, itemnumber
=> $itemnumber } )->count();
377 my $controlbranch = C4
::Context
->preference('ReservesControlBranch');
380 SELECT count(*) AS count
382 LEFT JOIN items USING (itemnumber)
383 LEFT JOIN biblioitems ON (reserves.biblionumber=biblioitems.biblionumber)
384 LEFT JOIN borrowers USING (borrowernumber)
385 WHERE borrowernumber = ?
389 my $branchfield = "reserves.branchcode";
391 if ( $controlbranch eq "ItemHomeLibrary" ) {
392 $branchfield = "items.homebranch";
393 $branchcode = $item->homebranch;
395 elsif ( $controlbranch eq "PatronLibrary" ) {
396 $branchfield = "borrowers.branchcode";
397 $branchcode = $borrower->{branchcode
};
401 if ( my $rights = GetHoldRule
( $borrower->{'categorycode'}, $item->effective_itemtype, $branchcode ) ) {
402 $ruleitemtype = $rights->{itemtype
};
403 $allowedreserves = $rights->{reservesallowed
} // $allowedreserves;
404 $holds_per_record = $rights->{holds_per_record
} // $holds_per_record;
405 $holds_per_day = $rights->{holds_per_day
};
408 $ruleitemtype = undef;
411 my $holds = Koha
::Holds
->search(
413 borrowernumber
=> $borrowernumber,
414 biblionumber
=> $item->biblionumber,
417 if ( defined $holds_per_record && $holds_per_record ne ''
418 && $holds->count() >= $holds_per_record ) {
419 return { status
=> "tooManyHoldsForThisRecord", limit
=> $holds_per_record };
422 my $today_holds = Koha
::Holds
->search({
423 borrowernumber
=> $borrowernumber,
424 reservedate
=> dt_from_string
->date
427 if ( defined $holds_per_day && $holds_per_day ne ''
428 && $today_holds->count() >= $holds_per_day )
430 return { status
=> 'tooManyReservesToday', limit
=> $holds_per_day };
435 $querycount .= "AND ( $branchfield = ? OR $branchfield IS NULL )";
437 # If using item-level itypes, fall back to the record
438 # level itemtype if the hold has no associated item
440 C4
::Context
->preference('item-level_itypes')
441 ?
" AND COALESCE( items.itype, biblioitems.itemtype ) = ?"
442 : " AND biblioitems.itemtype = ?"
443 if defined $ruleitemtype;
445 my $sthcount = $dbh->prepare($querycount);
447 if ( defined $ruleitemtype ) {
448 $sthcount->execute( $borrowernumber, $branchcode, $ruleitemtype );
451 $sthcount->execute( $borrowernumber, $branchcode );
454 my $reservecount = "0";
455 if ( my $rowcount = $sthcount->fetchrow_hashref() ) {
456 $reservecount = $rowcount->{count
};
459 # we check if it's ok or not
460 if ( defined $allowedreserves && $allowedreserves ne ''
461 && $reservecount >= $allowedreserves ) {
462 return { status
=> 'tooManyReserves', limit
=> $allowedreserves };
465 # Now we need to check hold limits by patron category
466 my $rule = Koha
::CirculationRules
->get_effective_rule(
468 categorycode
=> $borrower->{categorycode
},
469 branchcode
=> $branchcode,
470 rule_name
=> 'max_holds',
473 if ( $rule && defined( $rule->rule_value ) && $rule->rule_value ne '' ) {
474 my $total_holds_count = Koha
::Holds
->search(
476 borrowernumber
=> $borrower->{borrowernumber
}
480 return { status
=> 'tooManyReserves', limit
=> $rule->rule_value} if $total_holds_count >= $rule->rule_value;
483 my $reserves_control_branch =
484 GetReservesControlBranch
( $item->unblessed(), $borrower );
486 C4
::Circulation
::GetBranchItemRule
( $reserves_control_branch, $item->itype ); # FIXME Should not be item->effective_itemtype?
488 if ( $branchitemrule->{holdallowed
} == 0 ) {
489 return { status
=> 'notReservable' };
492 if ( $branchitemrule->{holdallowed
} == 1
493 && $borrower->{branchcode
} ne $item->homebranch )
495 return { status
=> 'cannotReserveFromOtherBranches' };
498 my $item_library = Koha
::Libraries
->find( {branchcode
=> $item->homebranch} );
499 if ( $branchitemrule->{holdallowed
} == 3) {
500 if($borrower->{branchcode
} ne $item->homebranch && !$item_library->validate_hold_sibling( {branchcode
=> $borrower->{branchcode
}} )) {
501 return { status
=> 'branchNotInHoldGroup' };
505 # If reservecount is ok, we check item branch if IndependentBranches is ON
506 # and canreservefromotherbranches is OFF
507 if ( C4
::Context
->preference('IndependentBranches')
508 and !C4
::Context
->preference('canreservefromotherbranches') )
510 if ( $item->homebranch ne $borrower->{branchcode
} ) {
511 return { status
=> 'cannotReserveFromOtherBranches' };
515 if ($pickup_branchcode) {
516 my $destination = Koha
::Libraries
->find({
517 branchcode
=> $pickup_branchcode,
520 unless ($destination) {
521 return { status
=> 'libraryNotFound' };
523 unless ($destination->pickup_location) {
524 return { status
=> 'libraryNotPickupLocation' };
526 unless ($item->can_be_transferred({ to
=> $destination })) {
527 return { status
=> 'cannotBeTransferred' };
529 unless ($branchitemrule->{hold_fulfillment_policy
} ne 'holdgroup' || $item_library->validate_hold_sibling( {branchcode
=> $pickup_branchcode} )) {
530 return { status
=> 'pickupNotInHoldGroup' };
532 unless ($branchitemrule->{hold_fulfillment_policy
} ne 'patrongroup' || Koha
::Libraries
->find({branchcode
=> $borrower->{branchcode
}})->validate_hold_sibling({branchcode
=> $pickup_branchcode})) {
533 return { status
=> 'pickupNotInHoldGroup' };
537 return { status
=> 'OK' };
540 =head2 CanReserveBeCanceledFromOpac
542 $number = CanReserveBeCanceledFromOpac($reserve_id, $borrowernumber);
544 returns 1 if reserve can be cancelled by user from OPAC.
545 First check if reserve belongs to user, next checks if reserve is not in
546 transfer or waiting status
550 sub CanReserveBeCanceledFromOpac
{
551 my ($reserve_id, $borrowernumber) = @_;
553 return unless $reserve_id and $borrowernumber;
554 my $reserve = Koha
::Holds
->find($reserve_id);
556 return 0 unless $reserve->borrowernumber == $borrowernumber;
557 return 0 if ( $reserve->found eq 'W' ) or ( $reserve->found eq 'T' );
563 =head2 GetOtherReserves
565 ($messages,$nextreservinfo)=$GetOtherReserves(itemnumber);
567 Check queued list of this document and check if this document must be transferred
571 sub GetOtherReserves
{
572 my ($itemnumber) = @_;
575 my ( undef, $checkreserves, undef ) = CheckReserves
($itemnumber);
576 if ($checkreserves) {
577 my $item = Koha
::Items
->find($itemnumber);
578 if ( $item->holdingbranch ne $checkreserves->{'branchcode'} ) {
579 $messages->{'transfert'} = $checkreserves->{'branchcode'};
580 #minus priorities of others reservs
581 ModReserveMinusPriority
(
583 $checkreserves->{'reserve_id'},
586 #launch the subroutine dotransfer
587 C4
::Items
::ModItemTransfer
(
589 $item->holdingbranch,
590 $checkreserves->{'branchcode'},
596 #step 2b : case of a reservation on the same branch, set the waiting status
598 $messages->{'waiting'} = 1;
599 ModReserveMinusPriority
(
601 $checkreserves->{'reserve_id'},
603 ModReserveStatus
($itemnumber,'W');
606 $nextreservinfo = $checkreserves->{'borrowernumber'};
609 return ( $messages, $nextreservinfo );
612 =head2 ChargeReserveFee
614 $fee = ChargeReserveFee( $borrowernumber, $fee, $title );
616 Charge the fee for a reserve (if $fee > 0)
620 sub ChargeReserveFee
{
621 my ( $borrowernumber, $fee, $title ) = @_;
622 return if !$fee || $fee == 0; # the last test is needed to include 0.00
623 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->add_debit(
626 description
=> $title,
628 user_id
=> C4
::Context
->userenv ? C4
::Context
->userenv->{'number'} : undef,
629 library_id
=> C4
::Context
->userenv ? C4
::Context
->userenv->{'branch'} : undef,
630 interface
=> C4
::Context
->interface,
631 invoice_type
=> undef,
640 $fee = GetReserveFee( $borrowernumber, $biblionumber );
642 Calculate the fee for a reserve (if applicable).
647 my ( $borrowernumber, $biblionumber ) = @_;
649 SELECT reservefee FROM borrowers LEFT JOIN categories ON borrowers
.categorycode
= categories
.categorycode WHERE borrowernumber
= ?
652 SELECT COUNT
(*) FROM items
653 LEFT JOIN issues USING
(itemnumber
)
654 WHERE items
.biblionumber
=? AND issues
.issue_id IS NULL
657 SELECT COUNT
(*) FROM reserves WHERE biblionumber
=? AND borrowernumber
<>?
660 my $dbh = C4
::Context
->dbh;
661 my ( $fee ) = $dbh->selectrow_array( $borquery, undef, ($borrowernumber) );
662 my $hold_fee_mode = C4
::Context
->preference('HoldFeeMode') || 'not_always';
663 if( $fee and $fee > 0 and $hold_fee_mode eq 'not_always' ) {
664 # This is a reconstruction of the old code:
665 # Compare number of items with items issued, and optionally check holds
666 # If not all items are issued and there are no holds: charge no fee
667 # NOTE: Lost, damaged, not-for-loan, etc. are just ignored here
668 my ( $notissued, $reserved );
669 ( $notissued ) = $dbh->selectrow_array( $issue_qry, undef,
672 ( $reserved ) = $dbh->selectrow_array( $holds_qry, undef,
673 ( $biblionumber, $borrowernumber ) );
674 $fee = 0 if $reserved == 0;
680 =head2 GetReserveStatus
682 $reservestatus = GetReserveStatus($itemnumber);
684 Takes an itemnumber and returns the status of the reserve placed on it.
685 If several reserves exist, the reserve with the lower priority is given.
689 ## FIXME: I don't think this does what it thinks it does.
690 ## It only ever checks the first reserve result, even though
691 ## multiple reserves for that bib can have the itemnumber set
692 ## the sub is only used once in the codebase.
693 sub GetReserveStatus
{
694 my ($itemnumber) = @_;
696 my $dbh = C4
::Context
->dbh;
698 my ($sth, $found, $priority);
700 $sth = $dbh->prepare("SELECT found, priority FROM reserves WHERE itemnumber = ? order by priority LIMIT 1");
701 $sth->execute($itemnumber);
702 ($found, $priority) = $sth->fetchrow_array;
706 return 'Waiting' if $found eq 'W' and $priority == 0;
707 return 'Finished' if $found eq 'F';
710 return 'Reserved' if defined $priority && $priority > 0;
712 return ''; # empty string here will remove need for checking undef, or less log lines
717 ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber);
718 ($status, $matched_reserve, $possible_reserves) = &CheckReserves(undef, $barcode);
719 ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber,undef,$lookahead);
721 Find a book in the reserves.
723 C<$itemnumber> is the book's item number.
724 C<$lookahead> is the number of days to look in advance for future reserves.
726 As I understand it, C<&CheckReserves> looks for the given item in the
727 reserves. If it is found, that's a match, and C<$status> is set to
730 Otherwise, it finds the most important item in the reserves with the
731 same biblio number as this book (I'm not clear on this) and returns it
732 with C<$status> set to C<Reserved>.
734 C<&CheckReserves> returns a two-element list:
736 C<$status> is either C<Waiting>, C<Reserved> (see above), or 0.
738 C<$reserve> is the reserve item that matched. It is a
739 reference-to-hash whose keys are mostly the fields of the reserves
740 table in the Koha database.
745 my ( $item, $barcode, $lookahead_days, $ignore_borrowers) = @_;
746 my $dbh = C4
::Context
->dbh;
749 if (C4
::Context
->preference('item-level_itypes')){
751 SELECT items.biblionumber,
752 items.biblioitemnumber,
753 itemtypes.notforloan,
754 items.notforloan AS itemnotforloan,
760 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
761 LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype
766 SELECT items.biblionumber,
767 items.biblioitemnumber,
768 itemtypes.notforloan,
769 items.notforloan AS itemnotforloan,
775 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
776 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
781 $sth = $dbh->prepare("$select WHERE itemnumber = ?");
782 $sth->execute($item);
785 $sth = $dbh->prepare("$select WHERE barcode = ?");
786 $sth->execute($barcode);
788 # note: we get the itemnumber because we might have started w/ just the barcode. Now we know for sure we have it.
789 my ( $biblio, $bibitem, $notforloan_per_itemtype, $notforloan_per_item, $itemnumber, $damaged, $item_homebranch, $item_holdingbranch ) = $sth->fetchrow_array;
790 return if ( $damaged && !C4
::Context
->preference('AllowHoldsOnDamagedItems') );
792 return unless $itemnumber; # bail if we got nothing.
793 # if item is not for loan it cannot be reserved either.....
794 # except where items.notforloan < 0 : This indicates the item is holdable.
795 return if ( $notforloan_per_item > 0 ) or $notforloan_per_itemtype;
797 # Find this item in the reserves
798 my @reserves = _Findgroupreserve
( $bibitem, $biblio, $itemnumber, $lookahead_days, $ignore_borrowers);
800 # $priority and $highest are used to find the most important item
801 # in the list returned by &_Findgroupreserve. (The lower $priority,
802 # the more important the item.)
803 # $highest is the most important item we've seen so far.
805 if (scalar @reserves) {
806 my $LocalHoldsPriority = C4
::Context
->preference('LocalHoldsPriority');
807 my $LocalHoldsPriorityPatronControl = C4
::Context
->preference('LocalHoldsPriorityPatronControl');
808 my $LocalHoldsPriorityItemControl = C4
::Context
->preference('LocalHoldsPriorityItemControl');
810 my $priority = 10000000;
811 foreach my $res (@reserves) {
812 if ( $res->{'itemnumber'} && $res->{'itemnumber'} == $itemnumber && $res->{'priority'} == 0) {
813 if ($res->{'found'} eq 'W') {
814 return ( "Waiting", $res, \
@reserves ); # Found it, it is waiting
816 return ( "Reserved", $res, \
@reserves ); # Found determinated hold, e. g. the tranferred one
821 my $local_hold_match;
823 if ($LocalHoldsPriority) {
824 $patron = Koha
::Patrons
->find( $res->{borrowernumber
} );
825 $item = Koha
::Items
->find($itemnumber);
827 my $local_holds_priority_item_branchcode =
828 $item->$LocalHoldsPriorityItemControl;
829 my $local_holds_priority_patron_branchcode =
830 ( $LocalHoldsPriorityPatronControl eq 'PickupLibrary' )
832 : ( $LocalHoldsPriorityPatronControl eq 'HomeLibrary' )
833 ?
$patron->branchcode
836 $local_holds_priority_item_branchcode eq
837 $local_holds_priority_patron_branchcode;
840 # See if this item is more important than what we've got so far
841 if ( ( $res->{'priority'} && $res->{'priority'} < $priority ) || $local_hold_match ) {
842 $item ||= Koha
::Items
->find($itemnumber);
843 next if $res->{itemtype
} && $res->{itemtype
} ne $item->effective_itemtype;
844 $patron ||= Koha
::Patrons
->find( $res->{borrowernumber
} );
845 my $branch = GetReservesControlBranch
( $item->unblessed, $patron->unblessed );
846 my $branchitemrule = C4
::Circulation
::GetBranchItemRule
($branch,$item->effective_itemtype);
847 next if ($branchitemrule->{'holdallowed'} == 0);
848 next if (($branchitemrule->{'holdallowed'} == 1) && ($branch ne $patron->branchcode));
849 my $library = Koha
::Libraries
->find({branchcode
=>$item->homebranch});
850 next if (($branchitemrule->{'holdallowed'} == 3) && (!$library->validate_hold_sibling({branchcode
=> $patron->branchcode}) ));
851 my $hold_fulfillment_policy = $branchitemrule->{hold_fulfillment_policy
};
852 next if ( ($hold_fulfillment_policy eq 'holdgroup') && (!$library->validate_hold_sibling({branchcode
=> $res->{branchcode
}})) );
853 next if ( ($hold_fulfillment_policy eq 'homebranch') && ($res->{branchcode
} ne $item->$hold_fulfillment_policy) );
854 next if ( ($hold_fulfillment_policy eq 'holdingbranch') && ($res->{branchcode
} ne $item->$hold_fulfillment_policy) );
855 next unless $item->can_be_transferred( { to
=> Koha
::Libraries
->find( $res->{branchcode
} ) } );
856 $priority = $res->{'priority'};
858 last if $local_hold_match;
864 # If we get this far, then no exact match was found.
865 # We return the most important (i.e. next) reservation.
867 $highest->{'itemnumber'} = $item;
868 return ( "Reserved", $highest, \
@reserves );
874 =head2 CancelExpiredReserves
876 CancelExpiredReserves();
878 Cancels all reserves with an expiration date from before today.
882 sub CancelExpiredReserves
{
883 my $today = dt_from_string
();
884 my $cancel_on_holidays = C4
::Context
->preference('ExpireReservesOnHolidays');
885 my $expireWaiting = C4
::Context
->preference('ExpireReservesMaxPickUpDelay');
887 my $dtf = Koha
::Database
->new->schema->storage->datetime_parser;
888 my $params = { expirationdate
=> { '<', $dtf->format_date($today) } };
889 $params->{found
} = [ { '!=', 'W' }, undef ] unless $expireWaiting;
891 # FIXME To move to Koha::Holds->search_expired (?)
892 my $holds = Koha
::Holds
->search( $params );
894 while ( my $hold = $holds->next ) {
895 my $calendar = Koha
::Calendar
->new( branchcode
=> $hold->branchcode );
897 next if !$cancel_on_holidays && $calendar->is_holiday( $today );
899 my $cancel_params = {};
900 if ( $hold->found eq 'W' ) {
901 $cancel_params->{charge_cancel_fee
} = 1;
903 $hold->cancel( $cancel_params );
907 =head2 AutoUnsuspendReserves
909 AutoUnsuspendReserves();
911 Unsuspends all suspended reserves with a suspend_until date from before today.
915 sub AutoUnsuspendReserves
{
916 my $today = dt_from_string
();
918 my @holds = Koha
::Holds
->search( { suspend_until
=> { '<=' => $today->ymd() } } );
920 map { $_->resume() } @holds;
925 ModReserve({ rank => $rank,
926 reserve_id => $reserve_id,
927 branchcode => $branchcode
928 [, itemnumber => $itemnumber ]
929 [, biblionumber => $biblionumber, $borrowernumber => $borrowernumber ]
932 Change a hold request's priority or cancel it.
934 C<$rank> specifies the effect of the change. If C<$rank>
935 is 'W' or 'n', nothing happens. This corresponds to leaving a
936 request alone when changing its priority in the holds queue
939 If C<$rank> is 'del', the hold request is cancelled.
941 If C<$rank> is an integer greater than zero, the priority of
942 the request is set to that value. Since priority != 0 means
943 that the item is not waiting on the hold shelf, setting the
944 priority to a non-zero value also sets the request's found
945 status and waiting date to NULL.
947 The optional C<$itemnumber> parameter is used only when
948 C<$rank> is a non-zero integer; if supplied, the itemnumber
949 of the hold request is set accordingly; if omitted, the itemnumber
952 B<FIXME:> Note that the forgoing can have the effect of causing
953 item-level hold requests to turn into title-level requests. This
954 will be fixed once reserves has separate columns for requested
955 itemnumber and supplying itemnumber.
962 my $rank = $params->{'rank'};
963 my $reserve_id = $params->{'reserve_id'};
964 my $branchcode = $params->{'branchcode'};
965 my $itemnumber = $params->{'itemnumber'};
966 my $suspend_until = $params->{'suspend_until'};
967 my $borrowernumber = $params->{'borrowernumber'};
968 my $biblionumber = $params->{'biblionumber'};
970 return if $rank eq "W";
971 return if $rank eq "n";
973 return unless ( $reserve_id || ( $borrowernumber && ( $biblionumber || $itemnumber ) ) );
976 unless ( $reserve_id ) {
977 my $holds = Koha
::Holds
->search({ biblionumber
=> $biblionumber, borrowernumber
=> $borrowernumber, itemnumber
=> $itemnumber });
978 return unless $holds->count; # FIXME Should raise an exception
979 $hold = $holds->next;
980 $reserve_id = $hold->reserve_id;
983 $hold ||= Koha
::Holds
->find($reserve_id);
985 if ( $rank eq "del" ) {
988 elsif ($rank =~ /^\d+/ and $rank > 0) {
989 logaction
( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper
($hold->unblessed) )
990 if C4
::Context
->preference('HoldsLog');
994 branchcode
=> $branchcode,
995 itemnumber
=> $itemnumber,
999 if (exists $params->{reservedate
}) {
1000 $properties->{reservedate
} = $params->{reservedate
} || undef;
1002 if (exists $params->{expirationdate
}) {
1003 $properties->{expirationdate
} = $params->{expirationdate
} || undef;
1006 $hold->set($properties)->store();
1008 if ( defined( $suspend_until ) ) {
1009 if ( $suspend_until ) {
1010 $suspend_until = eval { dt_from_string
( $suspend_until ) };
1011 $hold->suspend_hold( $suspend_until );
1013 # If the hold is suspended leave the hold suspended, but convert it to an indefinite hold.
1014 # If the hold is not suspended, this does nothing.
1015 $hold->set( { suspend_until
=> undef } )->store();
1019 _FixPriority
({ reserve_id
=> $reserve_id, rank
=>$rank });
1023 =head2 ModReserveFill
1025 &ModReserveFill($reserve);
1027 Fill a reserve. If I understand this correctly, this means that the
1028 reserved book has been found and given to the patron who reserved it.
1030 C<$reserve> specifies the reserve to fill. It is a reference-to-hash
1031 whose keys are fields from the reserves table in the Koha database.
1035 sub ModReserveFill
{
1037 my $reserve_id = $res->{'reserve_id'};
1039 my $hold = Koha
::Holds
->find($reserve_id);
1040 # get the priority on this record....
1041 my $priority = $hold->priority;
1043 # update the hold statuses, no need to store it though, we will be deleting it anyway
1051 # FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log
1052 Koha
::Old
::Hold
->new( $hold->unblessed() )->store();
1056 if ( C4
::Context
->preference('HoldFeeMode') eq 'any_time_is_collected' ) {
1057 my $reserve_fee = GetReserveFee
( $hold->borrowernumber, $hold->biblionumber );
1058 ChargeReserveFee
( $hold->borrowernumber, $reserve_fee, $hold->biblio->title );
1061 # now fix the priority on the others (if the priority wasn't
1062 # already sorted!)....
1063 unless ( $priority == 0 ) {
1064 _FixPriority
( { reserve_id
=> $reserve_id, biblionumber
=> $hold->biblionumber } );
1068 =head2 ModReserveStatus
1070 &ModReserveStatus($itemnumber, $newstatus);
1072 Update the reserve status for the active (priority=0) reserve.
1074 $itemnumber is the itemnumber the reserve is on
1076 $newstatus is the new status.
1080 sub ModReserveStatus
{
1082 #first : check if we have a reservation for this item .
1083 my ($itemnumber, $newstatus) = @_;
1084 my $dbh = C4
::Context
->dbh;
1086 my $query = "UPDATE reserves SET found = ?, waitingdate = NOW() WHERE itemnumber = ? AND found IS NULL AND priority = 0";
1087 my $sth_set = $dbh->prepare($query);
1088 $sth_set->execute( $newstatus, $itemnumber );
1090 my $item = Koha
::Items
->find($itemnumber);
1091 if ( $item->location && $item->location eq 'CART'
1092 && ( !$item->permanent_location || $item->permanent_location ne 'CART' )
1094 CartToShelf
( $itemnumber );
1098 =head2 ModReserveAffect
1100 &ModReserveAffect($itemnumber,$borrowernumber,$diffBranchSend,$reserve_id);
1102 This function affect an item and a status for a given reserve, either fetched directly
1103 by record_id, or by borrowernumber and itemnumber or biblionumber. If only biblionumber
1104 is given, only first reserve returned is affected, which is ok for anything but
1107 if $transferToDo is not set, then the status is set to "Waiting" as well.
1108 otherwise, a transfer is on the way, and the end of the transfer will
1109 take care of the waiting status
1113 sub ModReserveAffect
{
1114 my ( $itemnumber, $borrowernumber, $transferToDo, $reserve_id ) = @_;
1115 my $dbh = C4
::Context
->dbh;
1117 # we want to attach $itemnumber to $borrowernumber, find the biblionumber
1118 # attached to $itemnumber
1119 my $sth = $dbh->prepare("SELECT biblionumber FROM items WHERE itemnumber=?");
1120 $sth->execute($itemnumber);
1121 my ($biblionumber) = $sth->fetchrow;
1123 # get request - need to find out if item is already
1124 # waiting in order to not send duplicate hold filled notifications
1127 # Find hold by id if we have it
1128 $hold = Koha
::Holds
->find( $reserve_id ) if $reserve_id;
1129 # Find item level hold for this item if there is one
1130 $hold ||= Koha
::Holds
->search( { borrowernumber
=> $borrowernumber, itemnumber
=> $itemnumber } )->next();
1131 # Find record level hold if there is no item level hold
1132 $hold ||= Koha
::Holds
->search( { borrowernumber
=> $borrowernumber, biblionumber
=> $biblionumber } )->next();
1134 return unless $hold;
1136 my $already_on_shelf = $hold->found && $hold->found eq 'W';
1138 $hold->itemnumber($itemnumber);
1139 $hold->set_waiting($transferToDo);
1141 _koha_notify_reserve
( $hold->reserve_id )
1142 if ( !$transferToDo && !$already_on_shelf );
1144 _FixPriority
( { biblionumber
=> $biblionumber } );
1145 my $item = Koha
::Items
->find($itemnumber);
1146 if ( $item->location && $item->location eq 'CART'
1147 && ( !$item->permanent_location || $item->permanent_location ne 'CART' ) ) {
1148 CartToShelf
( $itemnumber );
1154 =head2 ModReserveCancelAll
1156 ($messages,$nextreservinfo) = &ModReserveCancelAll($itemnumber,$borrowernumber);
1158 function to cancel reserv,check other reserves, and transfer document if it's necessary
1162 sub ModReserveCancelAll
{
1165 my ( $itemnumber, $borrowernumber ) = @_;
1167 #step 1 : cancel the reservation
1168 my $holds = Koha
::Holds
->search({ itemnumber
=> $itemnumber, borrowernumber
=> $borrowernumber });
1169 return unless $holds->count;
1170 $holds->next->cancel;
1172 #step 2 launch the subroutine of the others reserves
1173 ( $messages, $nextreservinfo ) = GetOtherReserves
($itemnumber);
1175 return ( $messages, $nextreservinfo );
1178 =head2 ModReserveMinusPriority
1180 &ModReserveMinusPriority($itemnumber,$borrowernumber,$biblionumber)
1182 Reduce the values of queued list
1186 sub ModReserveMinusPriority
{
1187 my ( $itemnumber, $reserve_id ) = @_;
1189 #first step update the value of the first person on reserv
1190 my $dbh = C4
::Context
->dbh;
1193 SET priority = 0 , itemnumber = ?
1194 WHERE reserve_id = ?
1196 my $sth_upd = $dbh->prepare($query);
1197 $sth_upd->execute( $itemnumber, $reserve_id );
1198 # second step update all others reserves
1199 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> '0' });
1202 =head2 IsAvailableForItemLevelRequest
1204 my $is_available = IsAvailableForItemLevelRequest( $item_record, $borrower_record, $pickup_branchcode );
1206 Checks whether a given item record is available for an
1207 item-level hold request. An item is available if
1209 * it is not lost AND
1210 * it is not damaged AND
1211 * it is not withdrawn AND
1212 * a waiting or in transit reserve is placed on
1213 * does not have a not for loan value > 0
1215 Need to check the issuingrules onshelfholds column,
1216 if this is set items on the shelf can be placed on hold
1218 Note that IsAvailableForItemLevelRequest() does not
1219 check if the staff operator is authorized to place
1220 a request on the item - in particular,
1221 this routine does not check IndependentBranches
1222 and canreservefromotherbranches.
1226 sub IsAvailableForItemLevelRequest
{
1227 my ( $item, $patron, $pickup_branchcode ) = @_;
1229 my $dbh = C4
::Context
->dbh;
1230 # must check the notforloan setting of the itemtype
1231 # FIXME - a lot of places in the code do this
1232 # or something similar - need to be
1234 my $itemtype = $item->effective_itemtype;
1235 my $notforloan_per_itemtype = Koha
::ItemTypes
->find($itemtype)->notforloan;
1238 $notforloan_per_itemtype ||
1240 $item->notforloan > 0 ||
1242 ($item->damaged && !C4
::Context
->preference('AllowHoldsOnDamagedItems'));
1244 my $on_shelf_holds = Koha
::CirculationRules
->get_onshelfholds_policy( { item
=> $item, patron
=> $patron } );
1246 if ($pickup_branchcode) {
1247 my $destination = Koha
::Libraries
->find($pickup_branchcode);
1248 return 0 unless $destination;
1249 return 0 unless $destination->pickup_location;
1250 return 0 unless $item->can_be_transferred( { to
=> $destination } );
1251 my $reserves_control_branch =
1252 GetReservesControlBranch
( $item->unblessed(), $patron->unblessed() );
1253 my $branchitemrule =
1254 C4
::Circulation
::GetBranchItemRule
( $reserves_control_branch, $item->itype );
1255 my $home_library = Koka
::Libraries
->find( {branchcode
=> $item->homebranch} );
1256 return 0 unless $branchitemrule->{hold_fulfillment_policy
} ne 'holdgroup' || $home_library->validate_hold_sibling( {branchcode
=> $pickup_branchcode} );
1259 if ( $on_shelf_holds == 1 ) {
1261 } elsif ( $on_shelf_holds == 2 ) {
1263 Koha
::Items
->search( { biblionumber
=> $item->biblionumber } );
1265 my $any_available = 0;
1267 foreach my $i (@items) {
1268 my $reserves_control_branch = GetReservesControlBranch
( $i->unblessed(), $patron->unblessed );
1269 my $branchitemrule = C4
::Circulation
::GetBranchItemRule
( $reserves_control_branch, $i->itype );
1270 my $item_library = Koha
::Libraries
->find( {branchcode
=> $i->homebranch} );
1275 || $i->notforloan > 0
1278 || IsItemOnHoldAndFound
( $i->id )
1280 && !C4
::Context
->preference('AllowHoldsOnDamagedItems') )
1281 || Koha
::ItemTypes
->find( $i->effective_itemtype() )->notforloan
1282 || $branchitemrule->{holdallowed
} == 1 && $patron->branchcode ne $i->homebranch
1283 || $branchitemrule->{holdallowed
} == 3 && !$item_library->validate_hold_sibling( {branchcode
=> $patron->branchcode} );
1286 return $any_available ?
0 : 1;
1287 } else { # on_shelf_holds == 0 "If any unavailable" (the description is rather cryptic and could still be improved)
1288 return $item->onloan || IsItemOnHoldAndFound
( $item->itemnumber );
1292 =head2 AlterPriority
1294 AlterPriority( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority );
1296 This function changes a reserve's priority up, down, to the top, or to the bottom.
1297 Input: $where is 'up', 'down', 'top' or 'bottom'. Biblionumber, Date reserve was placed
1302 my ( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority ) = @_;
1304 my $hold = Koha
::Holds
->find( $reserve_id );
1305 return unless $hold;
1307 if ( $hold->cancellationdate ) {
1308 warn "I cannot alter the priority for reserve_id $reserve_id, the reserve has been cancelled (" . $hold->cancellationdate . ')';
1312 if ( $where eq 'up' ) {
1313 return unless $prev_priority;
1314 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $prev_priority })
1315 } elsif ( $where eq 'down' ) {
1316 return unless $next_priority;
1317 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $next_priority })
1318 } elsif ( $where eq 'top' ) {
1319 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $first_priority })
1320 } elsif ( $where eq 'bottom' ) {
1321 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $last_priority });
1324 # FIXME Should return the new priority
1327 =head2 ToggleLowestPriority
1329 ToggleLowestPriority( $borrowernumber, $biblionumber );
1331 This function sets the lowestPriority field to true if is false, and false if it is true.
1335 sub ToggleLowestPriority
{
1336 my ( $reserve_id ) = @_;
1338 my $dbh = C4
::Context
->dbh;
1340 my $sth = $dbh->prepare( "UPDATE reserves SET lowestPriority = NOT lowestPriority WHERE reserve_id = ?");
1341 $sth->execute( $reserve_id );
1343 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> '999999' });
1346 =head2 ToggleSuspend
1348 ToggleSuspend( $reserve_id );
1350 This function sets the suspend field to true if is false, and false if it is true.
1351 If the reserve is currently suspended with a suspend_until date, that date will
1352 be cleared when it is unsuspended.
1357 my ( $reserve_id, $suspend_until ) = @_;
1359 $suspend_until = dt_from_string
($suspend_until) if ($suspend_until);
1361 my $hold = Koha
::Holds
->find( $reserve_id );
1363 if ( $hold->is_suspended ) {
1366 $hold->suspend_hold( $suspend_until );
1373 borrowernumber => $borrowernumber,
1374 [ biblionumber => $biblionumber, ]
1375 [ suspend_until => $suspend_until, ]
1376 [ suspend => $suspend ]
1379 This function accepts a set of hash keys as its parameters.
1380 It requires either borrowernumber or biblionumber, or both.
1382 suspend_until is wholly optional.
1389 my $borrowernumber = $params{'borrowernumber'} || undef;
1390 my $biblionumber = $params{'biblionumber'} || undef;
1391 my $suspend_until = $params{'suspend_until'} || undef;
1392 my $suspend = defined( $params{'suspend'} ) ?
$params{'suspend'} : 1;
1394 $suspend_until = eval { dt_from_string
($suspend_until) }
1395 if ( defined($suspend_until) );
1397 return unless ( $borrowernumber || $biblionumber );
1400 $params->{found
} = undef;
1401 $params->{borrowernumber
} = $borrowernumber if $borrowernumber;
1402 $params->{biblionumber
} = $biblionumber if $biblionumber;
1404 my @holds = Koha
::Holds
->search($params);
1407 map { $_->suspend_hold($suspend_until) } @holds;
1410 map { $_->resume() } @holds;
1418 reserve_id => $reserve_id,
1420 [ignoreSetLowestRank => $ignoreSetLowestRank]
1425 _FixPriority({ biblionumber => $biblionumber});
1427 This routine adjusts the priority of a hold request and holds
1430 In the first form, where a reserve_id is passed, the priority of the
1431 hold is set to supplied rank, and other holds for that bib are adjusted
1432 accordingly. If the rank is "del", the hold is cancelled. If no rank
1433 is supplied, all of the holds on that bib have their priority adjusted
1434 as if the second form had been used.
1436 In the second form, where a biblionumber is passed, the holds on that
1437 bib (that are not captured) are sorted in order of increasing priority,
1438 then have reserves.priority set so that the first non-captured hold
1439 has its priority set to 1, the second non-captured hold has its priority
1440 set to 2, and so forth.
1442 In both cases, holds that have the lowestPriority flag on are have their
1443 priority adjusted to ensure that they remain at the end of the line.
1445 Note that the ignoreSetLowestRank parameter is meant to be used only
1446 when _FixPriority calls itself.
1451 my ( $params ) = @_;
1452 my $reserve_id = $params->{reserve_id
};
1453 my $rank = $params->{rank
} // '';
1454 my $ignoreSetLowestRank = $params->{ignoreSetLowestRank
};
1455 my $biblionumber = $params->{biblionumber
};
1457 my $dbh = C4
::Context
->dbh;
1460 if ( $reserve_id ) {
1461 $hold = Koha
::Holds
->find( $reserve_id );
1462 if (!defined $hold){
1463 # may have already been checked out and hold fulfilled
1464 $hold = Koha
::Old
::Holds
->find( $reserve_id );
1466 return unless $hold;
1469 unless ( $biblionumber ) { # FIXME This is a very weird API
1470 $biblionumber = $hold->biblionumber;
1473 if ( $rank eq "del" ) { # FIXME will crash if called without $hold
1476 elsif ( $reserve_id && ( $rank eq "W" || $rank eq "0" ) ) {
1478 # make sure priority for waiting or in-transit items is 0
1482 WHERE reserve_id = ?
1483 AND found IN ('W', 'T')
1485 my $sth = $dbh->prepare($query);
1486 $sth->execute( $reserve_id );
1492 SELECT reserve_id, borrowernumber, reservedate
1494 WHERE biblionumber = ?
1495 AND ((found <> 'W' AND found <> 'T') OR found IS NULL)
1496 ORDER BY priority ASC
1498 my $sth = $dbh->prepare($query);
1499 $sth->execute( $biblionumber );
1500 while ( my $line = $sth->fetchrow_hashref ) {
1501 push( @priority, $line );
1504 # FIXME This whole sub must be rewritten, especially to highlight what is done when reserve_id is not given
1505 # To find the matching index
1507 my $key = -1; # to allow for 0 to be a valid result
1508 for ( $i = 0 ; $i < @priority ; $i++ ) {
1509 if ( $reserve_id && $reserve_id == $priority[$i]->{'reserve_id'} ) {
1510 $key = $i; # save the index
1515 # if index exists in array then move it to new position
1516 if ( $key > -1 && $rank ne 'del' && $rank > 0 ) {
1517 my $new_rank = $rank -
1518 1; # $new_rank is what you want the new index to be in the array
1519 my $moving_item = splice( @priority, $key, 1 );
1520 splice( @priority, $new_rank, 0, $moving_item );
1523 # now fix the priority on those that are left....
1527 WHERE reserve_id = ?
1529 $sth = $dbh->prepare($query);
1530 for ( my $j = 0 ; $j < @priority ; $j++ ) {
1533 $priority[$j]->{'reserve_id'}
1537 $sth = $dbh->prepare( "SELECT reserve_id FROM reserves WHERE lowestPriority = 1 ORDER BY priority" );
1540 unless ( $ignoreSetLowestRank ) {
1541 while ( my $res = $sth->fetchrow_hashref() ) {
1543 reserve_id
=> $res->{'reserve_id'},
1545 ignoreSetLowestRank
=> 1
1551 =head2 _Findgroupreserve
1553 @results = &_Findgroupreserve($biblioitemnumber, $biblionumber, $itemnumber, $lookahead, $ignore_borrowers);
1555 Looks for a holds-queue based item-specific match first, then for a holds-queue title-level match, returning the
1556 first match found. If neither, then we look for non-holds-queue based holds.
1557 Lookahead is the number of days to look in advance.
1559 C<&_Findgroupreserve> returns :
1560 C<@results> is an array of references-to-hash whose keys are mostly
1561 fields from the reserves table of the Koha database, plus
1562 C<biblioitemnumber>.
1564 This routine with either return:
1565 1 - Item specific holds from the holds queue
1566 2 - Title level holds from the holds queue
1567 3 - All holds for this biblionumber
1569 All return values will respect any borrowernumbers passed as arrayref in $ignore_borrowers
1573 sub _Findgroupreserve
{
1574 my ( $bibitem, $biblio, $itemnumber, $lookahead, $ignore_borrowers) = @_;
1575 my $dbh = C4
::Context
->dbh;
1577 # TODO: consolidate at least the SELECT portion of the first 2 queries to a common $select var.
1578 # check for exact targeted match
1579 my $item_level_target_query = qq{
1580 SELECT reserves
.biblionumber AS biblionumber
,
1581 reserves
.borrowernumber AS borrowernumber
,
1582 reserves
.reservedate AS reservedate
,
1583 reserves
.branchcode AS branchcode
,
1584 reserves
.cancellationdate AS cancellationdate
,
1585 reserves
.found AS found
,
1586 reserves
.reservenotes AS reservenotes
,
1587 reserves
.priority AS priority
,
1588 reserves
.timestamp AS timestamp
,
1589 biblioitems
.biblioitemnumber AS biblioitemnumber
,
1590 reserves
.itemnumber AS itemnumber
,
1591 reserves
.reserve_id AS reserve_id
,
1592 reserves
.itemtype AS itemtype
1594 JOIN biblioitems USING
(biblionumber
)
1595 JOIN hold_fill_targets USING
(biblionumber
, borrowernumber
, itemnumber
)
1598 AND item_level_request
= 1
1600 AND reservedate
<= DATE_ADD
(NOW
(),INTERVAL ? DAY
)
1604 my $sth = $dbh->prepare($item_level_target_query);
1605 $sth->execute($itemnumber, $lookahead||0);
1607 if ( my $data = $sth->fetchrow_hashref ) {
1608 push( @results, $data )
1609 unless any
{ $data->{borrowernumber
} eq $_ } @
$ignore_borrowers ;
1611 return @results if @results;
1613 # check for title-level targeted match
1614 my $title_level_target_query = qq{
1615 SELECT reserves
.biblionumber AS biblionumber
,
1616 reserves
.borrowernumber AS borrowernumber
,
1617 reserves
.reservedate AS reservedate
,
1618 reserves
.branchcode AS branchcode
,
1619 reserves
.cancellationdate AS cancellationdate
,
1620 reserves
.found AS found
,
1621 reserves
.reservenotes AS reservenotes
,
1622 reserves
.priority AS priority
,
1623 reserves
.timestamp AS timestamp
,
1624 biblioitems
.biblioitemnumber AS biblioitemnumber
,
1625 reserves
.itemnumber AS itemnumber
,
1626 reserves
.reserve_id AS reserve_id
,
1627 reserves
.itemtype AS itemtype
1629 JOIN biblioitems USING
(biblionumber
)
1630 JOIN hold_fill_targets USING
(biblionumber
, borrowernumber
)
1633 AND item_level_request
= 0
1634 AND hold_fill_targets
.itemnumber
= ?
1635 AND reservedate
<= DATE_ADD
(NOW
(),INTERVAL ? DAY
)
1639 $sth = $dbh->prepare($title_level_target_query);
1640 $sth->execute($itemnumber, $lookahead||0);
1642 if ( my $data = $sth->fetchrow_hashref ) {
1643 push( @results, $data )
1644 unless any
{ $data->{borrowernumber
} eq $_ } @
$ignore_borrowers ;
1646 return @results if @results;
1649 SELECT reserves
.biblionumber AS biblionumber
,
1650 reserves
.borrowernumber AS borrowernumber
,
1651 reserves
.reservedate AS reservedate
,
1652 reserves
.waitingdate AS waitingdate
,
1653 reserves
.branchcode AS branchcode
,
1654 reserves
.cancellationdate AS cancellationdate
,
1655 reserves
.found AS found
,
1656 reserves
.reservenotes AS reservenotes
,
1657 reserves
.priority AS priority
,
1658 reserves
.timestamp AS timestamp
,
1659 reserves
.itemnumber AS itemnumber
,
1660 reserves
.reserve_id AS reserve_id
,
1661 reserves
.itemtype AS itemtype
1663 WHERE reserves
.biblionumber
= ?
1664 AND
(reserves
.itemnumber IS NULL OR reserves
.itemnumber
= ?
)
1665 AND reserves
.reservedate
<= DATE_ADD
(NOW
(),INTERVAL ? DAY
)
1669 $sth = $dbh->prepare($query);
1670 $sth->execute( $biblio, $itemnumber, $lookahead||0);
1672 while ( my $data = $sth->fetchrow_hashref ) {
1673 push( @results, $data )
1674 unless any
{ $data->{borrowernumber
} eq $_ } @
$ignore_borrowers ;
1679 =head2 _koha_notify_reserve
1681 _koha_notify_reserve( $hold->reserve_id );
1683 Sends a notification to the patron that their hold has been filled (through
1684 ModReserveAffect, _not_ ModReserveFill)
1686 The letter code for this notice may be found using the following query:
1688 select distinct letter_code
1689 from message_transports
1690 inner join message_attributes using (message_attribute_id)
1691 where message_name = 'Hold_Filled'
1693 This will probably sipmly be 'HOLD', but because it is defined in the database,
1694 it is subject to addition or change.
1696 The following tables are availalbe witin the notice:
1707 sub _koha_notify_reserve
{
1708 my $reserve_id = shift;
1709 my $hold = Koha
::Holds
->find($reserve_id);
1710 my $borrowernumber = $hold->borrowernumber;
1712 my $patron = Koha
::Patrons
->find( $borrowernumber );
1714 # Try to get the borrower's email address
1715 my $to_address = $patron->notice_email_address;
1717 my $messagingprefs = C4
::Members
::Messaging
::GetMessagingPreferences
( {
1718 borrowernumber
=> $borrowernumber,
1719 message_name
=> 'Hold_Filled'
1722 my $library = Koha
::Libraries
->find( $hold->branchcode )->unblessed;
1724 my $admin_email_address = $library->{branchemail
} || C4
::Context
->preference('KohaAdminEmailAddress');
1726 my %letter_params = (
1727 module
=> 'reserves',
1728 branchcode
=> $hold->branchcode,
1729 lang
=> $patron->lang,
1731 'branches' => $library,
1732 'borrowers' => $patron->unblessed,
1733 'biblio' => $hold->biblionumber,
1734 'biblioitems' => $hold->biblionumber,
1735 'reserves' => $hold->unblessed,
1736 'items' => $hold->itemnumber,
1740 my $notification_sent = 0; #Keeping track if a Hold_filled message is sent. If no message can be sent, then default to a print message.
1741 my $send_notification = sub {
1742 my ( $mtt, $letter_code ) = (@_);
1743 return unless defined $letter_code;
1744 $letter_params{letter_code
} = $letter_code;
1745 $letter_params{message_transport_type
} = $mtt;
1746 my $letter = C4
::Letters
::GetPreparedLetter
( %letter_params );
1748 warn "Could not find a letter called '$letter_params{'letter_code'}' for $mtt in the 'reserves' module";
1752 C4
::Letters
::EnqueueLetter
( {
1754 borrowernumber
=> $borrowernumber,
1755 from_address
=> $admin_email_address,
1756 message_transport_type
=> $mtt,
1760 while ( my ( $mtt, $letter_code ) = each %{ $messagingprefs->{transports
} } ) {
1762 ( $mtt eq 'email' and not $to_address ) # No email address
1763 or ( $mtt eq 'sms' and not $patron->smsalertnumber ) # No SMS number
1764 or ( $mtt eq 'phone' and C4
::Context
->preference('TalkingTechItivaPhoneNotification') ) # Notice is handled by TalkingTech_itiva_outbound.pl
1767 &$send_notification($mtt, $letter_code);
1768 $notification_sent++;
1770 #Making sure that a print notification is sent if no other transport types can be utilized.
1771 if (! $notification_sent) {
1772 &$send_notification('print', 'HOLD');
1777 =head2 _ShiftPriorityByDateAndPriority
1779 $new_priority = _ShiftPriorityByDateAndPriority( $biblionumber, $reservedate, $priority );
1781 This increments the priority of all reserves after the one
1782 with either the lowest date after C<$reservedate>
1783 or the lowest priority after C<$priority>.
1785 It effectively makes room for a new reserve to be inserted with a certain
1786 priority, which is returned.
1788 This is most useful when the reservedate can be set by the user. It allows
1789 the new reserve to be placed before other reserves that have a later
1790 reservedate. Since priority also is set by the form in reserves/request.pl
1791 the sub accounts for that too.
1795 sub _ShiftPriorityByDateAndPriority
{
1796 my ( $biblio, $resdate, $new_priority ) = @_;
1798 my $dbh = C4
::Context
->dbh;
1799 my $query = "SELECT priority FROM reserves WHERE biblionumber = ? AND ( reservedate > ? OR priority > ? ) ORDER BY priority ASC LIMIT 1";
1800 my $sth = $dbh->prepare( $query );
1801 $sth->execute( $biblio, $resdate, $new_priority );
1802 my $min_priority = $sth->fetchrow;
1803 # if no such matches are found, $new_priority remains as original value
1804 $new_priority = $min_priority if ( $min_priority );
1806 # Shift the priority up by one; works in conjunction with the next SQL statement
1807 $query = "UPDATE reserves
1808 SET priority = priority+1
1809 WHERE biblionumber = ?
1810 AND borrowernumber = ?
1813 my $sth_update = $dbh->prepare( $query );
1815 # Select all reserves for the biblio with priority greater than $new_priority, and order greatest to least
1816 $query = "SELECT borrowernumber, reservedate FROM reserves WHERE priority >= ? AND biblionumber = ? ORDER BY priority DESC";
1817 $sth = $dbh->prepare( $query );
1818 $sth->execute( $new_priority, $biblio );
1819 while ( my $row = $sth->fetchrow_hashref ) {
1820 $sth_update->execute( $biblio, $row->{borrowernumber
}, $row->{reservedate
} );
1823 return $new_priority; # so the caller knows what priority they wind up receiving
1828 MoveReserve( $itemnumber, $borrowernumber, $cancelreserve )
1830 Use when checking out an item to handle reserves
1831 If $cancelreserve boolean is set to true, it will remove existing reserve
1836 my ( $itemnumber, $borrowernumber, $cancelreserve ) = @_;
1838 $cancelreserve //= 0;
1840 my $lookahead = C4
::Context
->preference('ConfirmFutureHolds'); #number of days to look for future holds
1841 my ( $restype, $res, undef ) = CheckReserves
( $itemnumber, undef, $lookahead );
1844 my $biblionumber = $res->{biblionumber
};
1846 if ($res->{borrowernumber
} == $borrowernumber) {
1847 ModReserveFill
($res);
1851 # The item is reserved by someone else.
1852 # Find this item in the reserves
1854 my $borr_res = Koha
::Holds
->search({
1855 borrowernumber
=> $borrowernumber,
1856 biblionumber
=> $biblionumber,
1858 order_by
=> 'priority'
1862 # The item is reserved by the current patron
1863 ModReserveFill
($borr_res->unblessed);
1866 if ( $cancelreserve eq 'revert' ) { ## Revert waiting reserve to priority 1
1867 RevertWaitingStatus
({ itemnumber
=> $itemnumber });
1869 elsif ( $cancelreserve eq 'cancel' || $cancelreserve ) { # cancel reserves on this item
1870 my $hold = Koha
::Holds
->find( $res->{reserve_id
} );
1878 MergeHolds($dbh,$to_biblio, $from_biblio);
1880 This shifts the holds from C<$from_biblio> to C<$to_biblio> and reorders them by the date they were placed
1885 my ( $dbh, $to_biblio, $from_biblio ) = @_;
1886 my $sth = $dbh->prepare(
1887 "SELECT count(*) as reserve_count FROM reserves WHERE biblionumber = ?"
1889 $sth->execute($from_biblio);
1890 if ( my $data = $sth->fetchrow_hashref() ) {
1892 # holds exist on old record, if not we don't need to do anything
1893 $sth = $dbh->prepare(
1894 "UPDATE reserves SET biblionumber = ? WHERE biblionumber = ?");
1895 $sth->execute( $to_biblio, $from_biblio );
1898 # don't reorder those already waiting
1900 $sth = $dbh->prepare(
1901 "SELECT * FROM reserves WHERE biblionumber = ? AND (found <> ? AND found <> ? OR found is NULL) ORDER BY reservedate ASC"
1903 my $upd_sth = $dbh->prepare(
1904 "UPDATE reserves SET priority = ? WHERE biblionumber = ? AND borrowernumber = ?
1905 AND reservedate = ? AND (itemnumber = ? or itemnumber is NULL) "
1907 $sth->execute( $to_biblio, 'W', 'T' );
1909 while ( my $reserve = $sth->fetchrow_hashref() ) {
1911 $priority, $to_biblio,
1912 $reserve->{'borrowernumber'}, $reserve->{'reservedate'},
1913 $reserve->{'itemnumber'}
1920 =head2 RevertWaitingStatus
1922 RevertWaitingStatus({ itemnumber => $itemnumber });
1924 Reverts a 'waiting' hold back to a regular hold with a priority of 1.
1926 Caveat: Any waiting hold fixed with RevertWaitingStatus will be an
1927 item level hold, even if it was only a bibliolevel hold to
1928 begin with. This is because we can no longer know if a hold
1929 was item-level or bib-level after a hold has been set to
1934 sub RevertWaitingStatus
{
1935 my ( $params ) = @_;
1936 my $itemnumber = $params->{'itemnumber'};
1938 return unless ( $itemnumber );
1940 my $dbh = C4
::Context
->dbh;
1942 ## Get the waiting reserve we want to revert
1944 SELECT * FROM reserves
1945 WHERE itemnumber = ?
1946 AND found IS NOT NULL
1948 my $sth = $dbh->prepare( $query );
1949 $sth->execute( $itemnumber );
1950 my $reserve = $sth->fetchrow_hashref();
1952 my $hold = Koha
::Holds
->find( $reserve->{reserve_id
} ); # TODO Remove the next raw SQL statements and use this instead
1954 ## Increment the priority of all other non-waiting
1955 ## reserves for this bib record
1959 priority = priority + 1
1965 $sth = $dbh->prepare( $query );
1966 $sth->execute( $reserve->{'biblionumber'} );
1972 waitingdate
=> undef,
1973 itemnumber
=> $hold->item_level_hold ?
$hold->itemnumber : undef,
1977 _FixPriority
( { biblionumber
=> $reserve->{biblionumber
} } );
1986 branchcode => $branchcode,
1987 borrowernumber => $borrowernumber,
1988 biblionumber => $biblionumber,
1989 [ itemnumber => $itemnumber, ]
1990 [ barcode => $barcode, ]
1994 Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
1996 The letter code will be HOLD_SLIP, and the following tables are
1997 available within the slip:
2010 my $branchcode = $args->{branchcode
};
2011 my $borrowernumber = $args->{borrowernumber
};
2012 my $biblionumber = $args->{biblionumber
};
2013 my $itemnumber = $args->{itemnumber
};
2014 my $barcode = $args->{barcode
};
2017 my $patron = Koha
::Patrons
->find($borrowernumber);
2020 if ($itemnumber || $barcode ) {
2021 $itemnumber ||= Koha
::Items
->find( { barcode
=> $barcode } )->itemnumber;
2023 $hold = Koha
::Holds
->search(
2025 biblionumber
=> $biblionumber,
2026 borrowernumber
=> $borrowernumber,
2027 itemnumber
=> $itemnumber
2032 $hold = Koha
::Holds
->search(
2034 biblionumber
=> $biblionumber,
2035 borrowernumber
=> $borrowernumber
2040 return unless $hold;
2041 my $reserve = $hold->unblessed;
2043 return C4
::Letters
::GetPreparedLetter
(
2044 module
=> 'circulation',
2045 letter_code
=> 'HOLD_SLIP',
2046 branchcode
=> $branchcode,
2047 lang
=> $patron->lang,
2049 'reserves' => $reserve,
2050 'branches' => $reserve->{branchcode
},
2051 'borrowers' => $reserve->{borrowernumber
},
2052 'biblio' => $reserve->{biblionumber
},
2053 'biblioitems' => $reserve->{biblionumber
},
2054 'items' => $reserve->{itemnumber
},
2059 =head2 GetReservesControlBranch
2061 my $reserves_control_branch = GetReservesControlBranch($item, $borrower);
2063 Return the branchcode to be used to determine which reserves
2064 policy applies to a transaction.
2066 C<$item> is a hashref for an item. Only 'homebranch' is used.
2068 C<$borrower> is a hashref to borrower. Only 'branchcode' is used.
2072 sub GetReservesControlBranch
{
2073 my ( $item, $borrower ) = @_;
2075 my $reserves_control = C4
::Context
->preference('ReservesControlBranch');
2078 ( $reserves_control eq 'ItemHomeLibrary' ) ?
$item->{'homebranch'}
2079 : ( $reserves_control eq 'PatronLibrary' ) ?
$borrower->{'branchcode'}
2085 =head2 CalculatePriority
2087 my $p = CalculatePriority($biblionumber, $resdate);
2089 Calculate priority for a new reserve on biblionumber, placing it at
2090 the end of the line of all holds whose start date falls before
2091 the current system time and that are neither on the hold shelf
2094 The reserve date parameter is optional; if it is supplied, the
2095 priority is based on the set of holds whose start date falls before
2096 the parameter value.
2098 After calculation of this priority, it is recommended to call
2099 _ShiftPriorityByDateAndPriority. Note that this is currently done in
2104 sub CalculatePriority
{
2105 my ( $biblionumber, $resdate ) = @_;
2108 SELECT COUNT(*) FROM reserves
2109 WHERE biblionumber = ?
2111 AND (found IS NULL OR found = '')
2113 #skip found==W or found==T (waiting or transit holds)
2115 $sql.= ' AND ( reservedate <= ? )';
2118 $sql.= ' AND ( reservedate < NOW() )';
2120 my $dbh = C4
::Context
->dbh();
2121 my @row = $dbh->selectrow_array(
2124 $resdate ?
($biblionumber, $resdate) : ($biblionumber)
2127 return @row ?
$row[0]+1 : 1;
2130 =head2 IsItemOnHoldAndFound
2132 my $bool = IsItemFoundHold( $itemnumber );
2134 Returns true if the item is currently on hold
2135 and that hold has a non-null found status ( W, T, etc. )
2139 sub IsItemOnHoldAndFound
{
2140 my ($itemnumber) = @_;
2142 my $rs = Koha
::Database
->new()->schema()->resultset('Reserve');
2144 my $found = $rs->count(
2146 itemnumber
=> $itemnumber,
2147 found
=> { '!=' => undef }
2154 =head2 GetMaxPatronHoldsForRecord
2156 my $holds_per_record = ReservesControlBranch( $borrowernumber, $biblionumber );
2158 For multiple holds on a given record for a given patron, the max
2159 number of record level holds that a patron can be placed is the highest
2160 value of the holds_per_record rule for each item if the record for that
2161 patron. This subroutine finds and returns the highest holds_per_record
2162 rule value for a given patron id and record id.
2166 sub GetMaxPatronHoldsForRecord
{
2167 my ( $borrowernumber, $biblionumber ) = @_;
2169 my $patron = Koha
::Patrons
->find($borrowernumber);
2170 my @items = Koha
::Items
->search( { biblionumber
=> $biblionumber } );
2172 my $controlbranch = C4
::Context
->preference('ReservesControlBranch');
2174 my $categorycode = $patron->categorycode;
2176 $branchcode = $patron->branchcode if ( $controlbranch eq "PatronLibrary" );
2179 foreach my $item (@items) {
2180 my $itemtype = $item->effective_itemtype();
2182 $branchcode = $item->homebranch if ( $controlbranch eq "ItemHomeLibrary" );
2184 my $rule = GetHoldRule
( $categorycode, $itemtype, $branchcode );
2185 my $holds_per_record = $rule ?
$rule->{holds_per_record
} : 0;
2186 $max = $holds_per_record if $holds_per_record > $max;
2194 my $rule = GetHoldRule( $categorycode, $itemtype, $branchcode );
2196 Returns the matching hold related issuingrule fields for a given
2197 patron category, itemtype, and library.
2202 my ( $categorycode, $itemtype, $branchcode ) = @_;
2204 my $reservesallowed = Koha
::CirculationRules
->get_effective_rule(
2206 itemtype
=> $itemtype,
2207 categorycode
=> $categorycode,
2208 branchcode
=> $branchcode,
2209 rule_name
=> 'reservesallowed',
2211 -desc
=> [ 'categorycode', 'itemtype', 'branchcode' ]
2217 if ( $reservesallowed ) {
2218 $rules->{reservesallowed
} = $reservesallowed->rule_value;
2219 $rules->{itemtype
} = $reservesallowed->itemtype;
2220 $rules->{categorycode
} = $reservesallowed->categorycode;
2221 $rules->{branchcode
} = $reservesallowed->branchcode;
2224 my $holds_per_x_rules = Koha
::CirculationRules
->get_effective_rules(
2226 itemtype
=> $itemtype,
2227 categorycode
=> $categorycode,
2228 branchcode
=> $branchcode,
2229 rules
=> ['holds_per_record', 'holds_per_day'],
2231 -desc
=> [ 'categorycode', 'itemtype', 'branchcode' ]
2235 $rules->{holds_per_record
} = $holds_per_x_rules->{holds_per_record
};
2236 $rules->{holds_per_day
} = $holds_per_x_rules->{holds_per_day
};
2243 Koha Development Team <http://koha-community.org/>