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