3 # Copyright Katipo Communications 2002
4 # Copyright Koha Development team 2012
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 use C4
::Auth
; # checkauth, getborrowernumber.
36 use Koha
::AuthorisedValues
;
39 use Koha
::CirculationRules
;
45 use Date
::Calc qw
/Today Date_to_Days/;
46 use List
::MoreUtils qw
/uniq/;
48 my $maxreserves = C4
::Context
->preference("maxreserves");
52 # if RequestOnOpac (for placing holds) is disabled, leave immediately
53 if ( ! C4
::Context
->preference('RequestOnOpac') ) {
54 print $query->redirect("/cgi-bin/koha/errors/404.pl");
58 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
60 template_name
=> "opac-reserve.tt",
67 my ($show_holds_count, $show_priority);
68 for ( C4
::Context
->preference("OPACShowHoldQueueDetails") ) {
69 m/holds/o and $show_holds_count = 1;
70 m/priority/ and $show_priority = 1;
73 my $patron = Koha
::Patrons
->find( $borrowernumber );
75 my $can_place_hold_if_available_at_pickup = C4
::Context
->preference('OPACHoldsIfAvailableAtPickup');
76 unless ( $can_place_hold_if_available_at_pickup ) {
77 my @patron_categories = split '\|', C4
::Context
->preference('OPACHoldsIfAvailableAtPickupExceptions');
78 if ( @patron_categories ) {
79 my $categorycode = $patron->categorycode;
80 $can_place_hold_if_available_at_pickup = grep { $_ eq $categorycode } @patron_categories;
84 # check if this user can place a reserve, -1 means use sys pref, 0 means dont block, 1 means block
85 if ( $patron->category->effective_BlockExpiredPatronOpacActions ) {
87 if ( $patron->is_expired ) {
89 # cannot reserve, their card has expired and the rules set mean this is not allowed
90 $template->param( message
=> 1, expired_patron
=> 1 );
91 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };
96 # Pass through any reserve charge
97 my $reservefee = $patron->category->reservefee;
98 if ( $reservefee > 0){
99 $template->param( RESERVE_CHARGE
=> $reservefee);
102 my $itemtypes = { map { $_->{itemtype
} => $_ } @
{ Koha
::ItemTypes
->search_with_localization->unblessed } };
104 # There are two ways of calling this script, with a single biblio num
105 # or multiple biblio nums.
106 my $biblionumbers = $query->param('biblionumbers');
107 my $reserveMode = $query->param('reserve_mode');
108 if ($reserveMode && ($reserveMode eq 'single')) {
109 my $bib = $query->param('single_bib');
110 $biblionumbers = "$bib/";
112 if (! $biblionumbers) {
113 $biblionumbers = $query->param('biblionumber');
116 if ((! $biblionumbers) && (! $query->param('place_reserve'))) {
117 $template->param(message
=>1, no_biblionumber
=>1);
118 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };
122 # Pass the numbers to the page so they can be fed back
123 # when the hold is confirmed. TODO: Not necessary?
124 $template->param( biblionumbers
=> $biblionumbers );
126 # Each biblio number is suffixed with '/', e.g. "1/2/3/"
127 my @biblionumbers = split /\//, $biblionumbers;
128 if (($#biblionumbers < 0) && (! $query->param('place_reserve'))) {
130 $template->param(message
=>1, no_biblionumber
=>1);
131 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };
136 # pass the pickup branch along....
137 my $branch = $query->param('branch') || $patron->branchcode || C4
::Context
->userenv->{branch
} || '' ;
138 $template->param( branch
=> $branch );
142 # Build hashes of the requested biblio(item)s and items.
146 my %biblioDataHash; # Hash of biblionumber to biblio/biblioitems record.
147 my %itemInfoHash; # Hash of itemnumber to item info.
148 foreach my $biblioNumber (@biblionumbers) {
150 my $biblioData = GetBiblioData
($biblioNumber);
151 $biblioDataHash{$biblioNumber} = $biblioData;
153 my @itemInfos = GetItemsInfo
($biblioNumber);
155 my $marcrecord= GetMarcBiblio
({ biblionumber
=> $biblioNumber });
157 # flag indicating existence of at least one item linked via a host record
159 # adding items linked via host biblios
160 my @hostitemInfos = GetHostItemsInfo
($marcrecord);
163 push (@itemInfos,@hostitemInfos);
166 $biblioData->{itemInfos
} = \
@itemInfos;
167 foreach my $itemInfo (@itemInfos) {
168 $itemInfoHash{$itemInfo->{itemnumber
}} = $itemInfo;
171 # Compute the priority rank.
172 my $biblio = Koha
::Biblios
->find( $biblioNumber );
173 $biblioData->{object
} = $biblio;
174 my $holds = $biblio->holds;
175 my $rank = $holds->count;
176 $biblioData->{reservecount
} = 1; # new reserve
177 while ( my $hold = $holds->next ) {
178 if ( $hold->is_waiting ) {
182 $biblioData->{reservecount
}++;
185 $biblioData->{rank
} = $rank + 1;
190 # If this is the second time through this script, it
191 # means we are carrying out the hold request, possibly
192 # with a specific item for each biblionumber.
195 if ( $query->param('place_reserve') ) {
198 $reserve_cnt = $patron->holds->count;
201 # List is composed of alternating biblio/item/branch
202 my $selectedItems = $query->param('selecteditems');
204 if ($query->param('reserve_mode') eq 'single') {
205 # This indicates non-JavaScript mode, so there was
206 # only a single biblio number selected.
207 my $bib = $query->param('single_bib');
208 my $item = $query->param("checkitem_$bib");
209 if ($item eq 'any') {
212 my $branch = $query->param('branch');
213 $selectedItems = "$bib/$item/$branch/";
216 $selectedItems =~ s!/$!!;
217 my @selectedItems = split /\//, $selectedItems, -1;
219 # Make sure there is a biblionum/itemnum/branch triplet for each item.
220 # The itemnum can be 'any', meaning next available.
221 my $selectionCount = @selectedItems;
222 if (($selectionCount == 0) || (($selectionCount % 3) != 0)) {
223 $template->param(message
=>1, bad_data
=>1);
224 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };
228 my $failed_holds = 0;
229 while (@selectedItems) {
230 my $biblioNum = shift(@selectedItems);
231 my $itemNum = shift(@selectedItems);
232 my $branch = shift(@selectedItems); # i.e., branch code, not name
236 my $singleBranchMode = Koha
::Libraries
->search->count == 1;
237 if ( $singleBranchMode || ! C4
::Context
->preference("OPACAllowUserToChooseBranch") )
238 { # single branch mode or disabled user choosing
239 $branch = $patron->branchcode;
242 # When choosing a specific item, the default pickup library should be dictated by the default hold policy
243 if ( ! C4
::Context
->preference("OPACAllowUserToChooseBranch") && $itemNum ) {
244 my $item = Koha
::Items
->find( $itemNum );
245 my $type = $item->effective_itemtype;
246 my $rule = GetBranchItemRule
( $patron->branchcode, $type );
248 if ( $rule->{hold_fulfillment_policy
} eq 'any' ) {
249 $branch = $patron->branchcode;
251 my $policy = $rule->{hold_fulfillment_policy
};
252 $branch = $item->$policy;
256 #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
257 if ( $itemNum ne '' ) {
258 my $item = Koha
::Items
->find( $itemNum );
259 my $hostbiblioNum = $item->biblio->biblionumber;
260 if ( $hostbiblioNum ne $biblioNum ) {
261 $biblioNum = $hostbiblioNum;
265 my $biblioData = $biblioDataHash{$biblioNum};
268 # Check for user supplied reserve date
270 if ( C4
::Context
->preference('AllowHoldDateInFuture')
271 && C4
::Context
->preference('OPACAllowHoldDateInFuture') )
273 $startdate = $query->param("reserve_date_$biblioNum");
276 my $expiration_date = $query->param("expiration_date_$biblioNum");
278 my $rank = $biblioData->{rank
};
279 if ( $itemNum ne '' ) {
280 $canreserve = 1 if CanItemBeReserved
( $borrowernumber, $itemNum, $branch )->{status
} eq 'OK';
283 $canreserve = 1 if CanBookBeReserved
( $borrowernumber, $biblioNum, $branch )->{status
} eq 'OK';
285 # Inserts a null into the 'itemnumber' field of 'reserves' table.
288 my $notes = $query->param('notes_'.$biblioNum)||'';
291 && $reserve_cnt >= $maxreserves )
296 unless ( $can_place_hold_if_available_at_pickup ) {
297 my $items_in_this_library = Koha
::Items
->search({ biblionumber
=> $biblioNum, holdingbranch
=> $branch });
298 my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
299 my $nb_of_items_unavailable = $items_in_this_library->search({ -or => { lost
=> { '!=' => 0 }, damaged
=> { '!=' => 0 }, } });
300 if ( $items_in_this_library->count > $nb_of_items_issued + $nb_of_items_unavailable ) {
305 my $itemtype = $query->param('itemtype') || undef;
306 $itemtype = undef if $itemNum;
308 # Here we actually do the reserveration. Stage 3.
310 my $reserve_id = AddReserve
(
312 branchcode
=> $branch,
313 borrowernumber
=> $borrowernumber,
314 biblionumber
=> $biblioNum,
316 reservation_date
=> $startdate,
317 expiration_date
=> $expiration_date,
319 title
=> $biblioData->{title
},
320 itemnumber
=> $itemNum,
322 itemtype
=> $itemtype,
325 $failed_holds++ unless $reserve_id;
330 print $query->redirect("/cgi-bin/koha/opac-user.pl?" . ( $failed_holds ?
"failed_holds=$failed_holds" : q
|| ) . "#opac-user-holds");
336 # Here we check that the borrower can actually make reserves Stage 1.
340 my $maxoutstanding = C4
::Context
->preference("maxoutstanding");
341 $template->param( noreserve
=> 1 ) unless $maxoutstanding;
342 my $amountoutstanding = $patron->account->balance;
343 if ( $amountoutstanding && ($amountoutstanding > $maxoutstanding) ) {
344 my $amount = sprintf "%.02f", $amountoutstanding;
345 $template->param( message
=> 1 );
347 $template->param( too_much_oweing
=> $amount );
350 if ( $patron->gonenoaddress && ($patron->gonenoaddress == 1) ) {
358 if ( $patron->lost && ($patron->lost == 1) ) {
366 if ( $patron->is_debarred ) {
371 debarred_comment
=> $patron->debarredcomment,
372 debarred_date
=> $patron->debarred,
376 my $holds = $patron->holds;
377 my $reserves_count = $holds->count;
378 $template->param( RESERVES
=> $holds->unblessed );
379 if ( $maxreserves && ( $reserves_count >= $maxreserves ) ) {
380 $template->param( message
=> 1 );
382 $template->param( too_many_reserves
=> $holds->count );
385 unless ( $noreserves ) {
386 my $requested_reserves_count = scalar( @biblionumbers );
387 if ( $maxreserves && ( $reserves_count + $requested_reserves_count > $maxreserves ) ) {
388 $template->param( new_reserves_allowed
=> $maxreserves - $reserves_count );
392 unless ($noreserves) {
393 $template->param( select_item_types
=> 1 );
399 # Build the template parameters that will show the info
400 # and items for each biblionumber.
405 my $numBibsAvailable = 0;
406 my $itemdata_enumchron = 0;
407 my $itemdata_ccode = 0;
409 my $itemLevelTypes = C4
::Context
->preference('item-level_itypes');
410 my $pickup_locations = Koha
::Libraries
->search({ pickup_location
=> 1 });
411 $template->param('item_level_itypes' => $itemLevelTypes);
413 foreach my $biblioNum (@biblionumbers) {
415 # Init the bib item with the choices for branch pickup
418 # Get relevant biblio data.
419 my $biblioData = $biblioDataHash{$biblioNum};
421 $template->param(message
=>1, bad_biblionumber
=>$biblioNum);
422 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };
426 my @not_available_at = ();
427 my $biblio = $biblioData->{object
};
428 foreach my $library ( $pickup_locations->as_list ) {
429 push( @not_available_at, $library->branchcode ) unless $biblio->can_be_transferred({ to
=> $library });
432 my $frameworkcode = GetFrameworkCode
( $biblioData->{biblionumber
} );
433 $biblioLoopIter{biblionumber
} = $biblioData->{biblionumber
};
434 $biblioLoopIter{title
} = $biblioData->{title
};
435 $biblioLoopIter{subtitle
} = $biblioData->{'subtitle'};
436 $biblioLoopIter{medium
} = $biblioData->{medium
};
437 $biblioLoopIter{part_number
} = $biblioData->{part_number
};
438 $biblioLoopIter{part_name
} = $biblioData->{part_name
};
439 $biblioLoopIter{author
} = $biblioData->{author
};
440 $biblioLoopIter{rank
} = $biblioData->{rank
};
441 $biblioLoopIter{reservecount
} = $biblioData->{reservecount
};
442 $biblioLoopIter{already_reserved
} = $biblioData->{already_reserved
};
443 $biblioLoopIter{reqholdnotes
}=0; #TODO: For future use
445 if (!$itemLevelTypes && $biblioData->{itemtype
}) {
446 $biblioLoopIter{translated_description
} = $itemtypes->{$biblioData->{itemtype
}}{translated_description
};
447 $biblioLoopIter{imageurl
} = getitemtypeimagesrc
() . "/". $itemtypes->{$biblioData->{itemtype
}}{imageurl
};
450 foreach my $itemInfo (@
{$biblioData->{itemInfos
}}) {
451 if ($itemLevelTypes && $itemInfo->{itype
}) {
452 $itemInfo->{translated_description
} = $itemtypes->{$itemInfo->{itype
}}{translated_description
};
453 $itemInfo->{imageurl
} = getitemtypeimagesrc
() . "/". $itemtypes->{$itemInfo->{itype
}}{imageurl
};
456 if (!$itemInfo->{'notforloan'} && !($itemInfo->{'itemnotforloan'} > 0)) {
457 $biblioLoopIter{forloan
} = 1;
461 my @notforloan_avs = Koha
::AuthorisedValues
->search_by_koha_field({ kohafield
=> 'items.notforloan', frameworkcode
=> $frameworkcode });
462 my $notforloan_label_of = { map { $_->authorised_value => $_->opac_description } @notforloan_avs };
464 $biblioLoopIter{itemLoop
} = [];
465 my $numCopiesAvailable = 0;
466 my $numCopiesOPACAvailable = 0;
467 foreach my $itemInfo (@
{$biblioData->{itemInfos
}}) {
468 my $itemNum = $itemInfo->{itemnumber
};
469 my $item = Koha
::Items
->find( $itemNum );
470 my $itemLoopIter = {};
472 $itemLoopIter->{itemnumber
} = $itemNum;
473 $itemLoopIter->{barcode
} = $itemInfo->{barcode
};
474 $itemLoopIter->{homeBranchName
} = $itemInfo->{homebranch
};
475 $itemLoopIter->{callNumber
} = $itemInfo->{itemcallnumber
};
476 $itemLoopIter->{enumchron
} = $itemInfo->{enumchron
};
477 $itemLoopIter->{ccode
} = $itemInfo->{ccode
};
478 $itemLoopIter->{copynumber
} = $itemInfo->{copynumber
};
479 if ($itemLevelTypes) {
480 $itemLoopIter->{translated_description
} = $itemInfo->{translated_description
};
481 $itemLoopIter->{itype
} = $itemInfo->{itype
};
482 $itemLoopIter->{imageurl
} = $itemInfo->{imageurl
};
485 # If the holdingbranch is different than the homebranch, we show the
486 # holdingbranch of the document too.
487 if ( $itemInfo->{homebranch
} ne $itemInfo->{holdingbranch
} ) {
488 $itemLoopIter->{holdingBranchName
} = $itemInfo->{holdingbranch
};
491 # If the item is currently on loan, we display its return date and
492 # change the background color.
493 my $issue = Koha
::Checkouts
->find( { itemnumber
=> $itemNum } );
495 $itemLoopIter->{dateDue
} = output_pref
({ dt
=> dt_from_string
($issue->date_due, 'sql'), as_due_date
=> 1 });
496 $itemLoopIter->{backgroundcolor
} = 'onloan';
500 my $holds = $item->current_holds;
502 if ( my $first_hold = $holds->next ) {
503 $itemLoopIter->{backgroundcolor
} = 'reserved';
504 $itemLoopIter->{reservedate
} = output_pref
({ dt
=> dt_from_string
($first_hold->reservedate), dateonly
=> 1 }); # FIXME Should be formatted in the template
505 $itemLoopIter->{ExpectedAtLibrary
} = $first_hold->branchcode;
506 $itemLoopIter->{waitingdate
} = $first_hold->waitingdate;
509 $itemLoopIter->{notforloan
} = $itemInfo->{notforloan
};
510 $itemLoopIter->{itemnotforloan
} = $itemInfo->{itemnotforloan
};
512 # Management of the notforloan document
513 if ( $itemLoopIter->{notforloan
} || $itemLoopIter->{itemnotforloan
}) {
514 $itemLoopIter->{backgroundcolor
} = 'other';
515 $itemLoopIter->{notforloanvalue
} =
516 $notforloan_label_of->{ $itemLoopIter->{notforloan
} };
519 # Management of lost or long overdue items
520 if ( $itemInfo->{itemlost
} ) {
522 # FIXME localized strings should never be in Perl code
523 $itemLoopIter->{message
} =
524 $itemInfo->{itemlost
} == 1 ?
"(lost)"
525 : $itemInfo->{itemlost
} == 2 ?
"(long overdue)"
527 $itemInfo->{backgroundcolor
} = 'other';
530 # Check of the transferred documents
531 my ( $transfertwhen, $transfertfrom, $transfertto ) =
532 GetTransfers
($itemNum);
533 if ( $transfertwhen && ($transfertwhen ne '') ) {
534 $itemLoopIter->{transfertwhen
} = output_pref
({ dt
=> dt_from_string
($transfertwhen), dateonly
=> 1 });
535 $itemLoopIter->{transfertfrom
} = $transfertfrom;
536 $itemLoopIter->{transfertto
} = $transfertto;
537 $itemLoopIter->{nocancel
} = 1;
540 # if the items belongs to a host record, show link to host record
541 if ( $itemInfo->{biblionumber
} ne $biblioNum ) {
542 $biblioLoopIter{hostitemsflag
} = 1;
543 $itemLoopIter->{hostbiblionumber
} = $itemInfo->{biblionumber
};
544 $itemLoopIter->{hosttitle
} = Koha
::Biblios
->find( $itemInfo->{biblionumber
} )->title;
547 # If there is no loan, return and transfer, we show a checkbox.
548 $itemLoopIter->{notforloan
} = $itemLoopIter->{notforloan
} || 0;
550 my $patron_unblessed = $patron->unblessed;
551 my $branch = GetReservesControlBranch
( $itemInfo, $patron_unblessed );
553 my $policy_holdallowed = !$itemLoopIter->{already_reserved
};
554 $policy_holdallowed &&=
555 IsAvailableForItemLevelRequest
($item, $patron) &&
556 CanItemBeReserved
( $borrowernumber, $itemNum )->{status
} eq 'OK';
558 if ($policy_holdallowed) {
559 my $opac_hold_policy = Koha
::CirculationRules
->get_opacitemholds_policy( { item
=> $item, patron
=> $patron } );
560 if ( $opac_hold_policy ne 'N' ) { # If Y or F
561 $itemLoopIter->{available
} = 1;
562 $numCopiesOPACAvailable++;
563 $biblioLoopIter{force_hold
} = 1 if $opac_hold_policy eq 'F';
565 $numCopiesAvailable++;
567 unless ( $can_place_hold_if_available_at_pickup ) {
568 my $items_in_this_library = Koha
::Items
->search({ biblionumber
=> $itemInfo->{biblionumber
}, holdingbranch
=> $itemInfo->{holdingbranch
} });
569 my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
570 if ( $items_in_this_library->count > $nb_of_items_issued ) {
571 push @not_available_at, $itemInfo->{holdingbranch
};
576 $itemLoopIter->{imageurl
} = getitemtypeimagelocation
( 'opac', $itemtypes->{ $itemInfo->{itype
} }{imageurl
} );
578 # Show serial enumeration when needed
579 if ($itemLoopIter->{enumchron
}) {
580 $itemdata_enumchron = 1;
582 # Show collection when needed
583 if ($itemLoopIter->{ccode
}) {
587 push @
{$biblioLoopIter{itemLoop
}}, $itemLoopIter;
590 itemdata_enumchron
=> $itemdata_enumchron,
591 itemdata_ccode
=> $itemdata_ccode,
594 if ($numCopiesAvailable > 0) {
596 $biblioLoopIter{bib_available
} = 1;
597 $biblioLoopIter{holdable
} = 1;
598 $biblioLoopIter{itemholdable
} = 1 if $numCopiesOPACAvailable;
600 if ($biblioLoopIter{already_reserved
}) {
601 $biblioLoopIter{holdable
} = undef;
602 $biblioLoopIter{itemholdable
} = undef;
604 if(not C4
::Context
->preference('AllowHoldsOnPatronsPossessions') and CheckIfIssuedToPatron
($borrowernumber,$biblioNum)) {
605 $biblioLoopIter{holdable
} = undef;
606 $biblioLoopIter{already_patron_possession
} = 1;
609 if ( $biblioLoopIter{holdable
} ) {
610 @not_available_at = uniq
@not_available_at;
611 $biblioLoopIter{not_available_at
} = \
@not_available_at ;
614 unless ( $can_place_hold_if_available_at_pickup ) {
615 @not_available_at = uniq
@not_available_at;
616 $biblioLoopIter{not_available_at
} = \
@not_available_at ;
617 # The record is not holdable is not available at any of the libraries
618 if ( Koha
::Libraries
->search->count == @not_available_at ) {
619 $biblioLoopIter{holdable
} = 0;
623 $biblioLoopIter{holdable
} &&= CanBookBeReserved
( $borrowernumber, $biblioNum )->{status
} eq 'OK';
625 # For multiple holds per record, if a patron has previously placed a hold,
626 # the patron can only place more holds of the same type. That is, if the
627 # patron placed a record level hold, all the holds the patron places must
628 # be record level. If the patron placed an item level hold, all holds
629 # the patron places must be item level
630 my $forced_hold_level = Koha
::Holds
->search(
632 borrowernumber
=> $borrowernumber,
633 biblionumber
=> $biblioNum,
636 )->forced_hold_level();
637 if ($forced_hold_level) {
638 $biblioLoopIter{force_hold
} = 1 if $forced_hold_level eq 'item';
639 $biblioLoopIter{itemholdable
} = 0 if $forced_hold_level eq 'record';
640 $biblioLoopIter{forced_hold_level
} = $forced_hold_level;
644 push @
$biblioLoop, \
%biblioLoopIter;
646 $anyholdable = 1 if $biblioLoopIter{holdable
};
649 unless ($pickup_locations->count) {
650 $numBibsAvailable = 0;
654 no_pickup_locations
=> 1
658 if ( $numBibsAvailable == 0 || $anyholdable == 0) {
659 $template->param( none_available
=> 1 );
662 if (scalar @biblionumbers > 1) {
663 $template->param( multi_hold
=> 1);
666 my $show_notes=C4
::Context
->preference('OpacHoldNotes');
667 $template->param(OpacHoldNotes
=>$show_notes);
670 $template->param(bibitemloop
=> $biblioLoop);
671 # can set reserve date in future
673 C4
::Context
->preference( 'AllowHoldDateInFuture' ) &&
674 C4
::Context
->preference( 'OPACAllowHoldDateInFuture' )
677 reserve_in_future
=> 1,
681 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };