Lines 210-215
foreach my $subscription (@subscriptions) {
Link Here
|
210 |
push @subs, \%cell; |
210 |
push @subs, \%cell; |
211 |
} |
211 |
} |
212 |
|
212 |
|
|
|
213 |
# Get component parts details |
214 |
my $showcomp = C4::Context->preference('ShowComponentRecords'); |
215 |
if ( $showcomp eq 'both' || $showcomp eq 'staff' ) { |
216 |
if ( my $components = $biblio->get_marc_analytics(300) ) { |
217 |
my $xslparts = C4::Context->preference('XSLTResultsDisplay') || "default"; |
218 |
if ( $xslparts ) { |
219 |
my $parts = [ '<h1>test</h1>' ]; |
220 |
for my $part ( @{$components} ) { |
221 |
push @{$parts}, XSLTParse4Display( |
222 |
1, $part, "XSLTResultsDisplay", 1, |
223 |
undef, $sysxml, $xslparts, $lang, |
224 |
); |
225 |
} |
226 |
$template->param( |
227 |
ShowComponentParts => $parts |
228 |
); |
229 |
} |
230 |
} |
231 |
} |
213 |
|
232 |
|
214 |
# Get acquisition details |
233 |
# Get acquisition details |
215 |
if ( C4::Context->preference('AcquisitionDetails') ) { |
234 |
if ( C4::Context->preference('AcquisitionDetails') ) { |