Bug 2341: items marked 'on order' not reserveable from search results
authorIan Walls <ian.walls@bywatersolutions.com>
Mon, 31 Jan 2011 02:43:55 +0000 (21:43 -0500)
committerChris Cormack <chrisc@catalyst.net.nz>
Thu, 3 Feb 2011 09:00:01 +0000 (22:00 +1300)
commitf692123bf1b2b843d348a897852018caa04de76f
tree43b94cfe8ee8972b061c8670fd2c9af037bae971
parentaa398ed055a7226ba02d6559b297cb172b3ce3df
Bug 2341: items marked 'on order' not reserveable from search results

Items created as part of the acquisitions process, and assigned the temporary notforloan value of -1,
cannot be placed on hold from the search results in either the OPAC or staff client (the link is missing).

This patch changes the evaluation of items->notforloan from a Boolean (if $items->{notforloan}) to a comparison
(if $items->{notforloan} > 0).  Any notforloan status with a negative value can therefore be reserved.

Signed-off-by: Nicole Engard <nengard@bywatersolutions.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
C4/Search.pm