Bug 14610 [QA Followup] - Fix publishercode issue
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
ae893b792a
commit
9f91b2c1f1
2 changed files with 5 additions and 5 deletions
|
@ -258,7 +258,7 @@ Returns the related Koha::Biblioitem object for this Biblio object
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
sub _biblioitem {
|
sub biblioitem {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
|
|
||||||
$self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
|
$self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
|
||||||
|
|
|
@ -194,9 +194,9 @@
|
||||||
[% ar.biblio.biblioitem.publishercode %]
|
[% ar.biblio.biblioitem.publishercode %]
|
||||||
|
|
||||||
[% IF ar.biblio.biblioitem.publicationyear %]
|
[% IF ar.biblio.biblioitem.publicationyear %]
|
||||||
, [% ar.biblio.biblioitem.publicationyear %]
|
[% ar.biblio.biblioitem.publicationyear %]
|
||||||
[% ELSIF ar.biblio.copyrightdate %]
|
[% ELSIF ar.biblio.copyrightdate %]
|
||||||
, [% ar.biblio.copyrightdate %]
|
[% ar.biblio.copyrightdate %]
|
||||||
[% END %]
|
[% END %]
|
||||||
|
|
||||||
[% IF ar.biblio.biblioitem.pages %]
|
[% IF ar.biblio.biblioitem.pages %]
|
||||||
|
@ -322,9 +322,9 @@
|
||||||
[% ar.biblio.biblioitem.publishercode %]
|
[% ar.biblio.biblioitem.publishercode %]
|
||||||
|
|
||||||
[% IF ar.biblio.biblioitem.publicationyear %]
|
[% IF ar.biblio.biblioitem.publicationyear %]
|
||||||
, [% ar.biblio.biblioitem.publicationyear %]
|
[% ar.biblio.biblioitem.publicationyear %]
|
||||||
[% ELSIF ar.biblio.copyrightdate %]
|
[% ELSIF ar.biblio.copyrightdate %]
|
||||||
, [% ar.biblio.copyrightdate %]
|
[% ar.biblio.copyrightdate %]
|
||||||
[% END %]
|
[% END %]
|
||||||
|
|
||||||
[% IF ar.biblio.biblioitem.pages %]
|
[% IF ar.biblio.biblioitem.pages %]
|
||||||
|
|
Loading…
Reference in a new issue