2935351f9ffb9d67acf861ee97ca50d076458cab
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / sco / sco-main.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% USE AudioAlerts %]
6 [% USE To %]
7 [% USE Price %]
8 [% INCLUDE 'doc-head-open.inc' %]
9 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha [% END %] &rsaquo; Self checkout </title>
10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11 <meta name="generator" content="Koha [% Version | html %]" /> <!-- leave this for stats -->
12 <link rel="shortcut icon" href="[% IF ( Koha.Preference('OpacFavicon') ) %][% Koha.Preference('OpacFavicon') | url %][% ELSE %][% interface | html %]/[% theme | html %]/images/favicon.ico[% END %]" type="image/x-icon" />
13 [% Asset.css("lib/bootstrap/css/bootstrap.min.css") | $raw %]
14 [% Asset.css("lib/jquery/jquery-ui.css") | $raw %]
15 [% Asset.css("css/sco.css") | $raw %]
16 [% IF ( Koha.Preference('OPACUserCSS') ) %]<style>[% Koha.Preference('OPACUserCSS') | $raw %]</style>[% END %]
17 [% IF ( Koha.Preference('SCOUserCSS') ) %]<style>[% Koha.Preference('SCOUserCSS') | $raw %]</style>[% END %]
18 <!--[if lt IE 9]>
19     <script src="[% interface | html %]/[% theme | html %]/lib/respond.min.js"></script>
20 <![endif]-->
21 <script>
22     function _(s) { return s } // dummy function for gettext
23 </script>
24 [% Asset.js("lib/modernizr.min.js") | $raw %]
25 </head>
26 <body id="sco_main" class="sco" onload="dofocus();" onunload="mungeHistory();">
27 [% INCLUDE 'masthead-sco.inc' %]
28
29     <div class="main">
30         <div class="container-fluid">
31             <div class="row-fluid">
32                 [% IF ( display_patron_image ) %]
33                     <div class="span10">
34                 [% ELSE %]
35                     <div class="span12">
36                 [% END %]
37
38                     <div id="masthead"><h1>[% LibraryName | html %] Self checkout system</h1></div>
39
40                     [% IF ( impossible ) %]<!-- We tried to issue, but failed. -->
41                         <div class="alert">
42                             <h3>Item cannot be checked out.</h3>
43                             <p>Sorry, this item cannot be checked out at this station.</p>
44                             [% IF ( title ) %]
45                                 <p>Title: <em>[% title | html %]</em> </p>
46                             [% END %]
47
48                             <p>
49                                 [% IF ( circ_error_UNKNOWN_BARCODE ) %]
50                                     The system does not recognize this barcode.
51                                 [% ELSIF ( circ_error_max_loans_allowed ) %]
52                                     You have checked out too many items and can't check out any more.
53                                 [% ELSIF ( circ_error_ISSUED_TO_ANOTHER ) %]
54                                     This item is checked out to someone else.
55                                 [% ELSIF ( circ_error_NO_MORE_RENEWALS ) %]
56                                     You cannot renew this item again.
57                                 [% ELSIF ( circ_error_NOT_FOR_LOAN ) %]
58                                     This item is not for loan.
59                                 [% ELSIF ( circ_error_DEBT ) %]
60                                     You owe the library [% DEBT | $Price %] and cannot check out.
61                                 [% ELSIF ( circ_error_WTHDRAWN ) %]
62                                     This item has been withdrawn from the collection.
63                                 [% ELSIF ( circ_error_RESTRICTED ) %]
64                                     This item is restricted.
65                                 [% ELSIF ( circ_error_RESERVED ) %]
66                                     This item is on hold for another patron.
67                                 [% ELSIF ( circ_error_ITEMNOTSAMEBRANCH ) %]
68                                     This item belongs to another branch.
69                                 [% ELSIF ( circ_error_EXPIRED ) %]
70                                     Your account has expired.
71                                 [% ELSIF ( circ_error_DEBARRED ) %]
72                                     Your account has been suspended.
73                                 [% ELSIF ( circ_error_CARD_LOST ) %]
74                                     This card has been declared lost.
75                                 [% ELSIF ( circ_error_GNA ) %]
76                                     Your contact information seems to be incomplete.
77                                 [% ELSIF ( circ_error_INVALID_DATE ) %]
78                                     Due date is not valid.
79                                 [% END %]
80                                 Please see a member of the library staff.
81                             </p>
82
83                             [% IF ( returnitem && Koha.Preference('AllowSelfCheckReturns') ) %]
84                                 <form action="/cgi-bin/koha/sco/sco-main.pl" name="errorForm" class="inline" method="post">
85                                     <input type="hidden" name="op" value="returnbook" />
86                                     <input type="hidden" name="patronid" value="[% patronid | html %]" />
87                                     <input type="hidden" name="barcode" value="[% barcode | html %]" />
88                                     <input type="hidden" name="newissues" value="[% newissues | html %]" />
89                                     <button type="submit" name="returnbook" class="btn"><i class="return"></i> Return this item</button>
90                                 </form>
91                             [% END %]
92
93                             <form action="/cgi-bin/koha/sco/sco-main.pl" name="errorForm" class="inline" method="post">
94                                 <input type="hidden" name="op" value="" />
95                                 <input type="hidden" name="patronid" value="[% patronid | html %]" />
96                                 <input type="hidden" name="barcode" value="[% barcode | html %]" />
97                                 <input type="hidden" name="newissues" value="[% newissues | html %]" />
98                                 <input type="submit" name= "confirm" value="Return to account summary" class="btn back focus" />
99                             </form>
100                         </div> <!-- / .alert -->
101                     [% END # / IF ( impossible %]
102
103                     [% IF ( confirm ) %]<!-- We need to confirm the issue.. -->
104                         <div class="alert"><h3>Please confirm the checkout:</h3>
105                             [% IF ( confirm_renew_issue ) %]
106                                 <p>This item is already checked out to you.</p>
107                             [% END %]
108
109                             [% IF ( renew && Koha.Preference('AllowSelfCheckReturns') ) %]
110                                 <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post">
111                                     <input type="hidden" name="op" value="returnbook" />
112                                     <input type="hidden" name="patronid" value="[% patronid | html %]" />
113                                     <input type="hidden" name="barcode" value="[% barcode | html %]" />
114                                     <input type="hidden" name="confirmed" value="" />
115                                     <input type="hidden" name="newissues" value="[% newissues | html %]" />
116                                     <button type="submit" name="returnbook" class="btn"><i class="icon return"></i> Return this item</button>
117                                 </form>
118                             [% END %]
119
120                             [% UNLESS ( renew ) %]
121                                 <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post">
122                                     <input type="hidden" name="op" value="checkout" />
123                                     <input type="hidden" name="patronid" value="[% patronid | html %]" />
124                                     <input type="hidden" name="barcode" value="[% barcode | html %]" />
125                                     <input type="hidden" name="confirmed" value="1" />
126                                     <input type="hidden" name="newissues" value="[% newissues | html %]" />
127                                     <button type="submit" name="confirm" class="btn"><i class="icon renew"></i> Renew item</button>
128                                   </form>
129                             [% ELSE %]
130                                 <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post">
131                                     <input type="hidden" name="op" value="checkout" />
132                                     <input type="hidden" name="patronid" value="[% patronid | html %]" />
133                                     <input type="hidden" name="barcode" value="[% barcode | html %]" />
134                                     <input type="hidden" name="confirmed" value="1" />
135                                     <input type="hidden" name="newissues" value="[% newissues | html %]" />
136                                     <button type="submit" class="btn"><i class="icon renew"></i> Renew item</button>
137                                 </form>
138                             [% END %]
139
140                             <form action="/cgi-bin/koha/sco/sco-main.pl" name="confirmForm" class="inline" method="post">
141                                 <input type="hidden" name="op" value="" />
142                                 <input type="hidden" name="patronid" value="[% patronid | html %]" />
143                                 <input type="hidden" name="newissues" value="[% newissues | html %]" />
144                                 <button type="submit" class="btn"><i class="icon cancel"></i> Cancel</button>
145                             </form>
146                         </div>
147                     [% END # / IF confirm %]
148
149                     [% IF ( nopermission ) %]
150                         <!-- This is what is displayed if user doesn't have permission -->
151                         <div class="alert">
152                             <h3>Access denied</h3>
153                             <p>Sorry, this self-checkout station has lost authentication.  Please contact the administrator to resolve this problem.</p>
154                         </div>
155                     [% END %]
156
157                     [% IF ( different_ip ) %]
158                         <!-- This is what is displayed if user doesn't have permission -->
159                         <div class="alert">
160                             <h3>Session lost</h3>
161                             <p>You are accessing self-checkout from a different IP address! please log in again.</p>
162                         </div>
163                     [% END %]
164
165                     [% IF ( invalid_username_or_password ) %]
166                         <!-- This is what is displayed if user doesn't have permission -->
167                         <div class="alert">
168                             <h3>Record not found</h3>
169                             <p>Your userid was not found in the database.  Please try again.</p>
170                         </div>
171                     [% END %]
172
173
174                     [% UNLESS ( hide_main ) %]
175
176                         [% IF ( patronid ) %]
177                             [% IF ( validuser ) %]
178                                 <div class="alert alert-info">You are logged in as [% borrowername | html %].</div>
179                                 [% INCLUDE 'opac-note.inc' %]
180                                 [% IF patron_has_hold_fee %]
181                                     <div class="alert">A hold fee was charged to your account for collecting this item.</div>
182                                 [% END %]
183                             [% END %]
184
185                             [% IF ( nouser ) %]
186                                 <div class="alert">
187                                     <h4>Sorry</h4>
188                                     <p>The userid <strong>[% patronid | html %]</strong> was not found in the database.  Please try again.</p>
189                                 </div>
190                             [% END %]
191                         [% END # / IF patronid %]
192
193                         [% IF ( validuser ) %]
194                             <div id="newcheckout" class="sco_entry">
195                                 <form id="scan_form" name="scan_form" method="post" action="/cgi-bin/koha/sco/sco-main.pl" onsubmit="return checkout_confirm('[% patronid | html %]');">
196                                     <fieldset>
197                                         <legend>Check out[% IF ( Koha.Preference('AllowSelfCheckReturns') ) %], return[% END %] or renew an item: </legend>
198                                         <div class="input-append">
199                                             <label for="barcode">Scan a new item or enter its barcode:</label>
200                                             <input id="barcode" name="barcode" size="20" type="text" class="focus" autocomplete="off" />
201                                             <button type="submit" class="btn">Submit</button>
202                                         </div>
203                                         <input type="hidden" name="op" value="checkout" />
204                                         <input type="hidden" name="patronid" value="[% patronid | html %]" />
205                                         <input type="hidden" name="newissues" value="[% newissues | html %]" />
206                                     </fieldset>
207                                 </form>
208
209                                 <div>
210                                     <form method="post" action="#" id="logout_form">
211                                         <button type="submit" class="btn"><i class="icon finish"></i> Finish</button>
212                                     </form>
213                                 </div>
214                             </div> <!-- / #newcheckout -->
215                 </div> <!-- / .span12/12 -->
216                 [% IF ( display_patron_image ) %]
217                     <div class="span2">
218                         <img src="/cgi-bin/koha/sco/sco-patron-image.pl?borrowernumber=[% borrowernumber | html %]&csrf_token=[% csrf_token | html %]" alt="" />
219                     </div>
220                 [% END %]
221             </div> <!-- / .row-fluid -->
222         </div> <!-- / .container-fluid -->
223
224         <div class="container-fluid">
225             <div class="row-fluid">
226                     <div class="span12">
227                         <div id="borrowerdetails">
228                             [% IF ( issues_count ) %]
229                                 <table id="loanTable" class="table table-bordered table-striped">
230                                     <caption>Checkouts for [% borrowername | html %] <span class="count">([% issues_count | html %] total)</span></caption>
231                                     <!-- ISSUES TABLE ROWS -->
232                                     <thead>
233                                         <tr>
234                                             <th class="noshow">Checked out on</th>
235                                             <th class="anti-the">Title</th>
236                                             <th>Call no.</th>
237                                             <th class="title-string">Due</th>
238                                             <th class="nosort">Renew</th>
239                                             [% UNLESS ( nofines ) %]
240                                                 <th>Fines</th>
241                                             [% END %]
242                                         </tr>
243                                     </thead>
244                                     <tbody>
245                                         [% FOREACH ISSUE IN ISSUES %]
246                                             <tr>
247                                                 <td>[% ISSUE.issuedate | html %]</td>
248                                                 <td>
249                                                     [% UNLESS ( noitemlinks ) %]
250                                                         <a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE.  biblionumber | uri %]">[% ISSUE.title | html %]</a>
251                                                     [% ELSE %]
252                                                         <strong>[% ISSUE.title | html %]</strong>
253                                                     [% END %]
254                                                     [% IF ( newissues.match(ISSUE.barcode)) %]
255                                                         <span class="label label-info">NEW</span>
256                                                     [% END %]
257                                                     <span class="item-details">[% ISSUE.author | html %]</span>
258                                                     ([% ISSUE.barcode | html %])
259                                                 </td>
260                                                 <td>[% ISSUE.itemcallnumber | html %]</td>
261                                                 [% IF ( ISSUE.overdue ) %]
262                                                     <td class="overdue"><span title="[% ISSUE.date_due | html %]">[% ISSUE.date_due | $KohaDates  as_due_date => 1 %]</span></td>
263                                                 [% ELSE   %]
264                                                     <td><span title="[% ISSUE.date_due | html %]">[% ISSUE.date_due | $KohaDates  as_due_date => 1 %]</span></td>
265                                                 [% END %]
266                                                 <td>
267                                                     <form action="/cgi-bin/koha/sco/sco-main.pl" method="post">
268                                                         <input type="hidden" name="patronid" value="[% patronid | html %]" />
269                                                         <input type="hidden" name="barcode" value="[% ISSUE.barcode | html %]" />
270                                                         <input type="hidden" name="newissues" value="[% newissues | html %]" />
271                                                         [% IF ISSUE.can_be_renewed %]
272                                                             <input type="hidden" name="op" value="checkout" />
273                                                             <input type="hidden" name="confirmed" value="1" />
274                                                             [% UNLESS ( ISSUE.renew ) %]
275                                                                 <input type="submit" value="Renew item"  name="confirm  " class="btn renew" />
276                                                             [% ELSE %]
277                                                                 <input type="submit" value="Renew item" class="btn renew" />
278                                                             [% END %]
279                                                         [% ELSE %]
280                                                             [% IF ISSUE.renew_error == 'auto_renew' OR ISSUE.renew_error == 'auto_too_soon' %]
281                                                                 <span>This item has been scheduled for automatic renewal and cannot be renewed</span>
282                                                             [% ELSIF ISSUE.renew_error == 'onsite_checkout' %]
283                                                                 <span>This is a on-site checkout, it cannot be renewed.</span>
284                                                             [% ELSE %]
285                                                                 <span>No renewals allowed</span>
286                                                             [% END %]
287                                                             [% IF Koha.Preference('AllowSelfCheckReturns') %]
288                                                                 <input type="submit" value="Check in item" name="confirm" class="btn return" />
289                                                                 <input type="hidden" name="op" value="returnbook" />
290                                                                 <input type="hidden" name="confirmed" value=""  />
291                                                             [% END %]
292                                                         [% END %]
293                                                     </form>
294                                                 </td>
295                                                 [% UNLESS ( nofines ) %]
296                                                     <td>
297                                                         [% IF ( ISSUE.charges ) %]Yes[% ELSE %]No[% END %]
298                                                     </td>
299                                                 [% END %]
300                                             </tr>
301                                         [% END # / FOREACH ISSUE %]
302                                     </tbody>
303                                 </table>
304                             [% ELSE %]
305                                 <h3>You currently have nothing checked out.</h3>
306                             [% END # / IF issues_count %]
307                         </div> <!-- / #borrowerdetails -->
308                         [% ELSE # IF validuser %]
309                             <div class="sco_entry" >
310                                 <form id="mainform" action="/cgi-bin/koha/sco/sco-main.pl" name="mainform" method="post">
311                                     <fieldset class="checkout brief">
312                                         [% IF ( Koha.Preference('SelfCheckoutByLogin') ) %]
313                                             <legend>Log in to your account</legend>
314                                             <label for="patronlogin">Login:</label>
315                                             <input type="text" id="patronlogin" class="focus" size="20" name="patronlogin" />
316                                             <label for="patronpw">Password:</label>
317                                             <input type="password" id="patronpw" size="20" name="patronpw" />
318                                             <fieldset class="action">
319                                                 <button type="submit" class="btn">Log in</button>
320                                             </fieldset>
321                                         [% ELSE %]
322                                             <div class="input-append">
323                                                 <label for="patronid">Please enter your card number:</label>
324                                                 <input type="text" id="patronid" class="focus" size="20" name="patronid" autocomplete="off" />
325                                                 <button type="submit" class="btn">Submit</button>
326                                             </div>
327                                         [% END %]
328
329                                         [% FOREACH INPUT IN INPUTS %]
330                                             <input type="hidden" name="[% INPUT.name | html %]" value="[% INPUT.value | html %]">
331                                         [% END %]
332                                         <input type="hidden" name="op" value="login" />
333                                     </fieldset>
334                                 </form>
335                             </div> <!-- / .sco_entry -->
336                         [% END # / IF validuser %]
337                     [% END # / UNLESS ( hide_main %]
338                     [% IF ( Koha.Preference('SCOMainUserBlock' ) ) %]<div id="scomainuserblock">[% Koha.Preference('SCOMainUserBlock' ) | $raw %]</div>[% END %]
339                 </div> <!-- / .span12 -->
340             </div> <!-- / .row-fluid -->
341         </div> <!-- / .container-fluid -->
342     </div> <!-- / .main -->
343     <span id="audio-alert"></span>
344
345 [% INCLUDE 'opac-bottom.inc' %]
346 [% BLOCK jsinclude %]
347     [% INCLUDE 'datatables.inc' %]
348     <script>
349         //<![CDATA[
350         function mungeHistory() {
351             // prevent back button from allowing form resubmission
352             if (history && history.pushState) {
353                 history.replaceState(null, document.title, window.location.href);
354             }
355         }
356         var mainTimeout;
357         function sco_init() {
358             mainTimeout = setTimeout(function() {
359                 location.href = '/cgi-bin/koha/sco/sco-main.pl?op=logout';
360             }, [% SelfCheckTimeout | html %]);
361         }
362         function dofocus() {    // named function req'd for body onload event by some FF and IE7 security models
363             // alert("dofocus called");
364             $(".focus:last").select();
365         }
366         var slip_re = /slip/;
367         function printx_window(print_type) {
368           var handler = print_type.match(slip_re) ? "printslip" : "moremember";
369
370           return false;
371         }
372         function checkout_confirm(patronid) {
373             var   barcode = $("#barcode").val();
374             // alert("checkout_confirm('" + patronid + "') called for barcode '" + barcode + "'");
375             if (! barcode) { dofocus(); return false; }    // no barcode
376             if (barcode == "__KOHA_NEW_CIRC__") {   // magic barcode
377                 window.location.href='/cgi-bin/koha/sco/sco-main.pl?op=logout';
378                 return false;
379             }
380             return true;
381         }
382         [% IF Koha.Preference('AudioAlerts') %]
383             var AUDIO_ALERTS = JSON.parse( "[% To.json(AudioAlerts.AudioAlerts) | $raw %]" );
384             $( document ).ready(function() {
385                 if ( AUDIO_ALERTS ) {
386                     for ( var k in AUDIO_ALERTS ) {
387                         var alert = AUDIO_ALERTS[k];
388                         if ( $( alert.selector ).length ) {
389                             playSound( alert.sound );
390                             break;
391                         }
392                     }
393                 }
394             });
395             function playSound( sound ) {
396                 if (  ( sound.indexOf('http://') == 0 || sound.indexOf('https://') == 0 )  ) {
397                     document.getElementById("audio-alert").innerHTML = '<audio src="' + sound + '" autoplay="autoplay" autobuffer="autobuffer"></audio>';
398                 }
399             }
400         [% END %]
401
402
403         $(document).ready(function() {
404             dofocus();
405             [% IF ( patronid ) %]sco_init();[% END %]
406             $("#loanTable").dataTable($.extend(true, {}, dataTablesDefaults, {
407                 "order": [ 0 ],
408                 "columnDefs": [
409                     { "targets": [ "nosort" ], "sortable": false, "searchable": false },
410                     { "targets": [ "noshow" ], "visible": false, "searchable": false },
411                     { "type": "anti-the", "targets" : [ "anti-the" ] },
412                     { "type": "title-string", "targets" : [ "title-string" ] }
413                 ]
414             }));
415
416             $("#logout_form").submit(function(){
417                 clearTimeout(mainTimeout);
418                 [% IF Koha.Preference('SelfCheckReceiptPrompt') %]
419                     var confirmStart = Date.now();
420                     if(confirm(_("Would you like to print a receipt?"))){
421                         if ( (Date.now() - confirmStart) < [% SelfCheckTimeout | html %] ) {
422                             window.open("/cgi-bin/koha/sco/printslip.pl?borrowernumber=[% borrowernumber | html %]&amp;print=qslip");
423                         } else {
424                             alert(_("Timeout while waiting for print confirmation"));
425                         }
426                     }
427                 [% END %]
428
429                 return true;
430             });
431     });
432     //]]>
433     </script>
434
435     [% IF ( Koha.Preference('SCOUserJS') ) %]<script>[% Koha.Preference('SCOUserJS') | $raw %]</script>[% END %]
436 [% END %]