From b05a6a6e7473849cec8578ecaafb88e8e72bb099 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 18bae46..6d6bbe2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css @@ -2764,3 +2764,7 @@ span.onsite_checkout { border-radius: 4px; border : 1px solid #FFF2CE; } + +.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 b247706..06ea457 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.size ) %][% itemsloo.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.size ) %][% itemsloo.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.7.2.5