Lines 1315-1321
sub IsAvailableForItemLevelRequest {
Link Here
|
1315 |
GetReservesControlBranch( $item->unblessed(), $patron->unblessed() ); |
1315 |
GetReservesControlBranch( $item->unblessed(), $patron->unblessed() ); |
1316 |
my $branchitemrule = |
1316 |
my $branchitemrule = |
1317 |
C4::Circulation::GetBranchItemRule( $reserves_control_branch, $item->itype ); |
1317 |
C4::Circulation::GetBranchItemRule( $reserves_control_branch, $item->itype ); |
1318 |
my $home_library = Koka::Libraries->find( {branchcode => $item->homebranch} ); |
1318 |
my $home_library = Koha::Libraries->find( {branchcode => $item->homebranch} ); |
1319 |
return 0 unless $branchitemrule->{hold_fulfillment_policy} ne 'holdgroup' || $home_library->validate_hold_sibling( {branchcode => $pickup_branchcode} ); |
1319 |
return 0 unless $branchitemrule->{hold_fulfillment_policy} ne 'holdgroup' || $home_library->validate_hold_sibling( {branchcode => $pickup_branchcode} ); |
1320 |
} |
1320 |
} |
1321 |
|
1321 |
|
1322 |
- |
|
|