Bug 20985: Add OnShelfHoldsAllowed checks to CanItemBeReserved
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reserve / request.tt
1 [% USE raw %]
2 [% USE To %]
3 [% USE Asset %]
4 [% USE JSON.Escape %]
5 [% USE Koha %]
6 [% USE KohaDates %]
7 [% USE Branches %]
8 [% USE Categories %]
9 [% USE ItemTypes %]
10 [% USE AuthorisedValues %]
11 [% USE Price %]
12 [% USE TablesSettings %]
13 [% SET footerjs = 1 %]
14 [% INCLUDE 'doc-head-open.inc' %]
15 [% UNLESS ( multi_hold ) %]
16     <title>Place a hold on [% INCLUDE 'biblio-title-head.inc' %] &rsaquo; Holds &rsaquo; Circulation &rsaquo; Koha</title>
17 [% ELSE %]
18     <title>Confirm holds &rsaquo; Holds &rsaquo; Circulation &rsaquo; Koha</title>
19 [% END %]
20 [% INCLUDE 'doc-head-close.inc' %]
21 </head>
22
23 <body id="circ_request" class="catalog">
24
25 [% INCLUDE 'header.inc' %]
26 [% INCLUDE 'circ-search.inc' %]
27
28 [% UNLESS ( multi_hold ) %]
29     <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
30         <ol>
31             <li>
32                 <a href="/cgi-bin/koha/mainpage.pl">Home</a>
33             </li>
34             <li>
35                 <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a>
36             </li>
37             <li>
38                 [% INCLUDE 'biblio-title.inc' link =1 %]
39             </li>
40             <li>
41                 <a href="#" aria-current="page">
42                     Place a hold
43                 </a>
44             </li>
45         </ol>
46     </nav>
47 [% ELSE %]
48     <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
49         <ol>
50             <li>
51                 <a href="/cgi-bin/koha/mainpage.pl">Home</a>
52             </li>
53             <li>
54                 <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a>
55             </li>
56             <li>
57                 <a href="#" aria-current="page">
58                     Confirm holds
59                 </a>
60             </li>
61         </ol>
62     </nav>
63 [% END # UNLESS multi_hold %]
64
65 <div class="main container-fluid">
66     <div class="row">
67         [% IF ( multi_hold ) # No sidebar menu when placing multiple holds %]
68             <div class="col-md-10 col-md-offset-1">
69         [% ELSE %]
70             <div class="col-sm-10 col-sm-push-2">
71         [% END %]
72
73         <main>
74
75             [% IF ( noitems ) %]
76                 <div class="dialog alert">
77                 [%IF (multi_hold) %]
78                     <strong>Cannot place hold:</strong> one or more records without items attached.
79                 [% ELSE %]
80                     <strong>Cannot place hold:</strong> this record has no items attached.
81                 [% END %]
82                 </div>
83             [% END %]
84
85             [% IF ( messagetransfert ) %]
86                 <div class="dialog message">
87                     <h2>Hold found for ([% nextreservtitle | html %]), please transfer</h2>
88                     <p>Hold placed by : <strong> [% nextreservsurname | html %] [% nextreservfirstname | html %]</strong> at : <strong> [% branchname | html %] </strong>, Please transfer this item.
89                     </p>
90                     <form name="cancelReservewithtransfert" action="branchreserves.pl" method="post">
91                         <input type="submit" class="button" />
92                     </form>
93                 </div>
94             [% END %]
95
96             [% UNLESS ( multi_hold ) %]
97                 <h1>Place a hold on [% INCLUDE 'biblio-title.inc' link = 1 %]</h1>
98             [% ELSE %]
99                 <h1>Confirm holds</h1>
100             [% END %]
101
102             [% UNLESS club OR patron OR patron.borrowernumber OR noitems %]
103                 [% IF ( messageborrower ) %]
104                     <div class="dialog alert">
105                         <h3>Patron not found</h3>
106                         <p>No patron with this name, please, try another</p>
107                     </div>
108                 [% END %]
109
110                 [% IF ( messageclub ) %]
111                     <div class="dialog alert">
112                         <h3>Club not found</h3>
113                         <p>No club with this name, please, try another</p>
114                     </div>
115                 [% END %]
116                 <fieldset class="brief">
117                     [% IF clubcount %]
118                         <label>Search patrons or clubs</label>
119                     [% ELSE %]
120                         <label>Search patrons</label>
121                     [% END %]
122                     <div id="circ_holds_select" class="toptabs">
123                         <ul>
124                             <li><a href="#holds_patronsearch_pane">Patrons</a></li>
125                             [% IF clubcount %]
126                                 <li><a href="#holds_clubsearch_pane">Clubs</a></li>
127                             [% END %]
128                         </ul>
129                         <div id="holds_patronsearch_pane">
130                             <form id="holds_patronsearch" action="request.pl?biblionumbers=[% biblionumbers | html %]" method="post">
131                                 <div class="hint">Enter patron card number or partial name:</div>
132                                 <input type="text" size="40" id="patron" class="focus" name="findborrower" autocomplete="off" />
133                                 <input type="submit" value="Search" />
134                                 [% IF multi_hold %]
135                                     <input type="hidden" name="biblionumbers" value="[% biblionumbers | html %]"/>
136                                 [% ELSE %]
137                                     <input type="hidden" name="biblionumber" value="[% biblionumber | html %]" />
138                                 [% END %]
139
140                             </form> <!-- /#holds_patronsearch -->
141                             [% IF borrowers %]
142                                 [% INCLUDE 'circ-patron-search-results.inc' destination = "holds" %]
143                             [% END %]
144                         </div>
145                         [% IF clubcount %]
146                             <div id="holds_clubsearch_pane">
147                                 <form id="holds_clubsearch" action="request.pl?biblionumber=[% biblionumber | html %]" method="post">
148                                     <div class="hint">Enter club ID or partial name:</div>
149                                     <input type="text" size="40" id="club" class="focus" name="findclub" autocomplete="off" />
150                                     <input type="submit" value="Search" />
151                                     [% IF multi_hold %]
152                                         <input type="hidden" name="biblionumbers" value="[% biblionumbers | html %]"/>
153                                     [% ELSE %]
154                                         <input type="hidden" name="biblionumber" value="[% biblionumber | html %]" />
155                                     [% END %]
156
157                                 </form> <!-- /#holds_patronsearch -->
158                                 [% IF clubs %]
159                                     [% INCLUDE 'clubs-table.inc' destination = "holds" %]
160                                 [% END %]
161                             </div>
162                         [% END %]
163                     </div>
164                 </fieldset>
165             [% ELSIF club %]
166                 <div class="dialog alert hide clubalert">
167                 </div>
168                 <fieldset class="rows">
169                     <legend>Hold details</legend>
170                     <form action="/api/v1/clubs/[% club.id | html %]/holds" method="post" name="form" id="club-request-form">
171
172                         [% IF ( multi_hold ) %]
173                             <input type="hidden" name="biblionumbers" id="multi_hold_bibs" value="[% biblionumbers | html %]"/>
174                             <input type="hidden" name="bad_bibs" id="bad_bibs" value=""/>
175                             <input type="hidden" name="request" value="any"/>
176                             [% FOREACH biblioloo IN biblioloop %]
177                                 <input type="hidden" name="title_[% biblioloo.biblionumber | html %]" value="[% biblioloo.title | html %]"/>
178                                 <input type="hidden" name="rank_[% biblioloo.biblionumber | html %]" value="[% biblioloo.rank | html %]"/>
179                             [% END %]
180                         [% ELSE %]
181                             <input type="hidden" name="biblionumber" value="[% biblionumber | html %]" />
182                             <input type="hidden" name="title" value="[% biblio.title | html %]" />
183                             <input type="hidden" name="rank-request" value="[% fixedRank | html %]" />
184                         [% END # /IF multi_hold %]
185                         <ol>
186                             <li>
187                                 <span class="label">Club: </span> [% club.name | html %]
188                             </li>
189                             <li>
190                                 <span class="label">Description: </span> [% club.description | html %]
191                             </li>
192                             <li>
193                                 <label for="pickup">Pickup at:</label>
194                                 <select name="pickup" id="pickup_club">
195                                     [% PROCESS options_for_libraries libraries => Branches.all({ selected => club.branchcode, search_params => { pickup_location => 1 } }) %]
196                                 </select>
197                             </li>
198                             <li>
199                                 <label for="default_patron_home">Pickup at patron's home library when possible:</label>
200                                 <input type="checkbox" id="default_patron_home" name="default_patron_home"/>
201                             </li>
202                         </ol>
203                         <h2 style="padding: 0 1em;">Members</h2>
204                         <ol>
205                             [% FOREACH member IN members %]
206                                 [% SET patron = member.patron %]
207                                 <li style="padding: 0.5em 1em;">
208                                     <div><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %])</a></div>
209                                     [% IF member.exceeded_maxreserves %]
210                                         <div>
211                                             <i class="fa fa-error"></i>
212                                             <strong>Too many holds: </strong> Patron can only place a maximum of [% maxreserves | html %] total holds.
213                                         </div>
214                                     [% END %]
215                                     [% IF ( member.expiry ) %]
216                                         <div>
217                                             <i class="fa fa-warning"></i>
218                                             <strong>Account has expired</strong>
219                                         </div>
220                                     [% END %]
221                                     [% IF patron.is_debarred %]
222                                         <div>
223                                             <i class="fa fa-warning"></i>
224                                             <strong>Patron has restrictions</strong>
225                                         </div>
226                                     [% END %]
227                                     [% IF amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') %]
228                                         <div>
229                                             <i class="fa fa-warning"></i>
230                                             <strong>Patron has outstanding fines: [% member.amount_outstanding | $Price %]</strong>
231                                         </div>
232                                     [% END %]
233
234                                     [% IF ( member.diffbranch ) %]
235                                         <div>
236                                             <i class="fa fa-warning"></i>
237                                             <strong>Pickup library is different.</strong> Patron's home library: ([% Branches.GetName(patron.branchcode) | html %] / [% patron.branchcode | html %] )
238                                         </div>
239                                     [% END %]
240                                 </li>
241                             [% END %]
242                         </ol>
243                         [% UNLESS ( multi_hold ) %]
244                             <fieldset class="action">
245                                 <input type="submit" value="Place hold" />
246                             </fieldset>
247                         [% ELSE %]
248                             <table id="requesttitles">
249                                 <tr>
250                                     <th>&nbsp;</th>
251                                     <th>Title</th>
252                                     [% UNLESS ( item_level_itypes ) %]
253                                         <th>Item type</th>
254                                     [% END %]
255                                     <th>Priority</th>
256                                     <th>Information</th>
257                                 </tr>
258                                 [% FOREACH biblioloo IN biblioloop %]
259                                     [% IF ( biblioloo.warn ) %]
260                                         <tr class="onissue">
261                                     [% ELSE %]
262                                         <tr>
263                                     [% END %]
264                                         <td>
265                                             [% UNLESS ( biblioloo.warn ) %]
266                                                     <input class="multi_hold_item_checkbox" type="checkbox" checked="checked" title="[% biblioloo.biblionumber | html %]"/>
267                                                 </td>
268                                             [% END %]
269                                         <td>
270                                             <ul>
271                                                 <li>
272                                                     <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber | uri %]">[% biblioloo.title | html %]</a>
273                                                 </li>
274                                                 [% IF ( biblioloo.publicationyear ) %]
275                                                     <li>
276                                                         <span class="label">Publication year:</span> [% biblioloo.publicationyear | html %]
277                                                     </li>
278                                                 [% END %]
279                                             </ul>
280                                             [% IF ( biblioloo.warn ) %]
281                                                 <span class="not_holdable" title="[% biblioloo.biblionumber | html %]"></span>
282                                             [% END %]
283                                         </td>
284                                         [% UNLESS ( item_level_itypes ) %]
285                                             <td>
286                                                 <img src="[% biblioloo.imageurl | html %]" alt="[% biblioloo.itypename | html %]" title="[% biblioloo.itypename | html %]" />
287                                             </td>
288                                         [% END %]
289                                         <td>[% biblioloo.rank | html %]</td>
290                                         <td>
291                                             [% IF ( biblioloo.checked_previously ) %]
292                                                 <span>Patron has previously checked out this title</span><br/>
293                                             [% END %]
294                                             [% IF ( biblioloo.alreadyres ) %]
295                                                 <ul>
296                                             [% ELSE %]
297                                                 [% IF ( biblioloo.none_avail ) %]
298                                                     <ul>
299                                                 [% END %]
300                                             [% END %]
301
302                                             [% IF ( biblioloo.alreadyres ) %]
303                                                 <li>
304                                                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %]</a>
305                                                     <strong>already has a hold</strong> on this item
306                                                 </li>
307                                             [% END %]
308                                             [% IF ( biblioloo.none_avail ) %]
309                                                 <li> <strong>No items are available</strong> to be placed on hold</li>
310                                             [% END %]
311
312                                             [% IF ( biblioloo.alreadyres ) %]
313                                                 </ul>
314                                             [% ELSE %]
315                                                 [% IF ( biblioloo.none_avail ) %]
316                                                     </ul>
317                                                 [% END %]
318                                             [% END %]
319                                         </td>
320                                     </tr>
321                                 [% END # /FOREACH biblioloo %]
322                             </table> <!-- /#requesttitles -->
323                         [% END %]
324                     </form>
325                 </fieldset>
326             [% ELSIF NOT noitems # /UNLESS patron %]
327
328                 [% IF ( checked_previously && !multi_hold ) %]
329                     <div class="dialog alert">
330                         <ul>
331                             <li>Patron has previously checked out this title</li>
332                         </ul>
333                     </div>
334                 [% END %]
335
336                 [% IF ( no_reserves_allowed || exceeded_maxreserves || exceeded_holds_per_record || alreadyreserved || none_available || alreadypossession || ageRestricted ) %]
337                     <div class="dialog alert">
338
339                         [% UNLESS ( multi_hold ) %]
340                             <h3>Cannot place hold</h3>
341                             <ul>
342                                 [% IF ( no_reserves_allowed ) %]
343                                     <li><strong>No holds allowed: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] </a> cannot place a hold on any of these items.</li>
344                                 [% ELSIF ( exceeded_maxreserves ) %]
345                                     <li><strong>Too many holds: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] </a> can only place a maximum of [% maxreserves | html %] total holds.</li>
346                                 [% ELSIF ( exceeded_holds_per_record ) %]
347                                     <li><strong>Too many holds for this record: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] </a> can only place a maximum of [% max_holds_for_record | html %] hold(s) on this record.</li>
348                                 [% ELSIF ( alreadypossession ) %]
349                                     <li> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %]</a> <strong>is already in possession</strong> of one item.</li>
350                                 [% ELSIF ( alreadyreserved ) %]
351                                     <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %]</a> <strong>already has a hold</strong> on this item.</li>
352                                 [% ELSIF ( ageRestricted ) %]
353                                     <li><strong>Age restricted</strong></li>
354                                 [% ELSIF ( none_available ) %]
355                                     <li> <strong>No items are available</strong> to be placed on hold.</li>
356                                 [% ELSIF ( maxreserves ) %]
357                                     <li><strong>Too many holds: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] </a> has too many holds.</li>
358                                 [% END # /IF exceeded_maxreserves %]
359                             </ul>
360                         [% ELSE # UNLESS multi_hold %]
361                             <h3>Cannot place hold on some items</h3>
362                             [% IF (no_reserves_allowed ) %]
363                                 <li><strong>No holds allowed: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] </a> cannot place holds on some of these title's items.</li>
364                             [% ELSIF ( exceeded_maxreserves ) %]
365                                 <li><strong>Too many holds: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] </a> can place [% new_reserves_allowed | html %] of the requested [% new_reserves_count | html %] holds for a maximum of [% maxreserves | html %] total holds.</li>
366                             [% ELSIF ( exceeded_holds_per_record ) %]
367                                 [% FOREACH biblioloo IN biblioloop %]
368                                     [% IF (biblioloo.tooManyHoldsForThisRecord) %]
369                                         <li><strong>Too many holds for <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber | uri %]"> [% biblioloo.title | html %]</a>: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | html %]">[% patron.firstname | html %] [% patron.surname | html %] </a> can only place a maximum of [% max_holds_for_record | html %] hold(s) on this record.</li>
370                                     [% END %]
371                                 [% END %]
372                             [% END # /IF exceeded_maxreserves %]
373                         [% END # /UNLESS multi_hold %]
374                     </div>
375                 [% END # /IF ( exceeded_maxreserves || ... %]
376
377                 [% IF ( expiry || diffbranch || patron.is_debarred || ( amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') ) ) %]
378                     <div class="dialog message">
379                         <ul>
380                             [% IF ( expiry ) %]
381                                 <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %]</a>: <strong>Account has expired</strong></li>
382                             [% END %]
383
384                             [% IF patron.is_debarred %]
385                                 <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]#reldebarments">[% patron.firstname | html %] [% patron.surname | html %]</a>: <strong>Patron has restrictions</strong></li>
386                             [% END %]
387
388                             [% IF amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') %]
389                                 <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %]</a>: <strong>Patron has outstanding fines: [% amount_outstanding | $Price %]</strong></li>
390                             [% END %]
391
392                             [% IF ( diffbranch ) %]
393                                 <li> <strong>Pickup library is different. </strong>Patron: <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %]</a> Patron's home library: ([% Branches.GetName(patron.branchcode) | html %] / [% patron.branchcode | html %] )</li>
394                             [% END %]
395                         </ul> <!-- /.dialog.message -->
396                     </div>
397                 [% END # /IF expiry || diffbranch ... %]
398
399                 [% IF ( messageborrower ) %]
400                     <div class="dialog alert">
401                         <h3>Patron not found:</h3>
402                         <p>Name or barcode not found. Please try an other </p>
403                     </div>
404                 [% END %]
405
406                 <div class="dialog alert hide holdalert">
407                 </div>
408
409                 <fieldset class="rows">
410                     <legend>Hold details</legend>
411                     <form action="placerequest.pl" method="post" name="form" id="hold-request-form">
412
413                         <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
414                         <input type="hidden" name="type" value="str8" />
415
416                         [% IF ( multi_hold ) %]
417                             <input type="hidden" name="biblionumbers" id="multi_hold_bibs" value="[% biblionumbers | html %]"/>
418                             <input type="hidden" name="multi_holds" id="multi_holds" value="1" />
419                             <input type="hidden" name="bad_bibs" id="bad_bibs" value=""/>
420                             <input type="hidden" name="request" value="any"/>
421                             [% FOREACH biblioloo IN biblioloop %]
422                                 <input type="hidden" name="title_[% biblioloo.biblionumber | html %]" value="[% biblioloo.title | html %]"/>
423                                 <input type="hidden" name="rank_[% biblioloo.biblionumber | html %]" value="[% biblioloo.rank | html %]"/>
424                             [% END %]
425                         [% ELSE %]
426                             <input type="hidden" name="biblionumber" value="[% biblionumber | html %]" />
427                             <input type="hidden" name="title" value="[% biblio.title | html %]" />
428                             <input type="hidden" name="rank-request" value="[% fixedRank | html %]" />
429                         [% END # /IF multi_hold %]
430
431                         <ol>
432                             <li>
433                                 <span class="label">Patron:</span>
434                                 [% IF ( patron.borrowernumber ) %]
435                                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %])</a>
436                                 [% ELSE %]
437                                     Not defined yet
438                                 [% END %]
439                             </li>
440
441                             [% UNLESS ( multi_hold ) %]
442                                 <li>
443                                     <span class="label">Estimated priority:</span>
444                                     <strong>[% fixedRank | html %]</strong>
445                                 </li>
446                             [% END %]
447
448                             <li>
449                                 <label for="holdnotes">Notes:</label>
450                                 <textarea id="holdnotes" name="notes" cols="30" rows="1"></textarea>
451                             </li>
452                             <li>
453                                 <label for="pickup">Pickup at:</label>
454                             [% UNLESS ( multi_hold ) %]
455                                 <select name="pickup" id="pickup" data-biblio-id="[% biblio.biblionumber | html %]" data-patron-id="[% patron.borrowernumber | html %]">
456                                     [% PROCESS options_for_libraries libraries => Branches.pickup_locations({ search_params => { biblio => biblionumber, patron => patron }, selected => pickup }) %]
457                             [% ELSE %]
458                                 <select name="pickup" id="pickup_multi" data-patron-id="[% patron.borrowernumber | html %]">
459                                     <option value="" selected="selected"></option>
460                                 [% FOREACH pickup_location IN multi_pickup_locations %]
461                                     <option value="[% pickup_location.branchcode | html %]">[% pickup_location.branchname | html %]</option>
462                                 [% END %]
463                             [% END %]
464                                 </select>
465                             </li>
466
467                             [% UNLESS ( multi_hold ) %]
468                                 [% IF Koha.Preference('AllowHoldItemTypeSelection') %]
469                                     <li>
470                                         <label for="itemtype">Request specific item type:</label>
471                                         <select name="itemtype" id="itemtype">
472                                             <option value="">Any item type</option>
473                                             [%- FOREACH itemtype IN available_itemtypes %]
474                                                 <option value="[% itemtype | html %]">[% ItemTypes.GetDescription( itemtype ) | html %]</option>
475                                             [%- END %]
476                                         </select>
477                                     </li>
478                                 [% END %]
479                             [% END # /UNLESS multi_hold %]
480
481                             [% IF ( reserve_in_future ) %]
482                                 <li>
483                                     <label for="from">Hold starts on date:</label>
484                                     <input name="reserve_date" id="from" size="10" class="datepickerfrom" type="text" >
485                                     <input type="hidden" class="datepickerfrom_hidden" />
486                                     <a href="#" id="clear-date-from" class="clear-date">Clear date</a>
487                                 </li>
488                             [% END %]
489
490                             <li>
491                                 <label for="to">Hold expires on date:</label>
492                                 <input name="expiration_date" id="to" size="10" class="datepickerto" type="text" />
493                                 <input type="hidden" class="datepickerto_hidden" />
494                                 <a href="#" id="clear-date-to" class="clear-date">Clear date</a>
495                             </li>
496
497                             [% UNLESS ( multi_hold ) %]
498                                 <li>
499                                     <label for="requestany">Hold next available item </label>
500                                     [% IF force_hold_level == 'item' %]
501                                         <input type="checkbox" id="requestany" name="request" disabled="true" />
502                                     [% ELSIF force_hold_level == 'record' %]
503                                         <input type="checkbox" id="requestany" checked="checked" value="Any" disabled="true"/>
504                                         <input type="hidden" name="request" value="Any"/>
505                                     [% ELSE %]
506                                         <input type="checkbox" id="requestany" name="request" checked="checked" value="Any" />
507                                     [% END %]
508                                     <input type="hidden" name="biblioitem" value="[% biblioitemnumber | html %]" />
509                                     <input type="hidden" name="alreadyreserved" value="[% alreadyreserved | html %]" />
510                                 </li>
511
512                                 [% IF remaining_holds_for_record > 1 %]
513                                     <li>
514                                         <label for="holds_to_place_count">Holds to place (count)</label>
515                                         <input type="text" inputmode="numeric" pattern="[0-9]*" id="holds_to_place_count" name="holds_to_place_count" maxlength="[% remaining_holds_for_record | html %]" value="1" />
516                                     </li>
517                                 [% ELSE %]
518                                     <input type="hidden" name="holds_to_place_count" value="1" />
519                                 [% END %]
520                             [% END # /UNLESS multi_hold %]
521
522                             <li id="non_priority_list_item">
523                                 <label for="non_priority">Non priority hold:</label>
524                                 <input name="non_priority" id="non_priority" type="checkbox" />
525                                 <span class="hint">A non priority hold doesn't prevent a current checkout from renewing</span>
526                             </li>
527                         </ol>
528
529                         [% UNLESS ( multi_hold ) %]
530                             <fieldset class="action">
531                                 [% IF ( patron.borrowernumber ) %]
532                                     [% IF ( override_required ) %]
533                                         <button type="submit" class="btn btn-default warning"><i class="fa fa-exclamation-triangle "></i> Place hold</button>
534                                     [% ELSIF ( none_available ) %]
535                                         <button type="submit" disabled="disabled" class="btn btn-default btn-disabled">Place hold</button>
536                                     [% ELSE %]
537                                         <button type="submit" class="btn btn-default">Place hold</button>
538                                     [% END %]
539                                 [% END %]
540                             </fieldset>
541
542                             [% FOREACH bibitemloo IN bibitemloop %]
543                                 <ol>
544                                     [% UNLESS ( item_level_itypes ) %]
545                                         <li>
546                                             <span class="label">Item type:</span>
547                                             [% bibitemloo.description | html %]
548                                         </li>
549                                     [% END %]
550
551                                     [% IF ( bibitemloo.publicationyear ) %]
552                                         <li>
553                                             <span class="label">Publication year:</span>
554                                             [% bibitemloo.publicationyear | html %]
555                                         </li>
556                                     [% END %]
557                                 </ol>
558
559                                 <h2 style="padding: 0 1em;">
560                                     Place a hold on a specific item
561                                     [% IF bibitemloo.force_hold_level == 'item' %]
562                                          <span class="error"><em>(Required)</em></span>
563                                     [% END %]
564                                 </h2>
565
566                                 <table id="requestspecific">
567                                     <thead>
568                                         <tr>
569                                             <th>Hold</th>
570                                             [% IF ( item_level_itypes ) %]
571                                                 <th>Item type</th>
572                                             [% END %]
573                                             <th>Barcode</th>
574                                             <th>Home library</th>
575                                             <th>Last location</th>
576                                             [% IF itemdata_ccode %]
577                                                 <th>Collection</th>
578                                             [% END %]
579                                             <th>Call number</th>
580                                             <th>Copy number</th>
581                                             [% IF itemdata_enumchron %]
582                                                 <th>Vol no.</th>
583                                             [% END %]
584                                             <th>Information</th>
585                                             <th>Allowed pickup locations</th>
586                                         </tr>
587                                     </thead>
588                                     <tbody>
589                                         [% SET selected = 0 %]
590                                         [% FOREACH itemloo IN bibitemloo.itemloop %]
591                                             [% UNLESS ( itemloo.hide ) %]
592                                                 <tr class="[% itemloo.backgroundcolor | html %]">
593                                                     <td>
594                                                         [% IF itemloo.force_hold_level == 'record' # Patron has placed a record level hold previously for this record %]
595                                                             <span class="error">
596                                                                 <i class="fa fa-times fa-lg" title="Cannot be put on hold"></i>
597                                                                 Hold must be record level
598                                                             </span>
599                                                         [% ELSIF ( itemloo.available ) %]
600                                                             <input type="radio" name="checkitem" value="[% itemloo.itemnumber | html %]" />
601                                                         [% ELSIF ( itemloo.override ) %]
602                                                             <input type="radio" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber | html %]" />
603                                                             <i class="fa fa-exclamation-triangle fa-lg" style="color:gold" title="Requires override of hold policy"/></i>
604                                                         [% ELSE %]
605                                                             <span class="error">
606                                                                 <i class="fa fa-times fa-lg" title="Cannot be put on hold"></i>
607                                                                 [% IF itemloo.not_holdable %]
608                                                                     [% IF itemloo.not_holdable == 'damaged' %]
609                                                                         Item damaged
610                                                                     [% ELSIF itemloo.not_holdable == 'ageRestricted' %]
611                                                                         Age restricted
612                                                                     [% ELSIF itemloo.not_holdable == 'tooManyHoldsForThisRecord' %]
613                                                                         Exceeded max holds per record
614                                                                     [% ELSIF itemloo.not_holdable == 'tooManyReservesToday' %]
615                                                                         Daily hold limit reached for patron
616                                                                     [% ELSIF itemloo.not_holdable == 'tooManyReserves' %]
617                                                                         Too many holds
618                                                                     [% ELSIF itemloo.not_holdable == 'notReservable' %]
619                                                                         Not holdable
620                                                                     [% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %]
621                                                                         Patron is from different library
622                                                                     [% ELSIF itemloo.not_holdable == 'branchNotInHoldGroup' %]
623                                                                         Cannot place hold from patron's library
624                                                                     [% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %]
625                                                                         Patron already has hold for this item
626                                                                     [% ELSIF itemloo.not_holdable == 'cannotBeTransferred' %]
627                                                                         Cannot be transferred to pickup library
628                                                                     [% ELSIF itemloo.not_holdable == 'pickupNotInHoldGroup' %]
629                                                                         Only pickup locations within the same hold group are allowed
630                                                                     [% ELSIF itemloo.not_holdable == 'noReservesAllowed' %]
631                                                                         No reserves are allowed on this item
632                                                                     [% ELSIF itemloo.not_holdable == 'libraryNotPickupLocation' %]
633                                                                         Library is not a pickup location
634                                                                     [% ELSIF itemloo.not_holdable == 'no_valid_pickup_location' %]
635                                                                         No valid pickup location
636                                                                     [% ELSE %]
637                                                                         [% itemloo.not_holdable | html %]
638                                                                     [% END %]
639                                                                 [% END %]
640                                                             </span>
641                                                         [% END # /IF itemloo.force_hold_level %]
642                                                     </td>
643                                                     [% IF ( item_level_itypes ) %]
644                                                         <td>
645                                                             [% UNLESS ( noItemTypeImages ) %]
646                                                                 [% IF ( itemloo.imageurl ) %]<img src="[% itemloo.imageurl | html %]" alt="" /> <br /> [% END %]
647                                                             [% END %]
648                                                             [% itemloo.itypename | html %]
649                                                         </td>
650                                                     [% END %]
651                                                     <td>
652                                                         [% itemloo.barcode | html %]
653                                                     </td>
654                                                     <td>
655                                                         [% Branches.GetName( itemloo.homebranch ) | html %]
656                                                     </td>
657                                                     <td>
658                                                         [% Branches.GetName( itemloo.holdingbranch ) | html %]
659                                                     </td>
660                                                     [% IF itemdata_ccode %]
661                                                         <td>
662                                                             [% IF ( itemloo.ccode ) %][% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => itemloo.ccode ) | html %][% END %]
663                                                         </td>
664                                                     [% END %]
665                                                     <td>
666                                                         [% itemloo.itemcallnumber | html %]
667                                                     </td>
668                                                     <td>
669                                                         [% IF ( itemloo.copynumber ) %][% itemloo.copynumber | html %][% ELSE %]&nbsp;[% END %]
670                                                     </td>
671                                                     [% IF itemdata_enumchron %]
672                                                         <td>
673                                                             [% itemloo.enumchron | html %]
674                                                         </td>
675                                                     [% END %]
676                                                     [% IF ( itemloo.onloan ) %]
677                                                         <td data-order="[% itemloo.date_due | html %]">
678                                                             <span class="checkedout">Due [% itemloo.date_due | $KohaDates  as_due_date => 1 %]</span>
679                                                     [% ELSE %]
680                                                         <td>
681                                                             [% IF ( itemloo.transfertwhen ) %]
682                                                                 In transit from [% Branches.GetName( itemloo.transfertfrom ) | html %],
683                                                                 to [% Branches.GetName( itemloo.transfertto ) | html %], since [% itemloo.transfertwhen | html %]
684                                                             [% END %]
685                                                     [% END %]
686
687                                                         [% IF ( itemloo.reservedate ) %]
688                                                             [% IF ( itemloo.nocancel ) %]
689                                                                     Can't be cancelled when item is in transit
690                                                             [% ELSE %]
691                                                                 [% IF ( itemloo.waitingdate ) %]Waiting[% ELSE %]On hold[% END %]
692                                                                 [% IF ( itemloo.canreservefromotherbranches ) %]
693                                                                     for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% itemloo.ReservedFor.borrowernumber | uri %]">[% itemloo.ReservedFor.firstname | html %] [% itemloo.ReservedFor.surname | html %]</a>
694                                                                 [% END %]
695                                                                 [% IF ( itemloo.waitingdate ) %]at[% ELSE %]expected at[% END %]
696                                                                 [% Branches.GetName( itemloo.ExpectedAtLibrary ) | html %] since
697                                                                 [% IF ( itemloo.waitingdate ) %]
698                                                                     [% itemloo.waitingdate | $KohaDates %]
699                                                                 [% ELSE %]
700                                                                     [% IF ( itemloo.reservedate ) %]
701                                                                         [% itemloo.reservedate | html %]
702                                                                     [% END %]
703                                                                 [% END %].
704                                                                 <a class="info cancel-hold" href="modrequest.pl?CancelBiblioNumber=[% itemloo.biblionumber | html %]&amp;CancelBorrowerNumber=[% itemloo.ReservedFor.borrowernumber | html %]&amp;CancelItemnumber=[% itemloo.itemnumber | html %]">Cancel hold</a>
705                                                             [% END # /IF itemloo.nocancel %]
706                                                         [% ELSE %]
707                                                             Not on hold
708                                                         [% END # /IF itemloo.reservedate %]
709
710                                                         [% IF itemloo.item_level_holds == "N" %]
711                                                             <br/>Item level hold not allowed from OPAC
712                                                         [% ELSIF itemloo.item_level_holds == "F" %]
713                                                             <br/>Item level hold forced from OPAC
714                                                         [% END %]
715
716                                                         [% IF ( itemloo.itemlost ) %]
717                                                            <span class="lost">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.itemlost', authorised_value => itemloo.itemlost ) | html %]</span>
718                                                         [% END %]
719
720                                                         [% IF ( itemloo.damaged ) %]
721                                                             <span class="dmg">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.damaged', authorised_value => itemloo.damaged ) | html %]</span>
722                                                         [% END %]
723
724                                                         [% IF ( itemloo.withdrawn ) %]
725                                                            <span class="wdn">[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => itemloo.withdrawn ) | html %]</span>
726                                                         [% END %]
727
728                                                         [% IF ( itemloo.notforloan ) %]
729                                                            <span class="nfl">Not for loan ([% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => itemloo.notforloan ) | html %])</span>
730                                                         [% END %]
731                                                     </td>
732                                                     <td>
733                                                     [% IF (itemloo.pickup_locations_count > 0) %]
734                                                         <select name="item_pickup_[% itemloo.itemnumber | html %]" class="pickup_locations"
735                                                                 data-item-id="[% itemloo.itemnumber | html %]"
736                                                                 data-patron-id="[% patron.borrowernumber | html %]">
737                                                         [% IF (itemloo.default_pickup_location) %]
738                                                             <option value="[% itemloo.default_pickup_location.branchcode | html %]" selected="selected">[% itemloo.default_pickup_location.branchname | html %]</option>
739                                                         [% END %]
740                                                         </select>
741                                                     [% END %]
742                                                     </td>
743                                                 </tr>
744                                             [% END # / UNLESS itemloo.hide %]
745                                         [% END # /FOREACH itemloo %]
746                                     </tbody>
747                                 </table> <!-- /#requestspecific -->
748
749                                 [% IF ( bibitemloo.hiddencount ) %]
750                                     <form>
751                                         <p class="hiddencount">
752                                             <a href="request.pl?biblionumber=[% bibitemloo.biblionumber | uri %]&amp;borrowernumber=[% bibitemloo.borrowernumber | uri %]&amp;showallitems=1">Show all items ([% bibitemloo.hiddencount | html %] hidden)</a>
753                                         </p>
754                                     </form>
755                                 [% END # /IF bibitemloo.hiddencount %]
756                             [% END # /FOREACH bibitemloo %]
757
758                         [% ELSE # /UNLESS multi_hold %]
759
760                             <table id="requesttitles">
761                                 <tr>
762                                     <th>&nbsp;</th>
763                                     <th>Title</th>
764                                     [% UNLESS ( item_level_itypes ) %]
765                                         <th>Item type</th>
766                                     [% END %]
767                                     <th>Priority</th>
768                                     <th>Information</th>
769                                     <th>Pickup location</th>
770                                 </tr>
771                                 [% FOREACH biblioloo IN biblioloop %]
772                                     [% IF ( biblioloo.warn ) %]
773                                         <tr class="onissue">
774                                     [% ELSE %]
775                                         <tr>
776                                     [% END %]
777                                         <td>
778                                             [% UNLESS ( biblioloo.warn ) %]
779                                                     <input class="multi_hold_item_checkbox" type="checkbox" checked="checked" title="[% biblioloo.biblionumber | html %]"/>
780                                                 </td>
781                                             [% END %]
782                                         <td>
783                                             <ul>
784                                                 <li>
785                                                     <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber | uri %]">[% biblioloo.title | html %]</a>
786                                                 </li>
787                                                 [% IF ( biblioloo.publicationyear ) %]
788                                                     <li>
789                                                         <span class="label">Publication year:</span> [% biblioloo.publicationyear | html %]
790                                                     </li>
791                                                 [% END %]
792                                             </ul>
793                                             [% IF ( biblioloo.warn ) %]
794                                                 <span class="not_holdable" title="[% biblioloo.biblionumber | html %]"></span>
795                                             [% END %]
796                                         </td>
797                                         [% UNLESS ( item_level_itypes ) %]
798                                             <td>
799                                                 <img src="[% biblioloo.imageurl | html %]" alt="[% biblioloo.itypename | html %]" title="[% biblioloo.itypename | html %]" />
800                                             </td>
801                                         [% END %]
802                                         <td>[% biblioloo.rank | html %]</td>
803                                         <td>
804                                             [% IF ( biblioloo.checked_previously ) %]
805                                                 <span>Patron has previously checked out this title</span><br/>
806                                             [% END %]
807                                             [% IF ( biblioloo.alreadyres ) %]
808                                                 <ul>
809                                             [% ELSE %]
810                                                 [% IF ( biblioloo.none_avail ) %]
811                                                     <ul>
812                                                 [% END %]
813                                             [% END %]
814
815                                             [% IF ( biblioloo.alreadyres ) %]
816                                                 <li>
817                                                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% patron.firstname | html %] [% patron.surname | html %]</a>
818                                                     <strong>already has a hold</strong> on this item
819                                                 </li>
820                                             [% END %]
821                                             [% IF ( biblioloo.none_avail ) %]
822                                                 <li> <strong>No items are available</strong> to be placed on hold</li>
823                                             [% END %]
824
825                                             [% IF ( biblioloo.alreadyres ) %]
826                                                 </ul>
827                                             [% ELSE %]
828                                                 [% IF ( biblioloo.none_avail ) %]
829                                                     </ul>
830                                                 [% END %]
831                                             [% END %]
832                                         </td>
833                                         <td>
834                                             <select name="pickup_[% biblioloo.biblionumber | html %]"
835                                                     class="multi_pickup_select"
836                                                     data-biblio-id="[% biblioloo.biblionumber | html %]"
837                                                     data-patron-id="[% patron.borrowernumber | html %]"
838                                                     data-pickup-locations='[% biblioloo.pickup_locations_codes.json | $raw %]'>
839                                                 <option value=""></option>
840                                             [% FOREACH pickup_location IN biblioloo.pickup_locations %]
841                                                 <option value="[% pickup_location.branchcode | html %]">[% pickup_location.branchname | html %]</option>
842                                             [% END %]
843                                             </select>
844                                         </td>
845                                     </tr>
846                                 [% END # /FOREACH biblioloo %]
847                             </table> <!-- /#requesttitles -->
848
849                         [% END # /UNLESS multi_hold %]
850
851                         <fieldset class="action">
852                             [% IF ( patron AND patron.borrowernumber ) %]
853                                 [% IF ( override_required ) %]
854                                     <button type="submit" class="btn btn-default warning"><i class="fa fa-exclamation-triangle "></i> Place hold</button>
855                                 [% ELSIF ( none_available ) %]
856                                     <button type="submit" disabled="disabled" class="btn btn-default btn-disabled">Place hold</button>
857                                 [% ELSE %]
858                                     [% IF ( multi_hold ) %]
859                                         <button type="submit" class="btn btn-default" id="multi_hold_submit">Place hold</button>
860                                     [% ELSE %]
861                                         <button type="submit" class="btn btn-default">Place hold</button>
862                                     [% END %]
863                                 [% END %]
864                             [% END # /IF patron %]
865                         </fieldset> <!-- /.action -->
866                     </form> <!-- /#hold-request-form -->
867                 </fieldset> <!-- /.rows -->
868             [% END %]
869
870             [% UNLESS ( patron ) %]
871                 [% IF ( reserveloop ) %]
872                     <form id="existing_holds" name="T[% time | html %]" action="modrequest.pl" method="post" style="display:block">
873                         [% IF ( multi_hold ) %]
874                             <input type = "hidden" name="biblionumbers" value="[% biblionumbers | html %]"/>
875                         [% END %]
876
877                         <h2>Existing holds</h2>
878                         <div id="toolbar" class="btn-toolbar">
879                             <input type="submit" name="submit" value="Update hold(s)" />
880                         <fieldset id="cancellation-reason-fieldset" class="action">
881                             [% SET hold_cancellation = AuthorisedValues.GetAuthValueDropbox('HOLD_CANCELLATION') %]
882                             [% IF hold_cancellation %]
883                                 <label for="cancellation-reason">Cancellation reason: </label>
884                                 <select class="cancellation-reason" name="cancellation-reason" id="cancellation-reason">
885                                     <option value="">No reason given</option>
886                                     [% FOREACH reason IN hold_cancellation %]
887                                         <option value="[% reason.authorised_value | html %]">[% reason.lib | html %]</option>
888                                     [% END %]
889                                 </select>
890                             [% END %]
891                         </fieldset>
892                         </div>
893
894                         [% FOREACH biblioloo IN biblioloop %]
895                             [% IF ( biblioloo.reserveloop ) %]
896                                 [% IF ( multi_hold ) %]
897                                     <h3>
898                                         <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber | uri %]">
899                                             [% biblioloo.title | html %]
900                                         </a>
901                                     </h3>
902                                 [% END %]
903
904                                 [% IF Koha.Preference('HoldsSplitQueue') == 'branch' %]
905                                     [% SET branchcodes = [] %]
906
907                                     [% FOREACH h IN biblioloo.reserveloop %]
908                                         [% branchcodes.push( h.branchcode ) %]
909                                     [% END %]
910                                     [% branchcodes = branchcodes.unique %]
911
912                                     [% FOREACH b IN branchcodes.sort %]
913                                         [% SET holds_by_branch = [] %]
914                                         [% FOREACH h IN biblioloo.reserveloop %]
915                                             [% IF h.branchcode == b %]
916                                                 [% holds_by_branch.push( h ) %]
917                                             [% END %]
918                                         [% END %]
919                                         <fieldset>
920                                             <legend>[% Branches.GetName( b ) | html %]</legend>
921                                             [% INCLUDE holds_table.inc holds=holds_by_branch %]
922                                         </fieldset>
923                                     [% END # /FOREACh b %]
924                                 [% ELSIF Koha.Preference('HoldsSplitQueue') == 'itemtype' %]
925                                     [% SET itemtypes = [] %]
926
927                                     [% FOREACH h IN biblioloo.reserveloop %]
928                                         [% SET hold_itemtype = h.object.item.effective_itemtype || h.itemtype %]
929                                         [% itemtypes.push( hold_itemtype ) %]
930                                     [% END %]
931                                     [% itemtypes = itemtypes.unique %]
932
933                                     [% FOREACH i IN itemtypes.sort %]
934                                         [% SET holds_by_itemtype = [] %]
935                                         [% FOREACH h IN biblioloo.reserveloop %]
936                                             [% SET hold_itemtype = h.object.item.effective_itemtype || h.itemtype %]
937                                             [% IF hold_itemtype == i %]
938                                                 [% holds_by_itemtype.push( h ) %]
939                                             [% END %]
940                                         [% END %]
941
942                                         <fieldset>
943                                             [% IF i %]
944                                                 <legend>[% ItemTypes.GetDescription( i ) | html %]</legend>
945                                             [% ELSE %]
946                                                 <legend>Any item type</legend>
947                                             [% END %]
948                                             [% INCLUDE holds_table.inc holds=holds_by_itemtype %]
949                                         </fieldset>
950                                     [% END # /FOREACH i %]
951                                 [% ELSIF Koha.Preference('HoldsSplitQueue') == 'branch_itemtype' %]
952                                     [% SET branchcodes = [] %]
953
954                                     [% FOREACH h IN biblioloo.reserveloop %]
955                                         [% branchcodes.push( h.branchcode ) %]
956                                     [% END %]
957                                     [% branchcodes = branchcodes.unique %]
958
959                                     [% FOREACH b IN branchcodes.sort %]
960                                         <fieldset>
961                                             <legend>[% Branches.GetName( b ) | html %]</legend>
962                                             [% SET holds_by_branch = [] %]
963                                             [% FOREACH h IN biblioloo.reserveloop %]
964                                                 [% IF h.branchcode == b %]
965                                                     [% holds_by_branch.push( h ) %]
966                                                 [% END %]
967                                             [% END %]
968
969                                             [% SET itemtypes = [] %]
970                                             [% FOREACH h IN holds_by_branch %]
971                                                 [% SET hold_itemtype = h.object.item.effective_itemtype || h.itemtype %]
972                                                 [% itemtypes.push( hold_itemtype ) %]
973                                             [% END %]
974                                             [% itemtypes = itemtypes.unique %]
975
976                                             [% FOREACH i IN itemtypes.sort %]
977                                                 [% IF i %]
978                                                     <h3>[% ItemTypes.GetDescription( i ) | html %]</h3>
979                                                 [% ELSE %]
980                                                     <h3>Any item type</h3>
981                                                 [% END %]
982
983                                                 [% SET holds_by_itemtype = [] %]
984                                                 [% FOREACH h IN holds_by_branch %]
985                                                     [% SET hold_itemtype = h.object.item.effective_itemtype || h.itemtype %]
986                                                     [% IF hold_itemtype == i %]
987                                                         [% holds_by_itemtype.push( h ) %]
988                                                     [% END %]
989                                                 [% END %]
990                                                 [% INCLUDE holds_table.inc holds=holds_by_itemtype %]
991                                             [% END %]
992                                         </fieldset>
993                                     [% END # /FOREACH b %]
994                                 [% ELSE %]
995                                     [% INCLUDE holds_table.inc holds=biblioloo.reserveloop %]
996                                 [% END # /IF HoldsSplitQueue %]
997
998                             [% END # /IF biblioloo.reserveloop %]
999                         [% END # FOREACH biblioloo %]
1000                         </fieldset> <!-- /.rows -->
1001                     </form> <!-- /name=TTime -->
1002                 [% END # IF reserveloop %]
1003             [% END # UNLESS patron %]
1004
1005         </main>
1006
1007         [% IF ( multi_hold ) # No sidebar menu when placing multiple holds %]
1008             </div> <!-- /.col-md-10.col-md-offset-1 -->
1009         [% ELSE %]
1010             </div> <!-- /.col-sm-10.col-sm-push-2 -->
1011                 <div class="col-sm-2 col-sm-pull-10">
1012                     <aside>
1013                         [% INCLUDE 'biblio-view-menu.inc' %]
1014                     </aside>
1015                 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
1016         [% END %]
1017     </div> <!-- /.row -->
1018
1019     <div id="cancelModal" class="modal" tabindex="-1" role="dialog" aria-hidden="true">
1020         <div class="modal-dialog" role="document">
1021             <div class="modal-content">
1022                 <div class="modal-header">
1023                     <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
1024                     <h3>Confirm deletion</h3>
1025                 </div>
1026
1027                 <div class="modal-body">
1028                     <p>Are you sure you want to cancel this hold?</p>
1029
1030                     <fieldset class="action">
1031                         [% SET hold_cancellation = AuthorisedValues.GetAuthValueDropbox('HOLD_CANCELLATION') %]
1032                         [% IF hold_cancellation %]
1033                             <label for="cancellation-reason">Cancellation reason: </label>
1034                             <select class="cancellation-reason" name="modal-cancellation-reason" id="modal-cancellation-reason">
1035                                 <option value="">No reason given</option>
1036                                 [% FOREACH reason IN hold_cancellation %]
1037                                     <option value="[% reason.authorised_value | html %]">[% reason.lib | html %]</option>
1038                                 [% END %]
1039                             </select>
1040                         [% END %]
1041                     </fieldset>
1042                 </div>
1043
1044                 <div class="modal-footer">
1045                     <button id="cancelModalConfirmBtn" type="button" class="btn btn-danger">Confirm cancellation</button>
1046                     <a href="#" data-dismiss="modal">Cancel</a>
1047                 </div>
1048             </div>
1049         </div>
1050     </div>
1051
1052 [% MACRO jsinclude BLOCK %]
1053     [% INCLUDE 'datatables.inc' %]
1054     [% INCLUDE 'calendar.inc' %]
1055     [% INCLUDE 'columns_settings.inc' %]
1056     [% Asset.js("lib/hc-sticky.js") | $raw %]
1057     [% Asset.js("js/circ-patron-search-results.js") | $raw %]
1058     [% INCLUDE 'select2.inc' %]
1059     <script>
1060         var Sticky;
1061         var biblionumber = "[% biblionumber | $raw %]";
1062         var borrowernumber = "[% patron.borrowernumber | $raw %]";
1063         var patron_homebranch = "[% To.json( Branches.GetName( patron.branchcode ) ) | $raw %]";
1064         var override_items = {[% FOREACH bibitemloo IN bibitemloop %][% FOREACH itemloo IN bibitemloo.itemloop %][% IF ( itemloo.override ) %]
1065         [% itemloo.itemnumber | html %]: {
1066             homebranch: "[% To.json( Branches.GetName( itemloo.homebranch ) ) | $raw %]",
1067             holdallowed: "[% itemloo.holdallowed | html %]"
1068             },
1069             [% END %][% END %][% END %]
1070         };
1071         var ERROR_MAP = {
1072             damaged: _("Item damaged"),
1073             ageRestricted: _("Age restricted"),
1074             tooManyHoldsForThisRecord: _("Exceeded max holds per record"),
1075             tooManyReservesToday: _("Daily hold limit reached for patron"),
1076             tooManyReserves: _("Too many holds"),
1077             notReservable: _("Not holdable"),
1078             noReservesAllowed: _("No reserves allowed"),
1079             onShelfHoldsNotAllowed: _("Not holdable"),
1080             cannotReserveFromOtherBranches: _("Patron is from different library"),
1081             itemAlreadyOnHold: _("Patron already has hold for this item"),
1082             cannotBeTransferred: _("Cannot be transferred to pickup library"),
1083             pickupNotInHoldGroup: _("Only pickup locations within the same hold group are allowed")
1084         }
1085         columns_settings_borrowers_table = [% TablesSettings.GetColumns( 'circ', 'circulation', 'table_borrowers', 'json' ) | $raw %];
1086         $.fn.select2.defaults.set("width", "100%" );
1087         $.fn.select2.defaults.set("dropdownAutoWidth", true );
1088
1089         $(document).ready(function() {
1090             $('#cancellation-reason-fieldset').hide();
1091             $('.rank-request').on('change', function() {
1092                 if ( $(".rank-request option:selected[value='del']").length ) {
1093                     $('#cancellation-reason-fieldset').show();
1094                 } else {
1095                     $('#cancellation-reason-fieldset').hide();
1096                 }
1097             });
1098
1099             [% SET active = clubs ? 1 : 0 %]
1100             $('#circ_holds_select').tabs({
1101                 active: [% active | $raw %],
1102                 activate: function(){
1103                     $(this).find("input.focus").focus();
1104                 },
1105                 create: function(){
1106                     $(this).find("input.focus").focus();
1107                 }
1108             });
1109             function ToggleHoldsToPlace() {
1110                 if ( $("#requestany").prop('checked') ) {
1111                     $("#holds_to_place_count").prop('disabled', false);
1112                 } else {
1113                     $("#holds_to_place_count").prop('disabled', true);
1114                 }
1115             }
1116             ToggleHoldsToPlace();
1117             $("#requestany").on('change', function(){
1118                 ToggleHoldsToPlace();
1119             });
1120
1121             [% IF Koha.Preference('UseBranchTransferLimits') %]
1122                 $("#pickup").on('change', function(){
1123                     var pickup = $("#pickup").val();
1124                     var url = "?pickup=" + pickup;
1125                     url += "&borrowernumber=" + borrowernumber;
1126                     url += "&biblionumber=" + biblionumber;
1127                     window.location.replace(url);
1128                 });
1129             [% END %]
1130
1131             [% IF AutoResumeSuspendedHolds %]
1132                 $(".suspend_until_datepicker, .datepickerfrom, .datepickerto").datepicker("option", "minDate", 1);
1133             [% END %]
1134
1135             $(".datepickerto").datepicker("option", "altField", ".datepickerto_hidden");
1136             $(".datepickerto").datepicker("option", "altFormat", "yy-mm-dd");
1137
1138             $(".datepickerfrom").datepicker("option", "altField", ".datepickerfrom_hidden");
1139             $(".datepickerfrom").datepicker("option", "altFormat", "yy-mm-dd");
1140
1141             var my_table = $("#requestspecific").dataTable($.extend(true, {}, dataTablesDefaults, {
1142                 'bPaginate': false,
1143                 "sDom": '<"top pager"ilf>t',
1144             }));
1145
1146             //Override fieldset styling for dataTables search box
1147             $("div.top.pager").css("margin-left","1em");
1148             $(".dataTables_filter label").css({
1149                 "width":"auto",
1150                 "margin-right":"0em"
1151             });
1152
1153             $("#club-request-form").on("submit", function() {
1154                 let $t = $(this);
1155                 $('.clubalert, .holdalert').addClass('hide');
1156                 let biblionumbers = [biblionumber];
1157                 let biblionumbers_text;
1158                 const data = {
1159                     pickup_library_id: $('select[name="pickup"]').val()
1160                 };
1161                 if($('input[name="checkitem"]:checked').length)
1162                     data.item_id = $('input[name="checkitem"]:checked').val();
1163                 if($('input[name="borrowernumber"]').length)
1164                     data.patron_id = $('input[name="borrowernumber"]').val();
1165                 if($('textarea[name="notes"]').length)
1166                     data.notes = $('textarea[name="notes"]').val()||null;
1167                 if($('.datepickerto_hidden').length)
1168                     data.expiration_date = $('.datepickerto_hidden').val()||null;
1169                 if($('.datepickerfrom_hidden').length)
1170                     data.hold_date = $('.datepickerfrom_hidden').val()||null;
1171                 if($('input[name="itemtype"]').length) {
1172                     data.item_type = $('input[name="itemtype"]').val()||null;
1173                 }
1174                 if($('input[name="default_patron_home"]:checked').length) {
1175                     data.default_patron_home = 1;
1176                 }
1177                 if($('input[name="biblionumbers"]').length) {
1178                     biblionumbers_text = $('input[name="biblionumbers"]').val();
1179                     biblionumbers = biblionumbers_text.replace(/\/$/, '').split('/')
1180                 }
1181
1182                 const count = $('input[name="holds_to_place_count"]').length?$('input[name="holds_to_place_count"]').val():1;
1183                 biblionumbers.forEach(function(biblionumber) {
1184                     data.biblio_id = biblionumber;
1185                     let options = {
1186                         url: $t.attr('action'),
1187                         method: $t.attr('method').toUpperCase(),
1188                         contentType: 'application/json',
1189                         data: JSON.stringify(data)
1190                     };
1191                     for(let i = 0; i < count; i++) {
1192                         $.ajax(options)
1193                         .then(function(result) {
1194                             let url = 'request.pl?biblionumber='+biblionumber;
1195                             if(biblionumbers_text) {
1196                                 url = 'request.pl?biblionumbers='+biblionumbers_text;
1197                             }
1198                             document.location = url;
1199                         })
1200                         .fail(function(err) {
1201                             var message = err.responseJSON.error;
1202                             var match = err.responseJSON.error.match(/Reason: (\w+)\s*$/);
1203                             if(match && ERROR_MAP[match[1]]) {
1204                                 message = '<div><strong>'+_("Cannot place hold")+'</strong></div><div>'+ERROR_MAP[match[1]]+'</div>'
1205                             }
1206                             $('.clubalert, .holdalert').removeClass('hide').html(message);
1207                         });
1208                     }
1209                 });
1210
1211                 return false;
1212             });
1213
1214             [% UNLESS ( multi_hold ) %]
1215                 $("#hold-request-form").on("submit", function(){
1216                     return check($(this));
1217                 });
1218             [% ELSE %]
1219                 $("#hold-request-form").on("submit", function(){
1220                     return checkMultiHold();
1221                 });
1222             [% END %]
1223
1224             function display_pickup_location (state) {
1225                 var $text;
1226                 if ( state.needs_override === true ) {
1227                     $text = $(
1228                         '<span>' + state.text + '</span> <span style="float:right;" title="' +
1229                         _("This pickup location is not allowed according to circulation rules") +
1230                         '"><i class="fa fa-exclamation-circle" aria-hidden="true"></i></span>'
1231                     );
1232                 }
1233                 else {
1234                     $text = $('<span>'+state.text+'</span>');
1235                 }
1236
1237                 return $text;
1238             };
1239
1240             $(".pickup_location_dropdown").each( function () {
1241                 var this_dropdown = $(this);
1242                 var hold_id = $(this).data('hold_id');
1243
1244                 this_dropdown.select2({
1245                     allowClear: false,
1246                     ajax: {
1247                         url: '/api/v1/holds/' + encodeURIComponent(hold_id) + '/pickup_locations',
1248                         delay: 300, // wait 300 milliseconds before triggering the request
1249                         dataType: 'json',
1250                         data: function (params) {
1251                             var search_term = (params.term === undefined) ? '' : params.term;
1252                             var query = {
1253                                 "q": JSON.stringify({"name":{"-like":search_term+'%'}}),
1254                                 "_order_by": "name"
1255                             };
1256                             return query;
1257                         },
1258                         processResults: function (data) {
1259                             var results = [];
1260                             data.forEach( function ( pickup_location ) {
1261                                 results.push(
1262                                     {
1263                                         "id": pickup_location.library_id.escapeHtml(),
1264                                         "text": pickup_location.name.escapeHtml(),
1265                                         "needs_override": pickup_location.needs_override
1266                                     }
1267                                 );
1268                             });
1269                             return { "results": results };
1270                         }
1271                     },
1272                     templateResult: display_pickup_location
1273                 });
1274             });
1275
1276             $("#pickup_multi").select2({
1277                 width: '30%',
1278                 allowClear: true
1279             });
1280
1281             $('.multi_pickup_select').select2({
1282                 width: '100%',
1283                 allowClear: true
1284             });
1285
1286             $("#pickup_multi").on("change", function() {
1287                 var selection = $(this).val();
1288                 if ( selection != '' ) {
1289                     $(".multi_pickup_select").each(function() {
1290                         var valid_pickup_locations = $(this).data('pickup-locations');
1291                         if ( valid_pickup_locations.includes(selection) ) {
1292                             $(this).val(selection);
1293                             $(this).trigger("change");
1294                         }
1295                     });
1296                 }
1297             });
1298
1299             $("#pickup").each( function () {
1300                 var this_dropdown = $(this);
1301                 var patron_id = $(this).data('patron-id');
1302                 var biblio_id = $(this).data('biblio-id');
1303
1304                 this_dropdown.select2({
1305                     width: 'style',
1306                     allowClear: false,
1307                     ajax: {
1308                         url: '/api/v1/biblios/' + encodeURIComponent(biblio_id) + '/pickup_locations',
1309                         delay: 300, // wait 300 milliseconds before triggering the request
1310                         dataType: 'json',
1311                         data: function (params) {
1312                             var search_term = (params.term === undefined) ? '' : params.term;
1313                             var query = {
1314                                 "q": JSON.stringify({"name":{"-like":search_term+'%'}}),
1315                                 "_order_by": "name",
1316                                 "patron_id": patron_id
1317                             };
1318                             return query;
1319                         },
1320                         processResults: function (data) {
1321                             var results = [];
1322                             data.forEach( function ( pickup_location ) {
1323                                 results.push(
1324                                     {
1325                                         "id": pickup_location.library_id.escapeHtml(),
1326                                         "text": pickup_location.name.escapeHtml(),
1327                                         "needs_override": pickup_location.needs_override
1328                                     }
1329                                 );
1330                             });
1331                             return { "results": results };
1332                         }
1333                     },
1334                     templateResult: display_pickup_location
1335                 });
1336             });
1337             $(".pickup_locations").each( function () {
1338                 var this_dropdown = $(this);
1339                 var patron_id = $(this).data('patron-id');
1340                 var item_id   = $(this).data('item-id');
1341
1342                 this_dropdown.select2({
1343                     allowClear: true,
1344                     ajax: {
1345                         url: '/api/v1/items/' + encodeURIComponent(item_id) + '/pickup_locations',
1346                         delay: 300, // wait 300 milliseconds before triggering the request
1347                         dataType: 'json',
1348                         data: function (params) {
1349                             var search_term = (params.term === undefined) ? '' : params.term;
1350                             var query = {
1351                                 "q": JSON.stringify({"name":{"-like":search_term+'%'}}),
1352                                 "_order_by": "name",
1353                                 "patron_id": patron_id
1354                             };
1355                             return query;
1356                         },
1357                         processResults: function (data) {
1358                             var results = [];
1359                             data.forEach( function ( pickup_location ) {
1360                                 results.push(
1361                                     {
1362                                         "id": pickup_location.library_id.escapeHtml(),
1363                                         "text": pickup_location.name.escapeHtml(),
1364                                         "needs_override": pickup_location.needs_override
1365                                     }
1366                                 );
1367                             });
1368                             return { "results": results };
1369                         }
1370                     },
1371                     templateResult: display_pickup_location
1372                 });
1373             });
1374         });
1375
1376         function check( table ) {
1377
1378             var msg = "";
1379
1380             if ( $("#requestany").attr("checked") !== "checked" ) {
1381                 // requestany not selected, go through the item-specific cases
1382                 if ( $('input[type="radio"]:checked').length > 0 ) {
1383                     // got item-specific hold requests in the form!
1384                     // verify they have a pickup location selected
1385
1386                     if (table.find('input[type="radio"]:checked')
1387                                 .closest('tr')
1388                                 .find(".pickup_locations").val() === null) {
1389
1390                         msg = _("- Please select a pickup location for the item" + "\n")
1391                     }
1392                 }
1393                 else {
1394                     msg = (_("- Please select an item to place a hold") + "\n");
1395                 }
1396             }
1397
1398             if (msg == "") {
1399                 $('#hold-request-form').preventDoubleFormSubmit();
1400                 return(true);
1401             } else {
1402                 alert(msg);
1403                 return(false);
1404             }
1405         }
1406
1407         function checkMultiHold() {
1408
1409             var biblionumbers = "";
1410             var selected_bibs = $(".multi_hold_item_checkbox:checked");
1411             if ( selected_bibs.length > 0 ) {
1412                 // there are biblios selected in the form!
1413                 // verify they have a pickup location selected
1414
1415                 var pickup_not_set = 0;
1416                 selected_bibs.each(function() {
1417                     if ( $(this).closest('tr').find(".multi_pickup_select").val() === "" ) {
1418                         pickup_not_set++;
1419                     }
1420                     else {
1421                         var bibnum = $(this).attr("title");
1422                         biblionumbers += bibnum + "/";
1423                     }
1424                 });
1425                 if ( pickup_not_set > 0 ) {
1426                     alert( _("Please make sure all selected titles have a pickup location set" + "\n") );
1427                     return false;
1428                 }
1429             }
1430             else {
1431                 alert( _("Please select at least one title" + "\n") );
1432                 return false;
1433             }
1434
1435             var badSpans = $(".not_holdable");
1436             var badBibs = "";
1437             $(badSpans).each(function() {
1438                 var bibnum = $(this).attr("title");
1439                 badBibs += bibnum + "/";
1440             });
1441
1442             $("#multi_hold_bibs").val(biblionumbers);
1443             $("#bad_bibs").val(badBibs);
1444
1445             $('#hold-request-form').preventDoubleFormSubmit();
1446
1447             return true;
1448         }
1449
1450          $(document).ready(function() {
1451             $("input.needsoverride").click(function() { // This must be before the radio button/checkbox switch logic
1452                 var itemnumber = this.value;
1453                 var msg = '';
1454
1455                 switch (override_items[itemnumber].holdallowed) {
1456                     case "not_allowed": msg = _("This item normally cannot be put on hold."); break;
1457                     case "from_home_library": msg = _("This item normally cannot be put on hold except for patrons from %s.").format(override_items[itemnumber].homebranch); break;
1458                 }
1459
1460                 msg += "\n\n" + _("Place hold on this item?");
1461
1462                 return confirm(msg);
1463             });
1464             $("button.warning").click(function() {
1465                 return confirm( _("None of these items can normally be put on hold for this patron.") + "\n\n" + _("Place hold?") );
1466             });
1467             $("#requestany").click(function() {
1468                 if(this.checked){
1469                     $("input[name=checkitem]").each(function() {
1470                         $(this).prop("checked", false);
1471                     });
1472                 }
1473             });
1474             $("input[name=checkitem]").click(function() {
1475                 onechecked = 0;
1476                 $("input[name=checkitem]").each(function() {
1477                     if(this.checked){
1478                         onechecked = 1;
1479                     }
1480                 });
1481                 if(onechecked == 1){
1482                     $("#requestany").prop("checked", false);
1483                     $("#holds_to_place_count").prop('disabled', true);
1484                 } else {
1485                     $("#requestany").prop("checked",true);
1486                     $("#holds_to_place_count").prop('disabled', false);
1487                 }
1488             });
1489             var prev_rank_request;
1490             $("select[name=rank-request]").on("focus", function() {
1491                 prev_rank_request = $(this).val();
1492                 var row = $(this).parents("tr:first");
1493             }).change(function() {
1494                 var row = $(this).parents("tr:first");
1495                 var value = parseInt($(this).val());
1496                 var found_holds = $("select[name='rank-request'][disabled='disabled']").length ; //Count how many are found
1497                 if( !isNaN(value) ) {  //If moved to 'del'
1498                     var after = row.parent().find("tr:nth-child("+(value+1+found_holds )+")"); //Go to the row 1 after the new value (and skip found holds)
1499                     if (prev_rank_request > value) {
1500                         row.insertBefore(after);
1501                     } else {
1502                         row.insertAfter(after);
1503                     }
1504                 }
1505
1506                 var next_priority = 1;
1507                 $("select[name=rank-request]").each(function () {
1508                     if( isNaN( $(this).val() ) ){ return true; } //Don't reset found or del holds
1509                     $(this).val(next_priority);
1510                     next_priority++;
1511                 });
1512             });
1513
1514             $(".clear-date").on("click",function(e){
1515                 e.preventDefault();
1516                 var fieldID = this.id.replace("clear-date-","");
1517                 $("#" + fieldID).val("");
1518             });
1519
1520             // Confirm cancellation of hold
1521             let cancel_link;
1522             $(".cancel-hold").on("click",function(e) {
1523                 e.preventDefault;
1524                 cancel_link = $(this);
1525                 $('#cancelModal').modal();
1526                 return false;
1527             });
1528             $("#cancelModalConfirmBtn").on("click",function(e) {
1529                 let borrowernumber = cancel_link.data('borrowernumber');
1530                 let biblionumber = cancel_link.data('biblionumber');
1531                 let reserve_id = cancel_link.data('id');
1532                 let reason = $("#modal-cancellation-reason").val();
1533                 let link = `request.pl?action=cancel&amp;borrowernumber=${ borrowernumber }&amp;biblionumber=${ biblionumber }&amp;reserve_id=${ reserve_id }`;
1534                 if ( reason ) {
1535                     link += "&amp;cancellation-reason=" + reason
1536                 }
1537                 window.location.href = link;
1538                 return false;
1539             });
1540
1541             [% UNLESS ( patron || patron.borrowernumber || borrowers || noitems ) %]
1542                 [% IF ( PatronAutoComplete ) %]
1543                 $( "#patron" ).autocomplete({
1544                     source: "/cgi-bin/koha/circ/ysearch.pl",
1545                     minLength: 3,
1546                     select: function( event, ui ) {
1547                         $( "#patron" ).val( ui.item.cardnumber );
1548                         $( "#holds_patronsearch" ).submit();
1549                         return false;
1550                     }
1551                 })
1552                 .data( "ui-autocomplete" )._renderItem = function( ul, item ) {
1553                     return $( "<li></li>" )
1554                     .data( "ui-autocomplete-item", item )
1555                     .append(
1556                         "<a>"
1557                             + ( item.surname ? item.surname.escapeHtml() : "" )
1558                             + ", "
1559                             + ( item.firstname ? item.firstname.escapeHtml() : "" )
1560                             + " (" + ( item.cardnumber ? item.cardnumber.escapeHtml() : "" ) + ")"
1561                             + " "
1562                             + "<small>"
1563                                 + ( item.address ? item.address.escapeHtml() : "" )
1564                                 + " "
1565                                 + ( item.city ? item.city.escapeHtml() : "" )
1566                                 + " "
1567                                 + ( item.zipcode ? item.zipcode.escapeHtml() : "" )
1568                                 + " "
1569                                 + ( item.country ? item.country.escapeHtml() : "" )
1570                             + "</small>"
1571                         + "</a>" )
1572                     .appendTo( ul );
1573                 };
1574                 [% END %]
1575             [% END %]
1576             Sticky = $("#toolbar");
1577             Sticky.hcSticky({
1578                 stickTo: "#existing_holds",
1579                 stickyClass: "floating"
1580             });
1581         });
1582     </script>
1583 [% END %]
1584
1585 [% INCLUDE 'intranet-bottom.inc' %]