From 8d08254b2202353517c16f34172cb92dcdd5befa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc=20V=C3=A9ron?= Date: Sat, 18 Feb 2017 18:35:39 +0100 Subject: [PATCH] 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 Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart --- 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 27dd2de440..02c50b9c2d 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 %] @@ -589,6 +588,9 @@ function checkMultiHold() {
Item level hold not allowed from OPAC [% ELSIF itemloo.item_level_holds == "F" %]
Item level hold forced from OPAC + [% END %] + [% IF ( itemloo.damaged ) %] +
Damaged [% END %] -- 2.20.1