Bug 22475: Shelving location doesn't appear on tags list view
authorOwen Leonard <oleonard@myacpl.org>
Thu, 7 Mar 2019 16:04:25 +0000 (16:04 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Sat, 23 Mar 2019 09:24:39 +0000 (09:24 +0000)
This patch corrects the tags list view so that shelving location appears
correctly. Previously the template tried to display a variable which was
empty.

To test, apply the patch and locate an title which has both a tag
applied to it and a shelving location defined for one or more items. Go
to Tools -> Tags and click the tag to view titles with that tag. In the
location column of the table the shelving location should appear along
with library and call number.

Signed-off-by: Liz Rea <wizzyrea@gmail.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt

index dcad244..6405c85 100644 (file)
@@ -1,5 +1,6 @@
 [% USE raw %]
 [% USE Asset %]
+[% USE AuthorisedValues %]
 [% SET footerjs = 1 %]
 [% INCLUDE 'doc-head-open.inc' %]
 <title>Koha &rsaquo; Tools &rsaquo; Tags &rsaquo; [% IF ( do_it ) %]Review &rsaquo; [% ELSE %]Review tags[% END %]</title>
@@ -47,7 +48,9 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color :
             <td>[% IF ( title.items ) %]<ul style="font-size:80%">[% FOREACH item IN title.items %]
                 <li>
                     [% item.branchname | html %]
-                    <span class="shelvingloc">[% item.location_description | html %]</span>
+                    <span class="shelvingloc">
+                        [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => item.location ) | html %]
+                    </span>
                     [% IF ( item.itemcallnumber ) %]
                         ([% item.itemcallnumber | html %])
                     [% END %]