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