From 6ac19e02ed1349f93303a3f24b655f38bf70fa5d 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 --- 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 8c34184557..f55487e364 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -676,6 +676,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.39.2