Bug 3456: Show internalnotes when receiving serials
Shows nonpublic note on serials receipt page. Signed-off-by: Melia Meggs <melia@test.bywatersolutions.com> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
1fe6e116cb
commit
3a4e1a5211
2 changed files with 2 additions and 0 deletions
|
@ -179,6 +179,7 @@ $(document).ready(function() {
|
|||
<h1>Serial edition <i>[% bibliotitle %]</i>
|
||||
[% IF location %] ( [% location %] ) [% END %]
|
||||
[% IF ( callnumber ) %] callnumber: [% callnumber %][% END %]</h1>
|
||||
[% IF internalnotes %]<p>Nonpublic note: [% internalnotes %]</p>[% END %]
|
||||
<form method="post" name="f" action="serials-edit.pl" id="serials_edit">
|
||||
<!--onsubmit="return barcode_check()">-->
|
||||
|
||||
|
|
|
@ -394,6 +394,7 @@ my $default_bib_view = get_default_view();
|
|||
$template->param(
|
||||
serialsadditems => $serialdatalist[0]->{'serialsadditems'},
|
||||
callnumber => $serialdatalist[0]->{'callnumber'},
|
||||
internalnotes => $serialdatalist[0]->{'internalnotes'},
|
||||
bibliotitle => $biblio->{'title'},
|
||||
biblionumber => $serialdatalist[0]->{'biblionumber'},
|
||||
serialslist => \@serialdatalist,
|
||||
|
|
Loading…
Reference in a new issue