Lines 519-530
$(document).ready(function () {
Link Here
|
519 |
|
519 |
|
520 |
[% IF ( riloop ) %] |
520 |
[% IF ( riloop ) %] |
521 |
<h2>Checked-in items</h2> |
521 |
<h2>Checked-in items</h2> |
522 |
<table> |
522 |
<table id="checkedintable"> |
523 |
<tr><th>Due date</th><th>Title</th> <th>Author</th> <th>Barcode</th><th>Home library</th><th>Holding library</th><th>Shelving location</th><th>Call number</th><th>Type</th> <th>Patron</th><th>Note</th></tr> |
523 |
<tr><th class="ci-duedate">Due date</th><th class="ci-title">Title</th><th class="ci-author">Author</th><th class="ci-barcode">Barcode</th><th class="ci-homelibrary">Home library</th><th class="ci-holdinglibrary">Holding library</th><th class="ci-shelvinglocation">Shelving location</th><th class="ci-callnumber">Call number</th><th class="ci-type">Type</th><th class="ci-patron">Patron</th><th class="ci-note">Note</th></tr> |
524 |
|
524 |
|
525 |
[% FOREACH riloo IN riloop %] |
525 |
[% FOREACH riloo IN riloop %] |
526 |
<tr> |
526 |
<tr> |
527 |
<td>[% IF ( riloo.duedate ) %] |
527 |
<td class="ci-duedate">[% IF ( riloo.duedate ) %] |
528 |
[% IF ( riloo.return_overdue ) %] |
528 |
[% IF ( riloo.return_overdue ) %] |
529 |
<span class="overdue">[% riloo.duedate %] (overdue)</span> |
529 |
<span class="overdue">[% riloo.duedate %] (overdue)</span> |
530 |
[% ELSE %][% riloo.duedate %] |
530 |
[% ELSE %][% riloo.duedate %] |
Lines 532-552
$(document).ready(function () {
Link Here
|
532 |
[% ELSE %]Not checked out |
532 |
[% ELSE %]Not checked out |
533 |
[% END %] |
533 |
[% END %] |
534 |
</td> |
534 |
</td> |
535 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% riloo.itembiblionumber %]"> |
535 |
<td class="ci-title"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% riloo.itembiblionumber %]"> |
536 |
[% riloo.itemtitle |html %]</a></td> |
536 |
[% riloo.itemtitle |html %]</a></td> |
537 |
<td>[% riloo.itemauthor %]</td> |
537 |
<td class="ci-author">[% riloo.itemauthor %]</td> |
538 |
<td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% riloo.itembiblionumber %]&itemnumber=[% riloo.itemnumber %]#item[% riloo.itemnumber %]">[% riloo.barcode %]</a></td> |
538 |
<td class="ci-barcode"><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% riloo.itembiblionumber %]&itemnumber=[% riloo.itemnumber %]#item[% riloo.itemnumber %]">[% riloo.barcode %]</a></td> |
539 |
<td>[% riloo.homebranch %]</td> |
539 |
<td class="ci-homelibrary">[% riloo.homebranch %]</td> |
540 |
<td>[% riloo.holdingbranch %]</td> |
540 |
<td class="ci-holdinglibrary">[% riloo.holdingbranch %]</td> |
541 |
<td>[% riloo.location %]</td> |
541 |
<td class="ci-shelvinglocation">[% riloo.location %]</td> |
542 |
<td>[% riloo.itemcallnumber %]</td> |
542 |
<td class="ci-callnumber">[% riloo.itemcallnumber %]</td> |
543 |
<td>[% riloo.itemtype %] [% riloo.ccode %]</td> |
543 |
<td class="ci-type">[% riloo.itemtype %] [% riloo.ccode %]</td> |
544 |
<td>[% IF ( riloo.duedate ) %] |
544 |
<td class="ci-patron">[% IF ( riloo.duedate ) %] |
545 |
<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% riloo.borrowernumber %]"> |
545 |
<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% riloo.borrowernumber %]"> |
546 |
[% riloo.borsurname %], [% riloo.borfirstname %] ([% riloo.borcategorycode %]) |
546 |
[% riloo.borsurname %], [% riloo.borfirstname %] ([% riloo.borcategorycode %]) |
547 |
</a> |
547 |
</a> |
548 |
[% ELSE %]Not checked out[% END %]</td> |
548 |
[% ELSE %]Not checked out[% END %]</td> |
549 |
<td>[% IF ( riloo.bornote ) %]<span class="circ-hlt">[% riloo.bornote %]<br /></span>[% END %] |
549 |
<td class="ci-note">[% IF ( riloo.bornote ) %]<span class="circ-hlt">[% riloo.bornote %]<br /></span>[% END %] |
550 |
[% IF ( riloo.itemnote ) %]<span class="circ-hlt">[% riloo.itemnote %]</span>[% END %] |
550 |
[% IF ( riloo.itemnote ) %]<span class="circ-hlt">[% riloo.itemnote %]</span>[% END %] |
551 |
</td> |
551 |
</td> |
552 |
</tr> |
552 |
</tr> |
553 |
- |
|
|