Update release notes for 19.11.18 release
[koha.git] / opac / opac-reserve.pl
1 #!/usr/bin/perl
2
3 # Copyright Katipo Communications 2002
4 # Copyright Koha Development team 2012
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
17 #
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>.
20
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24 use C4::Auth;    # checkauth, getborrowernumber.
25 use C4::Koha;
26 use C4::Circulation;
27 use C4::Reserves;
28 use C4::Biblio;
29 use C4::Items;
30 use C4::Output;
31 use C4::Context;
32 use C4::Members;
33 use C4::Overdues;
34 use C4::Debug;
35
36 use Koha::AuthorisedValues;
37 use Koha::Biblios;
38 use Koha::DateUtils;
39 use Koha::IssuingRules;
40 use Koha::Items;
41 use Koha::ItemTypes;
42 use Koha::Checkouts;
43 use Koha::Libraries;
44 use Koha::Patrons;
45 use Date::Calc qw/Today Date_to_Days/;
46 use List::MoreUtils qw/uniq/;
47
48 my $maxreserves = C4::Context->preference("maxreserves");
49
50 my $query = new CGI;
51
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");
55     exit;
56 }
57
58 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
59     {
60         template_name   => "opac-reserve.tt",
61         query           => $query,
62         type            => "opac",
63         debug           => 1,
64     }
65 );
66
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;
71 }
72
73 my $patron = Koha::Patrons->find( $borrowernumber, { prefetch => ['categorycode'] } );
74 my $category = $patron->category;
75
76 my $can_place_hold_if_available_at_pickup = C4::Context->preference('OPACHoldsIfAvailableAtPickup');
77 unless ( $can_place_hold_if_available_at_pickup ) {
78     my @patron_categories = split '\|', C4::Context->preference('OPACHoldsIfAvailableAtPickupExceptions');
79     if ( @patron_categories ) {
80         my $categorycode = $patron->categorycode;
81         $can_place_hold_if_available_at_pickup = grep /^$categorycode$/, @patron_categories;
82     }
83 }
84
85 # check if this user can place a reserve, -1 means use sys pref, 0 means dont block, 1 means block
86 if ( $category->effective_BlockExpiredPatronOpacActions ) {
87
88     if ( $patron->is_expired ) {
89
90         # cannot reserve, their card has expired and the rules set mean this is not allowed
91         $template->param( message => 1, expired_patron => 1 );
92         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
93         exit;
94     }
95 }
96
97 # Pass through any reserve charge
98 my $reservefee = $category->reservefee;
99 if ( $reservefee > 0){
100     $template->param( RESERVE_CHARGE => $reservefee);
101 }
102
103 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
104
105 # There are two ways of calling this script, with a single biblio num
106 # or multiple biblio nums.
107 my $biblionumbers = $query->param('biblionumbers');
108 my $reserveMode = $query->param('reserve_mode');
109 if ($reserveMode && ($reserveMode eq 'single')) {
110     my $bib = $query->param('single_bib');
111     $biblionumbers = "$bib/";
112 }
113 if (! $biblionumbers) {
114     $biblionumbers = $query->param('biblionumber');
115 }
116
117 if ((! $biblionumbers) && (! $query->param('place_reserve'))) {
118     $template->param(message=>1, no_biblionumber=>1);
119     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
120     exit;
121 }
122
123 # Pass the numbers to the page so they can be fed back
124 # when the hold is confirmed. TODO: Not necessary?
125 $template->param( biblionumbers => $biblionumbers );
126
127 # Each biblio number is suffixed with '/', e.g. "1/2/3/"
128 my @biblionumbers = split /\//, $biblionumbers;
129 if (($#biblionumbers < 0) && (! $query->param('place_reserve'))) {
130     # TODO: New message?
131     $template->param(message=>1, no_biblionumber=>1);
132     output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
133     exit;
134 }
135
136
137 # pass the pickup branch along....
138 my $branch = $query->param('branch') || $patron->branchcode || C4::Context->userenv->{branch} || '' ;
139 $template->param( branch => $branch );
140
141 #
142 #
143 # Build hashes of the requested biblio(item)s and items.
144 #
145 #
146
147 my %biblioDataHash; # Hash of biblionumber to biblio/biblioitems record.
148 my %itemInfoHash; # Hash of itemnumber to item info.
149 foreach my $biblioNumber (@biblionumbers) {
150
151     my $biblioData = GetBiblioData($biblioNumber);
152     $biblioDataHash{$biblioNumber} = $biblioData;
153
154     my @itemInfos = GetItemsInfo($biblioNumber);
155
156     my $marcrecord= GetMarcBiblio({ biblionumber => $biblioNumber });
157
158     # flag indicating existence of at least one item linked via a host record
159     my $hostitemsflag;
160     # adding items linked via host biblios
161     my @hostitemInfos = GetHostItemsInfo($marcrecord);
162     if (@hostitemInfos){
163         $hostitemsflag =1;
164         push (@itemInfos,@hostitemInfos);
165     }
166
167     $biblioData->{itemInfos} = \@itemInfos;
168     foreach my $itemInfo (@itemInfos) {
169         $itemInfoHash{$itemInfo->{itemnumber}} = $itemInfo;
170     }
171
172     # Compute the priority rank.
173     my $biblio = Koha::Biblios->find( $biblioNumber );
174     $biblioData->{object} = $biblio;
175     my $holds = $biblio->holds;
176     my $rank = $holds->count;
177     $biblioData->{reservecount} = 1;    # new reserve
178     while ( my $hold = $holds->next ) {
179         if ( $hold->is_waiting ) {
180             $rank--;
181         }
182         else {
183             $biblioData->{reservecount}++;
184         }
185     }
186     $biblioData->{rank} = $rank + 1;
187 }
188
189 #
190 #
191 # If this is the second time through this script, it
192 # means we are carrying out the hold request, possibly
193 # with a specific item for each biblionumber.
194 #
195 #
196 if ( $query->param('place_reserve') ) {
197     my $reserve_cnt = 0;
198     if ($maxreserves) {
199         $reserve_cnt = $patron->holds->count;
200     }
201
202     # List is composed of alternating biblio/item/branch
203     my $selectedItems = $query->param('selecteditems');
204
205     if ($query->param('reserve_mode') eq 'single') {
206         # This indicates non-JavaScript mode, so there was
207         # only a single biblio number selected.
208         my $bib = $query->param('single_bib');
209         my $item = $query->param("checkitem_$bib");
210         if ($item eq 'any') {
211             $item = '';
212         }
213         my $branch = $query->param('branch');
214         $selectedItems = "$bib/$item/$branch/";
215     }
216
217     $selectedItems =~ s!/$!!;
218     my @selectedItems = split /\//, $selectedItems, -1;
219
220     # Make sure there is a biblionum/itemnum/branch triplet for each item.
221     # The itemnum can be 'any', meaning next available.
222     my $selectionCount = @selectedItems;
223     if (($selectionCount == 0) || (($selectionCount % 3) != 0)) {
224         $template->param(message=>1, bad_data=>1);
225         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
226         exit;
227     }
228
229     my $failed_holds = 0;
230     while (@selectedItems) {
231         my $biblioNum = shift(@selectedItems);
232         my $itemNum   = shift(@selectedItems);
233         my $branch    = shift(@selectedItems);    # i.e., branch code, not name
234
235         my $canreserve = 0;
236
237         my $singleBranchMode = Koha::Libraries->search->count == 1;
238         if ( $singleBranchMode || ! C4::Context->preference("OPACAllowUserToChooseBranch") )
239         {    # single branch mode or disabled user choosing
240             $branch = $patron->branchcode;
241         }
242
243         # When choosing a specific item, the default pickup library should be dictated by the default hold policy
244         if ( ! C4::Context->preference("OPACAllowUserToChooseBranch") && $itemNum ) {
245             my $item = Koha::Items->find( $itemNum );
246             my $type = $item->effective_itemtype;
247             my $rule = GetBranchItemRule( $patron->branchcode, $type );
248
249             if ( $rule->{hold_fulfillment_policy} eq 'any' ) {
250                 $branch = $patron->branchcode;
251             } else {
252                 my $policy = $rule->{hold_fulfillment_policy};
253                 $branch = $item->$policy;
254             }
255         }
256
257 #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
258         if ( $itemNum ne '' ) {
259             my $item = Koha::Items->find( $itemNum );
260             my $hostbiblioNum = $item->biblio->biblionumber;
261             if ( $hostbiblioNum ne $biblioNum ) {
262                 $biblioNum = $hostbiblioNum;
263             }
264         }
265
266         my $biblioData = $biblioDataHash{$biblioNum};
267         my $found;
268
269         # Check for user supplied reserve date
270         my $startdate;
271         if (   C4::Context->preference('AllowHoldDateInFuture')
272             && C4::Context->preference('OPACAllowHoldDateInFuture') )
273         {
274             $startdate = $query->param("reserve_date_$biblioNum");
275         }
276
277         my $expiration_date = $query->param("expiration_date_$biblioNum");
278
279         my $rank = $biblioData->{rank};
280         if ( $itemNum ne '' ) {
281             $canreserve = 1 if CanItemBeReserved( $borrowernumber, $itemNum, $branch )->{status} eq 'OK';
282         }
283         else {
284             $canreserve = 1 if CanBookBeReserved( $borrowernumber, $biblioNum, $branch )->{status} eq 'OK';
285
286             # Inserts a null into the 'itemnumber' field of 'reserves' table.
287             $itemNum = undef;
288         }
289         my $notes = $query->param('notes_'.$biblioNum)||'';
290
291         if (   $maxreserves
292             && $reserve_cnt >= $maxreserves )
293         {
294             $canreserve = 0;
295         }
296
297         unless ( $can_place_hold_if_available_at_pickup ) {
298             my $items_in_this_library = Koha::Items->search({ biblionumber => $biblioNum, holdingbranch => $branch });
299             my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
300             my $nb_of_items_unavailable = $items_in_this_library->search({ -or => { lost => { '!=' => 0 }, damaged => { '!=' => 0 }, } });
301             if ( $items_in_this_library->count > $nb_of_items_issued + $nb_of_items_unavailable ) {
302                 $canreserve = 0
303             }
304         }
305
306         my $itemtype = $query->param('itemtype') || undef;
307         $itemtype = undef if $itemNum;
308
309         # Here we actually do the reserveration. Stage 3.
310         if ($canreserve) {
311             my $reserve_id = AddReserve(
312                 $branch,          $borrowernumber, $biblioNum,
313                 [$biblioNum],     $rank,           $startdate,
314                 $expiration_date, $notes,          $biblioData->{title},
315                 $itemNum,         $found,          $itemtype,
316             );
317             $failed_holds++ unless $reserve_id;
318             ++$reserve_cnt;
319         }
320     }
321
322     print $query->redirect("/cgi-bin/koha/opac-user.pl?" . ( $failed_holds ? "failed_holds=$failed_holds" : q|| ) . "#opac-user-holds");
323     exit;
324 }
325
326 #
327 #
328 # Here we check that the borrower can actually make reserves Stage 1.
329 #
330 #
331 my $noreserves     = 0;
332 my $maxoutstanding = C4::Context->preference("maxoutstanding");
333 $template->param( noreserve => 1 ) unless $maxoutstanding;
334 my $amountoutstanding = $patron->account->balance;
335 if ( $amountoutstanding && ($amountoutstanding > $maxoutstanding) ) {
336     my $amount = sprintf "%.02f", $amountoutstanding;
337     $template->param( message => 1 );
338     $noreserves = 1;
339     $template->param( too_much_oweing => $amount );
340 }
341
342 if ( $patron->gonenoaddress && ($patron->gonenoaddress == 1) ) {
343     $noreserves = 1;
344     $template->param(
345         message => 1,
346         GNA     => 1
347     );
348 }
349
350 if ( $patron->lost && ($patron->lost == 1) ) {
351     $noreserves = 1;
352     $template->param(
353         message => 1,
354         lost    => 1
355     );
356 }
357
358 if ( $patron->is_debarred ) {
359     $noreserves = 1;
360     $template->param(
361         message          => 1,
362         debarred         => 1,
363         debarred_comment => $patron->debarredcomment,
364         debarred_date    => $patron->debarred,
365     );
366 }
367
368 my $holds = $patron->holds;
369 my $reserves_count = $holds->count;
370 $template->param( RESERVES => $holds->unblessed );
371 if ( $maxreserves && ( $reserves_count >= $maxreserves ) ) {
372     $template->param( message => 1 );
373     $noreserves = 1;
374     $template->param( too_many_reserves => $holds->count );
375 }
376
377 unless ( $noreserves ) {
378     my $requested_reserves_count = scalar( @biblionumbers );
379     if ( $maxreserves && ( $reserves_count + $requested_reserves_count > $maxreserves ) ) {
380         $template->param( new_reserves_allowed => $maxreserves - $reserves_count );
381     }
382 }
383
384 unless ($noreserves) {
385     $template->param( select_item_types => 1 );
386 }
387
388
389 #
390 #
391 # Build the template parameters that will show the info
392 # and items for each biblionumber.
393 #
394 #
395
396 my $biblioLoop = [];
397 my $numBibsAvailable = 0;
398 my $itemdata_enumchron = 0;
399 my $itemdata_ccode = 0;
400 my $anyholdable = 0;
401 my $itemLevelTypes = C4::Context->preference('item-level_itypes');
402 my $pickup_locations = Koha::Libraries->search({ pickup_location => 1 });
403 $template->param('item_level_itypes' => $itemLevelTypes);
404
405 foreach my $biblioNum (@biblionumbers) {
406
407     # Init the bib item with the choices for branch pickup
408     my %biblioLoopIter;
409
410     # Get relevant biblio data.
411     my $biblioData = $biblioDataHash{$biblioNum};
412     if (! $biblioData) {
413         $template->param(message=>1, bad_biblionumber=>$biblioNum);
414         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
415         exit;
416     }
417
418     my @not_available_at = ();
419     my $biblio = $biblioData->{object};
420     foreach my $library ( $pickup_locations->as_list ) {
421         push( @not_available_at, $library->branchcode ) unless $biblio->can_be_transferred({ to => $library });
422     }
423
424     my $frameworkcode = GetFrameworkCode( $biblioData->{biblionumber} );
425     $biblioLoopIter{biblionumber} = $biblioData->{biblionumber};
426     $biblioLoopIter{title} = $biblioData->{title};
427     $biblioLoopIter{subtitle} = $biblioData->{'subtitle'};
428     $biblioLoopIter{medium} = $biblioData->{medium};
429     $biblioLoopIter{part_number} = $biblioData->{part_number};
430     $biblioLoopIter{part_name} = $biblioData->{part_name};
431     $biblioLoopIter{author} = $biblioData->{author};
432     $biblioLoopIter{rank} = $biblioData->{rank};
433     $biblioLoopIter{reservecount} = $biblioData->{reservecount};
434     $biblioLoopIter{already_reserved} = $biblioData->{already_reserved};
435     $biblioLoopIter{reqholdnotes}=0; #TODO: For future use
436
437     if (!$itemLevelTypes && $biblioData->{itemtype}) {
438         $biblioLoopIter{translated_description} = $itemtypes->{$biblioData->{itemtype}}{translated_description};
439         $biblioLoopIter{imageurl} = getitemtypeimagesrc() . "/". $itemtypes->{$biblioData->{itemtype}}{imageurl};
440     }
441
442     foreach my $itemInfo (@{$biblioData->{itemInfos}}) {
443         if ($itemLevelTypes && $itemInfo->{itype}) {
444             $itemInfo->{translated_description} = $itemtypes->{$itemInfo->{itype}}{translated_description};
445             $itemInfo->{imageurl} = getitemtypeimagesrc() . "/". $itemtypes->{$itemInfo->{itype}}{imageurl};
446         }
447
448         if (!$itemInfo->{'notforloan'} && !($itemInfo->{'itemnotforloan'} > 0)) {
449             $biblioLoopIter{forloan} = 1;
450         }
451     }
452
453     my @notforloan_avs = Koha::AuthorisedValues->search_by_koha_field({ kohafield => 'items.notforloan', frameworkcode => $frameworkcode });
454     my $notforloan_label_of = { map { $_->authorised_value => $_->opac_description } @notforloan_avs };
455
456     my $visible_items = { map { $_->itemnumber => $_ } $biblio->items->filter_by_visible_in_opac( { patron => $patron } )->as_list };
457
458     # Only keep the items that are visible in the opac (i.e. those in %visible_items)
459     # FIXME: We should get rid of itemInfos altogether and use $visible_items
460     $biblioData->{itemInfos} = [ grep { $visible_items->{ $_->{itemnumber} } } @{ $biblioData->{itemInfos} } ];
461
462     $biblioLoopIter{itemLoop} = [];
463     my $numCopiesAvailable = 0;
464     my $numCopiesOPACAvailable = 0;
465     foreach my $itemInfo (@{$biblioData->{itemInfos}}) {
466         my $itemNum = $itemInfo->{itemnumber};
467         my $item = $visible_items->{$itemNum};
468         my $itemLoopIter = {};
469
470         $itemLoopIter->{itemnumber} = $itemNum;
471         $itemLoopIter->{barcode} = $itemInfo->{barcode};
472         $itemLoopIter->{homeBranchName} = $itemInfo->{homebranch};
473         $itemLoopIter->{callNumber} = $itemInfo->{itemcallnumber};
474         $itemLoopIter->{enumchron} = $itemInfo->{enumchron};
475         $itemLoopIter->{ccode} = $itemInfo->{ccode};
476         $itemLoopIter->{copynumber} = $itemInfo->{copynumber};
477         if ($itemLevelTypes) {
478             $itemLoopIter->{translated_description} = $itemInfo->{translated_description};
479             $itemLoopIter->{itype} = $itemInfo->{itype};
480             $itemLoopIter->{imageurl} = $itemInfo->{imageurl};
481         }
482
483         # If the holdingbranch is different than the homebranch, we show the
484         # holdingbranch of the document too.
485         if ( $itemInfo->{homebranch} ne $itemInfo->{holdingbranch} ) {
486             $itemLoopIter->{holdingBranchName} = $itemInfo->{holdingbranch};
487         }
488
489         # If the item is currently on loan, we display its return date and
490         # change the background color.
491         my $issue = Koha::Checkouts->find( { itemnumber => $itemNum } );
492         if ( $issue ) {
493             $itemLoopIter->{dateDue} = output_pref({ dt => dt_from_string($issue->date_due, 'sql'), as_due_date => 1 });
494             $itemLoopIter->{backgroundcolor} = 'onloan';
495         }
496
497         # checking reserve
498         my $holds = $item->current_holds;
499
500         if ( my $first_hold = $holds->next ) {
501             $itemLoopIter->{backgroundcolor} = 'reserved';
502             $itemLoopIter->{reservedate}     = output_pref({ dt => dt_from_string($first_hold->reservedate), dateonly => 1 }); # FIXME Should be formatted in the template
503             $itemLoopIter->{ExpectedAtLibrary}         = $first_hold->branchcode;
504             $itemLoopIter->{waitingdate} = $first_hold->waitingdate;
505         }
506
507         $itemLoopIter->{notforloan} = $itemInfo->{notforloan};
508         $itemLoopIter->{itemnotforloan} = $itemInfo->{itemnotforloan};
509
510         # Management of the notforloan document
511         if ( $itemLoopIter->{notforloan} || $itemLoopIter->{itemnotforloan}) {
512             $itemLoopIter->{backgroundcolor} = 'other';
513             $itemLoopIter->{notforloanvalue} =
514               $notforloan_label_of->{ $itemLoopIter->{notforloan} };
515         }
516
517         # Management of lost or long overdue items
518         if ( $itemInfo->{itemlost} ) {
519
520             # FIXME localized strings should never be in Perl code
521             $itemLoopIter->{message} =
522                 $itemInfo->{itemlost} == 1 ? "(lost)"
523               : $itemInfo->{itemlost} == 2 ? "(long overdue)"
524               : "";
525             $itemInfo->{backgroundcolor} = 'other';
526         }
527
528         # Check of the transferred documents
529         my ( $transfertwhen, $transfertfrom, $transfertto ) =
530           GetTransfers($itemNum);
531         if ( $transfertwhen && ($transfertwhen ne '') ) {
532             $itemLoopIter->{transfertwhen} = output_pref({ dt => dt_from_string($transfertwhen), dateonly => 1 });
533             $itemLoopIter->{transfertfrom} = $transfertfrom;
534             $itemLoopIter->{transfertto} = $transfertto;
535             $itemLoopIter->{nocancel} = 1;
536         }
537
538         # if the items belongs to a host record, show link to host record
539         if ( $itemInfo->{biblionumber} ne $biblioNum ) {
540             $biblioLoopIter{hostitemsflag}    = 1;
541             $itemLoopIter->{hostbiblionumber} = $itemInfo->{biblionumber};
542             $itemLoopIter->{hosttitle}        = Koha::Biblios->find( $itemInfo->{biblionumber} )->title;
543         }
544
545         # If there is no loan, return and transfer, we show a checkbox.
546         $itemLoopIter->{notforloan} = $itemLoopIter->{notforloan} || 0;
547
548         my $patron_unblessed = $patron->unblessed;
549         my $branch = GetReservesControlBranch( $itemInfo, $patron_unblessed );
550
551         my $policy_holdallowed = !$itemLoopIter->{already_reserved};
552         $policy_holdallowed &&=
553             IsAvailableForItemLevelRequest($item, $patron) &&
554             CanItemBeReserved( $borrowernumber, $itemNum )->{status} eq 'OK';
555
556         if ($policy_holdallowed) {
557             my $opac_hold_policy = Koha::IssuingRules->get_opacitemholds_policy( { item => $item, patron => $patron } );
558             if ( $opac_hold_policy ne 'N' ) { # If Y or F
559                 $itemLoopIter->{available} = 1;
560                 $numCopiesOPACAvailable++;
561                 $biblioLoopIter{force_hold} = 1 if $opac_hold_policy eq 'F';
562             }
563             $numCopiesAvailable++;
564
565             unless ( $can_place_hold_if_available_at_pickup ) {
566                 my $items_in_this_library = Koha::Items->search({ biblionumber => $itemInfo->{biblionumber}, holdingbranch => $itemInfo->{holdingbranch} });
567                 my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
568                 if ( $items_in_this_library->count > $nb_of_items_issued ) {
569                     push @not_available_at, $itemInfo->{holdingbranch};
570                 }
571             }
572         }
573
574         $itemLoopIter->{imageurl} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itemInfo->{itype} }{imageurl} );
575
576     # Show serial enumeration when needed
577         if ($itemLoopIter->{enumchron}) {
578             $itemdata_enumchron = 1;
579         }
580     # Show collection when needed
581         if ($itemLoopIter->{ccode}) {
582             $itemdata_ccode = 1;
583         }
584
585         push @{$biblioLoopIter{itemLoop}}, $itemLoopIter;
586     }
587     $template->param(
588         itemdata_enumchron => $itemdata_enumchron,
589         itemdata_ccode     => $itemdata_ccode,
590     );
591
592     if ($numCopiesAvailable > 0) {
593         $numBibsAvailable++;
594         $biblioLoopIter{bib_available} = 1;
595         $biblioLoopIter{holdable} = 1;
596         $biblioLoopIter{itemholdable} = 1 if $numCopiesOPACAvailable;
597     }
598     if ($biblioLoopIter{already_reserved}) {
599         $biblioLoopIter{holdable} = undef;
600         $biblioLoopIter{itemholdable} = undef;
601     }
602     if(not C4::Context->preference('AllowHoldsOnPatronsPossessions') and CheckIfIssuedToPatron($borrowernumber,$biblioNum)) {
603         $biblioLoopIter{holdable} = undef;
604         $biblioLoopIter{already_patron_possession} = 1;
605     }
606
607     if ( $biblioLoopIter{holdable} ) {
608         @not_available_at = uniq @not_available_at;
609         $biblioLoopIter{not_available_at} = \@not_available_at ;
610     }
611
612     unless ( $can_place_hold_if_available_at_pickup ) {
613         @not_available_at = uniq @not_available_at;
614         $biblioLoopIter{not_available_at} = \@not_available_at ;
615         # The record is not holdable is not available at any of the libraries
616         if ( Koha::Libraries->search->count == @not_available_at ) {
617             $biblioLoopIter{holdable} = 0;
618         }
619     }
620
621     $biblioLoopIter{holdable} &&= CanBookBeReserved( $borrowernumber, $biblioNum )->{status} eq 'OK';
622
623     # For multiple holds per record, if a patron has previously placed a hold,
624     # the patron can only place more holds of the same type. That is, if the
625     # patron placed a record level hold, all the holds the patron places must
626     # be record level. If the patron placed an item level hold, all holds
627     # the patron places must be item level
628     my $forced_hold_level = Koha::Holds->search(
629         {
630             borrowernumber => $borrowernumber,
631             biblionumber   => $biblioNum,
632             found          => undef,
633         }
634     )->forced_hold_level();
635     if ($forced_hold_level) {
636         $biblioLoopIter{force_hold}   = 1 if $forced_hold_level eq 'item';
637         $biblioLoopIter{itemholdable} = 0 if $forced_hold_level eq 'record';
638     }
639
640
641     push @$biblioLoop, \%biblioLoopIter;
642
643     $anyholdable = 1 if $biblioLoopIter{holdable};
644 }
645
646 unless ($pickup_locations->count) {
647     $numBibsAvailable = 0;
648     $anyholdable = 0;
649     $template->param(
650         message => 1,
651         no_pickup_locations => 1
652     );
653 }
654
655 if ( $numBibsAvailable == 0 || $anyholdable == 0) {
656     $template->param( none_available => 1 );
657 }
658
659 if (scalar @biblionumbers > 1) {
660     $template->param( multi_hold => 1);
661 }
662
663 my $show_notes=C4::Context->preference('OpacHoldNotes');
664 $template->param(OpacHoldNotes=>$show_notes);
665
666 # display infos
667 $template->param(bibitemloop => $biblioLoop);
668 # can set reserve date in future
669 if (
670     C4::Context->preference( 'AllowHoldDateInFuture' ) &&
671     C4::Context->preference( 'OPACAllowHoldDateInFuture' )
672     ) {
673     $template->param(
674             reserve_in_future         => 1,
675     );
676 }
677
678 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };