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