@@ -, +, @@ check-in --- circ/returns.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -292,6 +292,7 @@ if ($barcode) { biblionumber => $biblio->biblionumber, additional_materials => $materials, issue => $checkout, + item_withdrawn => $item->withdrawn, ); } # FIXME else we should not call AddReturn but set BadBarcode directly instead --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -565,7 +565,11 @@
Cannot check in

NOT CHECKED IN

[% END %] -

Item is withdrawn.

+

+ Item is withdrawn + [% item_withdrawn_lib = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.withdrawn', authorised_value => item_withdrawn ) %] + [% IF (item_withdrawn_lib) %]([% item_withdrawn_lib | html %])[% END %] +

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

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

--