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
;
52 use List
::MoreUtils
qw( firstidx any );
54 use vars
qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
58 C4::Reserves - Koha functions for dealing with reservation.
66 This modules provides somes functions to deal with reservations.
68 Reserves are stored in reserves table.
69 The following columns contains important values :
70 - priority >0 : then the reserve is at 1st stage, and not yet affected to any item.
71 =0 : then the reserve is being dealed
72 - found : NULL : means the patron requested the 1st available, and we haven't chosen the item
73 T(ransit) : the reserve is linked to an item but is in transit to the pickup branch
74 W(aiting) : the reserve is linked to an item, is at the pickup branch, and is waiting on the hold shelf
75 F(inished) : the reserve has been completed, and is done
76 - itemnumber : empty : the reserve is still unaffected to an item
77 filled: the reserve is attached to an item
78 The complete workflow is :
79 ==== 1st use case ====
80 patron request a document, 1st available : P >0, F=NULL, I=NULL
81 a library having it run "transfertodo", and clic on the list
82 if there is no transfer to do, the reserve waiting
83 patron can pick it up P =0, F=W, I=filled
84 if there is a transfer to do, write in branchtransfer P =0, F=T, I=filled
85 The pickup library receive the book, it check in P =0, F=W, I=filled
86 The patron borrow the book P =0, F=F, I=filled
88 ==== 2nd use case ====
89 patron requests a document, a given item,
90 If pickup is holding branch P =0, F=W, I=filled
91 If transfer needed, write in branchtransfer P =0, F=T, I=filled
92 The pickup library receive the book, it checks it in P =0, F=W, I=filled
93 The patron borrow the book P =0, F=F, I=filled
114 &ModReserveMinusPriority
120 &CanReserveBeCanceledFromOpac
121 &CancelExpiredReserves
123 &AutoUnsuspendReserves
125 &IsAvailableForItemLevelRequest
126 ItemsAnyAvailableForHold
129 &ToggleLowestPriority
135 &GetReservesControlBranch
139 GetMaxPatronHoldsForRecord
141 @EXPORT_OK = qw( MergeHolds );
148 branchcode => $branchcode,
149 borrowernumber => $borrowernumber,
150 biblionumber => $biblionumber,
151 priority => $priority,
152 reservation_date => $reservation_date,
153 expiration_date => $expiration_date,
156 itemnumber => $itemnumber,
158 itemtype => $itemtype,
162 Adds reserve and generates HOLDPLACED message.
164 The following tables are available witin the HOLDPLACED message:
177 my $branch = $params->{branchcode
};
178 my $borrowernumber = $params->{borrowernumber
};
179 my $biblionumber = $params->{biblionumber
};
180 my $priority = $params->{priority
};
181 my $resdate = $params->{reservation_date
};
182 my $expdate = $params->{expiration_date
};
183 my $notes = $params->{notes
};
184 my $title = $params->{title
};
185 my $checkitem = $params->{itemnumber
};
186 my $found = $params->{found
};
187 my $itemtype = $params->{itemtype
};
189 $resdate = output_pref
( { str
=> dt_from_string
( $resdate ), dateonly
=> 1, dateformat
=> 'iso' })
190 or output_pref
({ dt
=> dt_from_string
, dateonly
=> 1, dateformat
=> 'iso' });
192 $expdate = output_pref
({ str
=> $expdate, dateonly
=> 1, dateformat
=> 'iso' });
194 # if we have an item selectionned, and the pickup branch is the same as the holdingbranch
195 # of the document, we force the value $priority and $found .
196 if ( $checkitem and not C4
::Context
->preference('ReservesNeedReturns') ) {
197 my $item = Koha
::Items
->find( $checkitem ); # FIXME Prevent bad calls
200 # If item is already checked out, it cannot be set waiting
203 # The item can't be waiting if it needs a transfer
204 && $item->holdingbranch eq $branch
206 # Similarly, if in transit it can't be waiting
207 && !$item->get_transfer
209 # If we can't hold damaged items, and it is damaged, it can't be waiting
210 && ( $item->damaged && C4
::Context
->preference('AllowHoldsOnDamagedItems') || !$item->damaged )
212 # Lastly, if this already has holds, we shouldn't make it waiting for the new hold
213 && !$item->current_holds->count )
220 if ( C4
::Context
->preference('AllowHoldDateInFuture') ) {
222 # Make room in reserves for this before those of a later reserve date
223 $priority = _ShiftPriorityByDateAndPriority
( $biblionumber, $resdate, $priority );
228 # If the reserv had the waiting status, we had the value of the resdate
229 if ( $found && $found eq 'W' ) {
230 $waitingdate = $resdate;
233 # Don't add itemtype limit if specific item is selected
234 $itemtype = undef if $checkitem;
236 # updates take place here
237 my $hold = Koha
::Hold
->new(
239 borrowernumber
=> $borrowernumber,
240 biblionumber
=> $biblionumber,
241 reservedate
=> $resdate,
242 branchcode
=> $branch,
243 priority
=> $priority,
244 reservenotes
=> $notes,
245 itemnumber
=> $checkitem,
247 waitingdate
=> $waitingdate,
248 expirationdate
=> $expdate,
249 itemtype
=> $itemtype,
250 item_level_hold
=> $checkitem ?
1 : 0,
253 $hold->set_waiting() if $found && $found eq 'W';
255 logaction
( 'HOLDS', 'CREATE', $hold->id, Dumper
($hold->unblessed) )
256 if C4
::Context
->preference('HoldsLog');
258 my $reserve_id = $hold->id();
260 # add a reserve fee if needed
261 if ( C4
::Context
->preference('HoldFeeMode') ne 'any_time_is_collected' ) {
262 my $reserve_fee = GetReserveFee
( $borrowernumber, $biblionumber );
263 ChargeReserveFee
( $borrowernumber, $reserve_fee, $title );
266 _FixPriority
({ biblionumber
=> $biblionumber});
268 # Send e-mail to librarian if syspref is active
269 if(C4
::Context
->preference("emailLibrarianWhenHoldIsPlaced")){
270 my $patron = Koha
::Patrons
->find( $borrowernumber );
271 my $library = $patron->library;
272 if ( my $letter = C4
::Letters
::GetPreparedLetter
(
273 module
=> 'reserves',
274 letter_code
=> 'HOLDPLACED',
275 branchcode
=> $branch,
276 lang
=> $patron->lang,
278 'branches' => $library->unblessed,
279 'borrowers' => $patron->unblessed,
280 'biblio' => $biblionumber,
281 'biblioitems' => $biblionumber,
282 'items' => $checkitem,
283 'reserves' => $hold->unblessed,
287 my $branch_email_address = $library->inbound_email_address;
289 C4
::Letters
::EnqueueLetter
(
292 borrowernumber
=> $borrowernumber,
293 message_transport_type
=> 'email',
294 to_address
=> $branch_email_address,
300 Koha
::Plugins
->call('after_hold_create', $hold);
305 =head2 CanBookBeReserved
307 $canReserve = &CanBookBeReserved($borrowernumber, $biblionumber, $branchcode, $params)
308 if ($canReserve eq 'OK') { #We can reserve this Item! }
310 $params are passed directly through to CanItemBeReserved
312 See CanItemBeReserved() for possible return values.
316 sub CanBookBeReserved
{
317 my ($borrowernumber, $biblionumber, $pickup_branchcode, $params) = @_;
319 my @itemnumbers = Koha
::Items
->search({ biblionumber
=> $biblionumber})->get_column("itemnumber");
320 #get items linked via host records
321 my @hostitems = get_hostitemnumbers_of
($biblionumber);
323 push (@itemnumbers, @hostitems);
326 my $canReserve = { status
=> '' };
327 foreach my $itemnumber (@itemnumbers) {
328 $canReserve = CanItemBeReserved
( $borrowernumber, $itemnumber, $pickup_branchcode, $params );
329 return { status
=> 'OK' } if $canReserve->{status
} eq 'OK';
334 =head2 CanItemBeReserved
336 $canReserve = &CanItemBeReserved($borrowernumber, $itemnumber, $branchcode, $params)
337 if ($canReserve->{status} eq 'OK') { #We can reserve this Item! }
339 current params are 'ignore_found_holds' - if true holds that have been trapped are not counted
340 toward the patron limit, used by checkHighHolds to avoid counting the hold we will fill with the
341 current checkout against the high holds threshold
343 @RETURNS { status => OK }, if the Item can be reserved.
344 { status => ageRestricted }, if the Item is age restricted for this borrower.
345 { status => damaged }, if the Item is damaged.
346 { status => cannotReserveFromOtherBranches }, if syspref 'canreservefromotherbranches' is OK.
347 { status => branchNotInHoldGroup }, if borrower home library is not in hold group, and holds are only allowed from hold groups.
348 { status => tooManyReserves, limit => $limit }, if the borrower has exceeded their maximum reserve amount.
349 { status => notReservable }, if holds on this item are not allowed
350 { status => libraryNotFound }, if given branchcode is not an existing library
351 { status => libraryNotPickupLocation }, if given branchcode is not configured to be a pickup location
352 { status => cannotBeTransferred }, if branch transfer limit applies on given item and branchcode
353 { status => pickupNotInHoldGroup }, pickup location is not in hold group, and pickup locations are only allowed from hold groups.
357 sub CanItemBeReserved
{
358 my ( $borrowernumber, $itemnumber, $pickup_branchcode, $params ) = @_;
360 my $dbh = C4
::Context
->dbh;
361 my $ruleitemtype; # itemtype of the matching issuing rule
362 my $allowedreserves = 0; # Total number of holds allowed across all records
363 my $holds_per_record = 1; # Total number of holds allowed for this one given record
364 my $holds_per_day; # Default to unlimited
366 # we retrieve borrowers and items informations #
367 # item->{itype} will come for biblioitems if necessery
368 my $item = Koha
::Items
->find($itemnumber);
369 my $biblio = $item->biblio;
370 my $patron = Koha
::Patrons
->find( $borrowernumber );
371 my $borrower = $patron->unblessed;
373 # If an item is damaged and we don't allow holds on damaged items, we can stop right here
374 return { status
=>'damaged' }
376 && !C4
::Context
->preference('AllowHoldsOnDamagedItems') );
378 # Check for the age restriction
379 my ( $ageRestriction, $daysToAgeRestriction ) =
380 C4
::Circulation
::GetAgeRestriction
( $biblio->biblioitem->agerestriction, $borrower );
381 return { status
=> 'ageRestricted' } if $daysToAgeRestriction && $daysToAgeRestriction > 0;
383 # Check that the patron doesn't have an item level hold on this item already
384 return { status
=>'itemAlreadyOnHold' }
385 if Koha
::Holds
->search( { borrowernumber
=> $borrowernumber, itemnumber
=> $itemnumber } )->count();
387 my $controlbranch = C4
::Context
->preference('ReservesControlBranch');
390 SELECT count(*) AS count
392 LEFT JOIN items USING (itemnumber)
393 LEFT JOIN biblioitems ON (reserves.biblionumber=biblioitems.biblionumber)
394 LEFT JOIN borrowers USING (borrowernumber)
395 WHERE borrowernumber = ?
399 my $branchfield = "reserves.branchcode";
401 if ( $controlbranch eq "ItemHomeLibrary" ) {
402 $branchfield = "items.homebranch";
403 $branchcode = $item->homebranch;
405 elsif ( $controlbranch eq "PatronLibrary" ) {
406 $branchfield = "borrowers.branchcode";
407 $branchcode = $borrower->{branchcode
};
411 if ( my $rights = GetHoldRule
( $borrower->{'categorycode'}, $item->effective_itemtype, $branchcode ) ) {
412 $ruleitemtype = $rights->{itemtype
};
413 $allowedreserves = $rights->{reservesallowed
} // $allowedreserves;
414 $holds_per_record = $rights->{holds_per_record
} // $holds_per_record;
415 $holds_per_day = $rights->{holds_per_day
};
418 $ruleitemtype = undef;
421 my $search_params = {
422 borrowernumber
=> $borrowernumber,
423 biblionumber
=> $item->biblionumber,
425 $search_params->{found
} = undef if $params->{ignore_found_holds
};
427 my $holds = Koha
::Holds
->search($search_params);
428 if ( defined $holds_per_record && $holds_per_record ne ''
429 && $holds->count() >= $holds_per_record ) {
430 return { status
=> "tooManyHoldsForThisRecord", limit
=> $holds_per_record };
433 my $today_holds = Koha
::Holds
->search({
434 borrowernumber
=> $borrowernumber,
435 reservedate
=> dt_from_string
->date
438 if ( defined $holds_per_day && $holds_per_day ne ''
439 && $today_holds->count() >= $holds_per_day )
441 return { status
=> 'tooManyReservesToday', limit
=> $holds_per_day };
446 $querycount .= "AND ( $branchfield = ? OR $branchfield IS NULL )";
448 # If using item-level itypes, fall back to the record
449 # level itemtype if the hold has no associated item
451 C4
::Context
->preference('item-level_itypes')
452 ?
" AND COALESCE( items.itype, biblioitems.itemtype ) = ?"
453 : " AND biblioitems.itemtype = ?"
454 if defined $ruleitemtype;
456 my $sthcount = $dbh->prepare($querycount);
458 if ( defined $ruleitemtype ) {
459 $sthcount->execute( $borrowernumber, $branchcode, $ruleitemtype );
462 $sthcount->execute( $borrowernumber, $branchcode );
465 my $reservecount = "0";
466 if ( my $rowcount = $sthcount->fetchrow_hashref() ) {
467 $reservecount = $rowcount->{count
};
470 # we check if it's ok or not
471 if ( defined $allowedreserves && $allowedreserves ne ''
472 && $reservecount >= $allowedreserves ) {
473 return { status
=> 'tooManyReserves', limit
=> $allowedreserves };
476 # Now we need to check hold limits by patron category
477 my $rule = Koha
::CirculationRules
->get_effective_rule(
479 categorycode
=> $borrower->{categorycode
},
480 branchcode
=> $branchcode,
481 rule_name
=> 'max_holds',
484 if ( $rule && defined( $rule->rule_value ) && $rule->rule_value ne '' ) {
485 my $total_holds_count = Koha
::Holds
->search(
487 borrowernumber
=> $borrower->{borrowernumber
}
491 return { status
=> 'tooManyReserves', limit
=> $rule->rule_value} if $total_holds_count >= $rule->rule_value;
494 my $reserves_control_branch =
495 GetReservesControlBranch
( $item->unblessed(), $borrower );
497 C4
::Circulation
::GetBranchItemRule
( $reserves_control_branch, $item->itype ); # FIXME Should not be item->effective_itemtype?
499 if ( $branchitemrule->{holdallowed
} == 0 ) {
500 return { status
=> 'notReservable' };
503 if ( $branchitemrule->{holdallowed
} == 1
504 && $borrower->{branchcode
} ne $item->homebranch )
506 return { status
=> 'cannotReserveFromOtherBranches' };
509 my $item_library = Koha
::Libraries
->find( {branchcode
=> $item->homebranch} );
510 if ( $branchitemrule->{holdallowed
} == 3) {
511 if($borrower->{branchcode
} ne $item->homebranch && !$item_library->validate_hold_sibling( {branchcode
=> $borrower->{branchcode
}} )) {
512 return { status
=> 'branchNotInHoldGroup' };
516 # If reservecount is ok, we check item branch if IndependentBranches is ON
517 # and canreservefromotherbranches is OFF
518 if ( C4
::Context
->preference('IndependentBranches')
519 and !C4
::Context
->preference('canreservefromotherbranches') )
521 if ( $item->homebranch ne $borrower->{branchcode
} ) {
522 return { status
=> 'cannotReserveFromOtherBranches' };
526 if ($pickup_branchcode) {
527 my $destination = Koha
::Libraries
->find({
528 branchcode
=> $pickup_branchcode,
531 unless ($destination) {
532 return { status
=> 'libraryNotFound' };
534 unless ($destination->pickup_location) {
535 return { status
=> 'libraryNotPickupLocation' };
537 unless ($item->can_be_transferred({ to
=> $destination })) {
538 return { status
=> 'cannotBeTransferred' };
540 unless ($branchitemrule->{hold_fulfillment_policy
} ne 'holdgroup' || $item_library->validate_hold_sibling( {branchcode
=> $pickup_branchcode} )) {
541 return { status
=> 'pickupNotInHoldGroup' };
543 unless ($branchitemrule->{hold_fulfillment_policy
} ne 'patrongroup' || Koha
::Libraries
->find({branchcode
=> $borrower->{branchcode
}})->validate_hold_sibling({branchcode
=> $pickup_branchcode})) {
544 return { status
=> 'pickupNotInHoldGroup' };
548 return { status
=> 'OK' };
551 =head2 CanReserveBeCanceledFromOpac
553 $number = CanReserveBeCanceledFromOpac($reserve_id, $borrowernumber);
555 returns 1 if reserve can be cancelled by user from OPAC.
556 First check if reserve belongs to user, next checks if reserve is not in
557 transfer or waiting status
561 sub CanReserveBeCanceledFromOpac
{
562 my ($reserve_id, $borrowernumber) = @_;
564 return unless $reserve_id and $borrowernumber;
565 my $reserve = Koha
::Holds
->find($reserve_id);
567 return 0 unless $reserve->borrowernumber == $borrowernumber;
568 return 0 if ( $reserve->found eq 'W' ) or ( $reserve->found eq 'T' );
574 =head2 GetOtherReserves
576 ($messages,$nextreservinfo)=$GetOtherReserves(itemnumber);
578 Check queued list of this document and check if this document must be transferred
582 sub GetOtherReserves
{
583 my ($itemnumber) = @_;
586 my ( undef, $checkreserves, undef ) = CheckReserves
($itemnumber);
587 if ($checkreserves) {
588 my $item = Koha
::Items
->find($itemnumber);
589 if ( $item->holdingbranch ne $checkreserves->{'branchcode'} ) {
590 $messages->{'transfert'} = $checkreserves->{'branchcode'};
591 #minus priorities of others reservs
592 ModReserveMinusPriority
(
594 $checkreserves->{'reserve_id'},
597 #launch the subroutine dotransfer
598 C4
::Items
::ModItemTransfer
(
600 $item->holdingbranch,
601 $checkreserves->{'branchcode'},
607 #step 2b : case of a reservation on the same branch, set the waiting status
609 $messages->{'waiting'} = 1;
610 ModReserveMinusPriority
(
612 $checkreserves->{'reserve_id'},
614 ModReserveStatus
($itemnumber,'W');
617 $nextreservinfo = $checkreserves;
620 return ( $messages, $nextreservinfo );
623 =head2 ChargeReserveFee
625 $fee = ChargeReserveFee( $borrowernumber, $fee, $title );
627 Charge the fee for a reserve (if $fee > 0)
631 sub ChargeReserveFee
{
632 my ( $borrowernumber, $fee, $title ) = @_;
633 return if !$fee || $fee == 0; # the last test is needed to include 0.00
634 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->add_debit(
637 description
=> $title,
639 user_id
=> C4
::Context
->userenv ? C4
::Context
->userenv->{'number'} : undef,
640 library_id
=> C4
::Context
->userenv ? C4
::Context
->userenv->{'branch'} : undef,
641 interface
=> C4
::Context
->interface,
642 invoice_type
=> undef,
651 $fee = GetReserveFee( $borrowernumber, $biblionumber );
653 Calculate the fee for a reserve (if applicable).
658 my ( $borrowernumber, $biblionumber ) = @_;
660 SELECT reservefee FROM borrowers LEFT JOIN categories ON borrowers
.categorycode
= categories
.categorycode WHERE borrowernumber
= ?
663 SELECT COUNT
(*) FROM items
664 LEFT JOIN issues USING
(itemnumber
)
665 WHERE items
.biblionumber
=? AND issues
.issue_id IS NULL
668 SELECT COUNT
(*) FROM reserves WHERE biblionumber
=? AND borrowernumber
<>?
671 my $dbh = C4
::Context
->dbh;
672 my ( $fee ) = $dbh->selectrow_array( $borquery, undef, ($borrowernumber) );
673 my $hold_fee_mode = C4
::Context
->preference('HoldFeeMode') || 'not_always';
674 if( $fee and $fee > 0 and $hold_fee_mode eq 'not_always' ) {
675 # This is a reconstruction of the old code:
676 # Compare number of items with items issued, and optionally check holds
677 # If not all items are issued and there are no holds: charge no fee
678 # NOTE: Lost, damaged, not-for-loan, etc. are just ignored here
679 my ( $notissued, $reserved );
680 ( $notissued ) = $dbh->selectrow_array( $issue_qry, undef,
683 ( $reserved ) = $dbh->selectrow_array( $holds_qry, undef,
684 ( $biblionumber, $borrowernumber ) );
685 $fee = 0 if $reserved == 0;
691 =head2 GetReserveStatus
693 $reservestatus = GetReserveStatus($itemnumber);
695 Takes an itemnumber and returns the status of the reserve placed on it.
696 If several reserves exist, the reserve with the lower priority is given.
700 ## FIXME: I don't think this does what it thinks it does.
701 ## It only ever checks the first reserve result, even though
702 ## multiple reserves for that bib can have the itemnumber set
703 ## the sub is only used once in the codebase.
704 sub GetReserveStatus
{
705 my ($itemnumber) = @_;
707 my $dbh = C4
::Context
->dbh;
709 my ($sth, $found, $priority);
711 $sth = $dbh->prepare("SELECT found, priority FROM reserves WHERE itemnumber = ? order by priority LIMIT 1");
712 $sth->execute($itemnumber);
713 ($found, $priority) = $sth->fetchrow_array;
717 return 'Waiting' if $found eq 'W' and $priority == 0;
718 return 'Finished' if $found eq 'F';
721 return 'Reserved' if defined $priority && $priority > 0;
723 return ''; # empty string here will remove need for checking undef, or less log lines
728 ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber);
729 ($status, $matched_reserve, $possible_reserves) = &CheckReserves(undef, $barcode);
730 ($status, $matched_reserve, $possible_reserves) = &CheckReserves($itemnumber,undef,$lookahead);
732 Find a book in the reserves.
734 C<$itemnumber> is the book's item number.
735 C<$lookahead> is the number of days to look in advance for future reserves.
737 As I understand it, C<&CheckReserves> looks for the given item in the
738 reserves. If it is found, that's a match, and C<$status> is set to
741 Otherwise, it finds the most important item in the reserves with the
742 same biblio number as this book (I'm not clear on this) and returns it
743 with C<$status> set to C<Reserved>.
745 C<&CheckReserves> returns a two-element list:
747 C<$status> is either C<Waiting>, C<Reserved> (see above), or 0.
749 C<$reserve> is the reserve item that matched. It is a
750 reference-to-hash whose keys are mostly the fields of the reserves
751 table in the Koha database.
756 my ( $item, $barcode, $lookahead_days, $ignore_borrowers) = @_;
757 my $dbh = C4
::Context
->dbh;
760 if (C4
::Context
->preference('item-level_itypes')){
762 SELECT items.biblionumber,
763 items.biblioitemnumber,
764 itemtypes.notforloan,
765 items.notforloan AS itemnotforloan,
771 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
772 LEFT JOIN itemtypes ON items.itype = itemtypes.itemtype
777 SELECT items.biblionumber,
778 items.biblioitemnumber,
779 itemtypes.notforloan,
780 items.notforloan AS itemnotforloan,
786 LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
787 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
792 $sth = $dbh->prepare("$select WHERE itemnumber = ?");
793 $sth->execute($item);
796 $sth = $dbh->prepare("$select WHERE barcode = ?");
797 $sth->execute($barcode);
799 # note: we get the itemnumber because we might have started w/ just the barcode. Now we know for sure we have it.
800 my ( $biblio, $bibitem, $notforloan_per_itemtype, $notforloan_per_item, $itemnumber, $damaged, $item_homebranch, $item_holdingbranch ) = $sth->fetchrow_array;
801 return if ( $damaged && !C4
::Context
->preference('AllowHoldsOnDamagedItems') );
803 return unless $itemnumber; # bail if we got nothing.
804 # if item is not for loan it cannot be reserved either.....
805 # except where items.notforloan < 0 : This indicates the item is holdable.
807 my @SkipHoldTrapOnNotForLoanValue = split( '|', C4
::Context
->preference('SkipHoldTrapOnNotForLoanValue') );
808 return if @SkipHoldTrapOnNotForLoanValue && grep( $notforloan_per_item, @SkipHoldTrapOnNotForLoanValue );
810 my $dont_trap = C4
::Context
->preference('TrapHoldsOnOrder') ?
($notforloan_per_item > 0) : ($notforloan_per_item && 1 );
811 return if $dont_trap or $notforloan_per_itemtype;
813 # Find this item in the reserves
814 my @reserves = _Findgroupreserve
( $bibitem, $biblio, $itemnumber, $lookahead_days, $ignore_borrowers);
816 # $priority and $highest are used to find the most important item
817 # in the list returned by &_Findgroupreserve. (The lower $priority,
818 # the more important the item.)
819 # $highest is the most important item we've seen so far.
822 if (scalar @reserves) {
823 my $LocalHoldsPriority = C4
::Context
->preference('LocalHoldsPriority');
824 my $LocalHoldsPriorityPatronControl = C4
::Context
->preference('LocalHoldsPriorityPatronControl');
825 my $LocalHoldsPriorityItemControl = C4
::Context
->preference('LocalHoldsPriorityItemControl');
827 my $priority = 10000000;
828 foreach my $res (@reserves) {
829 if ( $res->{'itemnumber'} && $res->{'itemnumber'} == $itemnumber && $res->{'priority'} == 0) {
830 if ($res->{'found'} eq 'W') {
831 return ( "Waiting", $res, \
@reserves ); # Found it, it is waiting
833 return ( "Reserved", $res, \
@reserves ); # Found determinated hold, e. g. the tranferred one
838 my $local_hold_match;
840 if ($LocalHoldsPriority) {
841 $patron = Koha
::Patrons
->find( $res->{borrowernumber
} );
842 $item = Koha
::Items
->find($itemnumber);
844 my $local_holds_priority_item_branchcode =
845 $item->$LocalHoldsPriorityItemControl;
846 my $local_holds_priority_patron_branchcode =
847 ( $LocalHoldsPriorityPatronControl eq 'PickupLibrary' )
849 : ( $LocalHoldsPriorityPatronControl eq 'HomeLibrary' )
850 ?
$patron->branchcode
853 $local_holds_priority_item_branchcode eq
854 $local_holds_priority_patron_branchcode;
857 # See if this item is more important than what we've got so far
858 if ( ( $res->{'priority'} && $res->{'priority'} < $priority ) || $local_hold_match ) {
859 $item ||= Koha
::Items
->find($itemnumber);
860 next if $res->{itemtype
} && $res->{itemtype
} ne $item->effective_itemtype;
861 $patron ||= Koha
::Patrons
->find( $res->{borrowernumber
} );
862 my $branch = GetReservesControlBranch
( $item->unblessed, $patron->unblessed );
863 my $branchitemrule = C4
::Circulation
::GetBranchItemRule
($branch,$item->effective_itemtype);
864 next if ($branchitemrule->{'holdallowed'} == 0);
865 next if (($branchitemrule->{'holdallowed'} == 1) && ($branch ne $patron->branchcode));
866 my $library = Koha
::Libraries
->find({branchcode
=>$item->homebranch});
867 next if (($branchitemrule->{'holdallowed'} == 3) && (!$library->validate_hold_sibling({branchcode
=> $patron->branchcode}) ));
868 my $hold_fulfillment_policy = $branchitemrule->{hold_fulfillment_policy
};
869 next if ( ($hold_fulfillment_policy eq 'holdgroup') && (!$library->validate_hold_sibling({branchcode
=> $res->{branchcode
}})) );
870 next if ( ($hold_fulfillment_policy eq 'homebranch') && ($res->{branchcode
} ne $item->$hold_fulfillment_policy) );
871 next if ( ($hold_fulfillment_policy eq 'holdingbranch') && ($res->{branchcode
} ne $item->$hold_fulfillment_policy) );
872 next unless $item->can_be_transferred( { to
=> Koha
::Libraries
->find( $res->{branchcode
} ) } );
873 $priority = $res->{'priority'};
875 last if $local_hold_match;
881 # If we get this far, then no exact match was found.
882 # We return the most important (i.e. next) reservation.
884 $highest->{'itemnumber'} = $item;
885 return ( "Reserved", $highest, \
@reserves );
891 =head2 CancelExpiredReserves
893 CancelExpiredReserves();
895 Cancels all reserves with an expiration date from before today.
899 sub CancelExpiredReserves
{
900 my $today = dt_from_string
();
901 my $cancel_on_holidays = C4
::Context
->preference('ExpireReservesOnHolidays');
902 my $expireWaiting = C4
::Context
->preference('ExpireReservesMaxPickUpDelay');
904 my $dtf = Koha
::Database
->new->schema->storage->datetime_parser;
905 my $params = { expirationdate
=> { '<', $dtf->format_date($today) } };
906 $params->{found
} = [ { '!=', 'W' }, undef ] unless $expireWaiting;
908 # FIXME To move to Koha::Holds->search_expired (?)
909 my $holds = Koha
::Holds
->search( $params );
911 while ( my $hold = $holds->next ) {
912 my $calendar = Koha
::Calendar
->new( branchcode
=> $hold->branchcode );
914 next if !$cancel_on_holidays && $calendar->is_holiday( $today );
916 my $cancel_params = {};
917 if ( $hold->found eq 'W' ) {
918 $cancel_params->{charge_cancel_fee
} = 1;
920 $hold->cancel( $cancel_params );
924 =head2 AutoUnsuspendReserves
926 AutoUnsuspendReserves();
928 Unsuspends all suspended reserves with a suspend_until date from before today.
932 sub AutoUnsuspendReserves
{
933 my $today = dt_from_string
();
935 my @holds = Koha
::Holds
->search( { suspend_until
=> { '<=' => $today->ymd() } } );
937 map { $_->resume() } @holds;
942 ModReserve({ rank => $rank,
943 reserve_id => $reserve_id,
944 branchcode => $branchcode
945 [, itemnumber => $itemnumber ]
946 [, biblionumber => $biblionumber, $borrowernumber => $borrowernumber ]
949 Change a hold request's priority or cancel it.
951 C<$rank> specifies the effect of the change. If C<$rank>
952 is 'W' or 'n', nothing happens. This corresponds to leaving a
953 request alone when changing its priority in the holds queue
956 If C<$rank> is 'del', the hold request is cancelled.
958 If C<$rank> is an integer greater than zero, the priority of
959 the request is set to that value. Since priority != 0 means
960 that the item is not waiting on the hold shelf, setting the
961 priority to a non-zero value also sets the request's found
962 status and waiting date to NULL.
964 The optional C<$itemnumber> parameter is used only when
965 C<$rank> is a non-zero integer; if supplied, the itemnumber
966 of the hold request is set accordingly; if omitted, the itemnumber
969 B<FIXME:> Note that the forgoing can have the effect of causing
970 item-level hold requests to turn into title-level requests. This
971 will be fixed once reserves has separate columns for requested
972 itemnumber and supplying itemnumber.
979 my $rank = $params->{'rank'};
980 my $reserve_id = $params->{'reserve_id'};
981 my $branchcode = $params->{'branchcode'};
982 my $itemnumber = $params->{'itemnumber'};
983 my $suspend_until = $params->{'suspend_until'};
984 my $borrowernumber = $params->{'borrowernumber'};
985 my $biblionumber = $params->{'biblionumber'};
987 return if $rank eq "W";
988 return if $rank eq "n";
990 return unless ( $reserve_id || ( $borrowernumber && ( $biblionumber || $itemnumber ) ) );
993 unless ( $reserve_id ) {
994 my $holds = Koha
::Holds
->search({ biblionumber
=> $biblionumber, borrowernumber
=> $borrowernumber, itemnumber
=> $itemnumber });
995 return unless $holds->count; # FIXME Should raise an exception
996 $hold = $holds->next;
997 $reserve_id = $hold->reserve_id;
1000 $hold ||= Koha
::Holds
->find($reserve_id);
1002 if ( $rank eq "del" ) {
1005 elsif ($rank =~ /^\d+/ and $rank > 0) {
1006 logaction
( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper
($hold->unblessed) )
1007 if C4
::Context
->preference('HoldsLog');
1011 branchcode
=> $branchcode,
1012 itemnumber
=> $itemnumber,
1014 waitingdate
=> undef
1016 if (exists $params->{reservedate
}) {
1017 $properties->{reservedate
} = $params->{reservedate
} || undef;
1019 if (exists $params->{expirationdate
}) {
1020 $properties->{expirationdate
} = $params->{expirationdate
} || undef;
1023 $hold->set($properties)->store();
1025 if ( defined( $suspend_until ) ) {
1026 if ( $suspend_until ) {
1027 $suspend_until = eval { dt_from_string
( $suspend_until ) };
1028 $hold->suspend_hold( $suspend_until );
1030 # If the hold is suspended leave the hold suspended, but convert it to an indefinite hold.
1031 # If the hold is not suspended, this does nothing.
1032 $hold->set( { suspend_until
=> undef } )->store();
1036 _FixPriority
({ reserve_id
=> $reserve_id, rank
=>$rank });
1040 =head2 ModReserveFill
1042 &ModReserveFill($reserve);
1044 Fill a reserve. If I understand this correctly, this means that the
1045 reserved book has been found and given to the patron who reserved it.
1047 C<$reserve> specifies the reserve to fill. It is a reference-to-hash
1048 whose keys are fields from the reserves table in the Koha database.
1052 sub ModReserveFill
{
1054 my $reserve_id = $res->{'reserve_id'};
1056 my $hold = Koha
::Holds
->find($reserve_id);
1057 # get the priority on this record....
1058 my $priority = $hold->priority;
1060 # update the hold statuses, no need to store it though, we will be deleting it anyway
1068 logaction
( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper
($hold->unblessed) )
1069 if C4
::Context
->preference('HoldsLog');
1071 # FIXME Must call Koha::Hold->cancel ? => No, should call ->filled and add the correct log
1072 Koha
::Old
::Hold
->new( $hold->unblessed() )->store();
1076 if ( C4
::Context
->preference('HoldFeeMode') eq 'any_time_is_collected' ) {
1077 my $reserve_fee = GetReserveFee
( $hold->borrowernumber, $hold->biblionumber );
1078 ChargeReserveFee
( $hold->borrowernumber, $reserve_fee, $hold->biblio->title );
1081 # now fix the priority on the others (if the priority wasn't
1082 # already sorted!)....
1083 unless ( $priority == 0 ) {
1084 _FixPriority
( { reserve_id
=> $reserve_id, biblionumber
=> $hold->biblionumber } );
1088 =head2 ModReserveStatus
1090 &ModReserveStatus($itemnumber, $newstatus);
1092 Update the reserve status for the active (priority=0) reserve.
1094 $itemnumber is the itemnumber the reserve is on
1096 $newstatus is the new status.
1100 sub ModReserveStatus
{
1102 #first : check if we have a reservation for this item .
1103 my ($itemnumber, $newstatus) = @_;
1104 my $dbh = C4
::Context
->dbh;
1106 my $query = "UPDATE reserves SET found = ?, waitingdate = NOW() WHERE itemnumber = ? AND found IS NULL AND priority = 0";
1107 my $sth_set = $dbh->prepare($query);
1108 $sth_set->execute( $newstatus, $itemnumber );
1110 my $item = Koha
::Items
->find($itemnumber);
1111 if ( $item->location && $item->location eq 'CART'
1112 && ( !$item->permanent_location || $item->permanent_location ne 'CART' )
1114 CartToShelf
( $itemnumber );
1118 =head2 ModReserveAffect
1120 &ModReserveAffect($itemnumber,$borrowernumber,$diffBranchSend,$reserve_id);
1122 This function affect an item and a status for a given reserve, either fetched directly
1123 by record_id, or by borrowernumber and itemnumber or biblionumber. If only biblionumber
1124 is given, only first reserve returned is affected, which is ok for anything but
1127 if $transferToDo is not set, then the status is set to "Waiting" as well.
1128 otherwise, a transfer is on the way, and the end of the transfer will
1129 take care of the waiting status
1133 sub ModReserveAffect
{
1134 my ( $itemnumber, $borrowernumber, $transferToDo, $reserve_id ) = @_;
1135 my $dbh = C4
::Context
->dbh;
1137 # we want to attach $itemnumber to $borrowernumber, find the biblionumber
1138 # attached to $itemnumber
1139 my $sth = $dbh->prepare("SELECT biblionumber FROM items WHERE itemnumber=?");
1140 $sth->execute($itemnumber);
1141 my ($biblionumber) = $sth->fetchrow;
1143 # get request - need to find out if item is already
1144 # waiting in order to not send duplicate hold filled notifications
1147 # Find hold by id if we have it
1148 $hold = Koha
::Holds
->find( $reserve_id ) if $reserve_id;
1149 # Find item level hold for this item if there is one
1150 $hold ||= Koha
::Holds
->search( { borrowernumber
=> $borrowernumber, itemnumber
=> $itemnumber } )->next();
1151 # Find record level hold if there is no item level hold
1152 $hold ||= Koha
::Holds
->search( { borrowernumber
=> $borrowernumber, biblionumber
=> $biblionumber } )->next();
1154 return unless $hold;
1156 my $already_on_shelf = $hold->found && $hold->found eq 'W';
1158 $hold->itemnumber($itemnumber);
1159 $hold->set_waiting($transferToDo);
1161 if( !$transferToDo ){
1162 _koha_notify_reserve
( $hold->reserve_id ) unless $already_on_shelf;
1163 my $transfers = Koha
::Item
::Transfers
->search({
1164 itemnumber
=> $itemnumber,
1165 datearrived
=> undef
1167 while( my $transfer = $transfers->next ){
1168 $transfer->datearrived( dt_from_string
() )->store;
1173 _FixPriority
( { biblionumber
=> $biblionumber } );
1174 my $item = Koha
::Items
->find($itemnumber);
1175 if ( $item->location && $item->location eq 'CART'
1176 && ( !$item->permanent_location || $item->permanent_location ne 'CART' ) ) {
1177 CartToShelf
( $itemnumber );
1180 logaction
( 'HOLDS', 'MODIFY', $hold->reserve_id, Dumper
($hold->unblessed) )
1181 if C4
::Context
->preference('HoldsLog');
1186 =head2 ModReserveCancelAll
1188 ($messages,$nextreservinfo) = &ModReserveCancelAll($itemnumber,$borrowernumber);
1190 function to cancel reserv,check other reserves, and transfer document if it's necessary
1194 sub ModReserveCancelAll
{
1197 my ( $itemnumber, $borrowernumber ) = @_;
1199 #step 1 : cancel the reservation
1200 my $holds = Koha
::Holds
->search({ itemnumber
=> $itemnumber, borrowernumber
=> $borrowernumber });
1201 return unless $holds->count;
1202 $holds->next->cancel;
1204 #step 2 launch the subroutine of the others reserves
1205 ( $messages, $nextreservinfo ) = GetOtherReserves
($itemnumber);
1207 return ( $messages, $nextreservinfo->{borrowernumber
} );
1210 =head2 ModReserveMinusPriority
1212 &ModReserveMinusPriority($itemnumber,$borrowernumber,$biblionumber)
1214 Reduce the values of queued list
1218 sub ModReserveMinusPriority
{
1219 my ( $itemnumber, $reserve_id ) = @_;
1221 #first step update the value of the first person on reserv
1222 my $dbh = C4
::Context
->dbh;
1225 SET priority = 0 , itemnumber = ?
1226 WHERE reserve_id = ?
1228 my $sth_upd = $dbh->prepare($query);
1229 $sth_upd->execute( $itemnumber, $reserve_id );
1230 # second step update all others reserves
1231 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> '0' });
1234 =head2 IsAvailableForItemLevelRequest
1236 my $is_available = IsAvailableForItemLevelRequest( $item_record, $borrower_record, $pickup_branchcode );
1238 Checks whether a given item record is available for an
1239 item-level hold request. An item is available if
1241 * it is not lost AND
1242 * it is not damaged AND
1243 * it is not withdrawn AND
1244 * a waiting or in transit reserve is placed on
1245 * does not have a not for loan value > 0
1247 Need to check the issuingrules onshelfholds column,
1248 if this is set items on the shelf can be placed on hold
1250 Note that IsAvailableForItemLevelRequest() does not
1251 check if the staff operator is authorized to place
1252 a request on the item - in particular,
1253 this routine does not check IndependentBranches
1254 and canreservefromotherbranches.
1258 sub IsAvailableForItemLevelRequest
{
1261 my $pickup_branchcode = shift;
1262 # items_any_available is precalculated status passed from request.pl when set of items
1263 # looped outside of IsAvailableForItemLevelRequest to avoid nested loops:
1264 my $items_any_available = shift;
1266 my $dbh = C4
::Context
->dbh;
1267 # must check the notforloan setting of the itemtype
1268 # FIXME - a lot of places in the code do this
1269 # or something similar - need to be
1271 my $itemtype = $item->effective_itemtype;
1272 my $notforloan_per_itemtype = Koha
::ItemTypes
->find($itemtype)->notforloan;
1275 $notforloan_per_itemtype ||
1277 $item->notforloan > 0 ||
1279 ($item->damaged && !C4
::Context
->preference('AllowHoldsOnDamagedItems'));
1281 if ($pickup_branchcode) {
1282 my $destination = Koha
::Libraries
->find($pickup_branchcode);
1283 return 0 unless $destination;
1284 return 0 unless $destination->pickup_location;
1285 return 0 unless $item->can_be_transferred( { to
=> $destination } );
1286 my $reserves_control_branch =
1287 GetReservesControlBranch
( $item->unblessed(), $patron->unblessed() );
1288 my $branchitemrule =
1289 C4
::Circulation
::GetBranchItemRule
( $reserves_control_branch, $item->itype );
1290 my $home_library = Koka
::Libraries
->find( {branchcode
=> $item->homebranch} );
1291 return 0 unless $branchitemrule->{hold_fulfillment_policy
} ne 'holdgroup' || $home_library->validate_hold_sibling( {branchcode
=> $pickup_branchcode} );
1294 my $on_shelf_holds = Koha
::CirculationRules
->get_onshelfholds_policy( { item
=> $item, patron
=> $patron } );
1296 if ( $on_shelf_holds == 1 ) {
1298 } elsif ( $on_shelf_holds == 2 ) {
1300 # if we have this param predefined from outer caller sub, we just need
1301 # to return it, so we saving from having loop inside other loop:
1302 return $items_any_available ?
0 : 1
1303 if defined $items_any_available;
1305 my $any_available = ItemsAnyAvailableForHold
( { biblionumber
=> $item->biblionumber, patron
=> $patron });
1306 return $any_available ?
0 : 1;
1307 } else { # on_shelf_holds == 0 "If any unavailable" (the description is rather cryptic and could still be improved)
1308 return $item->onloan || IsItemOnHoldAndFound
( $item->itemnumber );
1312 =head2 ItemsAnyAvailableForHold
1314 ItemsAnyAvailableForHold( { biblionumber => $biblionumber, patron => $patron });
1316 This function checks all items for specified biblionumber (num) / patron (object)
1317 and returns true (1) or false (0) depending if any of rules allows at least of
1318 one item to be available for hold including lots of parameters/logic
1322 sub ItemsAnyAvailableForHold
{
1325 my @items = Koha
::Items
->search( { biblionumber
=> $param->{biblionumber
} } );
1327 my $any_available = 0;
1329 foreach my $i (@items) {
1330 my $reserves_control_branch =
1331 GetReservesControlBranch
( $i->unblessed(), $param->{patron
}->unblessed );
1332 my $branchitemrule =
1333 C4
::Circulation
::GetBranchItemRule
( $reserves_control_branch, $i->itype );
1334 my $item_library = Koha
::Libraries
->find( { branchcode
=> $i->homebranch } );
1338 || $i->notforloan > 0
1341 || IsItemOnHoldAndFound
( $i->id )
1343 && ! C4
::Context
->preference('AllowHoldsOnDamagedItems') )
1344 || Koha
::ItemTypes
->find( $i->effective_itemtype() )->notforloan
1345 || $branchitemrule->{holdallowed
} == 1 && $param->{patron
}->branchcode ne $i->homebranch
1346 || $branchitemrule->{holdallowed
} == 3 && ! $item_library->validate_hold_sibling( { branchcode
=> $param->{patron
}->branchcode } );
1349 return $any_available;
1352 =head2 AlterPriority
1354 AlterPriority( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority );
1356 This function changes a reserve's priority up, down, to the top, or to the bottom.
1357 Input: $where is 'up', 'down', 'top' or 'bottom'. Biblionumber, Date reserve was placed
1362 my ( $where, $reserve_id, $prev_priority, $next_priority, $first_priority, $last_priority ) = @_;
1364 my $hold = Koha
::Holds
->find( $reserve_id );
1365 return unless $hold;
1367 if ( $hold->cancellationdate ) {
1368 warn "I cannot alter the priority for reserve_id $reserve_id, the reserve has been cancelled (" . $hold->cancellationdate . ')';
1372 if ( $where eq 'up' ) {
1373 return unless $prev_priority;
1374 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $prev_priority })
1375 } elsif ( $where eq 'down' ) {
1376 return unless $next_priority;
1377 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $next_priority })
1378 } elsif ( $where eq 'top' ) {
1379 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $first_priority })
1380 } elsif ( $where eq 'bottom' ) {
1381 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> $last_priority });
1384 # FIXME Should return the new priority
1387 =head2 ToggleLowestPriority
1389 ToggleLowestPriority( $borrowernumber, $biblionumber );
1391 This function sets the lowestPriority field to true if is false, and false if it is true.
1395 sub ToggleLowestPriority
{
1396 my ( $reserve_id ) = @_;
1398 my $dbh = C4
::Context
->dbh;
1400 my $sth = $dbh->prepare( "UPDATE reserves SET lowestPriority = NOT lowestPriority WHERE reserve_id = ?");
1401 $sth->execute( $reserve_id );
1403 _FixPriority
({ reserve_id
=> $reserve_id, rank
=> '999999' });
1406 =head2 ToggleSuspend
1408 ToggleSuspend( $reserve_id );
1410 This function sets the suspend field to true if is false, and false if it is true.
1411 If the reserve is currently suspended with a suspend_until date, that date will
1412 be cleared when it is unsuspended.
1417 my ( $reserve_id, $suspend_until ) = @_;
1419 $suspend_until = dt_from_string
($suspend_until) if ($suspend_until);
1421 my $hold = Koha
::Holds
->find( $reserve_id );
1423 if ( $hold->is_suspended ) {
1426 $hold->suspend_hold( $suspend_until );
1433 borrowernumber => $borrowernumber,
1434 [ biblionumber => $biblionumber, ]
1435 [ suspend_until => $suspend_until, ]
1436 [ suspend => $suspend ]
1439 This function accepts a set of hash keys as its parameters.
1440 It requires either borrowernumber or biblionumber, or both.
1442 suspend_until is wholly optional.
1449 my $borrowernumber = $params{'borrowernumber'} || undef;
1450 my $biblionumber = $params{'biblionumber'} || undef;
1451 my $suspend_until = $params{'suspend_until'} || undef;
1452 my $suspend = defined( $params{'suspend'} ) ?
$params{'suspend'} : 1;
1454 $suspend_until = eval { dt_from_string
($suspend_until) }
1455 if ( defined($suspend_until) );
1457 return unless ( $borrowernumber || $biblionumber );
1460 $params->{found
} = undef;
1461 $params->{borrowernumber
} = $borrowernumber if $borrowernumber;
1462 $params->{biblionumber
} = $biblionumber if $biblionumber;
1464 my @holds = Koha
::Holds
->search($params);
1467 map { $_->suspend_hold($suspend_until) } @holds;
1470 map { $_->resume() } @holds;
1478 reserve_id => $reserve_id,
1480 [ignoreSetLowestRank => $ignoreSetLowestRank]
1485 _FixPriority({ biblionumber => $biblionumber});
1487 This routine adjusts the priority of a hold request and holds
1490 In the first form, where a reserve_id is passed, the priority of the
1491 hold is set to supplied rank, and other holds for that bib are adjusted
1492 accordingly. If the rank is "del", the hold is cancelled. If no rank
1493 is supplied, all of the holds on that bib have their priority adjusted
1494 as if the second form had been used.
1496 In the second form, where a biblionumber is passed, the holds on that
1497 bib (that are not captured) are sorted in order of increasing priority,
1498 then have reserves.priority set so that the first non-captured hold
1499 has its priority set to 1, the second non-captured hold has its priority
1500 set to 2, and so forth.
1502 In both cases, holds that have the lowestPriority flag on are have their
1503 priority adjusted to ensure that they remain at the end of the line.
1505 Note that the ignoreSetLowestRank parameter is meant to be used only
1506 when _FixPriority calls itself.
1511 my ( $params ) = @_;
1512 my $reserve_id = $params->{reserve_id
};
1513 my $rank = $params->{rank
} // '';
1514 my $ignoreSetLowestRank = $params->{ignoreSetLowestRank
};
1515 my $biblionumber = $params->{biblionumber
};
1517 my $dbh = C4
::Context
->dbh;
1520 if ( $reserve_id ) {
1521 $hold = Koha
::Holds
->find( $reserve_id );
1522 if (!defined $hold){
1523 # may have already been checked out and hold fulfilled
1524 $hold = Koha
::Old
::Holds
->find( $reserve_id );
1526 return unless $hold;
1529 unless ( $biblionumber ) { # FIXME This is a very weird API
1530 $biblionumber = $hold->biblionumber;
1533 if ( $rank eq "del" ) { # FIXME will crash if called without $hold
1536 elsif ( $reserve_id && ( $rank eq "W" || $rank eq "0" ) ) {
1538 # make sure priority for waiting or in-transit items is 0
1542 WHERE reserve_id = ?
1543 AND found IN ('W', 'T')
1545 my $sth = $dbh->prepare($query);
1546 $sth->execute( $reserve_id );
1552 SELECT reserve_id, borrowernumber, reservedate
1554 WHERE biblionumber = ?
1555 AND ((found <> 'W' AND found <> 'T') OR found IS NULL)
1556 ORDER BY priority ASC
1558 my $sth = $dbh->prepare($query);
1559 $sth->execute( $biblionumber );
1560 while ( my $line = $sth->fetchrow_hashref ) {
1561 push( @priority, $line );
1564 # FIXME This whole sub must be rewritten, especially to highlight what is done when reserve_id is not given
1565 # To find the matching index
1567 my $key = -1; # to allow for 0 to be a valid result
1568 for ( $i = 0 ; $i < @priority ; $i++ ) {
1569 if ( $reserve_id && $reserve_id == $priority[$i]->{'reserve_id'} ) {
1570 $key = $i; # save the index
1575 # if index exists in array then move it to new position
1576 if ( $key > -1 && $rank ne 'del' && $rank > 0 ) {
1577 my $new_rank = $rank -
1578 1; # $new_rank is what you want the new index to be in the array
1579 my $moving_item = splice( @priority, $key, 1 );
1580 splice( @priority, $new_rank, 0, $moving_item );
1583 # now fix the priority on those that are left....
1587 WHERE reserve_id = ?
1589 $sth = $dbh->prepare($query);
1590 for ( my $j = 0 ; $j < @priority ; $j++ ) {
1593 $priority[$j]->{'reserve_id'}
1597 $sth = $dbh->prepare( "SELECT reserve_id FROM reserves WHERE lowestPriority = 1 ORDER BY priority" );
1600 unless ( $ignoreSetLowestRank ) {
1601 while ( my $res = $sth->fetchrow_hashref() ) {
1603 reserve_id
=> $res->{'reserve_id'},
1605 ignoreSetLowestRank
=> 1
1611 =head2 _Findgroupreserve
1613 @results = &_Findgroupreserve($biblioitemnumber, $biblionumber, $itemnumber, $lookahead, $ignore_borrowers);
1615 Looks for a holds-queue based item-specific match first, then for a holds-queue title-level match, returning the
1616 first match found. If neither, then we look for non-holds-queue based holds.
1617 Lookahead is the number of days to look in advance.
1619 C<&_Findgroupreserve> returns :
1620 C<@results> is an array of references-to-hash whose keys are mostly
1621 fields from the reserves table of the Koha database, plus
1622 C<biblioitemnumber>.
1624 This routine with either return:
1625 1 - Item specific holds from the holds queue
1626 2 - Title level holds from the holds queue
1627 3 - All holds for this biblionumber
1629 All return values will respect any borrowernumbers passed as arrayref in $ignore_borrowers
1633 sub _Findgroupreserve
{
1634 my ( $bibitem, $biblio, $itemnumber, $lookahead, $ignore_borrowers) = @_;
1635 my $dbh = C4
::Context
->dbh;
1637 # TODO: consolidate at least the SELECT portion of the first 2 queries to a common $select var.
1638 # check for exact targeted match
1639 my $item_level_target_query = qq{
1640 SELECT reserves
.biblionumber AS biblionumber
,
1641 reserves
.borrowernumber AS borrowernumber
,
1642 reserves
.reservedate AS reservedate
,
1643 reserves
.branchcode AS branchcode
,
1644 reserves
.cancellationdate AS cancellationdate
,
1645 reserves
.found AS found
,
1646 reserves
.reservenotes AS reservenotes
,
1647 reserves
.priority AS priority
,
1648 reserves
.timestamp AS timestamp
,
1649 biblioitems
.biblioitemnumber AS biblioitemnumber
,
1650 reserves
.itemnumber AS itemnumber
,
1651 reserves
.reserve_id AS reserve_id
,
1652 reserves
.itemtype AS itemtype
1654 JOIN biblioitems USING
(biblionumber
)
1655 JOIN hold_fill_targets USING
(biblionumber
, borrowernumber
, itemnumber
)
1658 AND item_level_request
= 1
1660 AND reservedate
<= DATE_ADD
(NOW
(),INTERVAL ? DAY
)
1664 my $sth = $dbh->prepare($item_level_target_query);
1665 $sth->execute($itemnumber, $lookahead||0);
1667 if ( my $data = $sth->fetchrow_hashref ) {
1668 push( @results, $data )
1669 unless any
{ $data->{borrowernumber
} eq $_ } @
$ignore_borrowers ;
1671 return @results if @results;
1673 # check for title-level targeted match
1674 my $title_level_target_query = qq{
1675 SELECT reserves
.biblionumber AS biblionumber
,
1676 reserves
.borrowernumber AS borrowernumber
,
1677 reserves
.reservedate AS reservedate
,
1678 reserves
.branchcode AS branchcode
,
1679 reserves
.cancellationdate AS cancellationdate
,
1680 reserves
.found AS found
,
1681 reserves
.reservenotes AS reservenotes
,
1682 reserves
.priority AS priority
,
1683 reserves
.timestamp AS timestamp
,
1684 biblioitems
.biblioitemnumber AS biblioitemnumber
,
1685 reserves
.itemnumber AS itemnumber
,
1686 reserves
.reserve_id AS reserve_id
,
1687 reserves
.itemtype AS itemtype
1689 JOIN biblioitems USING
(biblionumber
)
1690 JOIN hold_fill_targets USING
(biblionumber
, borrowernumber
)
1693 AND item_level_request
= 0
1694 AND hold_fill_targets
.itemnumber
= ?
1695 AND reservedate
<= DATE_ADD
(NOW
(),INTERVAL ? DAY
)
1699 $sth = $dbh->prepare($title_level_target_query);
1700 $sth->execute($itemnumber, $lookahead||0);
1702 if ( my $data = $sth->fetchrow_hashref ) {
1703 push( @results, $data )
1704 unless any
{ $data->{borrowernumber
} eq $_ } @
$ignore_borrowers ;
1706 return @results if @results;
1709 SELECT reserves
.biblionumber AS biblionumber
,
1710 reserves
.borrowernumber AS borrowernumber
,
1711 reserves
.reservedate AS reservedate
,
1712 reserves
.waitingdate AS waitingdate
,
1713 reserves
.branchcode AS branchcode
,
1714 reserves
.cancellationdate AS cancellationdate
,
1715 reserves
.found AS found
,
1716 reserves
.reservenotes AS reservenotes
,
1717 reserves
.priority AS priority
,
1718 reserves
.timestamp AS timestamp
,
1719 reserves
.itemnumber AS itemnumber
,
1720 reserves
.reserve_id AS reserve_id
,
1721 reserves
.itemtype AS itemtype
1723 WHERE reserves
.biblionumber
= ?
1724 AND
(reserves
.itemnumber IS NULL OR reserves
.itemnumber
= ?
)
1725 AND reserves
.reservedate
<= DATE_ADD
(NOW
(),INTERVAL ? DAY
)
1729 $sth = $dbh->prepare($query);
1730 $sth->execute( $biblio, $itemnumber, $lookahead||0);
1732 while ( my $data = $sth->fetchrow_hashref ) {
1733 push( @results, $data )
1734 unless any
{ $data->{borrowernumber
} eq $_ } @
$ignore_borrowers ;
1739 =head2 _koha_notify_reserve
1741 _koha_notify_reserve( $hold->reserve_id );
1743 Sends a notification to the patron that their hold has been filled (through
1744 ModReserveAffect, _not_ ModReserveFill)
1746 The letter code for this notice may be found using the following query:
1748 select distinct letter_code
1749 from message_transports
1750 inner join message_attributes using (message_attribute_id)
1751 where message_name = 'Hold_Filled'
1753 This will probably sipmly be 'HOLD', but because it is defined in the database,
1754 it is subject to addition or change.
1756 The following tables are availalbe witin the notice:
1767 sub _koha_notify_reserve
{
1768 my $reserve_id = shift;
1769 my $hold = Koha
::Holds
->find($reserve_id);
1770 my $borrowernumber = $hold->borrowernumber;
1772 my $patron = Koha
::Patrons
->find( $borrowernumber );
1774 # Try to get the borrower's email address
1775 my $to_address = $patron->notice_email_address;
1777 my $messagingprefs = C4
::Members
::Messaging
::GetMessagingPreferences
( {
1778 borrowernumber
=> $borrowernumber,
1779 message_name
=> 'Hold_Filled'
1782 my $library = Koha
::Libraries
->find( $hold->branchcode )->unblessed;
1784 my $admin_email_address = $library->{branchemail
} || C4
::Context
->preference('KohaAdminEmailAddress');
1786 my %letter_params = (
1787 module
=> 'reserves',
1788 branchcode
=> $hold->branchcode,
1789 lang
=> $patron->lang,
1791 'branches' => $library,
1792 'borrowers' => $patron->unblessed,
1793 'biblio' => $hold->biblionumber,
1794 'biblioitems' => $hold->biblionumber,
1795 'reserves' => $hold->unblessed,
1796 'items' => $hold->itemnumber,
1800 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.
1801 my $send_notification = sub {
1802 my ( $mtt, $letter_code ) = (@_);
1803 return unless defined $letter_code;
1804 $letter_params{letter_code
} = $letter_code;
1805 $letter_params{message_transport_type
} = $mtt;
1806 my $letter = C4
::Letters
::GetPreparedLetter
( %letter_params );
1808 warn "Could not find a letter called '$letter_params{'letter_code'}' for $mtt in the 'reserves' module";
1812 C4
::Letters
::EnqueueLetter
( {
1814 borrowernumber
=> $borrowernumber,
1815 from_address
=> $admin_email_address,
1816 message_transport_type
=> $mtt,
1820 while ( my ( $mtt, $letter_code ) = each %{ $messagingprefs->{transports
} } ) {
1822 ( $mtt eq 'email' and not $to_address ) # No email address
1823 or ( $mtt eq 'sms' and not $patron->smsalertnumber ) # No SMS number
1824 or ( $mtt eq 'phone' and C4
::Context
->preference('TalkingTechItivaPhoneNotification') ) # Notice is handled by TalkingTech_itiva_outbound.pl
1827 &$send_notification($mtt, $letter_code);
1828 $notification_sent++;
1830 #Making sure that a print notification is sent if no other transport types can be utilized.
1831 if (! $notification_sent) {
1832 &$send_notification('print', 'HOLD');
1837 =head2 _ShiftPriorityByDateAndPriority
1839 $new_priority = _ShiftPriorityByDateAndPriority( $biblionumber, $reservedate, $priority );
1841 This increments the priority of all reserves after the one
1842 with either the lowest date after C<$reservedate>
1843 or the lowest priority after C<$priority>.
1845 It effectively makes room for a new reserve to be inserted with a certain
1846 priority, which is returned.
1848 This is most useful when the reservedate can be set by the user. It allows
1849 the new reserve to be placed before other reserves that have a later
1850 reservedate. Since priority also is set by the form in reserves/request.pl
1851 the sub accounts for that too.
1855 sub _ShiftPriorityByDateAndPriority
{
1856 my ( $biblio, $resdate, $new_priority ) = @_;
1858 my $dbh = C4
::Context
->dbh;
1859 my $query = "SELECT priority FROM reserves WHERE biblionumber = ? AND ( reservedate > ? OR priority > ? ) ORDER BY priority ASC LIMIT 1";
1860 my $sth = $dbh->prepare( $query );
1861 $sth->execute( $biblio, $resdate, $new_priority );
1862 my $min_priority = $sth->fetchrow;
1863 # if no such matches are found, $new_priority remains as original value
1864 $new_priority = $min_priority if ( $min_priority );
1866 # Shift the priority up by one; works in conjunction with the next SQL statement
1867 $query = "UPDATE reserves
1868 SET priority = priority+1
1869 WHERE biblionumber = ?
1870 AND borrowernumber = ?
1873 my $sth_update = $dbh->prepare( $query );
1875 # Select all reserves for the biblio with priority greater than $new_priority, and order greatest to least
1876 $query = "SELECT borrowernumber, reservedate FROM reserves WHERE priority >= ? AND biblionumber = ? ORDER BY priority DESC";
1877 $sth = $dbh->prepare( $query );
1878 $sth->execute( $new_priority, $biblio );
1879 while ( my $row = $sth->fetchrow_hashref ) {
1880 $sth_update->execute( $biblio, $row->{borrowernumber
}, $row->{reservedate
} );
1883 return $new_priority; # so the caller knows what priority they wind up receiving
1888 MoveReserve( $itemnumber, $borrowernumber, $cancelreserve )
1890 Use when checking out an item to handle reserves
1891 If $cancelreserve boolean is set to true, it will remove existing reserve
1896 my ( $itemnumber, $borrowernumber, $cancelreserve ) = @_;
1898 $cancelreserve //= 0;
1900 my $lookahead = C4
::Context
->preference('ConfirmFutureHolds'); #number of days to look for future holds
1901 my ( $restype, $res, undef ) = CheckReserves
( $itemnumber, undef, $lookahead );
1904 my $biblionumber = $res->{biblionumber
};
1906 if ($res->{borrowernumber
} == $borrowernumber) {
1907 ModReserveFill
($res);
1911 # The item is reserved by someone else.
1912 # Find this item in the reserves
1914 my $borr_res = Koha
::Holds
->search({
1915 borrowernumber
=> $borrowernumber,
1916 biblionumber
=> $biblionumber,
1918 order_by
=> 'priority'
1922 # The item is reserved by the current patron
1923 ModReserveFill
($borr_res->unblessed);
1926 if ( $cancelreserve eq 'revert' ) { ## Revert waiting reserve to priority 1
1927 RevertWaitingStatus
({ itemnumber
=> $itemnumber });
1929 elsif ( $cancelreserve eq 'cancel' || $cancelreserve ) { # cancel reserves on this item
1930 my $hold = Koha
::Holds
->find( $res->{reserve_id
} );
1938 MergeHolds($dbh,$to_biblio, $from_biblio);
1940 This shifts the holds from C<$from_biblio> to C<$to_biblio> and reorders them by the date they were placed
1945 my ( $dbh, $to_biblio, $from_biblio ) = @_;
1946 my $sth = $dbh->prepare(
1947 "SELECT count(*) as reserve_count FROM reserves WHERE biblionumber = ?"
1949 $sth->execute($from_biblio);
1950 if ( my $data = $sth->fetchrow_hashref() ) {
1952 # holds exist on old record, if not we don't need to do anything
1953 $sth = $dbh->prepare(
1954 "UPDATE reserves SET biblionumber = ? WHERE biblionumber = ?");
1955 $sth->execute( $to_biblio, $from_biblio );
1958 # don't reorder those already waiting
1960 $sth = $dbh->prepare(
1961 "SELECT * FROM reserves WHERE biblionumber = ? AND (found <> ? AND found <> ? OR found is NULL) ORDER BY reservedate ASC"
1963 my $upd_sth = $dbh->prepare(
1964 "UPDATE reserves SET priority = ? WHERE biblionumber = ? AND borrowernumber = ?
1965 AND reservedate = ? AND (itemnumber = ? or itemnumber is NULL) "
1967 $sth->execute( $to_biblio, 'W', 'T' );
1969 while ( my $reserve = $sth->fetchrow_hashref() ) {
1971 $priority, $to_biblio,
1972 $reserve->{'borrowernumber'}, $reserve->{'reservedate'},
1973 $reserve->{'itemnumber'}
1980 =head2 RevertWaitingStatus
1982 RevertWaitingStatus({ itemnumber => $itemnumber });
1984 Reverts a 'waiting' hold back to a regular hold with a priority of 1.
1986 Caveat: Any waiting hold fixed with RevertWaitingStatus will be an
1987 item level hold, even if it was only a bibliolevel hold to
1988 begin with. This is because we can no longer know if a hold
1989 was item-level or bib-level after a hold has been set to
1994 sub RevertWaitingStatus
{
1995 my ( $params ) = @_;
1996 my $itemnumber = $params->{'itemnumber'};
1998 return unless ( $itemnumber );
2000 my $dbh = C4
::Context
->dbh;
2002 ## Get the waiting reserve we want to revert
2003 my $hold = Koha
::Holds
->search(
2005 itemnumber
=> $itemnumber,
2006 found
=> { not => undef },
2010 ## Increment the priority of all other non-waiting
2011 ## reserves for this bib record
2012 my $holds = Koha
::Holds
->search({ biblionumber
=> $hold->biblionumber, priority
=> { '>' => 0 } })
2013 ->update({ priority
=> \'priority
+ 1' }, { no_triggers => 1 });
2015 ## Fix up the currently waiting reserve
2020 waitingdate => undef,
2021 itemnumber => $hold->item_level_hold ? $hold->itemnumber : undef,
2025 _FixPriority( { biblionumber => $hold->biblionumber } );
2034 branchcode => $branchcode,
2035 borrowernumber => $borrowernumber,
2036 biblionumber => $biblionumber,
2037 [ itemnumber => $itemnumber, ]
2038 [ barcode => $barcode, ]
2042 Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef
2044 The letter code will be HOLD_SLIP, and the following tables are
2045 available within the slip:
2058 my $branchcode = $args->{branchcode};
2059 my $reserve_id = $args->{reserve_id};
2061 my $hold = Koha::Holds->find($reserve_id);
2062 return unless $hold;
2064 my $patron = $hold->borrower;
2065 my $reserve = $hold->unblessed;
2067 return C4::Letters::GetPreparedLetter (
2068 module => 'circulation
',
2069 letter_code => 'HOLD_SLIP
',
2070 branchcode => $branchcode,
2071 lang => $patron->lang,
2073 'reserves
' => $reserve,
2074 'branches
' => $reserve->{branchcode},
2075 'borrowers
' => $reserve->{borrowernumber},
2076 'biblio
' => $reserve->{biblionumber},
2077 'biblioitems
' => $reserve->{biblionumber},
2078 'items
' => $reserve->{itemnumber},
2083 =head2 GetReservesControlBranch
2085 my $reserves_control_branch = GetReservesControlBranch($item, $borrower);
2087 Return the branchcode to be used to determine which reserves
2088 policy applies to a transaction.
2090 C<$item> is a hashref for an item. Only 'homebranch
' is used.
2092 C<$borrower> is a hashref to borrower. Only 'branchcode
' is used.
2096 sub GetReservesControlBranch {
2097 my ( $item, $borrower ) = @_;
2099 my $reserves_control = C4::Context->preference('ReservesControlBranch
');
2102 ( $reserves_control eq 'ItemHomeLibrary
' ) ? $item->{'homebranch
'}
2103 : ( $reserves_control eq 'PatronLibrary
' ) ? $borrower->{'branchcode
'}
2109 =head2 CalculatePriority
2111 my $p = CalculatePriority($biblionumber, $resdate);
2113 Calculate priority for a new reserve on biblionumber, placing it at
2114 the end of the line of all holds whose start date falls before
2115 the current system time and that are neither on the hold shelf
2118 The reserve date parameter is optional; if it is supplied, the
2119 priority is based on the set of holds whose start date falls before
2120 the parameter value.
2122 After calculation of this priority, it is recommended to call
2123 _ShiftPriorityByDateAndPriority. Note that this is currently done in
2128 sub CalculatePriority {
2129 my ( $biblionumber, $resdate ) = @_;
2132 SELECT COUNT(*) FROM reserves
2133 WHERE biblionumber = ?
2135 AND (found IS NULL OR found = '')
2137 #skip found==W or found==T (waiting or transit holds)
2139 $sql.= ' AND
( reservedate
<= ?
)';
2142 $sql.= ' AND
( reservedate
< NOW
() )';
2144 my $dbh = C4::Context->dbh();
2145 my @row = $dbh->selectrow_array(
2148 $resdate ? ($biblionumber, $resdate) : ($biblionumber)
2151 return @row ? $row[0]+1 : 1;
2154 =head2 IsItemOnHoldAndFound
2156 my $bool = IsItemFoundHold( $itemnumber );
2158 Returns true if the item is currently on hold
2159 and that hold has a non-null found status ( W, T, etc. )
2163 sub IsItemOnHoldAndFound {
2164 my ($itemnumber) = @_;
2166 my $rs = Koha::Database->new()->schema()->resultset('Reserve
');
2168 my $found = $rs->count(
2170 itemnumber => $itemnumber,
2171 found => { '!=' => undef }
2178 =head2 GetMaxPatronHoldsForRecord
2180 my $holds_per_record = ReservesControlBranch( $borrowernumber, $biblionumber );
2182 For multiple holds on a given record for a given patron, the max
2183 number of record level holds that a patron can be placed is the highest
2184 value of the holds_per_record rule for each item if the record for that
2185 patron. This subroutine finds and returns the highest holds_per_record
2186 rule value for a given patron id and record id.
2190 sub GetMaxPatronHoldsForRecord {
2191 my ( $borrowernumber, $biblionumber ) = @_;
2193 my $patron = Koha::Patrons->find($borrowernumber);
2194 my @items = Koha::Items->search( { biblionumber => $biblionumber } );
2196 my $controlbranch = C4::Context->preference('ReservesControlBranch
');
2198 my $categorycode = $patron->categorycode;
2200 $branchcode = $patron->branchcode if ( $controlbranch eq "PatronLibrary" );
2203 foreach my $item (@items) {
2204 my $itemtype = $item->effective_itemtype();
2206 $branchcode = $item->homebranch if ( $controlbranch eq "ItemHomeLibrary" );
2208 my $rule = GetHoldRule( $categorycode, $itemtype, $branchcode );
2209 my $holds_per_record = $rule ? $rule->{holds_per_record} : 0;
2210 $max = $holds_per_record if $holds_per_record > $max;
2218 my $rule = GetHoldRule( $categorycode, $itemtype, $branchcode );
2220 Returns the matching hold related issuingrule fields for a given
2221 patron category, itemtype, and library.
2226 my ( $categorycode, $itemtype, $branchcode ) = @_;
2228 my $reservesallowed = Koha::CirculationRules->get_effective_rule(
2230 itemtype => $itemtype,
2231 categorycode => $categorycode,
2232 branchcode => $branchcode,
2233 rule_name => 'reservesallowed
',
2235 -desc => [ 'categorycode
', 'itemtype
', 'branchcode
' ]
2241 if ( $reservesallowed ) {
2242 $rules->{reservesallowed} = $reservesallowed->rule_value;
2243 $rules->{itemtype} = $reservesallowed->itemtype;
2244 $rules->{categorycode} = $reservesallowed->categorycode;
2245 $rules->{branchcode} = $reservesallowed->branchcode;
2248 my $holds_per_x_rules = Koha::CirculationRules->get_effective_rules(
2250 itemtype => $itemtype,
2251 categorycode => $categorycode,
2252 branchcode => $branchcode,
2253 rules => ['holds_per_record
', 'holds_per_day
'],
2255 -desc => [ 'categorycode
', 'itemtype
', 'branchcode
' ]
2259 $rules->{holds_per_record} = $holds_per_x_rules->{holds_per_record};
2260 $rules->{holds_per_day} = $holds_per_x_rules->{holds_per_day};
2267 Koha Development Team <http://koha-community.org/>