Bug 17171: (QA follow-up) Remove cardnumber template variable
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / circulation.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE Branches %]
5 [% USE KohaDates %]
6 [% USE Categories %]
7 [% USE ColumnsSettings %]
8 [% USE ItemTypes %]
9 [% USE Price %]
10 [% USE AuthorisedValues %]
11 [% SET footerjs = 1 %]
12 [% INCLUDE 'doc-head-open.inc' %]
13 [% SET destination = "circ" %]
14 <title>Koha &rsaquo; Circulation
15 [% IF patron %]
16   &rsaquo; Checking out to [% INCLUDE 'patron-title.inc' invert_name = 1 no_html = 1 %]
17 [% END %]
18 </title>
19 [% INCLUDE 'doc-head-close.inc' %]
20 </head>
21
22 <body id="circ_circulation" class="circ">
23
24 [% INCLUDE 'header.inc' %]
25 [% INCLUDE 'circ-search.inc' %]
26
27 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo;
28 [% IF patron %]
29     <a href="/cgi-bin/koha/circ/circulation.pl">Checkouts</a> &rsaquo; [% INCLUDE 'patron-title.inc' %]
30 [% ELSE %]
31     <strong>Checkouts</strong>
32 [% END %]
33 </div>
34 [% IF ( $borrowers ) %]
35 <div id="doc" class="yui-t7">
36
37    <div id="bd">
38         <div id="yui-main">
39         <div class="yui-g">
40 [% ELSE %]
41 <div id="doc3" class="yui-t2">
42
43    <div id="bd">
44         <div id="yui-main">
45         <div class="yui-b">
46 [% END %]
47
48 [% IF patron %]
49 [% INCLUDE 'members-toolbar.inc' %]
50 [% END %]
51
52 <!--  INITIAL BLOC : PARAMETERS & BORROWER INFO -->
53 [% IF ( was_renewed ) %]<div class="dialog message">Patron's account has been renewed until [% expiry | $KohaDates %]</div>[% END %]
54
55 [% IF autoswitched %]
56     <div id="autoswitched" class="dialog message">Patron was automatically switched by reading the patron card during checking out. Ensure you are working with the right patron.</div>
57 [% END %]
58
59 [% IF additional_materials %]
60     <div id="materials" class="dialog message">Note about the accompanying materials: <br />
61     [% additional_materials | html %]
62     </div>
63 [% END %]
64
65 [% IF ( alert.ITEM_LOST ) %]
66     <div class="dialog message">This item has been lost with a status of "[% alert.ITEM_LOST | html %]".</div>
67 [% END %]
68
69 [% IF ( alert.OTHER_CHARGES ) %]
70     <div class="dialog message">The patron has unpaid charges for holds, rentals etc of [% alert.OTHER_CHARGES | $Price %]</div>
71 [% END %]
72
73 [% IF alert.HIGHHOLDS %]
74     <div class="dialog message">High demand item. <b>Loan period was not shortened due to override.</b> Shortened due date would have been [% alert.HIGHHOLDS.returndate | $KohaDates %] ([% alert.HIGHHOLDS.duration  | html %] days).</div>
75 [% END %]
76
77 [% IF alert.RETURNED_FROM_ANOTHER %]
78     <div class="dialog alert">Item was checked out to [% INCLUDE 'patron-title.inc' patron = alert.RETURNED_FROM_ANOTHER.patron %] and was returned automatically.</div>
79 [% END %]
80
81 [% IF ( nopermission ) %]
82     <div class="dialog alert">Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.</div>
83 [% END %]
84
85 [% IF ( NEEDSCONFIRMATION ) %]
86 <div class="yui-g">
87
88 <div id="circ_needsconfirmation" class="dialog alert audio-alert-action">
89 [% IF CAN_user_circulate_force_checkout %]
90   <h3>Please confirm checkout</h3>
91 [% ELSE %]
92   <h3>Cannot check out</h3>
93 [% END %]
94
95 <ul>
96 [%IF ( AGE_RESTRICTION ) %]
97     <li>Age restriction [% AGE_RESTRICTION | html %].
98       [% IF CAN_user_circulate_force_checkout %]
99         Check out anyway?
100       [% END %]
101     </li>
102 [% END %]
103
104 [% IF ( DEBT ) %]
105     <li>The patron has a debt of [% DEBT | $Price %].</li>
106 [% END %]
107
108 [% IF ( DEBT_GUARANTEES ) %]
109     <li>The patron's guarantees collectively have a debt of [% DEBT_GUARANTEES | $Price %].</li>
110 [% END %]
111
112 [% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %]
113     <li>Rental charge for this item: [% RENTALCHARGE | $Price %]</li>
114 [% END %]
115
116 [% IF ( RENEW_ISSUE ) %]
117     <li>Item <i>[% getTitleMessageIteminfo | html %]</i> ([% getBarcodeMessageIteminfo | html %]) is currently checked out to this patron.  Renew?</li>
118 [% END %]
119
120 [% IF ( RESERVE_WAITING ) %]
121     <li>Item <i>[% getTitleMessageIteminfo | html %]</i> ([% getBarcodeMessageIteminfo | html %]) has been waiting for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %] since [% reswaitingdate | $KohaDates %]</li>
122 [% END %]
123
124 [% IF ( RESERVED ) %]
125     <li>Item <i>[% getTitleMessageIteminfo | html %]</i> ([% getBarcodeMessageIteminfo | html %]) has been on hold for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %] since [% resreservedate | $KohaDates %]</li>
126 [% END %]
127
128 [% IF ( ISSUED_TO_ANOTHER ) %]
129     <li>Item <i>[% getTitleMessageIteminfo | html %]</i> ([% getBarcodeMessageIteminfo | html %]) is checked out to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issued_borrowernumber | uri %]">[% issued_firstname | html %] [% issued_surname | html %]</a> ([% issued_cardnumber | html %]).
130       [% IF CAN_user_circulate_force_checkout %]
131         Check in and check out?
132       [% END %]
133     </li>
134 [% END %]
135
136 [% IF TOO_MANY and TOO_MANY == 'TOO_MANY_CHECKOUTS' %]
137     <li>Too many checked out. [% current_loan_count | html %] checked out, only [% max_loans_allowed | html %] are allowed.</li>
138 [% END %]
139
140 [% IF TOO_MANY and TOO_MANY == 'TOO_MANY_ONSITE_CHECKOUTS' %]
141     <li>Too many on-site checked out. [% current_loan_count | html %] on-site checked out, only [% max_loans_allowed | html %] are allowed.</li>
142 [% END %]
143
144 [% IF ( BORRNOTSAMEBRANCH ) %]
145     <li>This patron is from a different library ([% Branches.GetName( BORRNOTSAMEBRANCH ) | html %])</li>
146 [% END %]
147
148 [% IF ( PATRON_CANT ) %]
149     <li>This patron can't check out this item per library circulation policy.</li>
150 [% END %]
151
152 [% IF ( TOO_MANY and TOO_MANY == 'NO_RULE_DEFINED' ) %]
153     <li>No circulation rule is defined for this patron and itemtype combination.</li>
154 [% END %]
155
156 [% IF ( NOT_FOR_LOAN_FORCING ) %]
157     <li>
158     [% IF ( itemtype_notforloan ) %]
159         Item type is normally not for loan.
160     [% ELSIF ( item_notforloan ) %]
161         [% item_notforloan_lib = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) %]
162         Item is normally not for loan[% IF (item_notforloan_lib) %] ([% item_notforloan_lib | html %])[% END %].
163     [% END %]
164       [% IF CAN_user_circulate_force_checkout %]
165         Check out anyway?
166       [% END %]
167     </li>
168 [% END %]
169
170 [% IF ( USERBLOCKEDOVERDUE ) %]
171     <li>Patron has [% USERBLOCKEDOVERDUE %] overdue item(s).
172       [% IF CAN_user_circulate_force_checkout %]
173        Check out anyway?
174       [% END %]
175     </li>
176 [% END %]
177
178 [% IF ( ITEM_LOST ) %]
179     <li>This item has been lost with a status of "[% ITEM_LOST | html %]".
180       [% IF CAN_user_circulate_force_checkout %]
181         Check out anyway?
182       [% END %]
183     </li>
184 [% END %]
185
186 [% IF HIGHHOLDS %]
187     <li>High demand item. Loan period shortened to [% HIGHHOLDS.duration | html %] days (due [% HIGHHOLDS.returndate | $KohaDates %]). Check out anyway?</li>
188 [% END %]
189
190 [% IF PREVISSUE %]
191     <li>Patron has previously checked out this title: <b>[% biblio.title | html %] [% IF biblio.author %] by [% biblio.author | html %][% END %]</b>. Check out anyway?</li>
192 [% END %]
193
194 [% IF BIBLIO_ALREADY_ISSUED %]
195   <li>
196     Patron has already checked out another item from this record.
197     [% IF CAN_user_circulate_force_checkout %]
198       Check out anyway?
199     [% END %]
200   </li>
201 [% END %]
202 </ul>
203
204 [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %]
205 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
206     <input type="hidden" name="restoreduedatespec" />
207
208 [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
209
210 [% IF HIGHHOLDS %]
211     <p class="circ-override-high-holds">
212     <input type="checkbox" name="override_high_holds_tmp" id="override_high_holds_tmp" value="1" />
213     <label for="override_high_holds_tmp">Don't decrease loan length based on holds</label>
214     </p>
215 [% END %]
216
217 [% IF ( RESERVED ) %]
218     <p>
219     <input type="checkbox" id="cancelreserve" name="cancelreserve" value="cancel" />
220     <label for="cancelreserve">Cancel hold</label>
221     </p>
222 [% END %]
223
224 [% IF ( RESERVE_WAITING ) %]
225 <p>
226     <label for="cancelreserve">Cancel hold</label>
227     <input type="radio" value="cancel" name="cancelreserve" id="cancelreserve" /><br />
228     <label for="revertreserve">Revert waiting status</label>
229     <input type="radio" value="revert" name="cancelreserve" id="revertreserve" checked="checked"/>
230 </p>
231 [% END %]
232
233     <input type="hidden" name="barcode" value="[% barcode | html %]" />
234     <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
235     <input type="hidden" name="issueconfirmed" value="1" />
236     <input type="hidden" name="override_high_holds" value="[% override_high_holds | html %]"/>
237     [% IF ( DEBT ) %]<input type="hidden" name="debt_confirmed" value="1" />[% END %]
238     [% IF ( INVALID_DATE ) %]
239     <p>
240     <input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec | html %]" />
241     <label for="duedatespec">Due date</label>
242     </p>
243     [% ELSE %]
244     <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
245     [% END %]
246     <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
247     <input type="hidden" name="branch" value="[% branch | html %]" />
248     [% IF ( RENEW_ISSUE ) %]
249     <button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, renew (Y)</button>
250     [% ELSE %]
251     <button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, check out (Y)</button>
252     [% END %]
253     <input type="hidden" name="onsite_checkout" value="[% onsite_checkout | html %]" />
254     <input type="hidden" name="auto_renew" value="[% auto_renew | html %]" />
255 </form>
256 [% END %]
257
258 [% IF ( RESERVED ) %]
259 <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
260     <input type="hidden" name="restoreduedatespec" />
261     <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
262     <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
263     <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
264     <button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber | html %]&amp;biblionumber=[% itembiblionumber | html %]&amp;itemnumber=[% item.itemnumber | html %]&amp;op=slip');this.form.submit();"><i class="fa fa-print"></i> Don't check out and print slip (P)</button>
265 </form>
266 [% END %]
267
268 [% IF ( RESERVE_WAITING ) %]
269 <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
270     <input type="hidden" name="restoreduedatespec" />
271     <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
272     <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
273     <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
274     <button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber | html %]&amp;biblionumber=[% itembiblionumber | html %]&amp;itemnumber=[% item.itemnumber | html %]&amp;op=slip');this.form.submit();"><i class="fa fa-print"></i> Don't check out and print slip (P)</button>
275 </form>
276 [% END %]
277
278 <form method="get" action="/cgi-bin/koha/circ/circulation.pl">
279     [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
280     <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
281     <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
282     <input type="hidden" name="restoreduedatespec" />
283     <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
284     [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %]
285         [% IF ( RENEW_ISSUE ) %]
286         <button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't renew (N)</button>
287         [% ELSE %]
288         <button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't check out (N)</button>
289         [% END %]
290     [% ELSE %]
291         <button type="submit" class="deny"><i class="fa fa-times"></i> Continue</button>
292     [% END %]
293 </form>
294
295 [% IF ( RESERVED || ISSUED_TO_ANOTHER ) && (CAN_user_reserveforothers_place_holds ) %]
296     [% UNLESS noissues %]
297         <button type="submit" onclick="window.location.href='/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber | html %]&borrowernumber=[% patron.borrowernumber | html %]'"><i class="fa fa-sticky-note-o"></i> Cancel checkout and place a hold for [% INCLUDE 'patron-title.inc' %]</button>
298     [% END %]
299 [% END %]
300 </div></div>
301 [% END %] <!-- NEEDSCONFIRMATION -->
302
303         [% IF ( IMPOSSIBLE ) %]
304
305 <div class="yui-g">
306 <div id="circ_impossible" class="dialog alert audio-alert-warning">
307     [% IF ( UNKNOWN_BARCODE ) %]
308         <h3>Barcode not found</h3>
309     [% END %]
310 <!-- RESULT OF ISSUING REQUEST -->
311         <ul>
312         [% IF ( STATS ) %]
313             <li>Local use recorded</li>
314         [% END %]
315
316         [% IF ( INVALID_DATE ) %]
317             <li>The due date &quot;[% INVALID_DATE | html %]&quot; is invalid</li>
318         [% END %]
319
320         [% IF ( UNKNOWN_BARCODE ) %]
321             <li>The barcode was not found: <span class="ex">[% barcode | html %]</span>
322
323                 <div>
324                     [% IF ( FALLBACK ) %]
325                         [% IF options %]
326                             <button type="button" class="approve" data-toggle="modal" data-target="#itemSearchFallback"><i class="fa fa-search"></i> Show matching titles</button>
327                         [% ELSE %]
328                             <div>No items were found by searching.</div>
329                         [% END %]
330                     [% END %]
331
332                     [% IF ( fast_cataloging ) %]
333                         [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
334                             <a class="approve" href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA&amp;barcode=[% barcode |uri %]&amp;circborrowernumber=[% patron.borrowernumber | html %]&amp;branch=[% branch | html %]&amp;duedatespec=[% duedatespec | html %]&amp;stickyduedate=[% stickyduedate | html %]"><i class="fa fa-plus"></i> Add record using fast cataloging</a>
335                         [% END %]
336                     [% END %]
337                 </div>
338
339             </li>
340         [% END %]
341
342         [% IF ( NOT_FOR_LOAN ) %]
343             <li>
344             [% IF ( itemtype_notforloan ) %]
345                 Item type not for loan.
346             [% ELSIF ( item_notforloan ) %]
347                 [% item_notforloan_lib = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) %]
348                 Item not for loan[% IF (item_notforloan_lib) %] ([% item_notforloan_lib | html %])[% END %].
349             [% END %]
350             </li>
351         [% END %]
352
353         [% IF ( WTHDRAWN ) %]
354             <li>
355                 <span>Item has been withdrawn</span>
356                 [% item_withdrawn_lib = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => item.withdrawn ) %]
357                 [% IF (item_withdrawn_lib) %]<span class="co-withdrawn">([% item_withdrawn_lib | html %])</span>[% END %]
358             </li>
359         [% END %]
360
361         [% IF ( RESTRICTED ) %]
362             <li>Item is restricted</li>
363         [% END %]
364
365         [% IF ( GNA ) %]
366             <li>Patron's address is in doubt</li>
367         [% END %]
368
369         [% IF ( CARD_LOST ) %]
370             <li>Patron's card is lost</li>
371         [% END %]
372
373         [% IF ( DEBARRED ) %]
374             <li>Patron is restricted</li>
375         [% END %]
376
377         [% IF ( NO_MORE_RENEWALS ) %]
378             <li>No more renewals possible</li>
379         [% END %]
380
381         [% IF NO_RENEWAL_FOR_ONSITE_CHECKOUTS %]
382             <li>This item can not be renewed, it's an on-site checkout</li>
383         [% END %]
384
385         [%IF ( AGE_RESTRICTION ) %]
386             <li>Age restriction [% AGE_RESTRICTION | html %].</li>
387         [% END %]
388
389         [% IF ( EXPIRED ) %]
390             <li>Patron's card is expired</li>
391         [% END %]
392
393         [% IF ( TOO_MANY ) %]
394             <li>Too many checked out. [% current_loan_count | html %] checked out, only [% max_loans_allowed | html %] are allowed.</li>
395         [% END %]
396
397         [% IF ( ITEMNOTSAMEBRANCH ) %]
398             <li>This item belongs to [% Branches.GetName( itemhomebranch ) | html %] and cannot be checked out from this location.</li>
399         [% END %]
400
401         [% IF RETURN_IMPOSSIBLE %]
402             <li>This item must be returned to [% Branches.GetName( branch_to_return ) | html %].</li>
403         [% END %]
404
405         [% IF ( USERBLOCKEDWITHENDDATE ) %]
406             <li>Patron has a restriction until [% USERBLOCKEDWITHENDDATE | $KohaDates %].</li>
407         [% END %]
408
409         [% IF ( USERBLOCKEDNOENDDATE ) %]
410             <li>Patron has an indefinite restriction.</li>
411         [% END %]
412
413         [% IF ( USERBLOCKEDOVERDUE ) %]
414             <li>Checkouts are BLOCKED because patron has overdue items.</li>
415         [% END %]
416         </ul>
417
418         [% IF (forceallow) %]
419             <li>Restriction overridden temporarily.</li>
420         [% END %]
421
422 </div></div>
423
424         [% IF ( FALLBACK ) %]
425             [% IF options %]
426
427                 <!-- Modal -->
428                 <div class="modal" id="itemSearchFallback" tabindex="-1" role="dialog" aria-labelledby="itemSearchFallbackLabel">
429                     <div class="modal-dialog modal-wide" role="document">
430                         <div class="modal-content">
431                             <div class="modal-header">
432                                 <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
433                                 <h3 id="itemSearchFallbackLabel"><h3>Barcode not found. The following items were found by searching:</h3>
434                             </div>
435                             <div class="modal-body">
436                                 <table class="table_borrowers">
437                                     [% FOREACH book IN options %]
438                                         <tr>
439                                             <td>
440                                                 <a class="popup" target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% book.biblionumber | html %]">[% book.title | html %]</a>
441                                                 [% book.barcode | html %]
442                                             </td>
443                                             <td>
444                                                 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
445                                                     [% IF (forceallow) %]
446                                                         <input type="hidden" name="forceallow" value="1">
447                                                     [% END %]
448                                                     <input type="hidden" name="restoreduedatespec" />
449                                                     <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
450                                                     <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
451                                                     <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
452                                                     <input type="hidden" name="branch" value="[% branch | html %]" />
453                                                     <input type="hidden" name="barcode" value="[% book.barcode | html %]" />
454                                                     <button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button>
455                                                 </form>
456                                             </td>
457                                         </tr>
458                                     [% END %]
459                                 </table>
460                             </div>
461                             <div class="modal-footer">
462                                 <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
463                             </div>
464                         </div>
465                     </div>
466                 </div>
467             [% END %]
468         [% END %]
469
470 [% ELSE %]
471   [% IF (forceallow) %]
472       <div id="overridden_debarment" class="dialog alert">Restriction overridden temporarily</div>
473   [% END %]
474 [% END %] <!-- /impossible -->
475
476 <span class="audio-alert-success"></span>
477
478 [% IF ( issued ) %]
479 <p>Item checked out</p>
480 [% END %]
481
482 [% IF ( message ) %]
483 [% INCLUDE 'patron-toolbar.inc' %]
484 <h4>
485 No patron matched <span class="ex">[% message | html %]</span>
486 </h4>
487 [% END %]
488
489 [% IF ( borrowers ) %]
490 [% INCLUDE 'patron-toolbar.inc' %]
491
492 <fieldset id="circ_circulation_selectborrower">
493     [% INCLUDE 'circ-patron-search-results.inc' destination = "circ" %]
494 </fieldset>
495 [% ELSE %]
496
497 <!-- BARCODE ENTRY -->
498
499 [% IF patron %]
500 <div class="yui-g">
501
502 [% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %]
503     <div class="dialog alert"><strong>Error:</strong> This patron has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is empty or incorrect.</div>
504 [% END %]
505
506 [% IF ( !noissues ) || ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') )%]
507 <div class="yui-u first">
508
509 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
510     <input type="hidden" name="restoreduedatespec" />
511 [% IF ( issue ) %]
512     <fieldset id="circ_circulation_issue" class="lastchecked">
513 [% ELSE %]
514     <fieldset id="circ_circulation_issue">
515 [% END %]
516     [% IF ( DisplayClearScreenButton ) %]
517         <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
518         <span id="printclearscreen"><a href="#" title="Print slip and clear screen"><i class="fa fa-print"></i></a></span>
519     [% END %]
520
521     [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
522
523     <label class="circ_barcode" for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
524
525         [% IF Koha.Preference('itemBarcodeFallbackSearch') %]
526             <div class="hint">Enter item barcode or keyword:</div>
527         [% ELSE %]
528             <div class="hint">Enter item barcode:</div>
529         [% END %]
530
531     [% IF NEEDSCONFIRMATION %]
532         <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" disabled="disabled" />
533     [% ELSE %]
534         <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" />
535     [% END %]
536     <button type="submit" class="btn btn-default">Check out</button>
537
538     <div id="show-checkout-settings">
539         <a href="#"><i class="fa fa-caret-right checkout-settings-icon"></i> Checkout settings</a>
540     </div>
541
542     <div class="checkout-settings">
543
544         [% UNLESS ( noissues && Koha.Preference('OnSiteCheckoutsForce') ) %]
545             [% IF ( SpecifyDueDate ) %]
546                 <div id="specify-due-date" class="checkout-setting">
547                     <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
548                     [% IF ( duedatespec ) %]
549                         <input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec | html %]" />
550                     [% ELSE %]
551                         <input type="text" size="13" id="duedatespec" name="duedatespec" value="" />
552                     [% END %]
553                     <label for="stickyduedate"> Remember for session:</label>
554                     [% IF ( stickyduedate ) %]
555                         <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" checked="checked" />
556                     [% ELSE %]
557                         <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" />
558                     [% END %]
559                     <button class="btn btn-default btn-xs action" id="cleardate" name="cleardate" onclick="this.checked = false; this.form.duedatespec.value = ''; this.form.stickyduedate.checked = false; this.form.barcode.focus(); return false;" >Clear</button>
560                 </div>
561             [% END %]
562         [% END %]
563
564         [% UNLESS ( noissues ) %]
565             <div id="set-automatic-renewal" class="checkout-setting">
566                 [% IF NEEDSCONFIRMATION %]
567                     <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" />
568                 [% ELSE %]
569                     <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" class="circ_setting" />
570                 [% END %]
571
572                 <label for="auto_renew">Automatic renewal</label>
573             </div>
574             [% IF Koha.Preference('decreaseLoanHighHolds') %]
575                 <div id="set_high_holds_overrride" class="checkout-setting">
576                     [% IF NEEDSCONFIRMATION %]
577                         [% IF override_high_holds %]
578                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled" checked="checked"/>
579                         [% ELSE %]
580                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled"/>
581                         [% END %]
582                     [% ELSE %]
583                         [% IF override_high_holds %]
584                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" checked="checked" />
585                         [% ELSE %]
586                             <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" />
587                         [% END %]
588                     [% END %]
589                     <label for="override_high_holds">Don't decrease checkout length based on holds</label>
590                 </div>
591             [% END %]
592         [% END %]
593
594         [% IF Koha.Preference('OnSiteCheckouts') %]
595             <div id="onsite_checkout-select" class="checkout-setting">
596                 [% IF noissues %]
597                     <div class="onsite-checkout-only">
598                         <input type="checkbox" id="onsite_checkout" name="onsite_checkout_forced" checked="checked" disabled="disabled" /> <label for="onsite_checkout">On-site checkouts only. Automatic due date: </label>
599                         <input type="text" name="duedatespec" id="duedatespec" />
600                         <input type="hidden" name="onsite_checkout" checked="checked" value="1" />
601                     </div>
602                 [% ELSE %]
603                     <input type="checkbox" id="onsite_checkout" name="onsite_checkout" class="circ_setting" /> <label for="onsite_checkout">On-site checkout</label>
604                 [% END %]
605             </div>
606         [% END %]
607
608     </div> <!-- /.checkout-settings -->
609
610           <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
611           <input type="hidden" name="branch" value="[% branch | html %]" />
612           <input type="hidden" name="print" value="maybe" />
613           <input type="hidden" name="debt_confirmed" value="[% debt_confirmed | html %]" />
614                 [% IF ( CHARGES ) %]
615                         <input type="hidden" name="charges" value="yes" />
616                 [% END %]
617 </fieldset>
618 [% IF ( issue ) %]
619     <div class="lastchecked">
620         <p><strong>Checked out: </strong>[% issue.item.biblioitemnumber.biblionumber.title | html %] ([% issue.item.barcode | html %]). Due on [% issue.date_due | $KohaDates as_due_date => 1 %]</p>
621     </div>
622 [% END %]
623 </form></div>
624
625 [% END %]<!-- /unless noissues -->
626
627 [% IF ( noissues ) %]
628     [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
629         <div class="yui-u">
630     [% ELSE %]
631         <div>
632     [% END %]
633 [% ELSE %]
634     <div class="yui-u">
635 [% END %]
636
637         [% IF ( noissues ) %]
638             [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
639                 <div id="circmessages" class="circmessage attention">
640             [% ELSE %]
641                 <h4>Checking out to [% INCLUDE 'patron-title.inc' %]</h4>
642                 <div id="circmessages" class="circmessage warning">
643             [% END %]
644             <h3>
645                 Cannot check out!
646                 [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
647                     <span class="circ-hlt">Only on-site checkouts are allowed</span>
648                 [% END %]
649             </h3>
650         [% ELSE %]
651             <div id="circmessages" class="circmessage attention">
652                 <h3>Attention:</h3>
653         [% END %]
654
655                 <ul>
656
657                    [% IF ( has_modifications ) %]
658                     <li><span class="circ-hlt">Pending modifications:</span> Patron has pending modifications.
659                             [% IF CAN_user_borrowers_edit_borrowers && ( !Koha.Preference('IndependentBranchesPatronModifications') || borrower.branch == branch ) %]
660                                     <a href="/cgi-bin/koha/members/members-update.pl">View all pending patron modifications</a>
661                             [% END %]
662                    </li>
663                   [% END %]
664
665                         [% IF ( warndeparture ) %]
666                         <li><span class="circ-hlt">Expiration:</span> Patron's card will expire soon.
667             Patron's card expires on [% expiry | $KohaDates %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% patron.borrowernumber | uri %]&amp;destination=circ&amp;reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;destination=circ&amp;borrowernumber=[% patron.borrowernumber | html %]&amp;categorycode=[% categorycode | html %]">Edit details</a>
668
669                         </li>
670                         [% END %]
671
672                         [% IF ( returnbeforeexpiry ) %]
673                          <li><span class="circ-hlt">Set due date to expiry:</span> You have the ReturnBeforeExpiry system preference enabled this means if the
674                          expiry date is before the date due, the date due will be set to the expiry date
675                          </li>
676                         [% END %]
677
678                         [% IF ( expired ) %]
679                         <li><span class="circ-hlt">Expiration:</span> Patron's card has expired.
680             [% IF ( expiry ) %]Patron's card expired on [% expiry | $KohaDates %][% END %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% patron.borrowernumber | uri %]&amp;destination=circ&amp;reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;destination=circ&amp;borrowernumber=[% patron.borrowernumber | html %]&amp;categorycode=[% categorycode | html %]">Edit details</a>
681
682                         </li>
683                         [% END %]
684
685             [% IF ( gna ) %]
686                         <li class="blocker"><span class="circ-hlt">Address:</span> Patron's address in doubt</li>
687                         [% END %]
688
689             [% IF ( lost ) %]
690                         <li class="blocker"><span class="circ-hlt">Lost: </span>Patron's card is lost</li>
691                         [% END %]
692
693             [% IF ( userdebarred ) %]
694                <li class="blocker">
695                    <span class="circ-hlt"> Restricted:</span> Patron's account is restricted
696
697                    [% IF ( userdebarreddate ) %]
698                        until [% userdebarreddate | $KohaDates %]
699                    [% END %]
700
701                    [% IF ( debarredcomment ) %]
702                        with the explanation: <br/><i>
703                        [% IF debarredcomment.search('OVERDUES_PROCESS') %]
704                            Restriction added by overdues process [% debarredcomment.remove('OVERDUES_PROCESS ') | $raw | html_line_break %]
705                        [% ELSE %]
706                            [% debarredcomment | $raw | html_line_break %]
707                        [% END %]
708                        </i>
709                    [% END %]
710                    <br/>
711                    <a class="btn btn-default" href="#reldebarments" onclick="$('#debarments-tab-link').click()"><i class="fa fa-ban"></i> View restrictions</a>
712                     [% IF (noissues && patron && CAN_user_circulate_force_checkout) %]
713                         <span class="override_debarment">
714                             <a href="/cgi-bin/koha/circ/circulation.pl?forceallow=1&amp;borrowernumber=[% patron.borrowernumber | uri %]" class="btn btn-default">Override restriction temporarily</a>
715                         </span>
716                     [% END %]
717                </li>
718             [% END %]
719
720                 [% IF ( odues ) %]<li><span class="circ-hlt">Overdues: Patron has ITEMS OVERDUE.</span> <a href="#checkouts">See highlighted items below</a></li>
721             [% END %]
722
723             [% IF ( charges ) %]
724                 [% INCLUDE 'blocked-fines.inc' fines = chargesamount %]
725             [% END %]
726
727             [% IF ( charges_guarantees ) %]
728                 <li>
729                     <span class="circ-hlt">Fees &amp; Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %].
730                         [% IF noissues %]
731                             <span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span>
732                         [% END %]
733                 </li>
734             [% END %]
735
736
737             [% IF ( credits ) %]
738                 <li>
739                     <span class="circ-hlt">Credits:</span> Patron has a credit[% IF ( creditsamount ) %] of [% creditsamount | $Price %][% END %]
740                 </li>
741             [% END %]
742
743                         </ul>
744         </div>
745
746             [% IF WaitingHolds.count %]
747                 <div id="holdswaiting" class="circmessage">
748                     <h4>Holds waiting:</h4>
749                     [% FOREACH w IN WaitingHolds %]
750                         <ul>
751                             <li>
752                                 <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber | uri %]">[% w.biblio.title | html %]</a>
753                                 ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]),
754                                 [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %]
755                                 [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber | html %]] [% END %]
756                                 Hold placed on [% w.reservedate | $KohaDates %].
757
758                                 <br/>
759                                 [% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode()  ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %]
760                                     [% SET expires_on = w.expirationdate %]
761                                     Waiting at [% w.branch.branchname | html %] [% IF expires_on %] until [% expires_on | $KohaDates %] [% END %]
762                                 </strong>
763                             </li>
764                         </ul>
765                     [% END %]
766                 </div>
767             [% END %]
768
769         [% IF ( notes ) %]
770                         <div id="circnotes" class="circmessage">
771                         <h4>Notes:</h4>
772             <p><span class="circ-hlt">[% notesmsg | $raw %]</span></p>
773                         </div>
774
775
776     <!-- /If notes -->[% END %]
777
778     <div id="messages" class="circmessage">
779         <h4>Messages:</h4>
780         <ul>
781             [% FOREACH message IN messages %]
782                 <li>
783                     [% IF(message.message_type == "L") %]
784                         <span class="circ-hlt">
785                     [% ELSE %]
786                         <span>
787                     [% END %]
788                         [% message.message_date | $KohaDates %]
789                         [% Branches.GetName( message.branchcode ) | html %]
790                         [% IF message.manager_id %]
791                             ( <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% message.manager_id | uri %]">[% message.get_column('manager_firstname') | html %] [% message.get_column('manager_surname') | html %]</a> )
792                         [% END %]
793                         <i>"[% message.message | html %]"</i>
794                     </span>
795                     [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %]
796                         <a class="btn btn-link" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id | html %]&amp;borrowernumber=[% message.borrowernumber | html %]" onclick="return confirm(MSG_CONFIRM_DELETE_MESSAGE);"><i class="fa fa-trash"></i> Delete</a>
797                     [% END %]
798                 </li>
799             [% END %]
800         </ul>
801         <a id="addnewmessageLabel" href="#add_message_form" class="btn btn-link" data-toggle="modal"><i class="fa fa-plus"></i> Add a new message</a>
802     </div>
803
804 </div>
805 </div>
806
807 <div class="yui-g"><div id="patronlists" class="toptabs">
808
809 <ul>
810     <li>
811         [% IF ( issuecount ) %]
812             <a href="#checkouts">[% issuecount | html %] Checkout(s)</a>
813         [% ELSE %]
814             <a href="#checkouts">0 Checkouts</a>
815         [% END %]
816     </li>
817
818     [% IF relatives_issues_count %]
819         <li><a id="relatives-issues-tab" href="#relatives-issues">Relatives' checkouts</a></li>
820     [% END %]
821
822     <li>
823         [% IF ( holds_count ) %]
824             <a href="#reserves" id="holds-tab">[% holds_count | html %] Hold(s)</a>
825         [% ELSE %]
826             <a href="#reserves" id="holds-tab">0 Holds</a>
827         [% END %]
828     </li>
829
830     [% IF Koha.Preference('ArticleRequests') %]
831         <li>
832             <a href="#article-requests" id="article-requests-tab"> [% patron.article_requests_current.count | html %] Article requests</a>
833         </li>
834     [% END %]
835
836     <li><a id="debarments-tab-link" href="#reldebarments">[% debarments.count | html %] Restrictions</a></li>
837
838     [% SET enrollments = patron.get_club_enrollments(1) %]
839     [% SET enrollable  = patron.get_enrollable_clubs(0,1) %]
840     [% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %]
841         <li>
842             <a id="clubs-tab-link" href="#clubs-tab">
843                 Clubs ([% enrollments.count | html %]/[% enrollable.count | html %])
844             </a>
845         </li>
846     [% END %]
847
848 </ul>
849
850 <!-- SUMMARY : TODAY & PREVIOUS ISSUES -->
851
852 [% INCLUDE "checkouts-table.inc" %]
853
854 [% IF ( relatives_issues_count ) %]
855     <div id="relatives-issues">
856         <table id="relatives-issues-table">
857             <thead>
858                 <tr>
859                     <th scope="col">Due date (unformatted, hidden)</th>
860                     <th scope="col">Due date</th>
861                     <th scope="col">Title</th>
862                     <th scope="col">Item type</th>
863                     <th scope="col">Collection code</th>
864                     <th scope="col">Location</th>
865                     <th scope="col">Checked out on</th>
866                     <th scope="col">Checked out from</th>
867                     <th scope="col">Call no</th>
868                     <th scope="col">Charge</th>
869                     <th scope="col">Fine</th>
870                     <th scope="col">Price</th>
871                     <th scope="col">Patron</th>
872                 </tr>
873             </thead>
874         </table>
875     </div>
876 [% END %]
877
878 [% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %]
879     <div id="clubs-tab">
880         Loading...
881     </div>
882 [% END %]
883
884 [% INCLUDE borrower_debarments.inc %]
885
886 <div id="reserves">
887 [% IF ( holds_count ) %]
888     <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
889         <input type="hidden" name="from" value="circ" />
890         <table id="holds-table" style="width: 100% !Important;">
891             <thead>
892                 <tr>
893                     <th>Hold date</th>
894                     <th>Title</th>
895                     <th>Call number</th>
896                     <th>Barcode</th>
897                     <th>Pickup at</th>
898                     <th>Expiration</th>
899                     <th>Priority</th>
900                     <th>Cancel?</th>
901                     <th>Suspend?</th>
902                     <th>Status</th>
903                 </tr>
904             </thead>
905         </table>
906
907         <fieldset class="action">
908             <input type="submit" class="cancel" name="submit" value="Cancel marked holds" />
909         </fieldset>
910     </form>
911
912     [% IF Koha.Preference('SuspendHoldsIntranet') %]
913     <fieldset class="action">
914         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
915             <input type="hidden" name="from" value="circ" />
916             <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
917             <input type="submit" value="Suspend all holds" />
918
919             [% IF Koha.Preference('AutoResumeSuspendedHolds') %]
920             <label for="suspend_until">until</label>
921             <input type="text" size="10" id="suspend_until" name="suspend_until" class="datepicker"/>
922             <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span>
923              [% END %]
924         </form>
925     </fieldset>
926
927     <fieldset class="action">
928         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
929             <input type="hidden" name="from" value="circ" />
930             <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
931             <input type="hidden" name="suspend" value="0" />
932             <input type="submit" value="Resume all suspended holds" />
933         </form>
934     </fieldset>
935     [% END # IF SuspendHoldsIntranet %]
936
937 [% ELSE %]
938         <p>Patron has nothing on hold.</p>
939 [% END %]
940 </div> <!-- reservesloop -->
941
942 [% IF Koha.Preference('ArticleRequests') %]
943     [% INCLUDE 'patron-article-requests.inc' %]
944 [% END %]
945
946 [% ELSIF borrowernumber %]
947     <div class="dialog message">Patron not found. <a href="/cgi-bin/koha/members/members-home.pl">Return to search</a></div>
948 [% END %]
949 </div></div>
950 [% END %]
951 [% IF Koha.Preference('CircSidebar') %]
952 [% UNLESS ( borrowers ) %]
953     [% IF not( borrowernumber and patron ) %]
954         <div class="yui-b noprint">
955             [% INCLUDE 'circ-nav.inc' %]
956         </div>
957     [% END %]
958 [% END %]
959 [% END %]
960 </div>
961 </div>
962 [% UNLESS ( borrowers ) %]
963     [% IF borrowernumber and patron %]
964         <div class="yui-b">
965             [% INCLUDE 'circ-menu.inc' %]
966         </div>
967     [% END %]
968 [% END %]
969 </div>
970 <!-- Modal -->
971 <div id="barcodeSubmittedModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="barcodeSubmittedModalLabel" aria-hidden="true">
972     <div class="modal-dialog">
973     <div class="modal-content">
974     <div class="modal-header">
975         <h3 id="barcodeSubmittedModalLabel">Barcode submitted</h3>
976     </div>
977
978     <div class="modal-body">
979         <p>You have already submitted a barcode, please wait for the checkout to process...</p>
980     </div>
981     </div>
982     </div>
983 </div>
984
985 [% MACRO jsinclude BLOCK %]
986     [% INCLUDE 'strings.inc' %]
987     [% INCLUDE 'calendar.inc' %]
988     [% INCLUDE 'datatables.inc' %]
989     [% INCLUDE 'columns_settings.inc' %]
990     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
991     [% Asset.js("lib/jquery/plugins/jquery-ui-timepicker-addon.min.js") | $raw %]
992     [% INCLUDE 'timepicker.inc' %]
993     [% Asset.js("lib/jquery/plugins/jquery.dataTables.rowGrouping.js") | $raw %]
994     [% Asset.js("js/pages/circulation.js") | $raw %]
995     [% Asset.js("js/checkouts.js") | $raw %]
996     [% Asset.js("js/holds.js") | $raw %]
997     [% Asset.js("js/circ-patron-search-results.js") | $raw %]
998     <script type="text/javascript">
999         /* Set some variable needed in circulation.js */
1000         var MSG_DT_LOADING_RECORDS = _("Loading... you may continue scanning.");
1001         var interface = "[% interface | html %]";
1002         var theme = "[% theme | html %]";
1003         var borrowernumber = "[% patron.borrowernumber | html %]";
1004         var branchcode = "[% branch | html %]";
1005         var exports_enabled = "[% Koha.Preference('ExportCircHistory') | html %]";
1006         var AllowRenewalLimitOverride = [% (CAN_user_circulate_override_renewals && Koha.Preference('AllowRenewalLimitOverride') )? 1: 0 | html %];
1007         var AllowCirculate = [% (CAN_user_circulate_circulate_remaining_permissions)? 1 : 0 | html %];
1008         var script = "circulation";
1009         var relatives_borrowernumbers = new Array();
1010         [% FOREACH b IN relatives_borrowernumbers %]
1011             relatives_borrowernumbers.push("[% b | html %]");
1012         [% END %]
1013
1014         var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
1015         var MSG_CONFIRM_DELETE_MESSAGE = _("Are you sure you want to delete this message? This cannot be undone.");
1016
1017         columns_settings_issues_table = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'issues-table', 'json' ) | $raw %]
1018         columns_settings_borrowers_table = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'table_borrowers', 'json' ) | $raw %]
1019
1020         [% IF borrowernumber and patron %]
1021             if($.cookie("holdfor") != [% patron.borrowernumber | html %]){
1022                 $.removeCookie("holdfor", { path: '/' });
1023             }
1024         [% ELSE %]
1025             $.removeCookie("holdfor", { path: '/' });
1026         [% END %]
1027
1028         [% UNLESS ( patron.borrowernumber ) %][% UNLESS ( borrowers ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %][% END %]
1029
1030         // On-site checkout
1031         function toggle_onsite_checkout(){
1032             if ( $("#onsite_checkout").prop('checked') ) {
1033                 $("#duedatespec").val("[% todaysdate | $KohaDates  with_hours => 1 %]")
1034                 [% IF !Koha.Preference('SpecifyDueDate') %]
1035                     $("#duedatespec").datetimepicker('destroy');
1036                 [% END %]
1037             } else {
1038                 $("#duedatespec").datetimepicker({
1039                     onClose: function(dateText, inst) {
1040                         if (validate_date(dateText, inst) ) {
1041                             $("#barcode").focus();
1042                         }
1043                     },
1044                     hour: 23,
1045                     minute: 59
1046                 }).on("change", function(e, value) {
1047                     if ( ! is_valid_date( $(this).val() ) ) {$(this).val("");}
1048                 });
1049             }
1050         }
1051
1052         function Dopop(link) {
1053             var newin = window.open(link, 'popup', 'width=600,height=400,resizable=1,toolbar=0,scrollbars=1,top');
1054         }
1055         $(document).ready(function() {
1056             $('#mainform').on('submit',function() {
1057                 if ($("#barcode") && $("#barcode").val()) {
1058                     $('#barcode').on('keypress',function(event) {
1059                         $('#barcodeSubmittedModal').modal();
1060                         event.preventDefault(); }
1061                     );
1062                 }
1063             });
1064
1065             if ( $('#clubs-tab').length ) {
1066                 $('#clubs-tab-link').on('click', function() {
1067                     $('#clubs-tab').text(_("Loading..."));
1068                     $('#clubs-tab').load('/cgi-bin/koha/clubs/patron-clubs-tab.pl?borrowernumber=[% patron.borrowernumber | html %]');
1069                 });
1070             }
1071
1072             [% IF !( CircAutoPrintQuickSlip == 'clear' ) %]
1073                 // listen submit to trigger qslip on empty checkout
1074                 $('#mainform').bind('submit',function() {
1075                     if ($('#barcode').val() == '') {
1076                         return printx_window( '[% CircAutoPrintQuickSlip | html %]' );
1077                     }
1078                 });
1079             [% END %]
1080             toggle_onsite_checkout();
1081             $("#onsite_checkout").click(function(){
1082                 toggle_onsite_checkout();
1083             });
1084
1085             $("#suspend_until").datepicker({
1086                 onClose: function(dateText, inst) {
1087                     validate_date(dateText, inst);
1088                 },
1089                 minDate: 1, // require that hold suspended until date is after today
1090             });
1091
1092             [% IF HIGHHOLDS %]
1093                 [% IF !override_high_holds %]
1094                     $("input[name=duedatespec]:hidden").val('[% HIGHHOLDS.returndate | html %]');
1095                     if ('[% duedatespec | html %]' === '') {
1096                         $("input[name=restoreduedatespec]:hidden").val('highholds_empty');
1097                     } else {
1098                         $("input[name=restoreduedatespec]:hidden").val('[% duedatespec | html %]');
1099                     }
1100                 [% END %]
1101
1102                 $("#override_high_holds_tmp").on( 'change', function() {
1103                     if ( this.checked ) {
1104                         $("input[name=duedatespec]:hidden").val('');
1105                     }
1106                 });
1107             [% END %]
1108         });
1109     </script>
1110     [% INCLUDE 'str/members-menu.inc' %]
1111     [% Asset.js("js/members-menu.js") | $raw %]
1112 [% END %]
1113
1114 [% INCLUDE 'intranet-bottom.inc' %]