@@ -, +, @@ --- circ/returns.pl | 1 + .../intranet-tmpl/prog/en/modules/circ/returns.tt | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletions(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -604,6 +604,7 @@ $template->param( dropboxdate => output_pref($dropboxdate), overduecharges => $overduecharges, soundon => C4::Context->preference("SoundOn"), + BlockReturnOfWithdrawnItems => C4::Context->preference("BlockReturnOfWithdrawnItems"), ); ### Comment out rotating collections for now to allow it a little more time to bake --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -335,7 +335,12 @@ $(document).ready(function () {

Item was lost, now found.

[% END %] [% IF ( errmsgloo.withdrawn ) %] -

Item is withdrawn.

+ [% IF BlockReturnOfWithdrawnItems %] +

Cannot Check In

+

Item is withdrawn. NOT CHECKED IN

+ [% ELSE %] +

Item is withdrawn.

+ [% END %] [% END %] [% IF ( errmsgloo.debarred ) %]

[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %]) is now debarred until [% errmsgloo.debarred | $KohaDates %]

--