From 006cbc0f6c6d2bdc84af3f27e695231bd6f40006 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 30 Dec 2019 07:51:23 -0500 Subject: [PATCH] Bug 24279: Claims Returned does not work when set from moredetail.pl Content-Type: text/plain; charset=utf-8 Test Plan: 1) Configure Claimes Returned 2) Apply this patch 3) Go to moredetail.pl for that item 4) Note the claims returned lost status does not show in the lost status pulldown Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt index 62352fc4cd..5e639f7385 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt @@ -99,6 +99,7 @@ [% IF itemlostloop %]
  • Lost status: [% IF ( CAN_user_circulate ) %] + [% SET ClaimReturnedLostValue = Koha.Preference('ClaimReturnedLostValue') %]
    @@ -106,6 +107,7 @@ - [% SET ClaimReturnedLostValue = Koha.Preference('ClaimReturnedLostValue') %] [% IF ClaimReturnedLostValue && ITEM_DAT.itemlost == ClaimReturnedLostValue %]

    Item has been claimed as returned.

    -- 2.11.0