Merge branch 'bug_8996' into 3.12-master
This commit is contained in:
commit
a1bba47177
1 changed files with 2 additions and 2 deletions
|
@ -1799,7 +1799,7 @@ sub searchResults {
|
|||
else {
|
||||
|
||||
# item is on order
|
||||
if ( $item->{notforloan} == -1 ) {
|
||||
if ( $item->{notforloan} < 0 ) {
|
||||
$ordered_count++;
|
||||
}
|
||||
|
||||
|
@ -1837,7 +1837,7 @@ sub searchResults {
|
|||
if ( $item->{wthdrawn}
|
||||
|| $item->{itemlost}
|
||||
|| $item->{damaged}
|
||||
|| $item->{notforloan} > 0
|
||||
|| $item->{notforloan}
|
||||
|| $reservestatus eq 'Waiting'
|
||||
|| ($transfertwhen ne ''))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue