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