Lines 571-577
foreach my $biblionumber (@biblionumbers) {
Link Here
|
571 |
$reserve{'suspend'} = $res->{'suspend'}; |
571 |
$reserve{'suspend'} = $res->{'suspend'}; |
572 |
$reserve{'suspend_until'} = $res->{'suspend_until'}; |
572 |
$reserve{'suspend_until'} = $res->{'suspend_until'}; |
573 |
|
573 |
|
574 |
if ( C4::Context->preference('IndependantBranches') && $flags->{'superlibrarian'} != 1 ) { |
574 |
if ( C4::Context->preference('IndependentBranches') && $flags->{'superlibrarian'} != 1 ) { |
575 |
$reserve{'branchloop'} = [ GetBranchDetail($res->{'branchcode'}) ]; |
575 |
$reserve{'branchloop'} = [ GetBranchDetail($res->{'branchcode'}) ]; |
576 |
} else { |
576 |
} else { |
577 |
$reserve{'branchloop'} = GetBranchesLoop($res->{'branchcode'}); |
577 |
$reserve{'branchloop'} = GetBranchesLoop($res->{'branchcode'}); |
578 |
- |
|
|