Bugzilla – Attachment 32418 Details for
Bug 10960
Holds Queue Report display loc code not description
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 10960 - Holds Queue Report display loc code not description
PASSED-QA-Bug-10960---Holds-Queue-Report-display-l.patch (text/plain), 2.88 KB, created by
Katrin Fischer
on 2014-10-16 14:24:31 UTC
(
hide
)
Description:
[PASSED QA] Bug 10960 - Holds Queue Report display loc code not description
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2014-10-16 14:24:31 UTC
Size:
2.88 KB
patch
obsolete
>From cf4ac7a34e96a62871df6963fc5bef6b81a3206e Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 30 Sep 2014 10:34:57 -0400 >Subject: [PATCH] [PASSED QA] Bug 10960 - Holds Queue Report display loc code > not description > >The holds queue report shows codes for item shelving location and for >library transfer location. This patch adds template plugin handling of >both these fields to display their full description. > >To test, make sure you have one or more items in your holds queue which >have a shelving location. Rebuild your holds queue if necessary and view >it. Items which have a shelving location should show the description >instead of the code. The "send to" column should show the library name >instead of code. > >Signed-off-by: Chris <chris@bigballofwax.co.nz> >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >Works as described, making use of the TT plugins. >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > >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 cc2a694..b247706 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 >@@ -1,5 +1,6 @@ > [% USE KohaDates %] > [% USE ItemTypes %] >+[% USE Branches %] > [% USE AuthorisedValues %] > [% INCLUDE 'doc-head-open.inc' %] > <title>Koha › Circulation › Holds queue</title> >@@ -77,7 +78,7 @@ $(document).ready(function() { > </td> > <td class="hq-collection">[% AuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) %]</td> > <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.itype ) %]</td> >- <td class="hq-callnumber">[% itemsloo.location %] [% itemsloo.itemcallnumber %]</td> >+ <td class="hq-callnumber">[% IF ( itemsloo.location ) %]<em>[% AuthorisedValues.GetByCode( 'LOC', itemsloo.location ) %]</em> [% END %][% itemsloo.itemcallnumber %]</td> > <td class="hq-copynumber">[% itemsloo.copynumber %]</td> > <td class="hq-enumchron">[% itemsloo.enumchron %]</td> > <td class="hq-barcode"> >@@ -88,7 +89,7 @@ $(document).ready(function() { > [% END %] > </td> > <td class="hq-patron"><p><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% itemsloo.cardnumber %]#reserves">[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])</a></p> <p>[% itemsloo.phone %]</p></td> >- <td class="hq-sendto">[% itemsloo.pickbranch %]</td> >+ <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) %]</td> > <td class="hq-date"><span title="[% itemsloo.reservedate %]">[% itemsloo.reservedate | $KohaDates %]</span></td> > <td class="hq-notes">[% itemsloo.notes %]</td> > </tr> >-- >1.9.1
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 10960
:
31949
|
32412
| 32418