View | Details | Raw Unified | Return to bug 14610
Collapse All | Expand All

(-)a/Koha/Biblio.pm (-1 / +1 lines)
Lines 258-264 Returns the related Koha::Biblioitem object for this Biblio object Link Here
258
258
259
=cut
259
=cut
260
260
261
sub _biblioitem {
261
sub biblioitem {
262
    my ($self) = @_;
262
    my ($self) = @_;
263
263
264
    $self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
264
    $self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/article-requests.tt (-5 / +4 lines)
Lines 194-202 Link Here
194
                                                    [% ar.biblio.biblioitem.publishercode %]
194
                                                    [% ar.biblio.biblioitem.publishercode %]
195
195
196
                                                    [% IF ar.biblio.biblioitem.publicationyear %]
196
                                                    [% IF ar.biblio.biblioitem.publicationyear %]
197
                                                        , [% ar.biblio.biblioitem.publicationyear %]
197
                                                        [% ar.biblio.biblioitem.publicationyear %]
198
                                                    [% ELSIF ar.biblio.copyrightdate %]
198
                                                    [% ELSIF ar.biblio.copyrightdate %]
199
                                                        , [% ar.biblio.copyrightdate %]
199
                                                        [% ar.biblio.copyrightdate %]
200
                                                    [% END %]
200
                                                    [% END %]
201
201
202
                                                    [% IF ar.biblio.biblioitem.pages %]
202
                                                    [% IF ar.biblio.biblioitem.pages %]
Lines 322-330 Link Here
322
                                                    [% ar.biblio.biblioitem.publishercode %]
322
                                                    [% ar.biblio.biblioitem.publishercode %]
323
323
324
                                                    [% IF ar.biblio.biblioitem.publicationyear %]
324
                                                    [% IF ar.biblio.biblioitem.publicationyear %]
325
                                                        , [% ar.biblio.biblioitem.publicationyear %]
325
                                                        [% ar.biblio.biblioitem.publicationyear %]
326
                                                    [% ELSIF ar.biblio.copyrightdate %]
326
                                                    [% ELSIF ar.biblio.copyrightdate %]
327
                                                        , [% ar.biblio.copyrightdate %]
327
                                                        [% ar.biblio.copyrightdate %]
328
                                                    [% END %]
328
                                                    [% END %]
329
329
330
                                                    [% IF ar.biblio.biblioitem.pages %]
330
                                                    [% IF ar.biblio.biblioitem.pages %]
331
- 

Return to bug 14610