From 23e372d6c0c1258e3b9e392f2c65a3aa6158d77b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Sat, 18 Feb 2017 18:35:39 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 14353 - Show 'damaged' and other status on the 'place holds' page in staff This patch adds status 'Damaged' to 'Information' 'Status' in the items table on 'Place hold' page. To test: - Apply patch - In staff client, try to place an item level hold for items with 'Damaged' status. - Verify that the status 'Damaged' appears in the column 'Information'. Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 27dd2de..02c50b9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -562,7 +562,6 @@ function checkMultiHold() { [% END %] [% END %] - [% IF ( itemloo.message ) %] Unavailable (lost or missing) [% END %] @@ -590,6 +589,9 @@ function checkMultiHold() { [% ELSIF itemloo.item_level_holds == "F" %]
Item level hold forced from OPAC [% END %] + [% IF ( itemloo.damaged ) %] +
Damaged + [% END %] [% END %] -- 2.1.4