@@ -, +, @@ - Modify an item to add information to the "Public note" field. - Locate that record in the OPAC and place a hold on it. - On the "Placing hold" page, click "Show more options" and "A specific item." - In the table of items you should see a "Notes" column showing the information you added to the item. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 4 ++++ opac/opac-reserve.pl | 1 + 2 files changed, 5 insertions(+) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt @@ -362,6 +362,7 @@ [% IF ( itemdata_enumchron ) %] Vol info [% END %] + Notes Information @@ -404,6 +405,9 @@ [% IF ( itemdata_enumchron ) %] [% itemLoo.enumchron | html %] [% END %] + + [% itemLoo.itemnotes | html %] + [% IF ( itemLoo.dateDue ) %] Due [% itemLoo.dateDue | html %] --- a/opac/opac-reserve.pl +++ a/opac/opac-reserve.pl @@ -488,6 +488,7 @@ foreach my $biblioNum (@biblionumbers) { $itemLoopIter->{enumchron} = $itemInfo->{enumchron}; $itemLoopIter->{ccode} = $itemInfo->{ccode}; $itemLoopIter->{copynumber} = $itemInfo->{copynumber}; + $itemLoopIter->{itemnotes} = $itemInfo->{itemnotes}; if ($itemLevelTypes) { $itemLoopIter->{translated_description} = $itemInfo->{translated_description}; $itemLoopIter->{itype} = $itemInfo->{itype}; --