Bug 11431: Add additional sound options
[koha_ffzg] / 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 | $KohaDates %]</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 audio-alert-action">
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 | $KohaDates %]</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 | $KohaDates %]</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 <div class="yui-g">
407 <div id="circ_impossible" class="dialog alert audio-alert-warning">
408 <!-- RESULT OF ISSUING REQUEST -->
409         <ul>
410         [% IF ( STATS ) %]
411             <li>Local use recorded</li>
412         [% END %]
413
414         [% IF ( INVALID_DATE ) %]
415             <li>The due date &quot;[% INVALID_DATE %]&quot; is invalid</li>
416         [% END %]
417
418         [% IF ( UNKNOWN_BARCODE ) %]
419             <li>The barcode was not found [% barcode |html %]
420             [% IF ( fast_cataloging ) %]
421                 [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
422             <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>
423                 [% END %]
424             [% END %]
425
426         [% IF ( FALLBACK ) %]
427             [% IF options %]
428                 <br />The following items were found by searching:
429                 [% FOREACH book IN options %]
430                     <br />
431                     <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
432                     [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
433                         <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
434                         <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
435                         <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
436                         <input type="hidden" name="branch" value="[% branch %]" />
437                         <input type="hidden" name="barcode" value="[% book.barcode %]" />
438                         <input type="submit" name="x" value="Check out [% book.barcode %]: [% book.title %]" />
439                     </form>
440                 [% END %]
441             [% ELSE %]
442                 <br />No items were found by searching.
443             [% END %]
444         [% END %]
445
446      </li>
447         [% END %]
448
449         [% IF ( NOT_FOR_LOAN ) %]
450             <li>
451             [% IF ( itemtype_notforloan ) %]
452                 Item type not for loan.
453             [% ELSIF ( item_notforloan ) %]
454                 [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %]
455                 Item not for loan [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %].
456             [% END %]
457             </li>
458         [% END %]
459
460         [% IF ( WTHDRAWN ) %]
461             <li>Item has been withdrawn</li>
462         [% END %]
463
464         [% IF ( RESTRICTED ) %]
465             <li>Item is restricted</li>
466         [% END %]
467
468         [% IF ( GNA ) %]
469             <li>Patron's address is in doubt</li>
470         [% END %]
471
472         [% IF ( CARD_LOST ) %]
473             <li>Patron's card is lost</li>
474         [% END %]
475
476         [% IF ( DEBARRED ) %]
477             <li>Patron is restricted</li>
478         [% END %]
479
480         [% IF ( NO_MORE_RENEWALS ) %]
481             <li>No more renewals possible</li>
482         [% END %]
483
484         [% IF NO_RENEWAL_FOR_ONSITE_CHECKOUTS %]
485             <li>This item can not be renewed, it's an on-site checkout</li>
486         [% END %]
487
488         [%IF ( AGE_RESTRICTION ) %]
489             <li>Age restriction [% AGE_RESTRICTION %].</li>
490         [% END %]
491
492         [% IF ( EXPIRED ) %]
493             <li>Patron's card is expired</li>
494         [% END %]
495
496         [% IF ( TOO_MANY ) %]
497             <li>Too many checked out. [% current_loan_count %] checked out, only [% max_loans_allowed %] are allowed.</li>
498         [% END %]
499
500         [% IF ( ITEMNOTSAMEBRANCH ) %]
501             <li>This item belongs to [% Branches.GetName( itemhomebranch ) %] and cannot be checked out from this location.</li>
502         [% END %]
503
504         [% IF ( USERBLOCKEDWITHENDDATE ) %]
505             <li>Patron has a restriction until [% USERBLOCKEDWITHENDDATE | $KohaDates %].</li>
506         [% END %]
507
508         [% IF ( USERBLOCKEDNOENDDATE ) %]
509             <li>Patron has an indefinite restriction.</li>
510         [% END %]
511
512         [% IF ( USERBLOCKEDOVERDUE ) %]
513             <li>Checkouts are BLOCKED because patron has overdue items.</li>
514         [% END %]
515         </ul>
516
517         [% IF (forceallow) %]
518             <li>Restriction overridden temporarily.</li>
519         [% END %]
520
521 </div></div>
522 [% ELSE %]
523   [% IF (forceallow) %]
524       <div id="overridden_debarment" class="dialog alert">Restriction overridden temporarily</div>
525   [% END %]
526 [% END %] <!-- /impossible -->
527
528 <span class="audio-alert-success"></span>
529
530 [% IF ( issued ) %]
531 <p>Item checked out</p>
532 [% END %]
533
534 [% IF ( message ) %]
535 [% INCLUDE 'patron-toolbar.inc' %]
536 <h4>
537 No patron matched <span class="ex">[% message %]</span>
538 </h4>
539 [% END %]
540
541
542 [% IF ( borrowers ) %]
543 [% INCLUDE 'patron-toolbar.inc' %]
544
545 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
546 <fieldset id="circ_circulation_selectborrower" class="brief">
547     <legend>Patron selection</legend>
548
549 [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
550     <input type="hidden" name="branch" value="[% branch %]" />
551     <input type="hidden" name="printer" value="[% printer %]" />
552     <input type="hidden" name="duedatespec" value="[% duedatespec %]" />
553     <input type="hidden" name="stickyduedate" value="[% stickyduedate %]" />
554
555     <table id="table_borrowers">
556         <thead>
557             <tr>
558                 <th></th>
559                 <th>Name</th>
560                 <th>Cardnumber</th>
561                 <th>Category</th>
562                 <th>Library</th>
563                 <th>Address</th>
564             </tr>
565         </thead>
566         <tbody>
567             [% FOREACH borrower IN borrowers %]
568             <tr>
569                 <td><input type="radio" name="borrowernumber" value="[% borrower.borrowernumber %]" /></td>
570                 <td>[% borrower.surname %], [% borrower.firstname %]</td>
571                 <td>[% borrower.cardnumber %]</td>
572                 <td>[% borrower.categorycode %]</td>
573                 <td>[% borrower.branchcode %]</td>
574                 <td>[% borrower.address %]</td>
575             </tr>
576             [% END %]
577         </tbody>
578     </table>
579     <fieldset class="action"><input type="submit" value="Select" /></fieldset>
580 </fieldset>
581 </form>
582 [% ELSE %]
583
584 <!-- BARCODE ENTRY -->
585
586 [% IF ( borrowernumber ) %]
587 <div class="yui-g">
588
589 [% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %]
590     <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>
591 [% END %]
592
593 [% IF ( !noissues ) || ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') )%]
594 [% IF ( flagged ) %]
595 <div class="yui-u first">
596 [% ELSE %]
597 <div>
598
599 [% END %]
600
601
602 <form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
603 [% IF ( issue ) %]
604     <fieldset id="circ_circulation_issue" class="lastchecked">
605 [% ELSE %]
606     <fieldset id="circ_circulation_issue">
607 [% END %]
608     [% IF ( DisplayClearScreenButton ) %]
609         <span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
610     [% END %]
611
612     [% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %]
613
614     <label for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label>
615
616         <div class="hint">Enter item barcode:</div>
617
618     [% IF NEEDSCONFIRMATION %]
619         <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" disabled="disabled" />
620     [% ELSE %]
621         <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" />
622     [% END %]
623     <button type="submit" class="btn">Check out</button>
624
625     <div class="date-select">
626         [% IF NEEDSCONFIRMATION %]
627             <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" />
628         [% ELSE %]
629             <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" />
630         [% END %]
631         <label for="auto_renew">Automatic renewal</label>
632     </div>
633
634     [% UNLESS ( noissues && Koha.Preference('OnSiteCheckoutsForce') ) %]
635         [% IF ( SpecifyDueDate ) %]
636             <div class="date-select">
637                 <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
638                 [% IF ( duedatespec ) %]
639                     <input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" readonly="readonly" />
640                 [% ELSE %]
641                     <input type="text" size="13" id="duedatespec" name="duedatespec" value="" readonly="readonly" />
642                 [% END %]
643                 <label for="stickyduedate"> Remember for session:</label>
644                 [% IF ( stickyduedate ) %]
645                     <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" checked="checked" />
646                 [% ELSE %]
647                     <input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" />
648                 [% END %]
649                 <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>
650             </div>
651         [% END %]
652     [% END %]
653
654     [% IF Koha.Preference('OnSiteCheckouts') %]
655         <div class="onsite_checkout-select">
656             [% IF noissues %]
657                 <div class="onsite-checkout-only">
658                     <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>
659                     <input type="text" name="duedatespec" id="duedatespec" readonly="readonly" />
660                     <input type="hidden" name="onsite_checkout" checked="checked" value="1" />
661                 </div>
662             [% ELSE %]
663                 <input type="checkbox" id="onsite_checkout" name="onsite_checkout" /> <label for="onsite_checkout">On-site checkout</label>
664             [% END %]
665         </div>
666     [% END %]
667
668           <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" />
669           <input type="hidden" name="branch" value="[% branch %]" />
670           <input type="hidden" name="printer" value="[% printer %]" />
671           <input type="hidden" name="print" value="maybe" />
672           <input type="hidden" name="debt_confirmed" value="[% debt_confirmed %]" />
673                 [% IF ( CHARGES ) %]
674                         <input type="hidden" name="charges" value="yes" />
675                         <input type="hidden" name="oldamount" value="[% amountold %]" />
676                 [% END %]
677 </fieldset>
678 [% IF ( issue ) %]
679     <div class="lastchecked">
680         <p><strong>Checked out: </strong>[% issue.item.biblioitemnumber.biblionumber.title %] ([% issue.item.barcode %]). Due on [% issue.date_due | $KohaDates %]</p>
681     </div>
682 [% END %]
683 </form></div>
684
685 [% END %]<!-- /unless noissues -->
686
687 [% IF ( noissues ) %]
688     [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
689         <div class="yui-u">
690     [% ELSE %]
691         <div>
692     [% END %]
693 [% ELSE %]
694     <div class="yui-u">
695 [% END %]
696
697     [% IF flagged %]
698         [% IF ( noissues ) %]
699             [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
700                 <div id="circmessages" class="circmessage attention">
701             [% ELSE %]
702                 <h4>Checking out to [% INCLUDE 'patron-title.inc' %]</h4>
703                 <div id="circmessages" class="circmessage warning">
704             [% END %]
705             <h3>
706                 Cannot check out!
707                 [% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %]
708                     <span class="circ-hlt">Only on-site checkouts are allowed</span>
709                 [% END %]
710             </h3>
711         [% ELSE %]
712             <div id="circmessages" class="circmessage attention">
713                 <h3>Attention:</h3>
714         [% END %]
715
716                 <ul>
717
718                         [% IF ( warndeparture ) %]
719                         <li><span class="circ-hlt">Expiration:</span> Patron's card will expire soon.
720             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>
721
722                         </li>
723                         [% END %]
724
725                         [% IF ( returnbeforeexpiry ) %]
726                          <li><span class="circ-hlt">Set due date to expiry:</span> You have the ReturnBeforeExpiry system preference enabled this means if the
727                          expiry date is before the date due, the date due will be set to the expiry date
728                          </li>
729                         [% END %]
730
731                         [% IF ( expired ) %]
732                         <li><span class="circ-hlt">Expiration:</span> Patron's card has expired.
733             [% 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>
734
735                         </li>
736                         [% END %]
737
738             [% IF ( gna ) %]
739                         <li class="blocker"><span class="circ-hlt">Address:</span> Patron's address in doubt</li>
740                         [% END %]
741
742             [% IF ( lost ) %]
743                         <li class="blocker"><span class="circ-hlt">Lost: </span>Patron's card is lost</li>
744                         [% END %]
745
746             [% IF ( userdebarred ) %]
747                <li class="blocker">
748                    <span class="circ-hlt"> Restricted:</span> Patron's account is restricted
749
750                    [% IF ( userdebarreddate ) %]
751                        until [% userdebarreddate | $KohaDates %]
752                    [% END %]
753
754                    [% IF ( debarredcomment ) %]
755                        with the explanation: <br/><i>[% debarredcomment | html_line_break %]</i>
756                    [% END %]
757
758                    <br/>
759                    <a class="btn btn-small" href="#reldebarments" onclick="$('#debarments-tab-link').click()"><i class="fa fa-ban"></i> View restrictions</a>
760                     [% IF (noissues && borrowernumber && CAN_user_circulate_force_checkout) %]
761                         <span class="override_debarment">
762                             <a href="/cgi-bin/koha/circ/circulation.pl?forceallow=1&amp;borrowernumber=[% borrowernumber %]" class="btn btn-small">Override restriction temporarily</a>
763                         </span>
764                     [% END %]
765                </li>
766             [% END %]
767
768                 [% 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>
769             [% END %]
770
771                 [% IF ( charges ) %]
772                             <li>
773             <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>.
774                 [% IF ( charges_is_blocker ) %]
775                     Checkouts are <span class="circ-hlt">BLOCKED</span> because fine balance is <span class="circ-hlt">OVER THE LIMIT</span>.
776                 [% END %]
777             <a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% borrowernumber %]">Make payment</a> or
778             <a href="/cgi-bin/koha/members/paycollect.pl?borrowernumber=[% borrowernumber %]">Pay all fines</a></li>
779                         [% END %]
780
781                 [% IF ( credits ) %]
782                         <li>
783                 <span class="circ-hlt">Credits:</span> Patron has a credit[% IF ( creditsamount ) %] of [% creditsamount %][% END %]
784             </li>
785                         [% END %]
786
787
788
789                         </ul>
790         </div>
791
792             [% IF ( WaitingHolds ) %]
793                 <div id="holdswaiting" class="circmessage">
794                     <h4>Holds waiting:</h4>
795                     [% FOREACH w IN WaitingHolds %]
796                         <ul>
797                             <li>
798                                 <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber %]">[% w.biblio.title | html %]</a>
799                                 ([% ItemTypes.GetDescription( w.item.effective_itemtype ) %]),
800                                 [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %]
801                                 [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber %]] [% END %]
802                                 Hold placed on [% w.reservedate | $KohaDates %].
803
804                                 <br/>
805                                 [% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode()  ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %]
806                                     [% SET waiting_expires_on = w.waiting_expires_on %]
807                                     Waiting at [% w.branch.branchname | html %] [% IF waiting_expires_on %] until [% waiting_expires_on | $KohaDates %] [% END %]
808                                 </strong>
809                             </li>
810                         </ul>
811                     [% END %]
812                 </div>
813             [% END %]
814
815         [% IF ( notes ) %]
816                         <div id="circnotes" class="circmessage">
817                         <h4>Notes:</h4>
818             <p><span class="circ-hlt">[% notesmsg %]</span></p>
819                         </div>
820
821
822     <!-- /If notes -->[% END %]
823
824         <div id="messages" class="circmessage">
825                 <h4>Messages:</h4>
826                 <ul>
827                         [% FOREACH lib_messages_loo IN lib_messages_loop %]
828                                 <li>
829                                         <span class="circ-hlt">
830                                                 [% lib_messages_loo.message_date_formatted %]
831                                                 [% lib_messages_loo.branchcode %]
832                                                 <i>"[% lib_messages_loo.message %]"</i>
833                                         </span>
834                                         [% IF ( lib_messages_loo.can_delete ) %]
835                                                 <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% lib_messages_loo.message_id %]&amp;borrowernumber=[% lib_messages_loo.borrowernumber %]">[Delete]</a>
836                                         [% ELSE %]
837                                                 [% IF ( all_messages_del ) %]
838                                                         <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% lib_messages_loo.message_id %]&amp;borrowernumber=[% lib_messages_loo.borrowernumber %]">[Delete]</a>
839                                                 [% END %]
840                                         [% END %]
841                                 </li>
842                         [% END %]
843                         [% FOREACH bor_messages_loo IN bor_messages_loop %]
844                                 <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>
845                 [% ELSIF ( all_messages_del ) %]
846                     <a href="/cgi-bin/koha/circ/del_message.pl?message_id=[% bor_messages_loo.message_id %]&amp;borrowernumber=[% bor_messages_loo.borrowernumber %]">[Delete]</a>
847                 [% END %]</li>
848                         [% END %]
849
850                 </ul>
851         </div>  
852         
853      <!-- /If flagged -->[% END %]
854
855         
856
857 </div>
858 </div>
859
860 <div class="yui-g"><div id="patronlists" class="toptabs">
861
862 <ul>
863     <li>
864         [% IF ( issuecount ) %]
865             <a href="#checkouts">[% issuecount %] Checkout(s)</a>
866         [% ELSE %]
867             <a href="#checkouts">0 Checkouts</a>
868         [% END %]
869     </li>
870
871     [% IF relatives_issues_count %]
872         <li><a id="relatives-issues-tab" href="#relatives-issues">Relatives' checkouts</a></li>
873     [% END %]
874
875     <li>
876         [% IF ( holds_count ) %]
877             <a href="#reserves" id="holds-tab">[% holds_count %] Hold(s)</a>
878         [% ELSE %]
879             <a href="#reserves" id="holds-tab">0 Holds</a>
880         [% END %]
881
882     <li><a id="debarments-tab-link" href="#reldebarments">[% debarments.size %] Restrictions</a></li>
883 </ul>
884
885 <!-- SUMMARY : TODAY & PREVIOUS ISSUES -->
886
887 [% INCLUDE "checkouts-table.inc" %]
888
889 [% IF ( relatives_issues_count ) %]
890     <div id="relatives-issues">
891         <table id="relatives-issues-table">
892             <thead>
893                 <tr>
894                     <th scope="col">Due date (unformatted, hidden)</th>
895                     <th scope="col">Due date</th>
896                     <th scope="col">Title</th>
897                     <th scope="col">Item type</th>
898                     <th scope="col">Location</th>
899                     <th scope="col">Checked out on</th>
900                     <th scope="col">Checked out from</th>
901                     <th scope="col">Call no</th>
902                     <th scope="col">Charge</th>
903                     <th scope="col">Fine</th>
904                     <th scope="col">Price</th>
905                     <th scope="col">Patron</th>
906                 </tr>
907             </thead>
908         </table>
909     </div>
910 [% END %]
911
912 [% INCLUDE borrower_debarments.inc %]
913
914 <div id="reserves">
915 [% IF ( holds_count ) %]
916     <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
917         <input type="hidden" name="from" value="circ" />
918         <table id="holds-table" style="width: 100% !Important;">
919             <thead>
920                 <tr>
921                     <th>Hold date</th>
922                     <th>Title</th>
923                     <th>Call number</th>
924                     <th>Barcode</th>
925                     <th>Pickup at</th>
926                     <th>Expiration</th>
927                     <th>Priority</th>
928                     <th>Delete?</th>
929                 </tr>
930             </thead>
931         </table>
932
933         <fieldset class="action">
934             <input type="submit" class="cancel" name="submit" value="Cancel marked holds" />
935         </fieldset>
936     </form>
937
938     [% IF SuspendHoldsIntranet %]
939     <fieldset class="action">
940         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
941             <input type="hidden" name="from" value="circ" />
942             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
943             <input type="submit" value="Suspend all holds" />
944
945             [% IF AutoResumeSuspendedHolds %]
946             <label for="suspend_until">until</label>
947             <input type="text" size="10" id="suspend_until" name="suspend_until" class="datepicker" />
948             <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span>
949              [% END %]
950         </form>
951     </fieldset>
952
953     <fieldset class="action">
954         <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
955             <input type="hidden" name="from" value="circ" />
956             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
957             <input type="hidden" name="suspend" value="0" />
958             <input type="submit" value="Resume all suspended holds" />
959         </form>
960     </fieldset>
961     [% END # IF SuspendHoldsIntranet %]
962
963 [% ELSE %]
964         <p>Patron has nothing on hold.</p>
965 [% END %]
966 </div> <!-- reservesloop -->
967
968 [% END %] <!-- borrowernumber -->
969 </div></div>
970 [% END %]
971
972
973
974 </div>
975 </div>
976 [% UNLESS ( borrowers ) %][% IF ( borrowernumber ) %]<div class="yui-b">
977 [% INCLUDE 'circ-menu.inc' %]
978 </div>[% END %][% END %]
979 </div>
980 <!-- Modal -->
981 <div id="barcodeSubmittedModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="barcodeSubmittedModalLabel" aria-hidden="true">
982     <div class="modal-header">
983         <h3 id="barcodeSubmittedModalLabel">Barcode submitted</h3>
984     </div>
985
986     <div class="modal-body">
987         <p>You have already submitted a barcode, please wait for the checkout to process...</p>
988     </div>
989 </div>
990 [% INCLUDE 'intranet-bottom.inc' %]