[Koha-bugs] [Bug 9757] Make staff client list contents view more like search results

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Mar 21 14:09:46 CET 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9757

Owen Leonard <oleonard at myacpl.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |Needs Signoff

--- Comment #10 from Owen Leonard <oleonard at myacpl.org> ---
(In reply to comment #9)
> (In reply to comment #7)
> > Tested on sandbox 2 biblibre, UNIMARC
> > - The shelving location still not appears in table (config : tag 995$e
> > mapped with items.location)

Shelving location on the lists display comes from a sub which is used only by
lists, so it's certainly possible it doesn't work correctly. Shelving location
has never been displayed here before. The query:

SELECT a.branchname as homebranch, b.branchname as holdingbranch,
location, itemcallnumber, cn_sort
FROM items, branches as a, branches as b
WHERE homebranch = a.branchcode AND holdingbranch = b.branchcode
AND biblionumber = ?
ORDER BY cn_sort ASC

...seems to return results in a UNIMARC system (just tested on a sandbox). A
problem with GetKohaAuthorisedValueLib? I don't know.

Either way, this issue isn't a regression so I would like to be able to address
it in a follow-up. Please returned to 'Failed' if you disagree.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list