diff --git a/Koha/Items.pm b/Koha/Items.pm index 3e4eece94e..5e9e808eee 100644 --- a/Koha/Items.pm +++ b/Koha/Items.pm @@ -76,6 +76,7 @@ sub filter_by_for_hold { withdrawn => 0, notforloan => { '<=' => 0 }, # items with negative or zero notforloan value are holdable ( C4::Context->preference('AllowHoldsOnDamagedItems')? (): ( damaged => 0 ) ), + ( C4::Context->only_my_library() ? ( homebranch => C4::Context::mybranch() ) : () ), }; if ( C4::Context->preference("item-level_itypes") ) { diff --git a/circ/pendingreserves.pl b/circ/pendingreserves.pl index a438557ed1..86a18b14f0 100755 --- a/circ/pendingreserves.pl +++ b/circ/pendingreserves.pl @@ -181,8 +181,8 @@ if ( !C4::Context->preference('AllowHoldsOnDamagedItems') ){ $where{'itembib.damaged'} = 0; } -if ( C4::Context->preference('IndependentBranches') ){ - $where{'itembib.holdingbranch'} = C4::Context->userenv->{'branch'}; +if ( C4::Context->only_my_library() ){ + $where{'me.branchcode'} = C4::Context->userenv->{'branch'}; } # get all distinct unfulfilled reserves