Bug 15758: Koha::Libraries - Remove GetBranches
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / returns.tt
1 [% USE KohaDates %]
2 [% USE Branches %]
3 [% USE Koha %]
4 [% USE Borrowers %]
5 [% USE ItemTypes %]
6 [% USE AuthorisedValues %]
7 [% USE ColumnsSettings %]
8
9 [% BLOCK display_bormessagepref %]
10     [% IF ( bormessagepref ) %]
11         <li>Patron notification:
12             [% FOREACH mtt IN bormessagepref.keys %]
13                 [%~ IF ( mtt == 'email' ) %] Email[% END ~%]
14                 [%~ IF ( mtt == 'phone' ) %] Phone[% END ~%]
15                 [%~ IF ( mtt == 'sms' ) %] SMS[% END ~%]
16                 [%~ UNLESS loop.last %], [% ELSE %].[% END ~%]
17             [% END %]
18         </li>
19            [% ELSE %]
20         <li>Patron is not notified.</li>
21     [% END %]
22 [% END %]
23
24 [% INCLUDE 'doc-head-open.inc' %]
25 <title>Koha &rsaquo; Circulation &rsaquo; Check in [% title |html %]</title>
26 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
27 [% INCLUDE 'doc-head-close.inc' %]
28 [% INCLUDE 'datatables.inc' %]
29 [% INCLUDE 'columns_settings.inc' %]
30 [% INCLUDE 'calendar.inc' %]
31 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script>
32 [% INCLUDE 'timepicker.inc' %]
33
34 <script type="text/javascript">
35 //<![CDATA[
36 function Dopop(link) {
37     var newin = window.open(link, 'popup', 'width=600,height=400,resizable=1,toolbar=0,scrollbars=1,top');
38     $("#barcode").focus();
39 }
40 $(document).ready(function () {
41     $(".modal").modal({ backdrop: 'static' }).on('shown', function() {
42         $("#barcode").prop("disabled", true);
43     }).on('hidden', function() {
44         $("#barcode").prop("disabled", false).focus();
45     });
46
47     [% IF print_slip %]
48         Dopop('hold-transfer-slip.pl?borrowernumber=[% borrowernumber %]&amp;biblionumber=[% biblionumber %]');
49     [% END %]
50
51     var columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'returns', 'checkedintable', 'json' ) %]
52     var returns_table = KohaTable("#checkedintable", {
53             "bFilter":false,
54             "bPaginate":false,
55             "bInfo":false,
56             "bSort":false,
57             "dom": 'B<"clearfix">t',
58             }, columns_settings);
59
60     $("#return_date_override").datetimepicker({
61         onClose: function(dateText, inst) {
62             if (validate_date(dateText, inst) ) {
63                 $("#barcode").focus();
64             }
65         },
66         defaultDate: -1,
67         hour: 23,
68         minute: 59,
69         maxDate: 0
70     }).on("change", function(e, value) {
71         if ( ! is_valid_date( $(this).val() ) ) {$(this).val("");}
72     });
73     $("#return_date_override").on("blur", function() {
74             check_valid_return_date();
75     });
76     $("#checkin-form").submit(function( event ) {
77         if ( !check_valid_return_date() ) {
78             event.preventDefault();
79         }
80     });
81
82     function check_valid_return_date() {
83         if ( $("#return_date_override").val() ) {
84             var datetime = DateTime_from_syspref( $("#return_date_override").val() );
85             var now = new Date();
86             if ( !datetime || datetime > now ) {
87                 alert("Invalid return date/time!");
88                 $("#return_date_override").val("")
89                 return false;
90             }
91         }
92         return true;
93     }
94
95     $("#exemptcheck").change(function () {
96         if (this.checked == true) {
97             $("#barcode").addClass("alert");
98             $("#exemptfines").show();
99         } else {
100             $("#barcode").removeClass("alert");
101             $("#exemptfines").hide();
102         }
103         $("#barcode").focus();
104     });
105     $("#dropboxcheck").change(function () {
106         if (this.checked == true) {
107             $("#barcode").addClass("alert");
108             $("#dropboxmode").show();
109
110             $("#return_date_override_fields :input").prop('disabled', true);
111             $("#return_date_override").datetimepicker("disable");
112         } else {
113             $("#barcode").removeClass("alert");
114             $("#dropboxmode").hide();
115
116             $("#return_date_override_fields :input").prop('disabled', false);
117             $("#return_date_override").datetimepicker("enable");
118         }
119         $("#barcode").focus();
120     });
121     $("#forgivemanualholdsexpire").change(function () {
122         if (this.checked == true) {
123             $("#barcode").addClass("alert");
124             $("#forgivemanualholdsexpire-alert").show();
125         } else {
126             $("#barcode").removeClass("alert");
127             $("#forgivemanualholdsexpire-alert").hide();
128         }
129         $("#barcode").focus();
130     });
131     [% IF(overduecharges) %] $("#barcode").focus(function () {
132         if (($("#exemptcheck").prop("checked") == true) || ($("#dropboxcheck").prop("checked") == true)) {
133             $("#barcode").addClass("alert");
134         } else {
135             $("#barcode").removeClass("alert");
136         }
137     });
138     $("#barcode").blur(function () {
139         $("#barcode").removeClass("alert");
140     });
141     [% END %]
142     $('.openWin').on("click",function(e){
143         e.preventDefault();
144         Dopop( $(this).data("url") );
145     });
146 });
147 //]]>
148 </script>
149 </head>
150 <body id="circ_returns" class="circ">
151 <span class="audio-alert-success"></span>
152
153 [% INCLUDE 'header.inc' %]
154 [% INCLUDE 'checkin-search.inc' %]
155
156 <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; Check in</div>
157
158 <div id="doc" class="yui-t7">
159
160    <div id="bd">
161         <div id="yui-main">
162
163 <div class="yui-g">
164
165 [% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %]
166     <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>
167 [% ELSIF NOT Koha.Preference('AnonymousPatron') AND Koha.Preference('OPACPrivacy') %]
168     <div class="dialog alert"><strong>Error:</strong> The system preference OPACPrivacy is set but AnonymousPatron is not! Please correct this before continuing circulation.</div>
169 [% END %]
170
171 [% IF additional_materials %]
172     <div class="dialog message" id="materials">Note about the accompanying materials: <br />
173     [% additional_materials %]
174     </div>
175 [% END %]
176
177 [% IF ( collectionItemNeedsTransferred ) %]
178  <div id="rotating-collection" class="dialog message">
179         <h3>Please transfer item to: [% Branches.GetName( collectionBranch ) %]</h3>
180             <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
181             <p>This item is part of a rotating collection.</p>
182             <p><button type="button" class="openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&amp;branchcode=[% collectionBranch %]&amp;op=slip"><i class="fa fa-print"></i> Print slip</button></p>
183 </div>
184 [% END %]
185
186 <!-- Patron has fines -->
187 [% IF ( fines ) %]
188     <div class="dialog alert">
189         <h3>Patron has outstanding fines of [% fines %].</h3>
190         <p><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% fineborrowernumber %]">Make payment</a>.</p>
191     </div>
192 [% END %]
193
194 <!-- Patron has waiting holds -->
195 [% IF ( waiting_holds ) %]
196     <div id="awaiting-pickup" class="dialog message">
197         <h3>[% holdsfirstname %] [% holdssurname %] has [% waiting_holds %] hold(s) waiting for pickup.</h3>
198         <p><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% holdsborrowernumber %]">Check out to this patron</a>.</p>
199     </div>
200 [% END %]
201
202 <!-- Patron is restricted and checkin was backdated -->
203 [% IF return_date_was_overriden && Borrowers.IsDebarred( borrower ) %]
204     <div id="restricted_backdated" class="dialog message">
205         <h3>
206             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrower.borrowernumber %]">
207                 [% borrower.firstname %] [% borrower.surname %]
208             </a>
209             is restricted. Please verify this patron should still be restricted.
210         </h3>
211     </div>
212 [% END %]
213
214 [% IF ( wrongbranch ) %]
215     <div class="dialog alert"><h3>Cannot check in</h3>
216         <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
217         </p><strong>NOT CHECKED IN</strong></p>
218         <p>This item must be checked in at following library: <strong>[% Branches.GetName( rightbranch ) %]</strong></p>
219     </div>
220 [% END %]
221 <!-- case of a mistake in transfer loop -->
222 [% IF ( WrongTransfer ) %]
223     <div id="return2" class="dialog message">
224         <!-- WrongTransfer -->
225         <h3>Please return item to: [% Branches.GetName( TransferWaitingAt ) %]</h3>
226             <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
227         <button type="submit" class="openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&amp;&amp;branchcode=[% homebranch %]&amp;op=slip"><i class="fa fa-print"></i> Print transfer slip</button>
228         <button class="deny" type="submit" onclick="window.location.href='/cgi-bin/koha/circ/returns.pl?itemnumber=[% itemnumber %]&amp;canceltransfer=1'"><i class="fa fa-times"></i> Cancel transfer</button>
229 [% IF ( wborcnum ) %]<h5>Hold for:</h5>
230         <ul><li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">
231             [% borsurname %], [% borfirstname %]</a> ([% borcnum %])</li>
232         <li>[% wborstnum %] [% wboraddress %][% IF ( wboraddress2 ) %]<br />
233                 [% wboraddress2 %]<br />[% END %]
234         [% wborcity %]  [% wborzip %]</li>
235         [% IF ( wborphone ) %]<li>[% wborphone %]</li>[% END %]
236                 [% IF ( wboremail ) %]<li><a id="boremail" href="mailto:[% wboremail %]">[% wboremail %]</a></li>[% END %]
237         </ul>
238
239     <form method="post" action="returns.pl" class="confirm">
240             <input type="hidden" name="WT-itemNumber" value="[% WrongTransferItem %]" />
241             <input type="hidden" name="WT-waitingAt" value="[% TransferWaitingAt %]" />
242             <input type="hidden" name="WT-From" value="[% wtransfertFrom %]" />
243             <button type="submit" class="approve"><i class="fa fa-check"></i> Confirm</button>
244             <input type="hidden" name="print_slip" value="0" />
245             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
246             <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
247             <button type="submit" class="print" onclick="this.form.print_slip.value = 1; this.form.submit();"><i class="fa fa-print"></i> Print slip and confirm</button>
248         <input type="hidden" name="return_date_override" value="[% return_date_override %]" />
249         <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember %]" />
250     </form>
251     [% END %]</div>
252 [% END %]
253
254 [% IF ( found ) %]
255     [% IF ( waiting ) %]
256         <div id="hold-found1" class="modal fade audio-alert-action">
257             <form method="post" action="returns.pl" class="confirm">
258                 <div class="modal-header">
259                     <h3>
260                         Hold found (item is already waiting):
261                         <br/>
262                         <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">
263                             [% itembarcode |html %]: [% title |html %]
264                         </a>
265                     </h3>
266                 </div>
267
268                 <div class="modal-body">
269                     [% IF ( reservenotes ) %]
270                         <h4>Notes: [% reservenotes %]</h4>
271                     [% END %]
272
273                     <h4>Hold for:</h4>
274
275                     <li>
276                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borsurname %], [% borfirstname %]</a> ([% borcnum %])
277                     </li>
278
279                     <li>
280                         [% borstnum %] [% boraddress %]<br />
281                         [% IF ( boraddress2 ) %]
282                             [% boraddress2 %]<br />
283                         [% END %]
284                         [% borcity %] [% borzip %]
285                     </li>
286
287                     [% IF ( borphone ) %]
288                         <li> [% borphone %]</li>
289                     [% END %]
290
291                     [% IF ( boremail ) %]
292                         <li><a id="boremail" href="mailto:[% boremail %]">[% boremail %]</a></li>
293                     [% END %]
294
295                     [% IF ( debarred ) %]
296                         <li class="error">Patron is RESTRICTED</li>
297                     [% END %]
298
299                     [% IF ( gonenoaddress ) %]
300                         <li class="error">Patron's address is in doubt</li>
301                     [% END %]
302
303                     [% IF ( transfertodo ) %]
304                         <h4><strong>Transfer to:</strong> [% Branches.GetName( destbranch ) %]</h4>
305                     [% ELSE %]
306                         <h4><strong>Hold at</strong> [% Branches.GetName( destbranch ) %]</h4>
307                     [% END %]
308
309                     [% FOREACH inputloo IN inputloop %]
310                         <input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" />
311                         <input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" />
312                         <input type="hidden" name="bn-[% inputloo.counter %]" value="[% inputloo.borrowernumber %]" />
313                     [% END %]
314
315                     <input type="hidden" name="itemnumber" value="[% itemnumber %]" />
316                     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
317                     <input type="hidden" name="biblionumber" value="[% itembiblionumber %]" />
318                     <input type="hidden" name="reserve_id" value="[% reserve_id %]" />
319                     <input type="hidden" name="diffBranch" value="[% destbranch %]" />
320                     <input type="hidden" name="exemptfine" value="[% exemptfine %]" />
321                     <input type="hidden" name="dropboxmode" value="[% dropboxmode %]" />
322                     <input type="hidden" name="forgivemanualholdsexpire" value="[% forgivemanualholdsexpire %]" />
323
324                     <input type="hidden" name="return_date_override" value="[% return_date_override %]" />
325                     <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember %]" />
326                 </div>
327
328                 <div class="modal-footer">
329                     <input type="hidden" name="cancel_reserve" value="0" />
330
331                     <button type="submit" class="btn approve">
332                         <i class="fa fa-check"></i> Confirm
333                     </button>
334
335                     <input type="hidden" name="print_slip" value="0" />
336                     <button type="submit" class="btn print" onclick="this.form.print_slip.value = 1; this.form.submit();">
337                         <i class="fa fa-print"></i> Print and confirm
338                     </button>
339
340                     <button type="submit" class="btn deny" onclick="this.form.cancel_reserve.value = 1; this.form.submit();">
341                         <i class="fa fa-times"></i> Cancel hold
342                     </button>
343                 </div>
344             </form>
345         </div>
346     [% END %]
347
348     [% IF ( diffbranch ) %]
349                 <!-- diffbranch -->
350         <div id="transfer-needed" class="dialog message audio-alert-action">
351             <h3>Hold needing transfer found</h3>
352                 <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
353                 <h4>Hold for: </h4>
354                     <ul>
355                         <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borsurname %], [% borfirstname %]</a> ([% borcnum %])</li>
356                         <li>[% borstnum %] [% boraddress %]<br />
357                                                 [% IF ( boraddress2 ) %][% boraddress2 %]<br />[% END %]
358                                                 [% borcity %]  [% borzip %]</li>
359                         [% IF ( borphone ) %]<li>[% borphone %]</li>[% END %]
360                         [% IF ( boremail ) %]<li>[% IF ( transfertodo ) %][% boremail %][% ELSE %]<a id="boremail" href="mailto:[% boremail %]">[% boremail %]</a>[% END %]</li>[% END %]
361 [% IF ( debarred ) %]<li class="error">Patron is RESTRICTED</li>[% END %]
362 [% IF ( gonenoaddress ) %]<li class="error">Patron's address is in doubt</li>[% END %]
363                     </ul>
364         [% IF ( transfertodo ) %]
365             <h4><strong>Transfer to:</strong> [% Branches.GetName( destbranch ) %]</h4>
366         [% ELSE %]
367             <h4><strong>Hold at</strong> [% Branches.GetName( destbranch ) %]</h4>
368         [% END %]
369
370         <form method="post" action="returns.pl" class="confirm">
371             <button type="submit" class="approve"><i class="fa fa-check"></i> Confirm</button>
372             <input type="hidden" name="print_slip" value="0" />
373             <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
374             <input type="hidden" name="biblionumber" value="[% itembiblionumber %]" />
375             <button type="submit" class="print" onclick="this.form.print_slip.value = 1; this.form.submit();"><i class="fa fa-print"></i> Print slip and continue</button>
376             [% FOREACH inputloo IN inputloop %]
377                 <input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" />
378                 <input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" />
379                 <input type="hidden" name="bn-[% inputloo.counter %]" value="[% inputloo.borrowernumber %]" />
380             [% END %]
381             <input type="hidden" name="diffBranch" value="[% destbranch %]" />
382             <input type="hidden" name="exemptfine" value="[% exemptfine %]" />
383             <input type="hidden" name="dropboxmode" value="[% dropboxmode %]" />
384             <input type="hidden" name="forgivemanualholdsexpire" value="[% forgivemanualholdsexpire %]" />
385             <input type="hidden" name="barcode" value="0" />
386
387             <input type="hidden" name="return_date_override" value="[% return_date_override %]" />
388             <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember %]" />
389         </form>
390                 </div>
391     [% END %]
392
393     [% IF ( transfer ) %]
394     <!-- transfer: item with no reservation, must be returned according to home library circulation rules -->
395         <div id="return1" class="dialog message audio-alert-action">
396             <h3>Please return item to: [% Branches.GetName( returnbranch ) %]</h3>
397             <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
398             <p><button type="button" class="openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&amp;branchcode=[% returnbranch %]&amp;op=slip"><i class="fa fa-print"></i> Print slip</button></p>
399         </div>
400     [% END %]
401
402     [% IF ( needstransfer ) %]
403         <!-- needstransfer -->
404     <div id="item-transfer" class="dialog message audio-alert-action"><h3> This item needs to be transferred to [% Branches.GetName( returnbranch ) %]</h3>
405     Transfer now?<br />
406     <form method="post" action="returns.pl" name="mainform" id="mainform">
407     [% IF itemnumber %]
408         <button type="submit" name="dotransfer" class="print openWin" data-url="transfer-slip.pl?transferitem=[% itemnumber %]&amp;&amp;branchcode=[% returnbranch %]&amp;op=slip"><i class="fa fa-print"></i> Yes, print slip</button>
409     [% END %]
410         <button type="submit" name="dotransfer" class="submit"><i class="fa fa-check"></i> Yes</button>
411         <button type="submit" name="notransfer" class="submit"><i class="fa fa-times"></i> No</button>
412     <input type="hidden" name="tobranch" value="[% returnbranch %]" />
413         <input type="hidden" name="transferitem" value="[% itemnumber %]" />
414         <input type="hidden" name="exemptfine" value="[% exemptfine %]" />
415         <input type="hidden" name="dropboxmode" value="[% dropboxmode %]" />
416         <input type="hidden" name="forgivemanualholdsexpire" value="[% forgivemanualholdsexpire %]" />
417         [% FOREACH inputloo IN inputloop %]
418         <input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" />
419         <input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" />
420         <input type="hidden" name="bn-[% inputloo.counter %]" value="[% inputloo.borrowernumber %]" />
421         [% END %]
422         <input type="hidden" name="barcode" value="0" />
423         <input type="hidden" name="return_date_override" value="[% return_date_override %]" />
424         <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember %]" />
425         </form>   </div>
426     [% END %]
427
428     [% IF ( diffbranch ) %]
429         <!-- diffbranch -->
430         <h3 class="audio-alert-action">Item consigned:</h3>
431         <table>
432         <caption><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% title |html %]</a></caption>
433         <tr>
434             <th>Hold for:</th>
435             <td>[% name %]</td>
436         </tr>
437         </table>
438         <form method="post" action="returns.pl"><input type="submit" value="OK" />
439             [% FOREACH inputloo IN inputloop %]
440                 [% UNLESS ( inputloo.first ) %]
441                     <input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" />
442                     <input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" />
443                     <input type="hidden" name="bn-[% inputloo.counter %]" value="[% inputloo.borrowernumber %]" />
444                 [% END %]
445             [% END %]
446
447             <input type="hidden" name="return_date_override" value="[% return_date_override %]" />
448             <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember %]" />
449
450             <input type="hidden" name="barcode" value="0" />
451         </form>
452     [% END %]
453
454
455     <!-- case of simple return no issue or transfer but with a reservation  -->
456     [% IF ( reserved ) %]
457         <!--  reserved  -->
458         <div id="hold-found2" class="modal fade audio-alert-action">
459             <form method="post" action="returns.pl" class="confirm">
460                 <div class="modal-header">
461                     <h3>
462                         Hold found:
463                         <br/>
464                         <a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">
465                             [% itembarcode |html %]: [% title |html %]
466                         </a>
467                 </div>
468
469                 <div class="modal-body">
470                     [% IF ( reservenotes ) %]
471                         <h4>Notes: [% reservenotes %]</h4>
472                     [% END %]
473                     <h5>Hold for:</h5>
474
475                         <li>
476                             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">
477                                 [% borsurname %], [% borfirstname %]
478                             </a>
479                             ([% borcnum %])
480                         </li>
481
482                         <li>
483                             [% borstnum %] [% boraddress %]<br />
484                             [% IF ( boraddress2 ) %]
485                                 [% boraddress2 %]<br />
486                             [% END %]
487                             [% borcity %] [% borzip %]
488                         </li>
489
490                         [% IF ( borphone ) %]
491                             <li>[% borphone %]</li>
492                         [% END %]
493
494                         [% IF ( boremail ) %]
495                             <li>
496                                 [% IF ( transfertodo ) %]
497                                     [% boremail %]
498                                 [% ELSE %]
499                                     <a id="boremail" href="mailto:[% boremail %]">[% boremail %]</a>
500                                 [% END %]
501                             </li>
502                         [% END %]
503
504                         [% UNLESS ( transfertodo) %]
505                             [% INCLUDE display_bormessagepref %]
506                         [% END %]
507
508                         [% IF ( debarred ) %]
509                             <li class="error">Patron is RESTRICTED</li>
510                         [% END %]
511
512                         [% IF ( gonenoaddress ) %]
513                             <li class="error">Patron's address is in doubt</li>
514                         [% END %]
515
516                     [% IF ( transfertodo ) %]
517                         <h4><strong>Transfer to:</strong> [% Branches.GetName( destbranch ) %]</h4>
518                     [% ELSE %]
519                         <h4><strong>Hold at</strong> [% Branches.GetName( destbranch ) %]</h4>
520                     [% END %]
521
522                     <input type="hidden" name="print_slip" value="0" />
523
524
525                     [% FOREACH inputloo IN inputloop %]
526                         <input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" />
527                         <input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" />
528                         <input type="hidden" name="bn-[% inputloo.counter %]" value="[% inputloo.borrowernumber %]" />
529                     [% END %]
530
531                     <input type="hidden" name="itemnumber" value="[% itemnumber %]" />
532                     <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
533                     <input type="hidden" name="biblionumber" value="[% itembiblionumber %]" />
534                     <input type="hidden" name="reserve_id" value="[% reserve_id %]" />
535                     <input type="hidden" name="diffBranch" value="[% destbranch %]" />
536                     <input type="hidden" name="exemptfine" value="[% exemptfine %]" />
537                     <input type="hidden" name="dropboxmode" value="[% dropboxmode %]" />
538                     <input type="hidden" name="forgivemanualholdsexpire" value="[% forgivemanualholdsexpire %]" />
539                     <input type="hidden" name="return_date_override" value="[% return_date_override %]" />
540                     <input type="hidden" name="return_date_override_remember" value="[% return_date_override_remember %]" />
541                 </div>
542
543                 <div class="modal-footer">
544                     [% IF ( transfertodo ) %]
545                         <button type="submit" class="btn approve">
546                             <i class="fa fa-check"></i> Confirm hold and transfer
547                         </button>
548                         <button type="submit" class="btn print" onclick="this.form.print_slip.value = 1; this.form.submit()">
549                             <i class="fa fa-print"></i> Print slip, transfer, and confirm
550                         </button>
551                     [% ELSE %]
552                         <button type="submit" class="btn approve">
553                             <i class="fa fa-check"></i> Confirm hold
554                         </button>
555                         <button type="submit" class="btn print" onclick="this.form.print_slip.value = 1; this.form.submit();">
556                             <i class="fa fa-print"></i> Print slip and confirm
557                         </button>
558                     [% END %]
559
560                     <button data-dismiss="modal" aria-hidden="true" type="submit" class="btn btn-danger deny" onclick="$('#barcode').focus(); return false;">
561                         <i class="fa fa-times"></i> Ignore
562                     </button>
563                 </div>
564             </form>
565         </div>
566     [% END %]
567 [% END %]
568
569 [% IF ( errmsgloop ) %]
570     <div class="dialog alert audio-alert-warning">
571         <h3>Check in message</h3>
572         [% IF itembiblionumber %]
573             <p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&amp;biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p>
574         [% END %]
575         [% FOREACH errmsgloo IN errmsgloop %]
576                     [% IF ( errmsgloo.NotForLoanStatusUpdated ) %]
577                         <p class="problem">
578                             Not for loan status updated.
579                             <br />Old value:
580                             [% IF errmsgloo.NotForLoanStatusUpdated.from %]
581                                 [% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.from ) %].
582                             [% ELSE %]
583                                 Available for loan.
584                             [% END %]
585                             <br />New value:
586                             [% IF errmsgloo.NotForLoanStatusUpdated.to %]
587                                 [% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.to ) %].
588                             [% ELSE %]
589                                 Available for loan.
590                             [% END %]
591                         </p>
592                     [% END %]
593                     [% IF ( errmsgloo.badbarcode ) %]
594                         <p class="problem">No item with barcode: [% errmsgloo.msg | html %]</p>
595                     [% END %]
596                     [% IF ( errmsgloo.ispermanent ) %]
597                         <p class="problem">Please return item to: [% Branches.GetName( errmsgloo.msg ) %]</p>
598                     [% END %]
599                     [% IF ( errmsgloo.notissued ) %]
600                         <p class="problem">Not checked out.</p>
601                     [% END %]
602                     [% IF ( errmsgloo.localuse) %]
603                         <p class="problem">Local use recorded</p>
604                     [% END %]
605                     [% IF ( errmsgloo.waslost ) %]
606                         <p class="problem">Item was lost, now found.</p>
607                         [% IF ( LostItemFeeRefunded ) %]
608                             <p class="problem">A refund has been applied to the borrowing patron's account.</p>
609                         [% ELSE %]
610                             <p class="problem">Any lost item fees for this item will remain on the patron's account.</p>
611                         [% END %]
612                     [% END %]
613                     [% IF ( errmsgloo.withdrawn ) %]
614                         [% IF BlockReturnOfWithdrawnItems %]
615                            <h5>Cannot check in</h5>
616                            <p><strong>NOT CHECKED IN</strong></p>
617                            <p class="problem">Item is withdrawn.</p>
618                         [% ELSE %]
619                            <p class="problem">Item is withdrawn.</p>
620                         [% END %]
621                     [% END %]
622                     [% IF ( errmsgloo.debarred ) %]
623                         <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber %]">[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p>
624                     [% END %]
625                     [% IF ( errmsgloo.prevdebarred ) %]
626                         <p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p>
627                     [% END %]
628                     [% IF ( errmsgloo.foreverdebarred ) %]
629                         <p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p>
630                     [% END %]
631
632             [% END %]
633         [% ELSE %]
634         [% END %]
635     </div>
636
637 [% IF ( checkinmsg ) %]
638     [% IF ( checkinmsgtype == 'alert' ) %]
639         <div class="dialog alert">
640     [% ELSE %]
641         <div class="dialog message">
642     [% END %]
643             <p class="problem">[% checkinmsg | html_line_break %]</p>
644         </div>
645 [% END%]
646
647     <div id="exemptfines" class="dialog message" style="display:none;">
648         <p>Fines for returned items are forgiven.</p>
649     </div>
650     <div id="forgivemanualholdsexpire-alert" class="dialog message" style="display:none;">
651         <p>Fines are not charged for manually cancelled holds.</p>
652     </div>
653     <div id="dropboxmode" class="dialog message" style="display:none;">
654         <p>Book drop mode.  (Effective checkin date is [% dropboxdate %] ).</p>
655     </div>
656 </div>
657         <div class="yui-g">
658     <form id="checkin-form" method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" >
659     <div class="yui-u first">
660             <fieldset>
661         <legend>Check in</legend>
662             <label for="barcode">Enter item barcode: </label>
663                         [% IF ( exemptfine ) %]
664                         <input name="barcode" id="barcode" size="14" class="focus alert"/>
665                         [% ELSIF ( dropboxmode ) %]
666                         <input name="barcode" id="barcode" size="14" class="focus alert"/>
667                         [% ELSE %]
668                         <input name="barcode" id="barcode" size="14" class="focus"/>
669                         [% END %]
670             <input type="submit" class="submit" value="Submit" />
671
672             [% IF Koha.Preference('SpecifyReturnDate') %]
673                 <div class="date-select" id="return_date_override_fields">
674                     <div class="hint">Specify return date [% INCLUDE 'date-format.inc' %]: </div>
675
676                     <input type="text" size="13" id="return_date_override" name="return_date_override" value="[% return_date_override %]" />
677
678                     <label for="return_date_override_remember"> Remember for next check in:</label>
679                     [% IF ( return_date_override_remember ) %]
680                         <input type="checkbox" id="return_date_override_remember" onclick="this.form.barcode.focus();" name="return_date_override_remember" checked="checked" />
681                     [% ELSE %]
682                         <input type="checkbox" id="return_date_override_remember" onclick="this.form.barcode.focus();" name="return_date_override_remember" />
683                     [% END %]
684
685                     <input type="button" class="action" id="cleardate" value="Clear" name="cleardate" onclick="this.checked = false; this.form.return_date_override.value = ''; this.form.return_date_override_remember.checked = false; this.form.barcode.focus(); return false;" />
686             </div>
687         [% END %]
688             [% FOREACH inputloo IN inputloop %]
689                 <input type="hidden" name="ri-[% inputloo.counter %]" value="[% inputloo.barcode %]" />
690                 <input type="hidden" name="dd-[% inputloo.counter %]" value="[% inputloo.duedate %]" />
691                 <input type="hidden" name="bn-[% inputloo.counter %]" value="[% inputloo.borrowernumber %]" />
692             [% END %]
693
694
695             </fieldset>
696             </div>
697             <div class="yui-u">
698             <fieldset id="checkin_options">
699                 <legend>Options</legend>
700                     [% IF ( CAN_user_updatecharges_writeoff && overduecharges ) %]
701                     <p>
702                         [% IF ( exemptfine ) %]
703                         <input type="checkbox" id="exemptcheck" name="exemptfine" value="exemptfine" checked="checked" />
704                         [% ELSE %]
705                         <input type="checkbox" id="exemptcheck" name="exemptfine" value="exemptfine" />
706                         [% END %]
707                         <label for="exemptcheck">Forgive overdue charges</label>
708                     </p>
709                     [% END %] <!-- overduecharges -->
710                     <p>
711                         [% IF ( dropboxmode ) %]
712                         <input type="checkbox" id="dropboxcheck" name="dropboxmode" value="dropboxmode" checked="checked" />
713                         [% ELSE %]
714                         <input type="checkbox" id="dropboxcheck" name="dropboxmode" value="dropboxmode" />
715                         [% END %]
716                         <label for="dropboxcheck">Book drop mode</label>
717                     </p>
718                     [% IF Koha.Preference('ExpireReservesMaxPickUpDelayCharge') %]
719                     <p>
720                         [% IF ( forgivemanualholdsexpire ) %]
721                         <input type="checkbox" id="forgivemanualholdsexpire" name="forgivemanualholdsexpire" value="forgivemanualholdsexpire" checked="checked" />
722                         [% ELSE %]
723                         <input type="checkbox" id="forgivemanualholdsexpire" name="forgivemanualholdsexpire" value="forgivemanualholdsexpire" />
724                         [% END %]
725                         <label for="forgivemanualholdsexpire">Forgive fees for manually expired holds</label>
726                     </p>
727                     [% END %] <!-- overduecharges -->
728             </fieldset>
729         </div>
730     </form>
731 </div>
732
733 [% IF ( riloop ) %]
734     <h2>Checked-in items</h2>
735     <table id="checkedintable">
736     <thead><tr><th class="ci-duedate">Due date</th><th class="ci-title">Title</th><th class="ci-author">Author</th><th class="ci-barcode">Barcode</th><th class="ci-homelibrary">Home library</th><th class="ci-holdinglibrary">Holding library</th><th class="ci-shelvinglocation">Shelving location</th><th class="ci-callnumber">Call number</th><th class="ci-dateaccessioned">Date acquired</th><th class="ci-type">Type</th><th class="ci-patron">Patron</th><th class="ci-note">Note</th></tr></thead>
737
738         [% FOREACH riloo IN riloop %]
739             <tr>
740             <td class="ci-duedate">[% IF ( riloo.duedate ) %]
741                     [% IF ( riloo.return_overdue ) %]
742                         <span class="overdue">[% riloo.duedate %] (overdue)</span>
743                     [% ELSE %][% riloo.duedate %]
744                     [% END %]
745                 [% ELSE %]Not checked out
746                 [% END %]
747             </td>
748             <td class="ci-title"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% riloo.itembiblionumber %]">
749                     [% riloo.itemtitle |html %]
750                 </a>
751                 [% IF ( riloo.enumchron ) %]
752                     <br/>
753                     <span class="item_enumeration" style="white-space: nowrap;">[% riloo.enumchron %]</span>
754                 [% END %]
755             </td>
756             <td class="ci-author">[% riloo.itemauthor %]</td>
757             <td class="ci-barcode"><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% riloo.itembiblionumber %]&amp;itemnumber=[% riloo.itemnumber %]#item[% riloo.itemnumber %]">[% riloo.barcode %]</a></td>
758             <td class="ci-homelibrary">[% Branches.GetName( riloo.homebranch ) %]</td>
759             <td class="ci-holdinglibrary">[% Branches.GetName( riloo.holdingbranch ) %]</td>
760             <td class="ci-shelvinglocation">[% riloo.location %]</td>
761             <td class="ci-callnumber">[% riloo.itemcallnumber %]</td>
762             <td class="ci-dateaccessioned">[% riloo.dateaccessioned | $KohaDates %]</td>
763             <td class="ci-type">[% ItemTypes.GetDescription( riloo.itemtype ) %] [% AuthorisedValues.GetByCode('CCODE', riloo.ccode) %]</td>
764             <td class="ci-patron">[% IF ( riloo.duedate ) %]
765                 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% riloo.borrowernumber %]">
766                     [% riloo.borsurname %], [% riloo.borfirstname %] ([% riloo.borcategorycode %])
767                 </a>
768             [% ELSE %]Not checked out[% END %]</td>
769             <td class="ci-note">
770                 [% IF ( riloo.bornote ) %]<p><span class="circ-hlt patron-note">[% riloo.bornote %]</p></span>[% END %]
771                 [% IF ( riloo.itemnote ) %]<p><span class="circ-hlt item-note-public">[% riloo.itemnote %]</p></span>[% END %]
772                 [% IF ( riloo.itemnotes_nonpublic ) %]<p><span class="circ-hlt item-note-nonpublic">[% riloo.itemnotes_nonpublic %]</p></span>[% END %]
773             </td>
774            </tr>
775         [% END %]
776     </table></div>
777 [% END %]
778
779
780 </div>
781 [% INCLUDE 'intranet-bottom.inc' %]