Bug 28695: Add shelving location column to overdue.tt
To test: 1. have some overdues 2. go to the overdue report on the circulation page (overdue.tt) 3. no shelving location 4. apply patch and restart the things 5. look at the overdue report again and there should be a Shelving location column 6. make sure it is accurate 7. go to table settings and make sure you can properly hide the column. test other columns in the table and make sure they are still hiding correctly as well Signed-off-by: Kelly McElligott <kelly@bywatersolutions.com> Signed-off-by: Barbara Johnson <barbara.johnson@bedfordtx.gov> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
0083fd7e60
commit
ee60339a84
3 changed files with 6 additions and 0 deletions
|
@ -1321,6 +1321,8 @@ modules:
|
|||
-
|
||||
columnname: holding_library
|
||||
is_hidden: 1
|
||||
-
|
||||
columnname: shelving_location
|
||||
-
|
||||
columnname: barcode
|
||||
-
|
||||
|
|
|
@ -232,6 +232,7 @@ if ($noreport) {
|
|||
items.barcode,
|
||||
items.homebranch,
|
||||
items.holdingbranch,
|
||||
items.location,
|
||||
biblio.title,
|
||||
biblio.author,
|
||||
biblio.biblionumber,
|
||||
|
@ -324,6 +325,7 @@ if ($noreport) {
|
|||
author => $data->{author},
|
||||
homebranchcode => $data->{homebranch},
|
||||
holdingbranchcode => $data->{holdingbranch},
|
||||
location => $data->{location},
|
||||
itemcallnumber => $data->{itemcallnumber},
|
||||
replacementprice => $data->{replacementprice},
|
||||
itemnotes_nonpublic => $data->{itemnotes_nonpublic},
|
||||
|
|
|
@ -86,6 +86,7 @@
|
|||
<th class="anti-the">Title</th>
|
||||
<th>Home library</th>
|
||||
<th>Holding library</th>
|
||||
<th>Shelving location</th>
|
||||
<th>Barcode</th>
|
||||
<th>Call number</th>
|
||||
<th>Item type</th>
|
||||
|
@ -109,6 +110,7 @@
|
|||
<td>[% INCLUDE 'biblio-title.inc' biblio=overdueloo link = 1 %] [% IF ( overdueloo.author ) %], by [% overdueloo.author | html %][% END %][% IF ( overdueloo.enumchron ) %], [% overdueloo.enumchron | html %][% END %]</td>
|
||||
<td>[% Branches.GetName( overdueloo.homebranchcode ) | html %]</td>
|
||||
<td>[% Branches.GetName( overdueloo.holdingbranchcode ) | html %]</td>
|
||||
<td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => overdueloo.location ) | html %]</td>
|
||||
<td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber | uri %]&itemnumber=[% overdueloo.itemnum | uri %]#item[% overdueloo.itemnum | uri %]">[% overdueloo.barcode | html %]</a></td>
|
||||
<td>[% overdueloo.itemcallnumber | html %]</td>
|
||||
<td>[% ItemTypes.GetDescription( overdueloo.itemtype ) | html %]</td>
|
||||
|
|
Loading…
Reference in a new issue