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 |
$('#barcodelist').focus(); |
25 |
$('#printslipshortcut').on('click', function(){ |
26 |
$('#printslip').click(); |
27 |
}); |
24 |
$("#issuest").dataTable($.extend(true, {}, dataTablesDefaults, { |
28 |
$("#issuest").dataTable($.extend(true, {}, dataTablesDefaults, { |
25 |
"sDom": 't', |
29 |
"sDom": 't', |
26 |
"aaSorting": [], |
30 |
"aaSorting": [], |
Lines 52-57
$(document).ready(function() {
Link Here
|
52 |
|
56 |
|
53 |
<div class="yui-g"> |
57 |
<div class="yui-g"> |
54 |
|
58 |
|
|
|
59 |
[% IF ( borrowernumber ) %] |
60 |
[% INCLUDE 'members-toolbar.inc' %] |
61 |
[% END %] |
62 |
|
55 |
[% IF NOT batch_allowed %] |
63 |
[% IF NOT batch_allowed %] |
56 |
<div class="dialog message">You are not allowed to use batch checkout for this patron</div> |
64 |
<div class="dialog message">You are not allowed to use batch checkout for this patron</div> |
57 |
[% ELSIF NOT checkout_infos %] |
65 |
[% ELSIF NOT checkout_infos %] |
Lines 79-84
$(document).ready(function() {
Link Here
|
79 |
<input type="hidden" name="branch" value="[% branch %]" /> |
87 |
<input type="hidden" name="branch" value="[% branch %]" /> |
80 |
<input type="hidden" name="batch" value="1" /> |
88 |
<input type="hidden" name="batch" value="1" /> |
81 |
<input type="submit" value="Check out" class="button" /> |
89 |
<input type="submit" value="Check out" class="button" /> |
|
|
90 |
[% IF ( borrowernumber ) %] |
91 |
<a href="#" id="printslipshortcut" class="pull-right">Print slip</a> |
92 |
[% END %] |
82 |
</fieldset> |
93 |
</fieldset> |
83 |
</fieldset> |
94 |
</fieldset> |
84 |
</form> |
95 |
</form> |
85 |
- |
|
|