Bugzilla – Attachment 30069 Details for
Bug 10220
IDs on checkin columns
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for bug 10220
0001-Bug-10220-IDs-on-checkin-columns.patch (text/plain), 4.06 KB, created by
Evonne
on 2014-07-25 03:32:14 UTC
(
hide
)
Description:
patch for bug 10220
Filename:
MIME Type:
Creator:
Evonne
Created:
2014-07-25 03:32:14 UTC
Size:
4.06 KB
patch
obsolete
>From 7e1475db06798156fd3c7a47dfd95cced35e5fb4 Mon Sep 17 00:00:00 2001 >From: Evonne Cheung <evonne@catalyst.net.nz> >Date: Fri, 21 Nov 2014 14:10:08 +1300 >Subject: [PATCH] Bug 10220 IDs on checkin columns > >Test: go to Circulation > Check in, table has ID and each column has a >class. >--- > .../intranet-tmpl/prog/en/modules/circ/returns.tt | 26 +++++++++++----------- > 1 file changed, 13 insertions(+), 13 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index 5e67044..54adefb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -519,12 +519,12 @@ $(document).ready(function () { > > [% IF ( riloop ) %] > <h2>Checked-in items</h2> >- <table> >- <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> >+ <table id="checkedintable"> >+ <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> > > [% FOREACH riloo IN riloop %] > <tr> >- <td>[% IF ( riloo.duedate ) %] >+ <td class="ci-duedate">[% IF ( riloo.duedate ) %] > [% IF ( riloo.return_overdue ) %] > <span class="overdue">[% riloo.duedate %] (overdue)</span> > [% ELSE %][% riloo.duedate %] >@@ -532,21 +532,21 @@ $(document).ready(function () { > [% ELSE %]Not checked out > [% END %] > </td> >- <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% riloo.itembiblionumber %]"> >+ <td class="ci-title"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% riloo.itembiblionumber %]"> > [% riloo.itemtitle |html %]</a></td> >- <td>[% riloo.itemauthor %]</td> >- <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% riloo.itembiblionumber %]&itemnumber=[% riloo.itemnumber %]#item[% riloo.itemnumber %]">[% riloo.barcode %]</a></td> >- <td>[% riloo.homebranch %]</td> >- <td>[% riloo.holdingbranch %]</td> >- <td>[% riloo.location %]</td> >- <td>[% riloo.itemcallnumber %]</td> >- <td>[% riloo.itemtype %] [% riloo.ccode %]</td> >- <td>[% IF ( riloo.duedate ) %] >+ <td class="ci-author">[% riloo.itemauthor %]</td> >+ <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> >+ <td class="ci-homelibrary">[% riloo.homebranch %]</td> >+ <td class="ci-holdinglibrary">[% riloo.holdingbranch %]</td> >+ <td class="ci-shelvinglocation">[% riloo.location %]</td> >+ <td class="ci-callnumber">[% riloo.itemcallnumber %]</td> >+ <td class="ci-type">[% riloo.itemtype %] [% riloo.ccode %]</td> >+ <td class="ci-patron">[% IF ( riloo.duedate ) %] > <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% riloo.borrowernumber %]"> > [% riloo.borsurname %], [% riloo.borfirstname %] ([% riloo.borcategorycode %]) > </a> > [% ELSE %]Not checked out[% END %]</td> >- <td>[% IF ( riloo.bornote ) %]<span class="circ-hlt">[% riloo.bornote %]<br /></span>[% END %] >+ <td class="ci-note">[% IF ( riloo.bornote ) %]<span class="circ-hlt">[% riloo.bornote %]<br /></span>[% END %] > [% IF ( riloo.itemnote ) %]<span class="circ-hlt">[% riloo.itemnote %]</span>[% END %] > </td> > </tr> >-- >1.9.4.msysgit.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 10220
:
18030
|
30069
|
30075
|
30083