From 06377eb9d555e0e18a857406ceacb1d4f1e34720 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 4 Feb 2020 11:17:11 +0100 Subject: [PATCH] Bug 20708: Add Withdrawn status when placing a request in staff Same as bug 22021 for the withdrawn status. 1. Withdraw an item 2. Place an hold on this item Notice the new "withdrawn" status in the information column Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize Signed-off-by: Joy Nelson --- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt index 569106a0c7..39ab929b28 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -669,6 +669,10 @@ [% AuthorisedValues.GetByCode( 'DAMAGED', itemloo.damaged ) | html %] [% END %] + [% IF ( itemloo.withdrawn ) %] + [% AuthorisedValues.GetByCode( 'WITHDRAWN', itemloo.withdrawn ) | html %] + [% END %] + [% IF ( itemloo.notforloan ) %] Not for loan ([% AuthorisedValues.GetByCode( 'NOT_LOAN', itemloo.notforloan ) | html %]) [% END %] -- 2.20.1