Lines 28-34
Link Here
|
28 |
<script type="text/javascript" src="[% themelang %]/js/pages/circulation.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> |
29 |
<script type="text/javascript" src="[% themelang %]/js/checkouts.js"></script> |
30 |
<script type="text/javascript" src="[% themelang %]/js/holds.js"></script> |
30 |
<script type="text/javascript" src="[% themelang %]/js/holds.js"></script> |
31 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script> |
|
|
32 |
<script type="text/javascript"> |
31 |
<script type="text/javascript"> |
33 |
//<![CDATA[ |
32 |
//<![CDATA[ |
34 |
/* Set some variable needed in circulation.js */ |
33 |
/* Set some variable needed in circulation.js */ |
Lines 90-96
$(document).ready(function() {
Link Here
|
90 |
} |
89 |
} |
91 |
}); |
90 |
}); |
92 |
|
91 |
|
93 |
$("#selecttoolbar").fixFloat(); |
92 |
$(".clickable").click(function() { |
|
|
93 |
window.document.location = $(this).data('url'); |
94 |
}); |
94 |
|
95 |
|
95 |
[% IF !( CircAutoPrintQuickSlip == 'clear' ) %] |
96 |
[% IF !( CircAutoPrintQuickSlip == 'clear' ) %] |
96 |
// listen submit to trigger qslip on empty checkout |
97 |
// listen submit to trigger qslip on empty checkout |
Lines 572-586
No patron matched <span class="ex">[% message %]</span>
Link Here
|
572 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
573 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
573 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
574 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
574 |
|
575 |
|
575 |
<div id="selecttoolbar" class="btn-toolbar"> |
|
|
576 |
<fieldset class="action"><button type="submit" class="btn btn-small"><i class="fa fa-check"></i> Select patron</button></fieldset> |
577 |
</div> |
578 |
|
579 |
|
580 |
<table id="table_borrowers"> |
576 |
<table id="table_borrowers"> |
581 |
<thead> |
577 |
<thead> |
582 |
<tr> |
578 |
<tr> |
583 |
<th></th> |
|
|
584 |
<th>Name</th> |
579 |
<th>Name</th> |
585 |
<th>Cardnumber</th> |
580 |
<th>Cardnumber</th> |
586 |
<th>Category</th> |
581 |
<th>Category</th> |
Lines 590-597
No patron matched <span class="ex">[% message %]</span>
Link Here
|
590 |
</thead> |
585 |
</thead> |
591 |
<tbody> |
586 |
<tbody> |
592 |
[% FOREACH borrower IN borrowers %] |
587 |
[% FOREACH borrower IN borrowers %] |
593 |
<tr> |
588 |
<tr class="clickable" data-url="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrower.borrowernumber %]"> |
594 |
<td><input type="radio" name="borrowernumber" value="[% borrower.borrowernumber %]" /></td> |
|
|
595 |
<td>[% borrower.surname %], [% borrower.firstname %]</td> |
589 |
<td>[% borrower.surname %], [% borrower.firstname %]</td> |
596 |
<td>[% borrower.cardnumber %]</td> |
590 |
<td>[% borrower.cardnumber %]</td> |
597 |
<td>[% borrower.categorycode %]</td> |
591 |
<td>[% borrower.categorycode %]</td> |
598 |
- |
|
|