Bug 29697: Replace GetMarcBiblio occurrences with $biblio->metadata->record
[srvgit] / 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 );
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 $biblio = Koha::Biblios->find( $biblioNumber );
154     next unless $biblio;
155
156     my $marcrecord = $biblio->metadata->record;
157
158     # 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);
161     if (@hostitemInfos){
162         push (@itemInfos,@hostitemInfos);
163     }
164
165     $biblioData->{itemInfos} = \@itemInfos;
166     foreach my $itemInfo (@itemInfos) {
167         $itemInfoHash{$itemInfo->{itemnumber}} = $itemInfo;
168     }
169
170     # Compute the priority rank.
171     $biblioData->{object} = $biblio;
172     my $holds = $biblio->holds;
173     my $rank = $holds->count;
174     $biblioData->{reservecount} = 1;    # new reserve
175     while ( my $hold = $holds->next ) {
176         if ( $hold->is_waiting ) {
177             $rank--;
178         }
179         else {
180             $biblioData->{reservecount}++;
181         }
182     }
183     $biblioData->{rank} = $rank + 1;
184 }
185
186 #
187 #
188 # If this is the second time through this script, it
189 # means we are carrying out the hold request, possibly
190 # with a specific item for each biblionumber.
191 #
192 #
193 if ( $query->param('place_reserve') ) {
194     my $reserve_cnt = 0;
195     if ($maxreserves) {
196         $reserve_cnt = $patron->holds->count;
197     }
198
199     # List is composed of alternating biblio/item/branch
200     my $selectedItems = $query->param('selecteditems');
201
202     if ($query->param('reserve_mode') eq 'single') {
203         # This indicates non-JavaScript mode, so there was
204         # only a single biblio number selected.
205         my $bib = $query->param('single_bib');
206         my $item = $query->param("checkitem_$bib");
207         if ($item eq 'any') {
208             $item = '';
209         }
210         my $branch = $query->param('branch');
211         $selectedItems = "$bib/$item/$branch/";
212     }
213
214     $selectedItems =~ s!/$!!;
215     my @selectedItems = split /\//, $selectedItems, -1;
216
217     # Make sure there is a biblionum/itemnum/branch triplet for each item.
218     # The itemnum can be 'any', meaning next available.
219     my $selectionCount = @selectedItems;
220     if (($selectionCount == 0) || (($selectionCount % 3) != 0)) {
221         $template->param(message=>1, bad_data=>1);
222         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
223         exit;
224     }
225
226     my $failed_holds = 0;
227     while (@selectedItems) {
228         my $biblioNum = shift(@selectedItems);
229         my $itemNum   = shift(@selectedItems);
230         my $branch    = shift(@selectedItems);    # i.e., branch code, not name
231
232         my $canreserve = 0;
233
234         my $singleBranchMode = Koha::Libraries->search->count == 1;
235         if ( $singleBranchMode || ! C4::Context->preference("OPACAllowUserToChooseBranch") )
236         {    # single branch mode or disabled user choosing
237             $branch = $patron->branchcode;
238         }
239
240         my $item = $itemNum ? Koha::Items->find( $itemNum ) : undef;
241         # When choosing a specific item, the default pickup library should be dictated by the default hold policy
242         if ( ! C4::Context->preference("OPACAllowUserToChooseBranch") && $item ) {
243             my $type = $item->effective_itemtype;
244             my $rule = GetBranchItemRule( $patron->branchcode, $type );
245
246             if ( $rule->{hold_fulfillment_policy} eq 'any' || $rule->{hold_fulfillment_policy} eq 'patrongroup' ) {
247                 $branch = $patron->branchcode;
248             } elsif ( $rule->{hold_fulfillment_policy} eq 'holdgroup' ){
249                 $branch = $item->homebranch;
250             } else {
251                 my $policy = $rule->{hold_fulfillment_policy};
252                 $branch = $item->$policy;
253             }
254         }
255
256 #item may belong to a host biblio, if yes change biblioNum to hosts bilbionumber
257         if ( $item ) {
258             my $hostbiblioNum = $item->biblio->biblionumber;
259             if ( $hostbiblioNum ne $biblioNum ) {
260                 $biblioNum = $hostbiblioNum;
261             }
262         }
263
264         my $biblioData = $biblioDataHash{$biblioNum};
265         my $found;
266
267         # Check for user supplied reserve date
268         my $startdate;
269         if (   C4::Context->preference('AllowHoldDateInFuture')
270             && C4::Context->preference('OPACAllowHoldDateInFuture') )
271         {
272             $startdate = $query->param("reserve_date_$biblioNum");
273         }
274
275         my $patron_expiration_date = $query->param("expiration_date_$biblioNum");
276
277         my $itemtype = $query->param('itemtype') || undef;
278         $itemtype = undef if $itemNum;
279
280         my $rank = $biblioData->{rank};
281         my $patron = Koha::Patrons->find( $borrowernumber );
282         if ( $item ) {
283             $canreserve = 1 if CanItemBeReserved( $patron, $item, $branch )->{status} eq 'OK';
284         }
285         else {
286             $canreserve = 1
287               if CanBookBeReserved( $borrowernumber, $biblioNum, $branch, { itemtype => $itemtype } )->{status} eq 'OK';
288
289             # Inserts a null into the 'itemnumber' field of 'reserves' table.
290             $itemNum = undef;
291         }
292         my $notes = $query->param('notes_'.$biblioNum)||'';
293
294         if (   $maxreserves
295             && $reserve_cnt >= $maxreserves )
296         {
297             $canreserve = 0;
298         }
299
300         unless ( $can_place_hold_if_available_at_pickup ) {
301             my $items_in_this_library = Koha::Items->search({ biblionumber => $biblioNum, holdingbranch => $branch });
302             my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
303             my $nb_of_items_unavailable = $items_in_this_library->search({ -or => { lost => { '!=' => 0 }, damaged => { '!=' => 0 }, } });
304             if ( $items_in_this_library->count > $nb_of_items_issued + $nb_of_items_unavailable ) {
305                 $canreserve = 0
306             }
307         }
308
309         # Here we actually do the reserveration. Stage 3.
310         if ($canreserve) {
311             my $reserve_id = AddReserve(
312                 {
313                     branchcode       => $branch,
314                     borrowernumber   => $borrowernumber,
315                     biblionumber     => $biblioNum,
316                     priority         => $rank,
317                     reservation_date => $startdate,
318                     expiration_date  => $patron_expiration_date,
319                     notes            => $notes,
320                     title            => $biblioData->{title},
321                     itemnumber       => $itemNum,
322                     found            => $found,
323                     itemtype         => $itemtype,
324                 }
325             );
326             $failed_holds++ unless $reserve_id;
327             ++$reserve_cnt;
328         }
329     }
330
331     print $query->redirect("/cgi-bin/koha/opac-user.pl?" . ( $failed_holds ? "failed_holds=$failed_holds" : q|| ) . "#opac-user-holds");
332     exit;
333 }
334
335 #
336 #
337 # Here we check that the borrower can actually make reserves Stage 1.
338 #
339 #
340 my $noreserves     = 0;
341 my $maxoutstanding = C4::Context->preference("maxoutstanding");
342 $template->param( noreserve => 1 ) unless $maxoutstanding;
343 my $amountoutstanding = $patron->account->balance;
344 if ( $amountoutstanding && ($amountoutstanding > $maxoutstanding) ) {
345     my $amount = sprintf "%.02f", $amountoutstanding;
346     $template->param( message => 1 );
347     $noreserves = 1;
348     $template->param( too_much_oweing => $amount );
349 }
350
351 if ( $patron->gonenoaddress && ($patron->gonenoaddress == 1) ) {
352     $noreserves = 1;
353     $template->param(
354         message => 1,
355         GNA     => 1
356     );
357 }
358
359 if ( $patron->lost && ($patron->lost == 1) ) {
360     $noreserves = 1;
361     $template->param(
362         message => 1,
363         lost    => 1
364     );
365 }
366
367 if ( $patron->is_debarred ) {
368     $noreserves = 1;
369     $template->param(
370         message          => 1,
371         debarred         => 1,
372         debarred_comment => $patron->debarredcomment,
373         debarred_date    => $patron->debarred,
374     );
375 }
376
377 my $holds = $patron->holds;
378 my $reserves_count = $holds->count;
379 $template->param( RESERVES => $holds->unblessed );
380 if ( $maxreserves && ( $reserves_count >= $maxreserves ) ) {
381     $template->param( message => 1 );
382     $noreserves = 1;
383     $template->param( too_many_reserves => $holds->count );
384 }
385
386 unless ( $noreserves ) {
387     my $requested_reserves_count = scalar( @biblionumbers );
388     if ( $maxreserves && ( $reserves_count + $requested_reserves_count > $maxreserves ) ) {
389         $template->param( new_reserves_allowed => $maxreserves - $reserves_count );
390     }
391 }
392
393 unless ($noreserves) {
394     $template->param( select_item_types => 1 );
395 }
396
397
398 #
399 #
400 # Build the template parameters that will show the info
401 # and items for each biblionumber.
402 #
403 #
404
405 my $biblioLoop = [];
406 my $numBibsAvailable = 0;
407 my $itemdata_enumchron = 0;
408 my $itemdata_ccode = 0;
409 my $anyholdable = 0;
410 my $itemLevelTypes = C4::Context->preference('item-level_itypes');
411 my $pickup_locations = Koha::Libraries->search({ pickup_location => 1 });
412 $template->param('item_level_itypes' => $itemLevelTypes);
413
414 foreach my $biblioNum (@biblionumbers) {
415
416     # Init the bib item with the choices for branch pickup
417     my %biblioLoopIter;
418
419     # Get relevant biblio data.
420     my $biblioData = $biblioDataHash{$biblioNum};
421     if (! $biblioData) {
422         $template->param(message=>1, bad_biblionumber=>$biblioNum);
423         output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
424         exit;
425     }
426
427     my @not_available_at = ();
428     my $biblio = $biblioData->{object};
429     foreach my $library ( $pickup_locations->as_list ) {
430         push( @not_available_at, $library->branchcode ) unless $biblio->can_be_transferred({ to => $library });
431     }
432
433     my $frameworkcode = GetFrameworkCode( $biblioData->{biblionumber} );
434     $biblioLoopIter{biblionumber} = $biblioData->{biblionumber};
435     $biblioLoopIter{title} = $biblioData->{title};
436     $biblioLoopIter{subtitle} = $biblioData->{'subtitle'};
437     $biblioLoopIter{medium} = $biblioData->{medium};
438     $biblioLoopIter{part_number} = $biblioData->{part_number};
439     $biblioLoopIter{part_name} = $biblioData->{part_name};
440     $biblioLoopIter{author} = $biblioData->{author};
441     $biblioLoopIter{rank} = $biblioData->{rank};
442     $biblioLoopIter{reservecount} = $biblioData->{reservecount};
443     $biblioLoopIter{already_reserved} = $biblioData->{already_reserved};
444     $biblioLoopIter{reqholdnotes}=0; #TODO: For future use
445
446     if (!$itemLevelTypes && $biblioData->{itemtype}) {
447         $biblioLoopIter{translated_description} = $itemtypes->{$biblioData->{itemtype}}{translated_description};
448         $biblioLoopIter{imageurl} = getitemtypeimagesrc() . "/". $itemtypes->{$biblioData->{itemtype}}{imageurl};
449     }
450
451     foreach my $itemInfo (@{$biblioData->{itemInfos}}) {
452         if ($itemLevelTypes && $itemInfo->{itype}) {
453             $itemInfo->{translated_description} = $itemtypes->{$itemInfo->{itype}}{translated_description};
454             $itemInfo->{imageurl} = getitemtypeimagesrc() . "/". $itemtypes->{$itemInfo->{itype}}{imageurl};
455         }
456
457         if (!$itemInfo->{'notforloan'} && !($itemInfo->{'itemnotforloan'} > 0)) {
458             $biblioLoopIter{forloan} = 1;
459         }
460     }
461
462     my @notforloan_avs = Koha::AuthorisedValues->search_by_koha_field({ kohafield => 'items.notforloan', frameworkcode => $frameworkcode })->as_list;
463     my $notforloan_label_of = { map { $_->authorised_value => $_->opac_description } @notforloan_avs };
464
465     my $visible_items = { map { $_->itemnumber => $_ } $biblio->items->filter_by_visible_in_opac( { patron => $patron } )->as_list };
466
467     # Only keep the items that are visible in the opac (i.e. those in %visible_items)
468     # FIXME: We should get rid of itemInfos altogether and use $visible_items
469     $biblioData->{itemInfos} = [ grep { $visible_items->{ $_->{itemnumber} } } @{ $biblioData->{itemInfos} } ];
470
471     $biblioLoopIter{itemLoop} = [];
472     my $numCopiesAvailable = 0;
473     my $numCopiesOPACAvailable = 0;
474     # iterating through all items first to check if any of them available
475     # to pass this value further inside down to IsAvailableForItemLevelRequest to
476     # it's complicated logic to analyse.
477     # (before this loop was inside that sub loop so it was O(n^2) )
478     my $items_any_available;
479     $items_any_available = ItemsAnyAvailableAndNotRestricted( { biblionumber => $biblioNum, patron => $patron }) if $patron;
480     foreach my $itemInfo (@{$biblioData->{itemInfos}}) {
481         my $itemNum = $itemInfo->{itemnumber};
482         my $item = $visible_items->{$itemNum};
483         my $itemLoopIter = {};
484
485         $itemLoopIter->{itemnumber} = $itemNum;
486         $itemLoopIter->{barcode} = $itemInfo->{barcode};
487         $itemLoopIter->{homeBranchName} = $itemInfo->{homebranch};
488         $itemLoopIter->{callNumber} = $itemInfo->{itemcallnumber};
489         $itemLoopIter->{enumchron} = $itemInfo->{enumchron};
490         $itemLoopIter->{ccode} = $itemInfo->{ccode};
491         $itemLoopIter->{copynumber} = $itemInfo->{copynumber};
492         $itemLoopIter->{itemnotes} = $itemInfo->{itemnotes};
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->{onloan} = '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             $itemLoopIter->{hostbiblionumber} = $itemInfo->{biblionumber};
557             $itemLoopIter->{hosttitle}        = Koha::Biblios->find( $itemInfo->{biblionumber} )->title;
558         }
559
560         # If there is no loan, return and transfer, we show a checkbox.
561         $itemLoopIter->{notforloan} = $itemLoopIter->{notforloan} || 0;
562
563         my $patron_unblessed = $patron->unblessed;
564         my $branch = GetReservesControlBranch( $itemInfo, $patron_unblessed );
565
566         my $policy_holdallowed = !$itemLoopIter->{already_reserved};
567         # items_any_available defined outside of the current loop,
568         # so we avoiding loop inside IsAvailableForItemLevelRequest:
569         $policy_holdallowed &&=
570             CanItemBeReserved( $patron, $item )->{status} eq 'OK' &&
571             IsAvailableForItemLevelRequest($item, $patron, undef, $items_any_available);
572
573         if ($policy_holdallowed) {
574             my $opac_hold_policy = Koha::CirculationRules->get_opacitemholds_policy( { item => $item, patron => $patron } );
575             if ( $opac_hold_policy ne 'N' ) { # If Y or F
576                 $itemLoopIter->{available} = 1;
577                 $numCopiesOPACAvailable++;
578                 $biblioLoopIter{force_hold} = 1 if $opac_hold_policy eq 'F';
579             }
580             $numCopiesAvailable++;
581
582             unless ( $can_place_hold_if_available_at_pickup ) {
583                 my $items_in_this_library = Koha::Items->search({ biblionumber => $itemInfo->{biblionumber}, holdingbranch => $itemInfo->{holdingbranch} });
584                 my $nb_of_items_issued = $items_in_this_library->search({ 'issue.itemnumber' => { not => undef }}, { join => 'issue' })->count;
585                 if ( $items_in_this_library->count > $nb_of_items_issued ) {
586                     push @not_available_at, $itemInfo->{holdingbranch};
587                 }
588             }
589         }
590
591         $itemLoopIter->{imageurl} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itemInfo->{itype} }{imageurl} );
592
593     # Show serial enumeration when needed
594         if ($itemLoopIter->{enumchron}) {
595             $itemdata_enumchron = 1;
596         }
597     # Show collection when needed
598         if ($itemLoopIter->{ccode}) {
599             $itemdata_ccode = 1;
600         }
601
602         push @{$biblioLoopIter{itemLoop}}, $itemLoopIter;
603     }
604     $template->param(
605         itemdata_enumchron => $itemdata_enumchron,
606         itemdata_ccode     => $itemdata_ccode,
607     );
608
609     if ($numCopiesAvailable > 0) {
610         $numBibsAvailable++;
611         $biblioLoopIter{bib_available} = 1;
612         $biblioLoopIter{holdable} = 1;
613         $biblioLoopIter{itemholdable} = 1 if $numCopiesOPACAvailable;
614     }
615     if ($biblioLoopIter{already_reserved}) {
616         $biblioLoopIter{holdable} = undef;
617         $biblioLoopIter{itemholdable} = undef;
618     }
619     if ( $biblioLoopIter{holdable} ) {
620         @not_available_at = uniq @not_available_at;
621         $biblioLoopIter{not_available_at} = \@not_available_at ;
622     }
623
624     unless ( $can_place_hold_if_available_at_pickup ) {
625         @not_available_at = uniq @not_available_at;
626         $biblioLoopIter{not_available_at} = \@not_available_at ;
627         # The record is not holdable is not available at any of the libraries
628         if ( Koha::Libraries->search->count == @not_available_at ) {
629             $biblioLoopIter{holdable} = 0;
630         }
631     }
632
633     my $status = CanBookBeReserved( $borrowernumber, $biblioNum )->{status};
634     $biblioLoopIter{holdable} &&= $status eq 'OK';
635     $biblioLoopIter{already_patron_possession} = $status eq 'alreadypossession';
636
637     if ( $biblioLoopIter{holdable} and C4::Context->preference('AllowHoldItemTypeSelection') ) {
638         # build the allowed item types loop
639         my $rs = $biblio->items->search(
640             undef,
641             {   select => [ { distinct => 'itype' } ],
642                 as     => 'item_type'
643             }
644         );
645
646         my @item_types =
647           grep { CanBookBeReserved( $borrowernumber, $biblioNum, $branch, { itemtype => $_ } )->{status} eq 'OK' }
648           $rs->get_column('item_type');
649
650         $biblioLoopIter{allowed_item_types} = \@item_types;
651     }
652
653     if ( $status eq 'recall' ) {
654         $biblioLoopIter{recall} = 1;
655     }
656
657     # For multiple holds per record, if a patron has previously placed a hold,
658     # the patron can only place more holds of the same type. That is, if the
659     # patron placed a record level hold, all the holds the patron places must
660     # be record level. If the patron placed an item level hold, all holds
661     # the patron places must be item level
662     my $forced_hold_level = Koha::Holds->search(
663         {
664             borrowernumber => $borrowernumber,
665             biblionumber   => $biblioNum,
666             found          => undef,
667         }
668     )->forced_hold_level();
669     if ($forced_hold_level) {
670         $biblioLoopIter{force_hold}   = 1 if $forced_hold_level eq 'item';
671         $biblioLoopIter{itemholdable} = 0 if $forced_hold_level eq 'record';
672         $biblioLoopIter{forced_hold_level} = $forced_hold_level;
673     }
674
675
676     push @$biblioLoop, \%biblioLoopIter;
677
678     $anyholdable = 1 if $biblioLoopIter{holdable};
679 }
680
681 unless ($pickup_locations->count) {
682     $numBibsAvailable = 0;
683     $anyholdable = 0;
684     $template->param(
685         message => 1,
686         no_pickup_locations => 1
687     );
688 }
689
690 if ( $numBibsAvailable == 0 || $anyholdable == 0) {
691     $template->param( none_available => 1 );
692 }
693
694 if (scalar @biblionumbers > 1) {
695     $template->param( multi_hold => 1);
696 }
697
698 my $show_notes=C4::Context->preference('OpacHoldNotes');
699 $template->param(OpacHoldNotes=>$show_notes);
700
701 # display infos
702 $template->param(bibitemloop => $biblioLoop);
703 # can set reserve date in future
704 if (
705     C4::Context->preference( 'AllowHoldDateInFuture' ) &&
706     C4::Context->preference( 'OPACAllowHoldDateInFuture' )
707     ) {
708     $template->param(
709             reserve_in_future         => 1,
710     );
711 }
712
713 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };