Bug 8338: (QA follow-up) Clean up warning
[koha.git] / C4 / Reserves.pm
blob979b3de24474258ba432a727e04b831b4bbd7df2
1 package C4::Reserves;
3 # Copyright 2000-2002 Katipo Communications
4 # 2006 SAN Ouest Provence
5 # 2007-2010 BibLibre Paul POULAIN
6 # 2011 Catalyst IT
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>.
24 use Modern::Perl;
26 use C4::Accounts;
27 use C4::Biblio;
28 use C4::Circulation;
29 use C4::Context;
30 use C4::Items;
31 use C4::Letters;
32 use C4::Log;
33 use C4::Members::Messaging;
34 use C4::Members;
35 use Koha::Account::Lines;
36 use Koha::Biblios;
37 use Koha::Calendar;
38 use Koha::CirculationRules;
39 use Koha::Database;
40 use Koha::DateUtils;
41 use Koha::Hold;
42 use Koha::Holds;
43 use Koha::ItemTypes;
44 use Koha::Items;
45 use Koha::Libraries;
46 use Koha::Old::Hold;
47 use Koha::Patrons;
49 use Carp;
50 use Data::Dumper;
51 use List::MoreUtils qw( firstidx any );
53 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
55 =head1 NAME
57 C4::Reserves - Koha functions for dealing with reservation.
59 =head1 SYNOPSIS
61 use C4::Reserves;
63 =head1 DESCRIPTION
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
94 =head1 FUNCTIONS
96 =cut
98 BEGIN {
99 require Exporter;
100 @ISA = qw(Exporter);
101 @EXPORT = qw(
102 &AddReserve
104 &GetReserveStatus
106 &GetOtherReserves
108 &ModReserveFill
109 &ModReserveAffect
110 &ModReserve
111 &ModReserveStatus
112 &ModReserveCancelAll
113 &ModReserveMinusPriority
114 &MoveReserve
116 &CheckReserves
117 &CanBookBeReserved
118 &CanItemBeReserved
119 &CanReserveBeCanceledFromOpac
120 &CancelExpiredReserves
122 &AutoUnsuspendReserves
124 &IsAvailableForItemLevelRequest
125 ItemsAnyAvailableForHold
127 &AlterPriority
128 &ToggleLowestPriority
130 &ReserveSlip
131 &ToggleSuspend
132 &SuspendAll
134 &GetReservesControlBranch
136 IsItemOnHoldAndFound
138 GetMaxPatronHoldsForRecord
140 @EXPORT_OK = qw( MergeHolds );
143 =head2 AddReserve
145 AddReserve(
147 branchcode => $branchcode,
148 borrowernumber => $borrowernumber,
149 biblionumber => $biblionumber,
150 priority => $priority,
151 reservation_date => $reservation_date,
152 expiration_date => $expiration_date,
153 notes => $notes,
154 title => $title,
155 itemnumber => $itemnumber,
156 found => $found,
157 itemtype => $itemtype,
161 Adds reserve and generates HOLDPLACED message.
163 The following tables are available witin the HOLDPLACED message:
165 branches
166 borrowers
167 biblio
168 biblioitems
169 items
170 reserves
172 =cut
174 sub AddReserve {
175 my ($params) = @_;
176 my $branch = $params->{branchcode};
177 my $borrowernumber = $params->{borrowernumber};
178 my $biblionumber = $params->{biblionumber};
179 my $priority = $params->{priority};
180 my $resdate = $params->{reservation_date};
181 my $expdate = $params->{expiration_date};
182 my $notes = $params->{notes};
183 my $title = $params->{title};
184 my $checkitem = $params->{itemnumber};
185 my $found = $params->{found};
186 my $itemtype = $params->{itemtype};
188 $resdate = output_pref( { str => dt_from_string( $resdate ), dateonly => 1, dateformat => 'iso' })
189 or output_pref({ dt => dt_from_string, dateonly => 1, dateformat => 'iso' });
191 $expdate = output_pref({ str => $expdate, dateonly => 1, dateformat => 'iso' });
193 # if we have an item selectionned, and the pickup branch is the same as the holdingbranch
194 # of the document, we force the value $priority and $found .
195 if ( $checkitem and not C4::Context->preference('ReservesNeedReturns') ) {
196 my $item = Koha::Items->find( $checkitem ); # FIXME Prevent bad calls
198 if (
199 # If item is already checked out, it cannot be set waiting
200 !$item->onloan
202 # The item can't be waiting if it needs a transfer
203 && $item->holdingbranch eq $branch
205 # Similarly, if in transit it can't be waiting
206 && !$item->get_transfer
208 # If we can't hold damaged items, and it is damaged, it can't be waiting
209 && ( $item->damaged && C4::Context->preference('AllowHoldsOnDamagedItems') || !$item->damaged )
211 # Lastly, if this already has holds, we shouldn't make it waiting for the new hold
212 && !$item->current_holds->count )
214 $priority = 0;
215 $found = 'W';
219 if ( C4::Context->preference('AllowHoldDateInFuture') ) {
221 # Make room in reserves for this before those of a later reserve date
222 $priority = _ShiftPriorityByDateAndPriority( $biblionumber, $resdate, $priority );
225 my $waitingdate;
227 # If the reserv had the waiting status, we had the value of the resdate
228 if ( $found && $found eq 'W' ) {
229 $waitingdate = $resdate;
232 # Don't add itemtype limit if specific item is selected
233 $itemtype = undef if $checkitem;
235 # updates take place here
236 my $hold = Koha::Hold->new(
238 borrowernumber => $borrowernumber,
239 biblionumber => $biblionumber,
240 reservedate => $resdate,
241 branchcode => $branch,
242 priority => $priority,
243 reservenotes => $notes,
244 itemnumber => $checkitem,
245 found => $found,
246 waitingdate => $waitingdate,
247 expirationdate => $expdate,
248 itemtype => $itemtype,
249 item_level_hold => $checkitem ? 1 : 0,
251 )->store();
252 $hold->set_waiting() if $found && $found eq 'W';
254 logaction( 'HOLDS', 'CREATE', $hold->id, Dumper($hold->unblessed) )
255 if C4::Context->preference('HoldsLog');
257 my $reserve_id = $hold->id();
259 # add a reserve fee if needed
260 if ( C4::Context->preference('HoldFeeMode') ne 'any_time_is_collected' ) {
261 my $reserve_fee = GetReserveFee( $borrowernumber, $biblionumber );
262 ChargeReserveFee( $borrowernumber, $reserve_fee, $title );
265 _FixPriority({ biblionumber => $biblionumber});
267 # Send e-mail to librarian if syspref is active
268 if(C4::Context->preference("emailLibrarianWhenHoldIsPlaced")){
269 my $patron = Koha::Patrons->find( $borrowernumber );
270 my $library = $patron->library;
271 if ( my $letter = C4::Letters::GetPreparedLetter (
272 module => 'reserves',
273 letter_code => 'HOLDPLACED',
274 branchcode => $branch,
275 lang => $patron->lang,
276 tables => {
277 'branches' => $library->unblessed,
278 'borrowers' => $patron->unblessed,
279 'biblio' => $biblionumber,
280 'biblioitems' => $biblionumber,
281 'items' => $checkitem,
282 'reserves' => $hold->unblessed,
284 ) ) {
286 my $branch_email_address = $library->inbound_email_address;
288 C4::Letters::EnqueueLetter(
290 letter => $letter,
291 borrowernumber => $borrowernumber,
292 message_transport_type => 'email',
293 to_address => $branch_email_address,
299 return $reserve_id;
302 =head2 CanBookBeReserved
304 $canReserve = &CanBookBeReserved($borrowernumber, $biblionumber, $branchcode, $params)
305 if ($canReserve eq 'OK') { #We can reserve this Item! }
307 $params are passed directly through to CanItemBeReserved
309 See CanItemBeReserved() for possible return values.
311 =cut
313 sub CanBookBeReserved{
314 my ($borrowernumber, $biblionumber, $pickup_branchcode, $params) = @_;
316 my @itemnumbers = Koha::Items->search({ biblionumber => $biblionumber})->get_column("itemnumber");
317 #get items linked via host records
318 my @hostitems = get_hostitemnumbers_of($biblionumber);
319 if (@hostitems){
320 push (@itemnumbers, @hostitems);
323 my $canReserve = { status => '' };
324 foreach my $itemnumber (@itemnumbers) {
325 $canReserve = CanItemBeReserved( $borrowernumber, $itemnumber, $pickup_branchcode, $params );
326 return { status => 'OK' } if $canReserve->{status} eq 'OK';
328 return $canReserve;
331 =head2 CanItemBeReserved
333 $canReserve = &CanItemBeReserved($borrowernumber, $itemnumber, $branchcode, $params)
334 if ($canReserve->{status} eq 'OK') { #We can reserve this Item! }
336 current params are 'ignore_found_holds' - if true holds that have been trapped are not counted
337 toward the patron limit, used by checkHighHolds to avoid counting the hold we will fill with the
338 current checkout against the high holds threshold
340 @RETURNS { status => OK }, if the Item can be reserved.
341 { status => ageRestricted }, if the Item is age restricted for this borrower.
342 { status => damaged }, if the Item is damaged.
343 { status => cannotReserveFromOtherBranches }, if syspref 'canreservefromotherbranches' is OK.
344 { status => branchNotInHoldGroup }, if borrower home library is not in hold group, and holds are only allowed from hold groups.
345 { status => tooManyReserves, limit => $limit }, if the borrower has exceeded their maximum reserve amount.
346 { status => notReservable }, if holds on this item are not allowed
347 { status => libraryNotFound }, if given branchcode is not an existing library
348 { status => libraryNotPickupLocation }, if given branchcode is not configured to be a pickup location
349 { status => cannotBeTransferred }, if branch transfer limit applies on given item and branchcode
350 { status => pickupNotInHoldGroup }, pickup location is not in hold group, and pickup locations are only allowed from hold groups.
352 =cut
354 sub CanItemBeReserved {
355 my ( $borrowernumber, $itemnumber, $pickup_branchcode, $params ) = @_;
357 my $dbh = C4::Context->dbh;
358 my $ruleitemtype; # itemtype of the matching issuing rule
359 my $allowedreserves = 0; # Total number of holds allowed across all records
360 my $holds_per_record = 1; # Total number of holds allowed for this one given record
361 my $holds_per_day; # Default to unlimited
363 # we retrieve borrowers and items informations #
364 # item->{itype} will come for biblioitems if necessery
365 my $item = Koha::Items->find($itemnumber);
366 my $biblio = $item->biblio;
367 my $patron = Koha::Patrons->find( $borrowernumber );
368 my $borrower = $patron->unblessed;
370 # If an item is damaged and we don't allow holds on damaged items, we can stop right here
371 return { status =>'damaged' }
372 if ( $item->damaged
373 && !C4::Context->preference('AllowHoldsOnDamagedItems') );
375 # Check for the age restriction
376 my ( $ageRestriction, $daysToAgeRestriction ) =
377 C4::Circulation::GetAgeRestriction( $biblio->biblioitem->agerestriction, $borrower );
378 return { status => 'ageRestricted' } if $daysToAgeRestriction && $daysToAgeRestriction > 0;
380 # Check that the patron doesn't have an item level hold on this item already
381 return { status =>'itemAlreadyOnHold' }
382 if Koha::Holds->search( { borrowernumber => $borrowernumber, itemnumber => $itemnumber } )->count();
384 my $controlbranch = C4::Context->preference('ReservesControlBranch');
386 my $querycount = q{
387 SELECT count(*) AS count
388 FROM reserves
389 LEFT JOIN items USING (itemnumber)
390 LEFT JOIN biblioitems ON (reserves.biblionumber=biblioitems.biblionumber)
391 LEFT JOIN borrowers USING (borrowernumber)
392 WHERE borrowernumber = ?
395 my $branchcode = "";
396 my $branchfield = "reserves.branchcode";
398 if ( $controlbranch eq "ItemHomeLibrary" ) {
399 $branchfield = "items.homebranch";
400 $branchcode = $item->homebranch;
402 elsif ( $controlbranch eq "PatronLibrary" ) {
403 $branchfield = "borrowers.branchcode";
404 $branchcode = $borrower->{branchcode};
407 # we retrieve rights
408 if ( my $rights = GetHoldRule( $borrower->{'categorycode'}, $item->effective_itemtype, $branchcode ) ) {
409 $ruleitemtype = $rights->{itemtype};
410 $allowedreserves = $rights->{reservesallowed} // $allowedreserves;
411 $holds_per_record = $rights->{holds_per_record} // $holds_per_record;
412 $holds_per_day = $rights->{holds_per_day};
414 else {
415 $ruleitemtype = undef;
418 my $search_params = {
419 borrowernumber => $borrowernumber,
420 biblionumber => $item->biblionumber,
422 $search_params->{found} = undef if $params->{ignore_found_holds};
424 my $holds = Koha::Holds->search($search_params);
425 if ( defined $holds_per_record && $holds_per_record ne ''
426 && $holds->count() >= $holds_per_record ) {
427 return { status => "tooManyHoldsForThisRecord", limit => $holds_per_record };
430 my $today_holds = Koha::Holds->search({
431 borrowernumber => $borrowernumber,
432 reservedate => dt_from_string->date
435 if ( defined $holds_per_day && $holds_per_day ne ''
436 && $today_holds->count() >= $holds_per_day )
438 return { status => 'tooManyReservesToday', limit => $holds_per_day };
441 # we retrieve count
443 $querycount .= "AND ( $branchfield = ? OR $branchfield IS NULL )";
445 # If using item-level itypes, fall back to the record
446 # level itemtype if the hold has no associated item
447 $querycount .=
448 C4::Context->preference('item-level_itypes')
449 ? " AND COALESCE( items.itype, biblioitems.itemtype ) = ?"
450 : " AND biblioitems.itemtype = ?"
451 if defined $ruleitemtype;
453 my $sthcount = $dbh->prepare($querycount);
455 if ( defined $ruleitemtype ) {
456 $sthcount->execute( $borrowernumber, $branchcode, $ruleitemtype );
458 else {
459 $sthcount->execute( $borrowernumber, $branchcode );
462 my $reservecount = "0";
463 if ( my $rowcount = $sthcount->fetchrow_hashref() ) {
464 $reservecount = $rowcount->{count};
467 # we check if it's ok or not
468 if ( defined $allowedreserves && $allowedreserves ne ''
469 && $reservecount >= $allowedreserves ) {
470 return { status => 'tooManyReserves', limit => $allowedreserves };
473 # Now we need to check hold limits by patron category
474 my $rule = Koha::CirculationRules->get_effective_rule(
476 categorycode => $borrower->{categorycode},
477 branchcode => $branchcode,
478 rule_name => 'max_holds',
481 if ( $rule && defined( $rule->rule_value ) && $rule->rule_value ne '' ) {
482 my $total_holds_count = Koha::Holds->search(
484 borrowernumber => $borrower->{borrowernumber}
486 )->count();
488 return { status => 'tooManyReserves', limit => $rule->rule_value} if $total_holds_count >= $rule->rule_value;
491 my $reserves_control_branch =
492 GetReservesControlBranch( $item->unblessed(), $borrower );
493 my $branchitemrule =
494 C4::Circulation::GetBranchItemRule( $reserves_control_branch, $item->itype ); # FIXME Should not be item->effective_itemtype?
496 if ( $branchitemrule->{holdallowed} == 0 ) {
497 return { status => 'notReservable' };
500 if ( $branchitemrule->{holdallowed} == 1
501 && $borrower->{branchcode} ne $item->homebranch )
503 return { status => 'cannotReserveFromOtherBranches' };
506 my $item_library = Koha::Libraries->find( {branchcode => $item->homebranch} );
507 if ( $branchitemrule->{holdallowed} == 3) {
508 if($borrower->{branchcode} ne $item->homebranch && !$item_library->validate_hold_sibling( {branchcode => $borrower->{branchcode}} )) {
509 return { status => 'branchNotInHoldGroup' };
513 # If reservecount is ok, we check item branch if IndependentBranches is ON
514 # and canreservefromotherbranches is OFF
515 if ( C4::Context->preference('IndependentBranches')
516 and !C4::Context->preference('canreservefromotherbranches') )
518 if ( $item->homebranch ne $borrower->{branchcode} ) {
519 return { status => 'cannotReserveFromOtherBranches' };
523 if ($pickup_branchcode) {
524 my $destination = Koha::Libraries->find({
525 branchcode => $pickup_branchcode,
528 unless ($destination) {
529 return { status => 'libraryNotFound' };
531 unless ($destination->pickup_location) {
532 return { status => 'libraryNotPickupLocation' };
534 unless ($item->can_be_transferred({ to => $destination })) {
535 return { status => 'cannotBeTransferred' };
537 unless ($branchitemrule->{hold_fulfillment_policy} ne 'holdgroup' || $item_library->validate_hold_sibling( {branchcode => $pickup_branchcode} )) {
538 return { status => 'pickupNotInHoldGroup' };
540 unless ($branchitemrule->{hold_fulfillment_policy} ne 'patrongroup' || Koha::Libraries->find({branchcode => $borrower->{branchcode}})->validate_hold_sibling({branchcode => $pickup_branchcode})) {
541 return { status => 'pickupNotInHoldGroup' };
545 return { status => 'OK' };
548 =head2 CanReserveBeCanceledFromOpac
550 $number = CanReserveBeCanceledFromOpac($reserve_id, $borrowernumber);
552 returns 1 if reserve can be cancelled by user from OPAC.
553 First check if reserve belongs to user, next checks if reserve is not in
554 transfer or waiting status
556 =cut
558 sub CanReserveBeCanceledFromOpac {
559 my ($reserve_id, $borrowernumber) = @_;
561 return unless $reserve_id and $borrowernumber;
562 my $reserve = Koha::Holds->find($reserve_id);
564 return 0 unless $reserve->borrowernumber == $borrowernumber;
565 return 0 if ( $reserve->found eq 'W' ) or ( $reserve->found eq 'T' );
567 return 1;
571 =head2 GetOtherReserves
573 ($messages,$nextreservinfo)=$GetOtherReserves(itemnumber);
575 Check queued list of this document and check if this document must be transferred
577 =cut
579 sub GetOtherReserves {
580 my ($itemnumber) = @_;
581 my $messages;
582 my $nextreservinfo;
583 my ( undef, $checkreserves, undef ) = CheckReserves($itemnumber);
584 if ($checkreserves) {
585 my $item = Koha::Items->find($itemnumber);
586 if ( $item->holdingbranch ne $checkreserves->{'branchcode'} ) {
587 $messages->{'transfert'} = $checkreserves->{'branchcode'};
588 #minus priorities of others reservs
589 ModReserveMinusPriority(
590 $itemnumber,
591 $checkreserves->{'reserve_id'},
594 #launch the subroutine dotransfer
595 C4::Items::ModItemTransfer(
596 $itemnumber,
597 $item->holdingbranch,
598 $checkreserves->{'branchcode'},
599 'Reserve'
604 #step 2b : case of a reservation on the same branch, set the waiting status
605 else {
606 $messages->{'waiting'} = 1;
607 ModReserveMinusPriority(
608 $itemnumber,
609 $checkreserves->{'reserve_id'},
611 ModReserveStatus($itemnumber,'W');
614 $nextreservinfo = $checkreserves;
617 return ( $messages, $nextreservinfo );
620 =head2 ChargeReserveFee
622 $fee = ChargeReserveFee( $borrowernumber, $fee, $title );
624 Charge the fee for a reserve (if $fee > 0)
626 =cut
628 sub ChargeReserveFee {
629 my ( $borrowernumber, $fee, $title ) = @_;
630 return if !$fee || $fee == 0; # the last test is needed to include 0.00
631 Koha::Account->new( { patron_id => $borrowernumber } )->add_debit(
633 amount => $fee,
634 description => $title,
635 note => undef,
636 user_id => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
637 library_id => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
638 interface => C4::Context->interface,
639 invoice_type => undef,
640 type => 'RESERVE',
641 item_id => undef
646 =head2 GetReserveFee
648 $fee = GetReserveFee( $borrowernumber, $biblionumber );
650 Calculate the fee for a reserve (if applicable).
652 =cut
654 sub GetReserveFee {
655 my ( $borrowernumber, $biblionumber ) = @_;
656 my $borquery = qq{
657 SELECT reservefee FROM borrowers LEFT JOIN categories ON borrowers.categorycode = categories.categorycode WHERE borrowernumber = ?
659 my $issue_qry = qq{
660 SELECT COUNT(*) FROM items
661 LEFT JOIN issues USING (itemnumber)
662 WHERE items.biblionumber=? AND issues.issue_id IS NULL
664 my $holds_qry = qq{
665 SELECT COUNT(*) FROM reserves WHERE biblionumber=? AND borrowernumber<>?
668 my $dbh = C4::Context->dbh;
669 my ( $fee ) = $dbh->selectrow_array( $borquery, undef, ($borrowernumber) );
670 my $hold_fee_mode = C4::Context->preference('HoldFeeMode') || 'not_always';
671 if( $fee and $fee > 0 and $hold_fee_mode eq 'not_always' ) {
672 # This is a reconstruction of the old code:
673 # Compare number of items with items issued, and optionally check holds
674 # If not all items are issued and there are no holds: charge no fee
675 # NOTE: Lost, damaged, not-for-loan, etc. are just ignored here
676 my ( $notissued, $reserved );
677 ( $notissued ) = $dbh->selectrow_array( $issue_qry, undef,
678 ( $biblionumber ) );
679 if( $notissued ) {
680 ( $reserved ) = $dbh->selectrow_array( $holds_qry, undef,
681 ( $biblionumber, $borrowernumber ) );
682 $fee = 0 if $reserved == 0;
685 return $fee;
688 =head2 GetReserveStatus
690 $reservestatus = GetReserveStatus($itemnumber);
692 Takes an itemnumber and returns the status of the reserve placed on it.
693 If several reserves exist, the reserve with the lower priority is given.
695 =cut
697 ## FIXME: I don't think this does what it thinks it does.
698 ## It only ever checks the first reserve result, even though
699 ## multiple reserves for that bib can have the itemnumber set
700 ## the sub is only used once in the codebase.
701 sub GetReserveStatus {
702 my ($itemnumber) = @_;
704 my $dbh = C4::Context->dbh;
706 my ($sth, $found, $priority);
707 if ( $itemnumber ) {
708 $sth = $dbh->prepare("SELECT found, priority FROM reserves WHERE itemnumber = ? order by priority LIMIT 1");
709 $sth->execute($itemnumber);
710 ($found, $priority) = $sth->fetchrow_array;
713 if(defined $found) {
714 return 'Waiting' if $found eq 'W' and $priority == 0;
715 return 'Finished' if $found eq 'F';
718 return 'Reserved' if defined $priority && $priority > 0;
720 return ''; # empty string here will remove need for checking undef, or less log lines
723 =head2 CheckReserves
725 ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber);
726 ($status, $matched_reserve, $possible_reserves) = &CheckReserves(undef, $barcode);
727 ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber,undef,$lookahead);
729 Find a book in the reserves.
731 C<$itemnumber> is the book's item number.
732 C<$lookahead> is the number of days to look in advance for future reserves.
734 As I understand it, C<&CheckReserves> looks for the given item in the
735 reserves. If it is found, that's a match, and C<$status> is set to
736 C<Waiting>.
738 Otherwise, it finds the most important item in the reserves with the
739 same biblio number as this book (I'm not clear on this) and returns it
740 with C<$status> set to C<Reserved>.
742 C<&CheckReserves> returns a two-element list:
744 C<$status> is either C<Waiting>, C<Reserved> (see above), or 0.
746 C<$reserve> is the reserve item that matched. It is a
747 reference-to-hash whose keys are mostly the fields of the reserves
748 table in the Koha database.
750 =cut
752 sub CheckReserves {
753 my ( $item, $barcode, $lookahead_days, $ignore_borrowers) = @_;
754 my $dbh = C4::Context->dbh;
755 my $sth;
756 my $select;
757 if (C4::Context->preference('item-level_itypes')){
758 $select = "
759 SELECT items.biblionumber,
760 items.biblioitemnumber,
761 itemtypes.notforloan,
762 items.notforloan AS itemnotforloan,
763 items.itemnumber,
764 items.damaged,
765 items.homebranch,
766 items.holdingbranch
767 FROM items
768 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
769 LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype
772 else {
773 $select = "
774 SELECT items.biblionumber,
775 items.biblioitemnumber,
776 itemtypes.notforloan,
777 items.notforloan AS itemnotforloan,
778 items.itemnumber,
779 items.damaged,
780 items.homebranch,
781 items.holdingbranch
782 FROM items
783 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
784 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
788 if ($item) {
789 $sth = $dbh->prepare("$select WHERE itemnumber = ?");
790 $sth->execute($item);
792 else {
793 $sth = $dbh->prepare("$select WHERE barcode = ?");
794 $sth->execute($barcode);
796 # note: we get the itemnumber because we might have started w/ just the barcode. Now we know for sure we have it.
797 my ( $biblio, $bibitem, $notforloan_per_itemtype, $notforloan_per_item, $itemnumber, $damaged, $item_homebranch, $item_holdingbranch ) = $sth->fetchrow_array;
798 return if ( $damaged && !C4::Context->preference('AllowHoldsOnDamagedItems') );
800 return unless $itemnumber; # bail if we got nothing.
801 # if item is not for loan it cannot be reserved either.....
802 # except where items.notforloan < 0 : This indicates the item is holdable.
804 my @SkipHoldTrapOnNotForLoanValue = split( '|', C4::Context->preference('SkipHoldTrapOnNotForLoanValue') );
805 return if @SkipHoldTrapOnNotForLoanValue && grep( $notforloan_per_item, @SkipHoldTrapOnNotForLoanValue );
807 my $dont_trap = C4::Context->preference('TrapHoldsOnOrder') ? ($notforloan_per_item > 0) : ($notforloan_per_item && 1 );
808 return if $dont_trap or $notforloan_per_itemtype;
810 # Find this item in the reserves
811 my @reserves = _Findgroupreserve( $bibitem, $biblio, $itemnumber, $lookahead_days, $ignore_borrowers);
813 # $priority and $highest are used to find the most important item
814 # in the list returned by &_Findgroupreserve. (The lower $priority,
815 # the more important the item.)
816 # $highest is the most important item we've seen so far.
817 my $highest;
819 if (scalar @reserves) {
820 my $LocalHoldsPriority = C4::Context->preference('LocalHoldsPriority');
821 my $LocalHoldsPriorityPatronControl = C4::Context->preference('LocalHoldsPriorityPatronControl');
822 my $LocalHoldsPriorityItemControl = C4::Context->preference('LocalHoldsPriorityItemControl');
824 my $priority = 10000000;
825 foreach my $res (@reserves) {
826 if ( $res->{'itemnumber'} && $res->{'itemnumber'} == $itemnumber && $res->{'priority'} == 0) {
827 if ($res->{'found'} eq 'W') {
828 return ( "Waiting", $res, \@reserves ); # Found it, it is waiting
829 } else {
830 return ( "Reserved", $res, \@reserves ); # Found determinated hold, e. g. the tranferred one
832 } else {
833 my $patron;
834 my $item;
835 my $local_hold_match;
837 if ($LocalHoldsPriority) {
838 $patron = Koha::Patrons->find( $res->{borrowernumber} );
839 $item = Koha::Items->find($itemnumber);
841 my $local_holds_priority_item_branchcode =
842 $item->$LocalHoldsPriorityItemControl;
843 my $local_holds_priority_patron_branchcode =
844 ( $LocalHoldsPriorityPatronControl eq 'PickupLibrary' )
845 ? $res->{branchcode}
846 : ( $LocalHoldsPriorityPatronControl eq 'HomeLibrary' )
847 ? $patron->branchcode
848 : undef;
849 $local_hold_match =
850 $local_holds_priority_item_branchcode eq
851 $local_holds_priority_patron_branchcode;
854 # See if this item is more important than what we've got so far
855 if ( ( $res->{'priority'} && $res->{'priority'} < $priority ) || $local_hold_match ) {
856 $item ||= Koha::Items->find($itemnumber);
857 next if $res->{itemtype} && $res->{itemtype} ne $item->effective_itemtype;
858 $patron ||= Koha::Patrons->find( $res->{borrowernumber} );
859 my $branch = GetReservesControlBranch( $item->unblessed, $patron->unblessed );
860 my $branchitemrule = C4::Circulation::GetBranchItemRule($branch,$item->effective_itemtype);
861 next if ($branchitemrule->{'holdallowed'} == 0);
862 next if (($branchitemrule->{'holdallowed'} == 1) && ($branch ne $patron->branchcode));
863 my $library = Koha::Libraries->find({branchcode=>$item->homebranch});
864 next if (($branchitemrule->{'holdallowed'} == 3) && (!$library->validate_hold_sibling({branchcode => $patron->branchcode}) ));
865 my $hold_fulfillment_policy = $branchitemrule->{hold_fulfillment_policy};
866 next if ( ($hold_fulfillment_policy eq 'holdgroup') && (!$library->validate_hold_sibling({branchcode => $res->{branchcode}})) );
867 next if ( ($hold_fulfillment_policy eq 'homebranch') && ($res->{branchcode} ne $item->$hold_fulfillment_policy) );
868 next if ( ($hold_fulfillment_policy eq 'holdingbranch') && ($res->{branchcode} ne $item->$hold_fulfillment_policy) );
869 next unless $item->can_be_transferred( { to => Koha::Libraries->find( $res->{branchcode} ) } );
870 $priority = $res->{'priority'};
871 $highest = $res;
872 last if $local_hold_match;
878 # If we get this far, then no exact match was found.
879 # We return the most important (i.e. next) reservation.
880 if ($highest) {
881 $highest->{'itemnumber'} = $item;
882 return ( "Reserved", $highest, \@reserves );
885 return ( '' );
888 =head2 CancelExpiredReserves
890 CancelExpiredReserves();
892 Cancels all reserves with an expiration date from before today.
894 =cut
896 sub CancelExpiredReserves {
897 my $today = dt_from_string();
898 my $cancel_on_holidays = C4::Context->preference('ExpireReservesOnHolidays');
899 my $expireWaiting = C4::Context->preference('ExpireReservesMaxPickUpDelay');
901 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
902 my $params = { expirationdate => { '<', $dtf->format_date($today) } };
903 $params->{found} = [ { '!=', 'W' }, undef ] unless $expireWaiting;
905 # FIXME To move to Koha::Holds->search_expired (?)
906 my $holds = Koha::Holds->search( $params );
908 while ( my $hold = $holds->next ) {
909 my $calendar = Koha::Calendar->new( branchcode => $hold->branchcode );
911 next if !$cancel_on_holidays && $calendar->is_holiday( $today );
913 my $cancel_params = {};
914 if ( $hold->found eq 'W' ) {
915 $cancel_params->{charge_cancel_fee} = 1;
917 $hold->cancel( $cancel_params );
921 =head2 AutoUnsuspendReserves
923 AutoUnsuspendReserves();
925 Unsuspends all suspended reserves with a suspend_until date from before today.
927 =cut
929 sub AutoUnsuspendReserves {
930 my $today = dt_from_string();
932 my @holds = Koha::Holds->search( { suspend_until => { '<=' => $today->ymd() } } );
934 map { $_->resume() } @holds;
937 =head2 ModReserve
939 ModReserve({ rank => $rank,
940 reserve_id => $reserve_id,
941 branchcode => $branchcode
942 [, itemnumber => $itemnumber ]
943 [, biblionumber => $biblionumber, $borrowernumber => $borrowernumber ]
946 Change a hold request's priority or cancel it.
948 C<$rank> specifies the effect of the change. If C<$rank>
949 is 'W' or 'n', nothing happens. This corresponds to leaving a
950 request alone when changing its priority in the holds queue
951 for a bib.
953 If C<$rank> is 'del', the hold request is cancelled.
955 If C<$rank> is an integer greater than zero, the priority of
956 the request is set to that value. Since priority != 0 means
957 that the item is not waiting on the hold shelf, setting the
958 priority to a non-zero value also sets the request's found
959 status and waiting date to NULL.
961 The optional C<$itemnumber> parameter is used only when
962 C<$rank> is a non-zero integer; if supplied, the itemnumber
963 of the hold request is set accordingly; if omitted, the itemnumber
964 is cleared.
966 B<FIXME:> Note that the forgoing can have the effect of causing
967 item-level hold requests to turn into title-level requests. This
968 will be fixed once reserves has separate columns for requested
969 itemnumber and supplying itemnumber.
971 =cut
973 sub ModReserve {
974 my ( $params ) = @_;
976 my $rank = $params->{'rank'};
977 my $reserve_id = $params->{'reserve_id'};
978 my $branchcode = $params->{'branchcode'};
979 my $itemnumber = $params->{'itemnumber'};
980 my $suspend_until = $params->{'suspend_until'};
981 my $borrowernumber = $params->{'borrowernumber'};
982 my $biblionumber = $params->{'biblionumber'};
984 return if $rank eq "W";
985 return if $rank eq "n";
987 return unless ( $reserve_id || ( $borrowernumber && ( $biblionumber || $itemnumber ) ) );
989 my $hold;
990 unless ( $reserve_id ) {
991 my $holds = Koha::Holds->search({ biblionumber => $biblionumber, borrowernumber => $borrowernumber, itemnumber => $itemnumber });
992 return unless $holds->count; # FIXME Should raise an exception
993 $hold = $holds->next;
994 $reserve_id = $hold->reserve_id;
997 $hold ||= Koha::Holds->find($reserve_id);
999 if ( $rank eq "del" ) {
1000 $hold->cancel;
1002 elsif ($rank =~ /^\d+/ and $rank > 0) {
1003 logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper($hold->unblessed) )
1004 if C4::Context->preference('HoldsLog');
1006 my $properties = {
1007 priority => $rank,
1008 branchcode => $branchcode,
1009 itemnumber => $itemnumber,
1010 found => undef,
1011 waitingdate => undef
1013 if (exists $params->{reservedate}) {
1014 $properties->{reservedate} = $params->{reservedate} || undef;
1016 if (exists $params->{expirationdate}) {
1017 $properties->{expirationdate} = $params->{expirationdate} || undef;
1020 $hold->set($properties)->store();
1022 if ( defined( $suspend_until ) ) {
1023 if ( $suspend_until ) {
1024 $suspend_until = eval { dt_from_string( $suspend_until ) };
1025 $hold->suspend_hold( $suspend_until );
1026 } else {
1027 # If the hold is suspended leave the hold suspended, but convert it to an indefinite hold.
1028 # If the hold is not suspended, this does nothing.
1029 $hold->set( { suspend_until => undef } )->store();
1033 _FixPriority({ reserve_id => $reserve_id, rank =>$rank });
1037 =head2 ModReserveFill
1039 &ModReserveFill($reserve);
1041 Fill a reserve. If I understand this correctly, this means that the
1042 reserved book has been found and given to the patron who reserved it.
1044 C<$reserve> specifies the reserve to fill. It is a reference-to-hash
1045 whose keys are fields from the reserves table in the Koha database.
1047 =cut
1049 sub ModReserveFill {
1050 my ($res) = @_;
1051 my $reserve_id = $res->{'reserve_id'};
1053 my $hold = Koha::Holds->find($reserve_id);
1054 # get the priority on this record....
1055 my $priority = $hold->priority;
1057 # update the hold statuses, no need to store it though, we will be deleting it anyway
1058 $hold->set(
1060 found => 'F',
1061 priority => 0,
1065 logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper($hold->unblessed) )
1066 if C4::Context->preference('HoldsLog');
1068 # FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log
1069 Koha::Old::Hold->new( $hold->unblessed() )->store();
1071 $hold->delete();
1073 if ( C4::Context->preference('HoldFeeMode') eq 'any_time_is_collected' ) {
1074 my $reserve_fee = GetReserveFee( $hold->borrowernumber, $hold->biblionumber );
1075 ChargeReserveFee( $hold->borrowernumber, $reserve_fee, $hold->biblio->title );
1078 # now fix the priority on the others (if the priority wasn't
1079 # already sorted!)....
1080 unless ( $priority == 0 ) {
1081 _FixPriority( { reserve_id => $reserve_id, biblionumber => $hold->biblionumber } );
1085 =head2 ModReserveStatus
1087 &ModReserveStatus($itemnumber, $newstatus);
1089 Update the reserve status for the active (priority=0) reserve.
1091 $itemnumber is the itemnumber the reserve is on
1093 $newstatus is the new status.
1095 =cut
1097 sub ModReserveStatus {
1099 #first : check if we have a reservation for this item .
1100 my ($itemnumber, $newstatus) = @_;
1101 my $dbh = C4::Context->dbh;
1103 my $query = "UPDATE reserves SET found = ?, waitingdate = NOW() WHERE itemnumber = ? AND found IS NULL AND priority = 0";
1104 my $sth_set = $dbh->prepare($query);
1105 $sth_set->execute( $newstatus, $itemnumber );
1107 my $item = Koha::Items->find($itemnumber);
1108 if ( $item->location && $item->location eq 'CART'
1109 && ( !$item->permanent_location || $item->permanent_location ne 'CART' )
1110 && $newstatus ) {
1111 CartToShelf( $itemnumber );
1115 =head2 ModReserveAffect
1117 &ModReserveAffect($itemnumber,$borrowernumber,$diffBranchSend,$reserve_id);
1119 This function affect an item and a status for a given reserve, either fetched directly
1120 by record_id, or by borrowernumber and itemnumber or biblionumber. If only biblionumber
1121 is given, only first reserve returned is affected, which is ok for anything but
1122 multi-item holds.
1124 if $transferToDo is not set, then the status is set to "Waiting" as well.
1125 otherwise, a transfer is on the way, and the end of the transfer will
1126 take care of the waiting status
1128 =cut
1130 sub ModReserveAffect {
1131 my ( $itemnumber, $borrowernumber, $transferToDo, $reserve_id ) = @_;
1132 my $dbh = C4::Context->dbh;
1134 # we want to attach $itemnumber to $borrowernumber, find the biblionumber
1135 # attached to $itemnumber
1136 my $sth = $dbh->prepare("SELECT biblionumber FROM items WHERE itemnumber=?");
1137 $sth->execute($itemnumber);
1138 my ($biblionumber) = $sth->fetchrow;
1140 # get request - need to find out if item is already
1141 # waiting in order to not send duplicate hold filled notifications
1143 my $hold;
1144 # Find hold by id if we have it
1145 $hold = Koha::Holds->find( $reserve_id ) if $reserve_id;
1146 # Find item level hold for this item if there is one
1147 $hold ||= Koha::Holds->search( { borrowernumber => $borrowernumber, itemnumber => $itemnumber } )->next();
1148 # Find record level hold if there is no item level hold
1149 $hold ||= Koha::Holds->search( { borrowernumber => $borrowernumber, biblionumber => $biblionumber } )->next();
1151 return unless $hold;
1153 my $already_on_shelf = $hold->found && $hold->found eq 'W';
1155 $hold->itemnumber($itemnumber);
1156 $hold->set_waiting($transferToDo);
1158 if( !$transferToDo ){
1159 _koha_notify_reserve( $hold->reserve_id ) unless $already_on_shelf;
1160 my $transfers = Koha::Item::Transfers->search({
1161 itemnumber => $itemnumber,
1162 datearrived => undef
1164 while( my $transfer = $transfers->next ){
1165 $transfer->datearrived( dt_from_string() )->store;
1170 _FixPriority( { biblionumber => $biblionumber } );
1171 my $item = Koha::Items->find($itemnumber);
1172 if ( $item->location && $item->location eq 'CART'
1173 && ( !$item->permanent_location || $item->permanent_location ne 'CART' ) ) {
1174 CartToShelf( $itemnumber );
1177 logaction( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper($hold->unblessed) )
1178 if C4::Context->preference('HoldsLog');
1180 return;
1183 =head2 ModReserveCancelAll
1185 ($messages,$nextreservinfo) = &ModReserveCancelAll($itemnumber,$borrowernumber);
1187 function to cancel reserv,check other reserves, and transfer document if it's necessary
1189 =cut
1191 sub ModReserveCancelAll {
1192 my $messages;
1193 my $nextreservinfo;
1194 my ( $itemnumber, $borrowernumber ) = @_;
1196 #step 1 : cancel the reservation
1197 my $holds = Koha::Holds->search({ itemnumber => $itemnumber, borrowernumber => $borrowernumber });
1198 return unless $holds->count;
1199 $holds->next->cancel;
1201 #step 2 launch the subroutine of the others reserves
1202 ( $messages, $nextreservinfo ) = GetOtherReserves($itemnumber);
1204 return ( $messages, $nextreservinfo->{borrowernumber} );
1207 =head2 ModReserveMinusPriority
1209 &ModReserveMinusPriority($itemnumber,$borrowernumber,$biblionumber)
1211 Reduce the values of queued list
1213 =cut
1215 sub ModReserveMinusPriority {
1216 my ( $itemnumber, $reserve_id ) = @_;
1218 #first step update the value of the first person on reserv
1219 my $dbh = C4::Context->dbh;
1220 my $query = "
1221 UPDATE reserves
1222 SET priority = 0 , itemnumber = ?
1223 WHERE reserve_id = ?
1225 my $sth_upd = $dbh->prepare($query);
1226 $sth_upd->execute( $itemnumber, $reserve_id );
1227 # second step update all others reserves
1228 _FixPriority({ reserve_id => $reserve_id, rank => '0' });
1231 =head2 IsAvailableForItemLevelRequest
1233 my $is_available = IsAvailableForItemLevelRequest( $item_record, $borrower_record, $pickup_branchcode );
1235 Checks whether a given item record is available for an
1236 item-level hold request. An item is available if
1238 * it is not lost AND
1239 * it is not damaged AND
1240 * it is not withdrawn AND
1241 * a waiting or in transit reserve is placed on
1242 * does not have a not for loan value > 0
1244 Need to check the issuingrules onshelfholds column,
1245 if this is set items on the shelf can be placed on hold
1247 Note that IsAvailableForItemLevelRequest() does not
1248 check if the staff operator is authorized to place
1249 a request on the item - in particular,
1250 this routine does not check IndependentBranches
1251 and canreservefromotherbranches.
1253 =cut
1255 sub IsAvailableForItemLevelRequest {
1256 my $item = shift;
1257 my $patron = shift;
1258 my $pickup_branchcode = shift;
1259 # items_any_available is precalculated status passed from request.pl when set of items
1260 # looped outside of IsAvailableForItemLevelRequest to avoid nested loops:
1261 my $items_any_available = shift;
1263 my $dbh = C4::Context->dbh;
1264 # must check the notforloan setting of the itemtype
1265 # FIXME - a lot of places in the code do this
1266 # or something similar - need to be
1267 # consolidated
1268 my $itemtype = $item->effective_itemtype;
1269 my $notforloan_per_itemtype = Koha::ItemTypes->find($itemtype)->notforloan;
1271 return 0 if
1272 $notforloan_per_itemtype ||
1273 $item->itemlost ||
1274 $item->notforloan > 0 ||
1275 $item->withdrawn ||
1276 ($item->damaged && !C4::Context->preference('AllowHoldsOnDamagedItems'));
1278 if ($pickup_branchcode) {
1279 my $destination = Koha::Libraries->find($pickup_branchcode);
1280 return 0 unless $destination;
1281 return 0 unless $destination->pickup_location;
1282 return 0 unless $item->can_be_transferred( { to => $destination } );
1283 my $reserves_control_branch =
1284 GetReservesControlBranch( $item->unblessed(), $patron->unblessed() );
1285 my $branchitemrule =
1286 C4::Circulation::GetBranchItemRule( $reserves_control_branch, $item->itype );
1287 my $home_library = Koka::Libraries->find( {branchcode => $item->homebranch} );
1288 return 0 unless $branchitemrule->{hold_fulfillment_policy} ne 'holdgroup' || $home_library->validate_hold_sibling( {branchcode => $pickup_branchcode} );
1291 my $on_shelf_holds = Koha::CirculationRules->get_onshelfholds_policy( { item => $item, patron => $patron } );
1293 if ( $on_shelf_holds == 1 ) {
1294 return 1;
1295 } elsif ( $on_shelf_holds == 2 ) {
1297 # if we have this param predefined from outer caller sub, we just need
1298 # to return it, so we saving from having loop inside other loop:
1299 return $items_any_available ? 0 : 1
1300 if defined $items_any_available;
1302 my $any_available = ItemsAnyAvailableForHold( { biblionumber => $item->biblionumber, patron => $patron });
1303 return $any_available ? 0 : 1;
1304 } else { # on_shelf_holds == 0 "If any unavailable" (the description is rather cryptic and could still be improved)
1305 return $item->onloan || IsItemOnHoldAndFound( $item->itemnumber );
1309 =head2 ItemsAnyAvailableForHold
1311 ItemsAnyAvailableForHold( { biblionumber => $biblionumber, patron => $patron });
1313 This function checks all items for specified biblionumber (num) / patron (object)
1314 and returns true (1) or false (0) depending if any of rules allows at least of
1315 one item to be available for hold including lots of parameters/logic
1317 =cut
1319 sub ItemsAnyAvailableForHold {
1320 my $param = shift;
1322 my @items = Koha::Items->search( { biblionumber => $param->{biblionumber} } );
1324 my $any_available = 0;
1326 foreach my $i (@items) {
1327 my $reserves_control_branch =
1328 GetReservesControlBranch( $i->unblessed(), $param->{patron}->unblessed );
1329 my $branchitemrule =
1330 C4::Circulation::GetBranchItemRule( $reserves_control_branch, $i->itype );
1331 my $item_library = Koha::Libraries->find( { branchcode => $i->homebranch } );
1333 $any_available = 1
1334 unless $i->itemlost
1335 || $i->notforloan > 0
1336 || $i->withdrawn
1337 || $i->onloan
1338 || IsItemOnHoldAndFound( $i->id )
1339 || ( $i->damaged
1340 && ! C4::Context->preference('AllowHoldsOnDamagedItems') )
1341 || Koha::ItemTypes->find( $i->effective_itemtype() )->notforloan
1342 || $branchitemrule->{holdallowed} == 1 && $param->{patron}->branchcode ne $i->homebranch
1343 || $branchitemrule->{holdallowed} == 3 && ! $item_library->validate_hold_sibling( { branchcode => $param->{patron}->branchcode } );
1346 return $any_available;
1349 =head2 AlterPriority
1351 AlterPriority( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority );
1353 This function changes a reserve's priority up, down, to the top, or to the bottom.
1354 Input: $where is 'up', 'down', 'top' or 'bottom'. Biblionumber, Date reserve was placed
1356 =cut
1358 sub AlterPriority {
1359 my ( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority ) = @_;
1361 my $hold = Koha::Holds->find( $reserve_id );
1362 return unless $hold;
1364 if ( $hold->cancellationdate ) {
1365 warn "I cannot alter the priority for reserve_id $reserve_id, the reserve has been cancelled (" . $hold->cancellationdate . ')';
1366 return;
1369 if ( $where eq 'up' ) {
1370 return unless $prev_priority;
1371 _FixPriority({ reserve_id => $reserve_id, rank => $prev_priority })
1372 } elsif ( $where eq 'down' ) {
1373 return unless $next_priority;
1374 _FixPriority({ reserve_id => $reserve_id, rank => $next_priority })
1375 } elsif ( $where eq 'top' ) {
1376 _FixPriority({ reserve_id => $reserve_id, rank => $first_priority })
1377 } elsif ( $where eq 'bottom' ) {
1378 _FixPriority({ reserve_id => $reserve_id, rank => $last_priority });
1381 # FIXME Should return the new priority
1384 =head2 ToggleLowestPriority
1386 ToggleLowestPriority( $borrowernumber, $biblionumber );
1388 This function sets the lowestPriority field to true if is false, and false if it is true.
1390 =cut
1392 sub ToggleLowestPriority {
1393 my ( $reserve_id ) = @_;
1395 my $dbh = C4::Context->dbh;
1397 my $sth = $dbh->prepare( "UPDATE reserves SET lowestPriority = NOT lowestPriority WHERE reserve_id = ?");
1398 $sth->execute( $reserve_id );
1400 _FixPriority({ reserve_id => $reserve_id, rank => '999999' });
1403 =head2 ToggleSuspend
1405 ToggleSuspend( $reserve_id );
1407 This function sets the suspend field to true if is false, and false if it is true.
1408 If the reserve is currently suspended with a suspend_until date, that date will
1409 be cleared when it is unsuspended.
1411 =cut
1413 sub ToggleSuspend {
1414 my ( $reserve_id, $suspend_until ) = @_;
1416 $suspend_until = dt_from_string($suspend_until) if ($suspend_until);
1418 my $hold = Koha::Holds->find( $reserve_id );
1420 if ( $hold->is_suspended ) {
1421 $hold->resume()
1422 } else {
1423 $hold->suspend_hold( $suspend_until );
1427 =head2 SuspendAll
1429 SuspendAll(
1430 borrowernumber => $borrowernumber,
1431 [ biblionumber => $biblionumber, ]
1432 [ suspend_until => $suspend_until, ]
1433 [ suspend => $suspend ]
1436 This function accepts a set of hash keys as its parameters.
1437 It requires either borrowernumber or biblionumber, or both.
1439 suspend_until is wholly optional.
1441 =cut
1443 sub SuspendAll {
1444 my %params = @_;
1446 my $borrowernumber = $params{'borrowernumber'} || undef;
1447 my $biblionumber = $params{'biblionumber'} || undef;
1448 my $suspend_until = $params{'suspend_until'} || undef;
1449 my $suspend = defined( $params{'suspend'} ) ? $params{'suspend'} : 1;
1451 $suspend_until = eval { dt_from_string($suspend_until) }
1452 if ( defined($suspend_until) );
1454 return unless ( $borrowernumber || $biblionumber );
1456 my $params;
1457 $params->{found} = undef;
1458 $params->{borrowernumber} = $borrowernumber if $borrowernumber;
1459 $params->{biblionumber} = $biblionumber if $biblionumber;
1461 my @holds = Koha::Holds->search($params);
1463 if ($suspend) {
1464 map { $_->suspend_hold($suspend_until) } @holds;
1466 else {
1467 map { $_->resume() } @holds;
1472 =head2 _FixPriority
1474 _FixPriority({
1475 reserve_id => $reserve_id,
1476 [rank => $rank,]
1477 [ignoreSetLowestRank => $ignoreSetLowestRank]
1482 _FixPriority({ biblionumber => $biblionumber});
1484 This routine adjusts the priority of a hold request and holds
1485 on the same bib.
1487 In the first form, where a reserve_id is passed, the priority of the
1488 hold is set to supplied rank, and other holds for that bib are adjusted
1489 accordingly. If the rank is "del", the hold is cancelled. If no rank
1490 is supplied, all of the holds on that bib have their priority adjusted
1491 as if the second form had been used.
1493 In the second form, where a biblionumber is passed, the holds on that
1494 bib (that are not captured) are sorted in order of increasing priority,
1495 then have reserves.priority set so that the first non-captured hold
1496 has its priority set to 1, the second non-captured hold has its priority
1497 set to 2, and so forth.
1499 In both cases, holds that have the lowestPriority flag on are have their
1500 priority adjusted to ensure that they remain at the end of the line.
1502 Note that the ignoreSetLowestRank parameter is meant to be used only
1503 when _FixPriority calls itself.
1505 =cut
1507 sub _FixPriority {
1508 my ( $params ) = @_;
1509 my $reserve_id = $params->{reserve_id};
1510 my $rank = $params->{rank} // '';
1511 my $ignoreSetLowestRank = $params->{ignoreSetLowestRank};
1512 my $biblionumber = $params->{biblionumber};
1514 my $dbh = C4::Context->dbh;
1516 my $hold;
1517 if ( $reserve_id ) {
1518 $hold = Koha::Holds->find( $reserve_id );
1519 if (!defined $hold){
1520 # may have already been checked out and hold fulfilled
1521 $hold = Koha::Old::Holds->find( $reserve_id );
1523 return unless $hold;
1526 unless ( $biblionumber ) { # FIXME This is a very weird API
1527 $biblionumber = $hold->biblionumber;
1530 if ( $rank eq "del" ) { # FIXME will crash if called without $hold
1531 $hold->cancel;
1533 elsif ( $reserve_id && ( $rank eq "W" || $rank eq "0" ) ) {
1535 # make sure priority for waiting or in-transit items is 0
1536 my $query = "
1537 UPDATE reserves
1538 SET priority = 0
1539 WHERE reserve_id = ?
1540 AND found IN ('W', 'T')
1542 my $sth = $dbh->prepare($query);
1543 $sth->execute( $reserve_id );
1545 my @priority;
1547 # get whats left
1548 my $query = "
1549 SELECT reserve_id, borrowernumber, reservedate
1550 FROM reserves
1551 WHERE biblionumber = ?
1552 AND ((found <> 'W' AND found <> 'T') OR found IS NULL)
1553 ORDER BY priority ASC
1555 my $sth = $dbh->prepare($query);
1556 $sth->execute( $biblionumber );
1557 while ( my $line = $sth->fetchrow_hashref ) {
1558 push( @priority, $line );
1561 # FIXME This whole sub must be rewritten, especially to highlight what is done when reserve_id is not given
1562 # To find the matching index
1563 my $i;
1564 my $key = -1; # to allow for 0 to be a valid result
1565 for ( $i = 0 ; $i < @priority ; $i++ ) {
1566 if ( $reserve_id && $reserve_id == $priority[$i]->{'reserve_id'} ) {
1567 $key = $i; # save the index
1568 last;
1572 # if index exists in array then move it to new position
1573 if ( $key > -1 && $rank ne 'del' && $rank > 0 ) {
1574 my $new_rank = $rank -
1575 1; # $new_rank is what you want the new index to be in the array
1576 my $moving_item = splice( @priority, $key, 1 );
1577 splice( @priority, $new_rank, 0, $moving_item );
1580 # now fix the priority on those that are left....
1581 $query = "
1582 UPDATE reserves
1583 SET priority = ?
1584 WHERE reserve_id = ?
1586 $sth = $dbh->prepare($query);
1587 for ( my $j = 0 ; $j < @priority ; $j++ ) {
1588 $sth->execute(
1589 $j + 1,
1590 $priority[$j]->{'reserve_id'}
1594 $sth = $dbh->prepare( "SELECT reserve_id FROM reserves WHERE lowestPriority = 1 ORDER BY priority" );
1595 $sth->execute();
1597 unless ( $ignoreSetLowestRank ) {
1598 while ( my $res = $sth->fetchrow_hashref() ) {
1599 _FixPriority({
1600 reserve_id => $res->{'reserve_id'},
1601 rank => '999999',
1602 ignoreSetLowestRank => 1
1608 =head2 _Findgroupreserve
1610 @results = &_Findgroupreserve($biblioitemnumber, $biblionumber, $itemnumber, $lookahead, $ignore_borrowers);
1612 Looks for a holds-queue based item-specific match first, then for a holds-queue title-level match, returning the
1613 first match found. If neither, then we look for non-holds-queue based holds.
1614 Lookahead is the number of days to look in advance.
1616 C<&_Findgroupreserve> returns :
1617 C<@results> is an array of references-to-hash whose keys are mostly
1618 fields from the reserves table of the Koha database, plus
1619 C<biblioitemnumber>.
1621 This routine with either return:
1622 1 - Item specific holds from the holds queue
1623 2 - Title level holds from the holds queue
1624 3 - All holds for this biblionumber
1626 All return values will respect any borrowernumbers passed as arrayref in $ignore_borrowers
1628 =cut
1630 sub _Findgroupreserve {
1631 my ( $bibitem, $biblio, $itemnumber, $lookahead, $ignore_borrowers) = @_;
1632 my $dbh = C4::Context->dbh;
1634 # TODO: consolidate at least the SELECT portion of the first 2 queries to a common $select var.
1635 # check for exact targeted match
1636 my $item_level_target_query = qq{
1637 SELECT reserves.biblionumber AS biblionumber,
1638 reserves.borrowernumber AS borrowernumber,
1639 reserves.reservedate AS reservedate,
1640 reserves.branchcode AS branchcode,
1641 reserves.cancellationdate AS cancellationdate,
1642 reserves.found AS found,
1643 reserves.reservenotes AS reservenotes,
1644 reserves.priority AS priority,
1645 reserves.timestamp AS timestamp,
1646 biblioitems.biblioitemnumber AS biblioitemnumber,
1647 reserves.itemnumber AS itemnumber,
1648 reserves.reserve_id AS reserve_id,
1649 reserves.itemtype AS itemtype
1650 FROM reserves
1651 JOIN biblioitems USING (biblionumber)
1652 JOIN hold_fill_targets USING (biblionumber, borrowernumber, itemnumber)
1653 WHERE found IS NULL
1654 AND priority > 0
1655 AND item_level_request = 1
1656 AND itemnumber = ?
1657 AND reservedate <= DATE_ADD(NOW(),INTERVAL ? DAY)
1658 AND suspend = 0
1659 ORDER BY priority
1661 my $sth = $dbh->prepare($item_level_target_query);
1662 $sth->execute($itemnumber, $lookahead||0);
1663 my @results;
1664 if ( my $data = $sth->fetchrow_hashref ) {
1665 push( @results, $data )
1666 unless any{ $data->{borrowernumber} eq $_ } @$ignore_borrowers ;
1668 return @results if @results;
1670 # check for title-level targeted match
1671 my $title_level_target_query = qq{
1672 SELECT reserves.biblionumber AS biblionumber,
1673 reserves.borrowernumber AS borrowernumber,
1674 reserves.reservedate AS reservedate,
1675 reserves.branchcode AS branchcode,
1676 reserves.cancellationdate AS cancellationdate,
1677 reserves.found AS found,
1678 reserves.reservenotes AS reservenotes,
1679 reserves.priority AS priority,
1680 reserves.timestamp AS timestamp,
1681 biblioitems.biblioitemnumber AS biblioitemnumber,
1682 reserves.itemnumber AS itemnumber,
1683 reserves.reserve_id AS reserve_id,
1684 reserves.itemtype AS itemtype
1685 FROM reserves
1686 JOIN biblioitems USING (biblionumber)
1687 JOIN hold_fill_targets USING (biblionumber, borrowernumber)
1688 WHERE found IS NULL
1689 AND priority > 0
1690 AND item_level_request = 0
1691 AND hold_fill_targets.itemnumber = ?
1692 AND reservedate <= DATE_ADD(NOW(),INTERVAL ? DAY)
1693 AND suspend = 0
1694 ORDER BY priority
1696 $sth = $dbh->prepare($title_level_target_query);
1697 $sth->execute($itemnumber, $lookahead||0);
1698 @results = ();
1699 if ( my $data = $sth->fetchrow_hashref ) {
1700 push( @results, $data )
1701 unless any{ $data->{borrowernumber} eq $_ } @$ignore_borrowers ;
1703 return @results if @results;
1705 my $query = qq{
1706 SELECT reserves.biblionumber AS biblionumber,
1707 reserves.borrowernumber AS borrowernumber,
1708 reserves.reservedate AS reservedate,
1709 reserves.waitingdate AS waitingdate,
1710 reserves.branchcode AS branchcode,
1711 reserves.cancellationdate AS cancellationdate,
1712 reserves.found AS found,
1713 reserves.reservenotes AS reservenotes,
1714 reserves.priority AS priority,
1715 reserves.timestamp AS timestamp,
1716 reserves.itemnumber AS itemnumber,
1717 reserves.reserve_id AS reserve_id,
1718 reserves.itemtype AS itemtype
1719 FROM reserves
1720 WHERE reserves.biblionumber = ?
1721 AND (reserves.itemnumber IS NULL OR reserves.itemnumber = ?)
1722 AND reserves.reservedate <= DATE_ADD(NOW(),INTERVAL ? DAY)
1723 AND suspend = 0
1724 ORDER BY priority
1726 $sth = $dbh->prepare($query);
1727 $sth->execute( $biblio, $itemnumber, $lookahead||0);
1728 @results = ();
1729 while ( my $data = $sth->fetchrow_hashref ) {
1730 push( @results, $data )
1731 unless any{ $data->{borrowernumber} eq $_ } @$ignore_borrowers ;
1733 return @results;
1736 =head2 _koha_notify_reserve
1738 _koha_notify_reserve( $hold->reserve_id );
1740 Sends a notification to the patron that their hold has been filled (through
1741 ModReserveAffect, _not_ ModReserveFill)
1743 The letter code for this notice may be found using the following query:
1745 select distinct letter_code
1746 from message_transports
1747 inner join message_attributes using (message_attribute_id)
1748 where message_name = 'Hold_Filled'
1750 This will probably sipmly be 'HOLD', but because it is defined in the database,
1751 it is subject to addition or change.
1753 The following tables are availalbe witin the notice:
1755 branches
1756 borrowers
1757 biblio
1758 biblioitems
1759 reserves
1760 items
1762 =cut
1764 sub _koha_notify_reserve {
1765 my $reserve_id = shift;
1766 my $hold = Koha::Holds->find($reserve_id);
1767 my $borrowernumber = $hold->borrowernumber;
1769 my $patron = Koha::Patrons->find( $borrowernumber );
1771 # Try to get the borrower's email address
1772 my $to_address = $patron->notice_email_address;
1774 my $messagingprefs = C4::Members::Messaging::GetMessagingPreferences( {
1775 borrowernumber => $borrowernumber,
1776 message_name => 'Hold_Filled'
1777 } );
1779 my $library = Koha::Libraries->find( $hold->branchcode )->unblessed;
1781 my $admin_email_address = $library->{branchemail} || C4::Context->preference('KohaAdminEmailAddress');
1783 my %letter_params = (
1784 module => 'reserves',
1785 branchcode => $hold->branchcode,
1786 lang => $patron->lang,
1787 tables => {
1788 'branches' => $library,
1789 'borrowers' => $patron->unblessed,
1790 'biblio' => $hold->biblionumber,
1791 'biblioitems' => $hold->biblionumber,
1792 'reserves' => $hold->unblessed,
1793 'items' => $hold->itemnumber,
1797 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.
1798 my $send_notification = sub {
1799 my ( $mtt, $letter_code ) = (@_);
1800 return unless defined $letter_code;
1801 $letter_params{letter_code} = $letter_code;
1802 $letter_params{message_transport_type} = $mtt;
1803 my $letter = C4::Letters::GetPreparedLetter ( %letter_params );
1804 unless ($letter) {
1805 warn "Could not find a letter called '$letter_params{'letter_code'}' for $mtt in the 'reserves' module";
1806 return;
1809 C4::Letters::EnqueueLetter( {
1810 letter => $letter,
1811 borrowernumber => $borrowernumber,
1812 from_address => $admin_email_address,
1813 message_transport_type => $mtt,
1814 } );
1817 while ( my ( $mtt, $letter_code ) = each %{ $messagingprefs->{transports} } ) {
1818 next if (
1819 ( $mtt eq 'email' and not $to_address ) # No email address
1820 or ( $mtt eq 'sms' and not $patron->smsalertnumber ) # No SMS number
1821 or ( $mtt eq 'phone' and C4::Context->preference('TalkingTechItivaPhoneNotification') ) # Notice is handled by TalkingTech_itiva_outbound.pl
1824 &$send_notification($mtt, $letter_code);
1825 $notification_sent++;
1827 #Making sure that a print notification is sent if no other transport types can be utilized.
1828 if (! $notification_sent) {
1829 &$send_notification('print', 'HOLD');
1834 =head2 _ShiftPriorityByDateAndPriority
1836 $new_priority = _ShiftPriorityByDateAndPriority( $biblionumber, $reservedate, $priority );
1838 This increments the priority of all reserves after the one
1839 with either the lowest date after C<$reservedate>
1840 or the lowest priority after C<$priority>.
1842 It effectively makes room for a new reserve to be inserted with a certain
1843 priority, which is returned.
1845 This is most useful when the reservedate can be set by the user. It allows
1846 the new reserve to be placed before other reserves that have a later
1847 reservedate. Since priority also is set by the form in reserves/request.pl
1848 the sub accounts for that too.
1850 =cut
1852 sub _ShiftPriorityByDateAndPriority {
1853 my ( $biblio, $resdate, $new_priority ) = @_;
1855 my $dbh = C4::Context->dbh;
1856 my $query = "SELECT priority FROM reserves WHERE biblionumber = ? AND ( reservedate > ? OR priority > ? ) ORDER BY priority ASC LIMIT 1";
1857 my $sth = $dbh->prepare( $query );
1858 $sth->execute( $biblio, $resdate, $new_priority );
1859 my $min_priority = $sth->fetchrow;
1860 # if no such matches are found, $new_priority remains as original value
1861 $new_priority = $min_priority if ( $min_priority );
1863 # Shift the priority up by one; works in conjunction with the next SQL statement
1864 $query = "UPDATE reserves
1865 SET priority = priority+1
1866 WHERE biblionumber = ?
1867 AND borrowernumber = ?
1868 AND reservedate = ?
1869 AND found IS NULL";
1870 my $sth_update = $dbh->prepare( $query );
1872 # Select all reserves for the biblio with priority greater than $new_priority, and order greatest to least
1873 $query = "SELECT borrowernumber, reservedate FROM reserves WHERE priority >= ? AND biblionumber = ? ORDER BY priority DESC";
1874 $sth = $dbh->prepare( $query );
1875 $sth->execute( $new_priority, $biblio );
1876 while ( my $row = $sth->fetchrow_hashref ) {
1877 $sth_update->execute( $biblio, $row->{borrowernumber}, $row->{reservedate} );
1880 return $new_priority; # so the caller knows what priority they wind up receiving
1883 =head2 MoveReserve
1885 MoveReserve( $itemnumber, $borrowernumber, $cancelreserve )
1887 Use when checking out an item to handle reserves
1888 If $cancelreserve boolean is set to true, it will remove existing reserve
1890 =cut
1892 sub MoveReserve {
1893 my ( $itemnumber, $borrowernumber, $cancelreserve ) = @_;
1895 $cancelreserve //= 0;
1897 my $lookahead = C4::Context->preference('ConfirmFutureHolds'); #number of days to look for future holds
1898 my ( $restype, $res, undef ) = CheckReserves( $itemnumber, undef, $lookahead );
1899 return unless $res;
1901 my $biblionumber = $res->{biblionumber};
1903 if ($res->{borrowernumber} == $borrowernumber) {
1904 ModReserveFill($res);
1906 else {
1907 # warn "Reserved";
1908 # The item is reserved by someone else.
1909 # Find this item in the reserves
1911 my $borr_res = Koha::Holds->search({
1912 borrowernumber => $borrowernumber,
1913 biblionumber => $biblionumber,
1915 order_by => 'priority'
1916 })->next();
1918 if ( $borr_res ) {
1919 # The item is reserved by the current patron
1920 ModReserveFill($borr_res->unblessed);
1923 if ( $cancelreserve eq 'revert' ) { ## Revert waiting reserve to priority 1
1924 RevertWaitingStatus({ itemnumber => $itemnumber });
1926 elsif ( $cancelreserve eq 'cancel' || $cancelreserve ) { # cancel reserves on this item
1927 my $hold = Koha::Holds->find( $res->{reserve_id} );
1928 $hold->cancel;
1933 =head2 MergeHolds
1935 MergeHolds($dbh,$to_biblio, $from_biblio);
1937 This shifts the holds from C<$from_biblio> to C<$to_biblio> and reorders them by the date they were placed
1939 =cut
1941 sub MergeHolds {
1942 my ( $dbh, $to_biblio, $from_biblio ) = @_;
1943 my $sth = $dbh->prepare(
1944 "SELECT count(*) as reserve_count FROM reserves WHERE biblionumber = ?"
1946 $sth->execute($from_biblio);
1947 if ( my $data = $sth->fetchrow_hashref() ) {
1949 # holds exist on old record, if not we don't need to do anything
1950 $sth = $dbh->prepare(
1951 "UPDATE reserves SET biblionumber = ? WHERE biblionumber = ?");
1952 $sth->execute( $to_biblio, $from_biblio );
1954 # Reorder by date
1955 # don't reorder those already waiting
1957 $sth = $dbh->prepare(
1958 "SELECT * FROM reserves WHERE biblionumber = ? AND (found <> ? AND found <> ? OR found is NULL) ORDER BY reservedate ASC"
1960 my $upd_sth = $dbh->prepare(
1961 "UPDATE reserves SET priority = ? WHERE biblionumber = ? AND borrowernumber = ?
1962 AND reservedate = ? AND (itemnumber = ? or itemnumber is NULL) "
1964 $sth->execute( $to_biblio, 'W', 'T' );
1965 my $priority = 1;
1966 while ( my $reserve = $sth->fetchrow_hashref() ) {
1967 $upd_sth->execute(
1968 $priority, $to_biblio,
1969 $reserve->{'borrowernumber'}, $reserve->{'reservedate'},
1970 $reserve->{'itemnumber'}
1972 $priority++;
1977 =head2 RevertWaitingStatus
1979 RevertWaitingStatus({ itemnumber => $itemnumber });
1981 Reverts a 'waiting' hold back to a regular hold with a priority of 1.
1983 Caveat: Any waiting hold fixed with RevertWaitingStatus will be an
1984 item level hold, even if it was only a bibliolevel hold to
1985 begin with. This is because we can no longer know if a hold
1986 was item-level or bib-level after a hold has been set to
1987 waiting status.
1989 =cut
1991 sub RevertWaitingStatus {
1992 my ( $params ) = @_;
1993 my $itemnumber = $params->{'itemnumber'};
1995 return unless ( $itemnumber );
1997 my $dbh = C4::Context->dbh;
1999 ## Get the waiting reserve we want to revert
2000 my $query = "
2001 SELECT * FROM reserves
2002 WHERE itemnumber = ?
2003 AND found IS NOT NULL
2005 my $sth = $dbh->prepare( $query );
2006 $sth->execute( $itemnumber );
2007 my $reserve = $sth->fetchrow_hashref();
2009 my $hold = Koha::Holds->find( $reserve->{reserve_id} ); # TODO Remove the next raw SQL statements and use this instead
2011 ## Increment the priority of all other non-waiting
2012 ## reserves for this bib record
2013 $query = "
2014 UPDATE reserves
2016 priority = priority + 1
2017 WHERE
2018 biblionumber = ?
2020 priority > 0
2022 $sth = $dbh->prepare( $query );
2023 $sth->execute( $reserve->{'biblionumber'} );
2025 $hold->set(
2027 priority => 1,
2028 found => undef,
2029 waitingdate => undef,
2030 itemnumber => $hold->item_level_hold ? $hold->itemnumber : undef,
2032 )->store();
2034 _FixPriority( { biblionumber => $reserve->{biblionumber} } );
2036 return $hold;
2039 =head2 ReserveSlip
2041 ReserveSlip(
2043 branchcode => $branchcode,
2044 borrowernumber => $borrowernumber,
2045 biblionumber => $biblionumber,
2046 [ itemnumber => $itemnumber, ]
2047 [ barcode => $barcode, ]
2051 Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
2053 The letter code will be HOLD_SLIP, and the following tables are
2054 available within the slip:
2056 reserves
2057 branches
2058 borrowers
2059 biblio
2060 biblioitems
2061 items
2063 =cut
2065 sub ReserveSlip {
2066 my ($args) = @_;
2067 my $branchcode = $args->{branchcode};
2068 my $reserve_id = $args->{reserve_id};
2070 my $hold = Koha::Holds->find($reserve_id);
2071 return unless $hold;
2073 my $patron = $hold->borrower;
2074 my $reserve = $hold->unblessed;
2076 return C4::Letters::GetPreparedLetter (
2077 module => 'circulation',
2078 letter_code => 'HOLD_SLIP',
2079 branchcode => $branchcode,
2080 lang => $patron->lang,
2081 tables => {
2082 'reserves' => $reserve,
2083 'branches' => $reserve->{branchcode},
2084 'borrowers' => $reserve->{borrowernumber},
2085 'biblio' => $reserve->{biblionumber},
2086 'biblioitems' => $reserve->{biblionumber},
2087 'items' => $reserve->{itemnumber},
2092 =head2 GetReservesControlBranch
2094 my $reserves_control_branch = GetReservesControlBranch($item, $borrower);
2096 Return the branchcode to be used to determine which reserves
2097 policy applies to a transaction.
2099 C<$item> is a hashref for an item. Only 'homebranch' is used.
2101 C<$borrower> is a hashref to borrower. Only 'branchcode' is used.
2103 =cut
2105 sub GetReservesControlBranch {
2106 my ( $item, $borrower ) = @_;
2108 my $reserves_control = C4::Context->preference('ReservesControlBranch');
2110 my $branchcode =
2111 ( $reserves_control eq 'ItemHomeLibrary' ) ? $item->{'homebranch'}
2112 : ( $reserves_control eq 'PatronLibrary' ) ? $borrower->{'branchcode'}
2113 : undef;
2115 return $branchcode;
2118 =head2 CalculatePriority
2120 my $p = CalculatePriority($biblionumber, $resdate);
2122 Calculate priority for a new reserve on biblionumber, placing it at
2123 the end of the line of all holds whose start date falls before
2124 the current system time and that are neither on the hold shelf
2125 or in transit.
2127 The reserve date parameter is optional; if it is supplied, the
2128 priority is based on the set of holds whose start date falls before
2129 the parameter value.
2131 After calculation of this priority, it is recommended to call
2132 _ShiftPriorityByDateAndPriority. Note that this is currently done in
2133 AddReserves.
2135 =cut
2137 sub CalculatePriority {
2138 my ( $biblionumber, $resdate ) = @_;
2140 my $sql = q{
2141 SELECT COUNT(*) FROM reserves
2142 WHERE biblionumber = ?
2143 AND priority > 0
2144 AND (found IS NULL OR found = '')
2146 #skip found==W or found==T (waiting or transit holds)
2147 if( $resdate ) {
2148 $sql.= ' AND ( reservedate <= ? )';
2150 else {
2151 $sql.= ' AND ( reservedate < NOW() )';
2153 my $dbh = C4::Context->dbh();
2154 my @row = $dbh->selectrow_array(
2155 $sql,
2156 undef,
2157 $resdate ? ($biblionumber, $resdate) : ($biblionumber)
2160 return @row ? $row[0]+1 : 1;
2163 =head2 IsItemOnHoldAndFound
2165 my $bool = IsItemFoundHold( $itemnumber );
2167 Returns true if the item is currently on hold
2168 and that hold has a non-null found status ( W, T, etc. )
2170 =cut
2172 sub IsItemOnHoldAndFound {
2173 my ($itemnumber) = @_;
2175 my $rs = Koha::Database->new()->schema()->resultset('Reserve');
2177 my $found = $rs->count(
2179 itemnumber => $itemnumber,
2180 found => { '!=' => undef }
2184 return $found;
2187 =head2 GetMaxPatronHoldsForRecord
2189 my $holds_per_record = ReservesControlBranch( $borrowernumber, $biblionumber );
2191 For multiple holds on a given record for a given patron, the max
2192 number of record level holds that a patron can be placed is the highest
2193 value of the holds_per_record rule for each item if the record for that
2194 patron. This subroutine finds and returns the highest holds_per_record
2195 rule value for a given patron id and record id.
2197 =cut
2199 sub GetMaxPatronHoldsForRecord {
2200 my ( $borrowernumber, $biblionumber ) = @_;
2202 my $patron = Koha::Patrons->find($borrowernumber);
2203 my @items = Koha::Items->search( { biblionumber => $biblionumber } );
2205 my $controlbranch = C4::Context->preference('ReservesControlBranch');
2207 my $categorycode = $patron->categorycode;
2208 my $branchcode;
2209 $branchcode = $patron->branchcode if ( $controlbranch eq "PatronLibrary" );
2211 my $max = 0;
2212 foreach my $item (@items) {
2213 my $itemtype = $item->effective_itemtype();
2215 $branchcode = $item->homebranch if ( $controlbranch eq "ItemHomeLibrary" );
2217 my $rule = GetHoldRule( $categorycode, $itemtype, $branchcode );
2218 my $holds_per_record = $rule ? $rule->{holds_per_record} : 0;
2219 $max = $holds_per_record if $holds_per_record > $max;
2222 return $max;
2225 =head2 GetHoldRule
2227 my $rule = GetHoldRule( $categorycode, $itemtype, $branchcode );
2229 Returns the matching hold related issuingrule fields for a given
2230 patron category, itemtype, and library.
2232 =cut
2234 sub GetHoldRule {
2235 my ( $categorycode, $itemtype, $branchcode ) = @_;
2237 my $reservesallowed = Koha::CirculationRules->get_effective_rule(
2239 itemtype => $itemtype,
2240 categorycode => $categorycode,
2241 branchcode => $branchcode,
2242 rule_name => 'reservesallowed',
2243 order_by => {
2244 -desc => [ 'categorycode', 'itemtype', 'branchcode' ]
2249 my $rules;
2250 if ( $reservesallowed ) {
2251 $rules->{reservesallowed} = $reservesallowed->rule_value;
2252 $rules->{itemtype} = $reservesallowed->itemtype;
2253 $rules->{categorycode} = $reservesallowed->categorycode;
2254 $rules->{branchcode} = $reservesallowed->branchcode;
2257 my $holds_per_x_rules = Koha::CirculationRules->get_effective_rules(
2259 itemtype => $itemtype,
2260 categorycode => $categorycode,
2261 branchcode => $branchcode,
2262 rules => ['holds_per_record', 'holds_per_day'],
2263 order_by => {
2264 -desc => [ 'categorycode', 'itemtype', 'branchcode' ]
2268 $rules->{holds_per_record} = $holds_per_x_rules->{holds_per_record};
2269 $rules->{holds_per_day} = $holds_per_x_rules->{holds_per_day};
2271 return $rules;
2274 =head1 AUTHOR
2276 Koha Development Team <http://koha-community.org/>
2278 =cut