From 4017af3d6abbf84da51262bdf02cea42dd0da8fa Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 31 May 2023 21:39:14 +0000 Subject: [PATCH] Bug 33725: (follow-up) Add ccode to grouping logic Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- C4/Search.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Search.pm b/C4/Search.pm index 169eec9577..e2de36571e 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1854,6 +1854,7 @@ sub searchResults { ( $item->{$hbranch} ? $item->{$hbranch} . '--' : q{} ) . ( $item->{location} ? $item->{location} : q{} ) . ( $item->{itype} ? $item->{itype} : q{} ) + . ( $item->{ccode} ? $item->{ccode} : q{} ) . ( $item->{itemcallnumber} ? $item->{itemcallnumber} : q{} ); # For each grouping of items (onloan, available, unavailable), we build a key to store relevant info about that item if ( $item->{onloan} -- 2.39.5