Bugzilla – Attachment 151151 Details for
Bug 33725
Add item's collection code to search results location column in staff interface
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33725: Add collection to search results
Bug-33725-Add-collection-to-search-results.patch (text/plain), 3.77 KB, created by
Lucas Gass (lukeg)
on 2023-05-12 17:57:05 UTC
(
hide
)
Description:
Bug 33725: Add collection to search results
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2023-05-12 17:57:05 UTC
Size:
3.77 KB
patch
obsolete
>From 908007c3d7a5c9c39252747db3e294580e747889 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Fri, 12 May 2023 17:54:26 +0000 >Subject: [PATCH] Bug 33725: Add collection to search results > >To test: >1. Apply patch and restart services >2. Do a catalog search that will return available, onloan, and notforloan items. (withdrawn,lost,damaged) >3. Notice that the location column should now also include the collection description underneath the shelving location. >--- > C4/Search.pm | 3 +++ > koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt | 3 +++ > 2 files changed, 6 insertions(+) > >diff --git a/C4/Search.pm b/C4/Search.pm >index ea54de1158..169eec9577 100644 >--- a/C4/Search.pm >+++ b/C4/Search.pm >@@ -1870,6 +1870,7 @@ sub searchResults { > $onloan_items->{$key}->{description} = $item->{description}; > $onloan_items->{$key}->{imageurl} = > getitemtypeimagelocation( $search_context->{'interface'}, $itemtypes{ $item->{itype} }->{imageurl} ); >+ $onloan_items->{$key}->{collectioncode} = GetAuthorisedValueDesc('','',$item->{ccode},'','','CCODE'); > > # if something's checked out and lost, mark it as 'long overdue' > if ( $item->{itemlost} ) { >@@ -1969,6 +1970,7 @@ sub searchResults { > $other_items->{$key}->{location} = $shelflocations->{ $item->{location} } if $item->{location}; > $other_items->{$key}->{description} = $item->{description}; > $other_items->{$key}->{imageurl} = getitemtypeimagelocation( $search_context->{'interface'}, $itemtypes{ $item->{itype}//q{} }->{imageurl} ); >+ $other_items->{$key}->{collectioncode} = GetAuthorisedValueDesc('','',$item->{ccode},'','','CCODE'); > } > # item is available > else { >@@ -1979,6 +1981,7 @@ sub searchResults { > } > $available_items->{$prefix}->{location} = $shelflocations->{ $item->{location} } if $item->{location}; > $available_items->{$prefix}->{imageurl} = getitemtypeimagelocation( $search_context->{'interface'}, $itemtypes{ $item->{itype}//q{} }->{imageurl} ); >+ $available_items->{$prefix}->{collectioncode} = GetAuthorisedValueDesc('','',$item->{ccode},'','','CCODE'); > } > } > } # notforloan, item level and biblioitem level >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >index 1d7fae8377..6af6c29d74 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >@@ -623,6 +623,9 @@ > [% IF ( items_loo.location ) %] > <span class="shelvingloc">[% items_loo.location | html %]</span> > [% END %] >+ [% IF ( items_loo.collectioncode ) %] >+ <span class="ccode">[% items_loo.collectioncode | html %]</span> >+ [% END %] > > [% IF ( items_loo.itemcallnumber ) %] > <a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&q=%22[% items_loo.itemcallnumber |uri %]%22">[% items_loo.itemcallnumber | html %]</a> >-- >2.30.2
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 33725
:
151151
|
151158
|
151890
|
152132
|
152133