Bugzilla – Attachment 30083 Details for
Bug 10220
IDs on checkin columns
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10220 IDs on checkin columns
Bug-10220-IDs-on-checkin-columns.patch (text/plain), 4.33 KB, created by
Jonathan Druart
on 2014-07-25 11:10:00 UTC
(
hide
)
Description:
Bug 10220 IDs on checkin columns
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2014-07-25 11:10:00 UTC
Size:
4.33 KB
patch
obsolete
>From c9cac41d57b9703955c90160f711d68c6f5d4a10 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. > >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >Adds a class to every th and td element in the check-in table. >Works as describe, no regressions found. > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >Amended patch: Replace some tab with spaces. >--- > .../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..068f710 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> >-- >2.0.0.rc2
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