View | Details | Raw Unified | Return to bug 15793
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (+8 lines)
Lines 282-287 tr.odd.onissue td { Link Here
282
	background-color: #FFFFE1;
282
	background-color: #FFFFE1;
283
}
283
}
284
284
285
tr.clickable {
286
        cursor: pointer;
287
}
288
289
.table_borrowers tr:hover td {
290
        background-color: #ffff99;
291
}
292
285
tfoot td {
293
tfoot td {
286
	background-color : #f3f3f3;
294
	background-color : #f3f3f3;
287
	font-weight : bold;
295
	font-weight : bold;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-6 / +6 lines)
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>
Lines 592-598 No patron matched <span class="ex">[% message %]</span> Link Here
592
            [% END %]
594
            [% END %]
593
        </tbody>
595
        </tbody>
594
    </table>
596
    </table>
595
    <fieldset class="action"><input type="submit" value="Select" /></fieldset>
596
</fieldset>
597
</fieldset>
597
</form>
598
</form>
598
[% ELSE %]
599
[% ELSE %]
599
- 

Return to bug 15793