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