|
Lines 33-38
use C4::Biblio;
Link Here
|
| 33 |
use C4::Items; |
33 |
use C4::Items; |
| 34 |
use C4::Letters; |
34 |
use C4::Letters; |
| 35 |
use Koha::Account::Lines; |
35 |
use Koha::Account::Lines; |
|
|
36 |
use Koha::Biblios; |
| 36 |
use Koha::Libraries; |
37 |
use Koha::Libraries; |
| 37 |
use Koha::DateUtils; |
38 |
use Koha::DateUtils; |
| 38 |
use Koha::Holds; |
39 |
use Koha::Holds; |
|
Lines 253-258
if ( $pending_checkouts->count ) { # Useless test
Link Here
|
| 253 |
$issue->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} ); |
254 |
$issue->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} ); |
| 254 |
$issue->{'description'} = $itemtypes->{$itemtype}->{'description'}; |
255 |
$issue->{'description'} = $itemtypes->{$itemtype}->{'description'}; |
| 255 |
} |
256 |
} |
|
|
257 |
|
| 258 |
$issue->{biblio_object} = Koha::Biblios->find($issue->{biblionumber}); |
| 256 |
push @issuedat, $issue; |
259 |
push @issuedat, $issue; |
| 257 |
$count++; |
260 |
$count++; |
| 258 |
|
261 |
|
|
Lines 309-315
if (C4::Context->preference('BakerTaylorEnabled')) {
Link Here
|
| 309 |
if (C4::Context->preference("OPACAmazonCoverImages") or |
312 |
if (C4::Context->preference("OPACAmazonCoverImages") or |
| 310 |
C4::Context->preference("GoogleJackets") or |
313 |
C4::Context->preference("GoogleJackets") or |
| 311 |
C4::Context->preference("BakerTaylorEnabled") or |
314 |
C4::Context->preference("BakerTaylorEnabled") or |
| 312 |
C4::Context->preference("SyndeticsCoverImages")) { |
315 |
C4::Context->preference("SyndeticsCoverImages") or |
|
|
316 |
( C4::Context->preference('OPACCustomCoverImages') and C4::Context->preference('CustomCoverImagesURL') ) |
| 317 |
) { |
| 313 |
$template->param(JacketImages=>1); |
318 |
$template->param(JacketImages=>1); |
| 314 |
} |
319 |
} |
| 315 |
|
320 |
|
| 316 |
- |
|
|