From b6d7180d56a7b9d4b64abe6fc3576feea71fdec4 Mon Sep 17 00:00:00 2001 From: David Roberts Date: Sun, 3 May 2020 23:48:09 +0000 Subject: [PATCH] Bug 25336: Show checkouts/fines to guarantor is in the wrong section of the patron file This patch moves the "Show checkouts to guarantor" and "Show fines to guarantor" data to display under the Contact information block To test: 1) Enable the AllowStaffToSetCheckoutsVisibilityForGuarantor and AllowStaffToSetFinesVisibilityForGuarantor system preferences to Allow 2) View a patron record. 3) The "Show checkouts to guarantor" and "Show fines to guarantor" field will be on the right hand side of the screen under the Library use block. 4) Apply patch 5) Check that this data has now moved to the Contact information block on the left hand side of the patron record. Works for me! Signed-off-by: Caroline Cyr La Rose --- .../prog/en/modules/members/moremember.tt | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index b4351f4afa..5803963479 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -259,6 +259,24 @@ [% END %] [% END %] +
  • + Show checkouts to guarantor + [% IF patron.privacy_guarantor_checkouts %] + Yes + [% ELSE %] + No + [% END %] +
  • + +
  • + Show fines to guarantor + [% IF patron.privacy_guarantor_fines %] + Yes + [% ELSE %] + No + [% END %] +
  • + [% IF guarantees %]
  • Guarantees: @@ -499,24 +517,6 @@
  • [% END %] -
  • - Show checkouts to guarantor - [% IF patron.privacy_guarantor_checkouts %] - Yes - [% ELSE %] - No - [% END %] -
  • - -
  • - Show fines to guarantor - [% IF patron.privacy_guarantor_fines %] - Yes - [% ELSE %] - No - [% END %] -
  • - [% IF ( patron.sort1 ) %]
  • Sort field 1: -- 2.17.1