From 0caa96eca966cd00e17d88077654e5e6ec2c7887 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. --- .../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 8321edef92..72c8a823c9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -250,6 +250,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: @@ -490,24 +508,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.11.0