Browse Source

followup da49fc77df enh 3736

3.2.x
Henri-Damien LAURENT 15 years ago
parent
commit
6b29bb866b
  1. 8
      serials/routing-preview.pl

8
serials/routing-preview.pl

@ -49,6 +49,10 @@ my ($template, $loggedinuser, $cookie);
if($ok){
# get biblio information....
my $biblio = $subs->{'biblionumber'};
my ($count2,@bibitems) = GetBiblioItemByBiblioNumber($biblio);
my @itemresults = GetItemsInfo($subs->{'biblionumber'}, 'intra');
my $branch = $itemresults[0]->{'holdingbranch'};
my $branchname = GetBranchName($branch);
if (C4::Context->preference('RoutingListAddReserves')){
# get existing reserves .....
@ -59,10 +63,6 @@ if($ok){
$count--;
}
}
my ($count2,@bibitems) = GetBiblioItemByBiblioNumber($biblio);
my @itemresults = GetItemsInfo($subs->{'biblionumber'}, 'intra');
my $branch = $itemresults[0]->{'holdingbranch'};
my $branchname = GetBranchName($branch);
my $const = 'o';
my $notes;
my $title = $subs->{'bibliotitle'};

Loading…
Cancel
Save