Bug 36183 - Add item barcodes to staff search results page
Summary: Add item barcodes to staff search results page
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Searching (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-02-27 18:32 UTC by Lucas Gass
Modified: 2024-02-28 12:41 UTC (History)
1 user (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Lucas Gass 2024-02-27 18:32:16 UTC
Several libraries have requested that the item barcode be added to the staff results page. While I can see the benefit to this, I am unsure how to make it happen. 

Currently Koha "groups" items by there availability and then by holding branch, location, itype, and ccode.

C4/Search.pm
1854                 ( $item->{$hbranch} ? $item->{$hbranch} . '--' : q{} )
1855               . ( $item->{location} ? $item->{location} : q{} )
1856               . ( $item->{itype}    ? $item->{itype}    : q{} )
1857               . ( $item->{ccode}    ? $item->{ccode}    : q{} )

I don't quite know how to "group" something like barcode which would be unique for every single item. 

Maybe it gets added in a separate display/column?