|
Lines 89-94
$(document).ready(function() {
Link Here
|
| 89 |
} |
89 |
} |
| 90 |
}); |
90 |
}); |
| 91 |
|
91 |
|
|
|
92 |
$(".clickable").click(function() { |
| 93 |
window.document.location = $(this).data('url'); |
| 94 |
}); |
| 95 |
|
| 92 |
[% IF !( CircAutoPrintQuickSlip == 'clear' ) %] |
96 |
[% IF !( CircAutoPrintQuickSlip == 'clear' ) %] |
| 93 |
// listen submit to trigger qslip on empty checkout |
97 |
// listen submit to trigger qslip on empty checkout |
| 94 |
$('#mainform').bind('submit',function() { |
98 |
$('#mainform').bind('submit',function() { |
|
Lines 568-577
No patron matched <span class="ex">[% message %]</span>
Link Here
|
| 568 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
572 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
| 569 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
573 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
| 570 |
|
574 |
|
| 571 |
<table id="table_borrowers"> |
575 |
<table id="table_borrowers" class="table_borrowers"> |
| 572 |
<thead> |
576 |
<thead> |
| 573 |
<tr> |
577 |
<tr> |
| 574 |
<th></th> |
|
|
| 575 |
<th>Name</th> |
578 |
<th>Name</th> |
| 576 |
<th>Cardnumber</th> |
579 |
<th>Cardnumber</th> |
| 577 |
<th>Category</th> |
580 |
<th>Category</th> |
|
Lines 581-588
No patron matched <span class="ex">[% message %]</span>
Link Here
|
| 581 |
</thead> |
584 |
</thead> |
| 582 |
<tbody> |
585 |
<tbody> |
| 583 |
[% FOREACH borrower IN borrowers %] |
586 |
[% FOREACH borrower IN borrowers %] |
| 584 |
<tr> |
587 |
<tr class="clickable" data-url="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrower.borrowernumber %]"> |
| 585 |
<td><input type="radio" name="borrowernumber" value="[% borrower.borrowernumber %]" /></td> |
|
|
| 586 |
<td>[% borrower.surname %], [% borrower.firstname %]</td> |
588 |
<td>[% borrower.surname %], [% borrower.firstname %]</td> |
| 587 |
<td>[% borrower.cardnumber %]</td> |
589 |
<td>[% borrower.cardnumber %]</td> |
| 588 |
<td>[% borrower.categorycode %]</td> |
590 |
<td>[% borrower.categorycode %]</td> |
| 589 |
- |
|
|