Bugzilla – Attachment 153188 Details for
Bug 33620
Don't show patron-privacyguarantor/patron-privacy_guarantor_fines if borrowerRelationship is empty
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33620: Don't show guarantor info on details page if borrowerRelationship is empty
Bug-33620-Dont-show-guarantor-info-on-details-page.patch (text/plain), 3.63 KB, created by
Lucas Gass (lukeg)
on 2023-07-07 16:08:55 UTC
(
hide
)
Description:
Bug 33620: Don't show guarantor info on details page if borrowerRelationship is empty
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2023-07-07 16:08:55 UTC
Size:
3.63 KB
patch
obsolete
>From f9fd66921103cf865e8767cd7d10b42a400ad2e4 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Fri, 7 Jul 2023 16:07:47 +0000 >Subject: [PATCH] Bug 33620: Don't show guarantor info on details page if > borrowerRelationship is empty > >To test: >1. Apply patch >2. Have some values in borrowerRelationship. >3. Go to a patron details page and see both 'Show checkouts to guarantor:' and 'Show charges to guarantor:' >4. Now empty borrowerRelationship. >5. Visit the patron detail page again and you should no longer see either of those fields. >--- > .../prog/en/modules/members/moremember.tt | 35 ++++++++++--------- > 1 file changed, 18 insertions(+), 17 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 f95bf98bf2..5c1f773692 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -181,24 +181,25 @@ > </li> > [% END %] > [% END %] >- <li id="patron-privacyguarantor"> >- <span class="label">Show checkouts to guarantor:</span> >- [% IF patron.privacy_guarantor_checkouts %] >- Yes >- [% ELSE %] >- No >- [% END %] >- </li> >- >- <li id="patron-privacy_guarantor_fines"> >- <span class="label">Show charges to guarantor:</span> >- [% IF patron.privacy_guarantor_fines %] >- Yes >- [% ELSE %] >- No >- [% END %] >- </li> >+ [% IF Koha.Preference("borrowerRelationship") %] >+ <li id="patron-privacyguarantor"> >+ <span class="label">Show checkouts to guarantor:</span> >+ [% IF patron.privacy_guarantor_checkouts %] >+ Yes >+ [% ELSE %] >+ No >+ [% END %] >+ </li> > >+ <li id="patron-privacy_guarantor_fines"> >+ <span class="label">Show charges to guarantor:</span> >+ [% IF patron.privacy_guarantor_fines %] >+ Yes >+ [% ELSE %] >+ No >+ [% END %] >+ </li> >+ [% END %] > [% IF guarantees %] > <li> > <span class="label">Guarantees:</span> >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33620
:
150257
|
150297
|
153188
|
155654