From 13df42c95a4eba9460d28b0e0f3cfabe874a4d05 Mon Sep 17 00:00:00 2001 From: ByWater Staff Date: Mon, 26 Jan 2015 10:16:42 -0600 Subject: [PATCH] Bug 13623 - Enhance html for holds queue viewer It would be very helpful from a css/scripting point of view if the author field in the holds queue report had a selectable class. In edition, it would be great if the biblionumber were easy to grab from a hidden div. Test Plan: 1) Apply this patch 2) Load the holds queue report ( view_holdsqueue.pl ) 3) Inspect an author name with your web browser ( or view the html ) a) Note the hq-author class of the wrapping div b) Note the hidden hq-biblionumber div --- .../intranet-tmpl/prog/en/css/staff-global.css | 4 +++ .../prog/en/modules/circ/view_holdsqueue.tt | 31 +++++++++++++++------- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css index b92f490..588333d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -2792,3 +2792,7 @@ div.lastchecked { .branchselector { display: table; } + +.hq-author { + font-weight: bold; +} diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt index 99ba634..abd2177 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -67,15 +67,28 @@ $(document).ready(function() { [% FOREACH itemsloo IN itemsloop %] -

[% itemsloo.title |html %] [% IF ( itemsloo.subtitle ) %][% itemsloo.subtitle %][% END %]

-

[% itemsloo.author %] -

[% IF ( itemsloo.publishercode ) %][% itemsloo.publishercode %][% END %] - [% IF ( itemsloo.publicationyear ) %], [% itemsloo.publicationyear %] - [% ELSIF ( itemsloo.copyrightdate ) %], [% itemsloo.copyrightdate %][% END %] - [% IF ( itemsloo.pages ) %]: [% itemsloo.pages %] [% END %] - [% IF ( itemsloo.item('size') ) %][% itemsloo.item('size') %][% END %] [% IF ( itemsloo.isbn ) %]ISBN: [% itemsloo.isbn %][% END %]

-
- + +

[% itemsloo.title | html %] [% IF ( itemsloo.subtitle ) %][% itemsloo.subtitle %][% END %]

+

+

[% itemsloo.biblionumber %]
+
[% itemsloo.author %]
+
+ [% IF ( itemsloo.publishercode ) %][% itemsloo.publishercode %][% END %] + + [% IF ( itemsloo.publicationyear ) %] + , [% itemsloo.publicationyear %] + [% ELSIF ( itemsloo.copyrightdate ) %] + , [% itemsloo.copyrightdate %] + [% END %] + + [% IF ( itemsloo.pages ) %]: [% itemsloo.pages %] [% END %] + + [% IF ( itemsloo.item('size') ) %][% itemsloo.item('size') %][% END %] + + [% IF ( itemsloo.isbn ) %]ISBN: [% itemsloo.isbn %][% END %]

+
+

+ [% AuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) %] [% ItemTypes.GetDescription( itemsloo.itype ) %] [% IF ( itemsloo.location ) %][% AuthorisedValues.GetByCode( 'LOC', itemsloo.location ) %] [% END %][% itemsloo.itemcallnumber %] -- 1.9.1