Lines 102-107
my $dbh = C4::Context->dbh;
Link Here
|
102 |
my @items = &GetItemsInfo( $biblionumber, 'intra' ); |
102 |
my @items = &GetItemsInfo( $biblionumber, 'intra' ); |
103 |
my $dat = &GetBiblioData($biblionumber); |
103 |
my $dat = &GetBiblioData($biblionumber); |
104 |
|
104 |
|
|
|
105 |
# get count of holds |
106 |
my ( $holdcount, $holds ) = GetReservesFromBiblionumber($biblionumber,1); |
107 |
|
105 |
#coping with subscriptions |
108 |
#coping with subscriptions |
106 |
my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber); |
109 |
my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber); |
107 |
my @subscriptions = GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber ); |
110 |
my @subscriptions = GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber ); |
Lines 214-219
$template->param(
Link Here
|
214 |
itemdata_copynumber => $itemfields{copynumber}, |
217 |
itemdata_copynumber => $itemfields{copynumber}, |
215 |
volinfo => $itemfields{enumchron} || $dat->{'serial'} , |
218 |
volinfo => $itemfields{enumchron} || $dat->{'serial'} , |
216 |
z3950_search_params => C4::Search::z3950_search_args($dat), |
219 |
z3950_search_params => C4::Search::z3950_search_args($dat), |
|
|
220 |
holdcount => $holdcount, |
217 |
C4::Search::enabled_staff_search_views, |
221 |
C4::Search::enabled_staff_search_views, |
218 |
); |
222 |
); |
219 |
|
223 |
|