@@ -, +, @@ item which is in a rotating collection --- circ/returns.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -632,6 +632,7 @@ if ( $itemnumber ) { $template->param( collectionItemNeedsTransferred => 1, collectionBranch => GetBranchName($collectionBranch), + itemnumber => $itemnumber, ); } } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -133,7 +133,10 @@ $(document).ready(function () { [% END %] [% IF ( collectionItemNeedsTransferred ) %] -
This item is part of a rotating collection and needs to be transferred to [% collectionBranch %]
+ +
+

[% title or "item" |html %] is part of a rotating collection and needs to be transferred to [% Branches.GetName( returnbranch ) %]
( Print slip )

+
[% END %] --