From d129f498eada629c86d4db84f987dc0fe6f40135 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 10 Nov 2023 11:00:55 +0000 Subject: [PATCH] Bug 35310: Only show 'Current renewals'
  • entry if there are current renewals 'Current renewals' is always showing, even if empty. Test plan: 1) Checkout an item to Koha user, barcode 39999000003192 2) Renew that barcode 3) Visit the items page of the biblio record, click on "View" in front of "Current renewals" /cgi-bin/koha/catalogue/moredetail.pl?biblionumber=76 4) Notice all items have the 'Current renewals' label entry, but only the checked out item in step 1) has the 'Current renewals' label entry 5) Apply patch. Notice only the item with current renewals is showing the 'Current renewals' label entry with the respective value. Signed-off-by: David Nind --- .../prog/en/modules/catalogue/moredetail.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 c24aa47c8a..f96a1f9e9f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt @@ -193,13 +193,13 @@ [% END %] [% END %]
  • -
  • - Current renewals: - [% ITEM_DAT.renewals | html %] - [% IF ITEM_DAT.renewals %] - [ View ] - [% END %] -
  • + [% IF ITEM_DAT.renewals %] +
  • + Current renewals: + [% ITEM_DAT.renewals | html %] + [ View ] +
  • + [% END %] [% IF itemlostloop %]
  • Lost status: -- 2.30.2