Lines 21-26
Link Here
|
21 |
<script type="text/javascript"> |
21 |
<script type="text/javascript"> |
22 |
//<![CDATA[ |
22 |
//<![CDATA[ |
23 |
$(document).ready(function() { |
23 |
$(document).ready(function() { |
|
|
24 |
if($('#barcodelist').length) { |
25 |
$('#barcodelist').focus(); |
26 |
} else if ($('#checkoutrenew').length) { |
27 |
$('#checkoutrenew').focus(); |
28 |
} |
24 |
$("#issuest").dataTable($.extend(true, {}, dataTablesDefaults, { |
29 |
$("#issuest").dataTable($.extend(true, {}, dataTablesDefaults, { |
25 |
"sDom": 't', |
30 |
"sDom": 't', |
26 |
"aaSorting": [], |
31 |
"aaSorting": [], |
Lines 52-57
$(document).ready(function() {
Link Here
|
52 |
|
57 |
|
53 |
<div class="yui-g"> |
58 |
<div class="yui-g"> |
54 |
|
59 |
|
|
|
60 |
[% IF ( borrowernumber ) %] |
61 |
[% INCLUDE 'members-toolbar.inc' %] |
62 |
[% END %] |
63 |
|
55 |
[% IF NOT batch_allowed %] |
64 |
[% IF NOT batch_allowed %] |
56 |
<div class="dialog message">You are not allowed to use batch checkout for this patron</div> |
65 |
<div class="dialog message">You are not allowed to use batch checkout for this patron</div> |
57 |
[% ELSIF NOT checkout_infos %] |
66 |
[% ELSIF NOT checkout_infos %] |
Lines 256-262
$(document).ready(function() {
Link Here
|
256 |
<input type="hidden" name="debt_confirmed" value="1" /> |
265 |
<input type="hidden" name="debt_confirmed" value="1" /> |
257 |
<input type="hidden" name="branch" value="[% branch %]" /> |
266 |
<input type="hidden" name="branch" value="[% branch %]" /> |
258 |
<input type="hidden" name="batch" value="1" /> |
267 |
<input type="hidden" name="batch" value="1" /> |
259 |
<input type="submit" class="approve" value="Checkout or renew" /> |
268 |
<input type="submit" id="checkoutrenew" class="approve" value="Checkout or renew" /> |
260 |
</form> |
269 |
</form> |
261 |
[% END %] |
270 |
[% END %] |
262 |
|
271 |
|
263 |
- |
|
|