Bugzilla – Attachment 105162 Details for
Bug 25364
Add "Other" to the gender options in a patron record
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25364: Add "Other" to the gender options in a patron record
Bug-25364-Add-Other-to-the-gender-options-in-a-pat.patch (text/plain), 13.10 KB, created by
Devinim
on 2020-05-20 19:05:06 UTC
(
hide
)
Description:
Bug 25364: Add "Other" to the gender options in a patron record
Filename:
MIME Type:
Creator:
Devinim
Created:
2020-05-20 19:05:06 UTC
Size:
13.10 KB
patch
obsolete
>From efa01b1d362eb9c8f7b8d3778386b1f8f41fe7a7 Mon Sep 17 00:00:00 2001 >From: David Roberts <david@koha-ptfs.co.uk> >Date: Mon, 4 May 2020 02:29:14 +0000 >Subject: [PATCH] Bug 25364: Add "Other" to the gender options in a patron > record > >This patch adds "Other" as an option, and also changes the wording of >"None specified" slightly. > >To test: > >1) Apply the patch >2) Check that there is an "Other" radio button in the patron record, and >that the wording of "None specified" has changed to "None specified / >Prefer not to say". >3) Check that you can save changes to the gender of this patron record, >both on create and modify. >4) Check that these changes also work in the Opac Self-Registration >functionality. > >Correct typos in previous commit > >Signed-off-by: Devinim <kohadevinim@devinim.com.tr> >--- > .../prog/en/modules/members/memberentrygen.tt | 26 +++++++++++++--------- > .../prog/en/modules/members/moremember-brief.tt | 2 +- > .../prog/en/modules/members/moremember.tt | 2 +- > .../bootstrap/en/modules/opac-memberentry.tt | 14 +++++++++--- > members/memberentry.pl | 2 ++ > 5 files changed, 31 insertions(+), 15 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >index 8cc1c9ec00..0e538da4cb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >@@ -376,24 +376,30 @@ legend:hover { > <li class="radio"> > [% UNLESS ( opduplicate ) %] > [% IF ( female ) %] >- <label for="sex-female"><input type="radio" name="sex" id="sex-female" value="F" checked="checked" /> Female</label> >+ <label for="sex-female"><input type="radio" name="sex" id="sex-female" value="F" checked="checked" /><span class="patronsex-female"> Female</span></label> > [% ELSE %] >- <label for="sex-female"><input type="radio" name="sex" id="sex-female" value="F" /> Female</label> >+ <label for="sex-female"><input type="radio" name="sex" id="sex-female" value="F" /><span class="patronsex-female"> Female</span></label> > [% END %] > [% IF ( male ) %] >- <label for="sex-male"><input type="radio" name="sex" id="sex-male" value="M" checked="checked" /> Male</label> >+ <label for="sex-male"><input type="radio" name="sex" id="sex-male" value="M" checked="checked" /><span class="patronsex-male"> Male</span></label> > [% ELSE %] >- <label for="sex-male"><input type="radio" name="sex" id="sex-male" value="M" /> Male</label> >+ <label for="sex-male"><input type="radio" name="sex" id="sex-male" value="M" /><span class="patronsex-male"> Male</span></label> >+ [% END %] >+ [% IF ( other ) %] >+ <label for="sex-other"><input type="radio" name="sex" id="sex-other" value="O" checked="checked" /><span class="patronsex-other"> Other</span></label> >+ [% ELSE %] >+ <label for="sex-other"><input type="radio" name="sex" id="sex-other" value="O" /><span class="patronsex-other"> Other</span></label> > [% END %] > [% IF ( none ) %] >- <label for="sex-none"><input type="radio" name="sex" id="sex-none" value="" checked="checked" /> None specified</label> >+ <label for="sex-none"><input type="radio" name="sex" id="sex-none" value="" checked="checked" /><span class="patronsex-none"> None specified / Prefer not to say</span></label> > [% ELSE %] >- <label for="sex-none"><input type="radio" name="sex" id="sex-none" value="" /> None specified</label> >+ <label for="sex-none"><input type="radio" name="sex" id="sex-none" value="" /><span class="patronsex-none"> None specified / Prefer not to say</span></label> > [% END %] > [% ELSE %] >- <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" /> >- <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" /> >- <label for="sex-none">None specified </label><input type="radio" name="sex" id="sex-none" value="" checked="checked" /> >+ <label for="sex-female"><span class="patronsex-female">Female </span></label><input type="radio" name="sex" id="sex-female" value="F" /> >+ <label for="sex-male"><span class="patronsex-male">Male </span></label><input type="radio" name="sex" id="sex-male" value="M" /> >+ <label for="sex-other"><span class="patronsex-other">Other </span></label><input type="radio" name="sex" id="sex-other" value="O" /> >+ <label for="sex-none"><span class="patronsex-none">None specified / Prefer not to say </span></label><input type="radio" name="sex" id="sex-none" value="" checked="checked" /> > [% END # /UNLESS ( opduplicate )%] > </li> > [% END # /UNLESS nosex %] >@@ -1604,7 +1610,7 @@ legend:hover { > } > $(toggle_from).each(function() { > var input_label = $(this).attr('for'); >- if ( input_label == 'sex-male' || input_label == 'sex-none' || input_label == 'sex-female' ) { >+ if ( input_label == 'sex-male' || input_label == 'sex-none' || input_label == 'sex-female' || input_label == 'sex-other' ) { > $(toggle_to+"[for='"+input_label+"']").next().prop('checked', $(this).next().prop('checked') ); > return; > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt >index c2745dfa7a..65c2228f3f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt >@@ -39,7 +39,7 @@ > [% UNLESS ( I ) %] > [% IF ( patron.initials ) %]<li><span class="label">Initials: </span>[% patron.initials | html %]</li>[% END %] > [% IF ( patron.dateofbirth ) %]<li><span class="label">Date of birth:</span>[% patron.dateofbirth | $KohaDates %]</li>[% END %] >- [% IF ( patron.sex ) %]<li><span class="label">Gender:</span>[% IF ( patron.sex == 'F' ) %]Female[% ELSIF ( patron.sex == 'M' ) %]Male[% ELSE %][% patron.sex | html %][% END %]</li>[% END %] >+ [% IF ( patron.sex ) %]<li><span class="label">Gender:</span>[% IF ( patron.sex == 'F' ) %]<span class="patronsex-female">Female</span>[% ELSIF ( patron.sex == 'M' ) %]<span class="patronsex-male">Male</span>[% ELSIF ( patron.sex == 'O' ) %]<span class="patronsex-other">Other</span>[% ELSE %][% patron.sex | html %][% END %]</li>[% END %] > [% END %] > > [% IF guarantees %] >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 a6016d68d1..8642b150f4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -257,7 +257,7 @@ > [% IF ( patron.sex ) %] > <li> > <span class="label">Gender:</span> >- [% IF ( patron.sex == 'F' ) %]Female[% ELSIF ( patron.sex == 'M' ) %]Male[% ELSE %][% patron.sex | html %][% END %] >+ [% IF ( patron.sex == 'F' ) %]<span class="patronsex-female">Female</span>[% ELSIF ( patron.sex == 'M' ) %]<span class="patronsex-male">Male</span>[% ELSIF (patron.sex == 'O' ) %]<span class="patronsex-other">Other</span>[% ELSE %][% patron.sex | html %][% END %] > </li> > [% END %] > [% END %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt >index 35af40224f..1f96833113 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt >@@ -372,21 +372,29 @@ > > [% UNLESS hidden.defined('sex') %] > <li class="lradio"> >- <label for="sex-female" class="radio inline">Female:</label> >+ <label for="sex-female" class="radio inline"><span class="patronsex-female">Female:</span></label> > [% IF borrower.sex == 'F' %] > <input type="radio" name="borrower_sex" id="sex-female" value="F" checked="checked" /> > [% ELSE %] > <input type="radio" name="borrower_sex" id="sex-female" value="F" /> > [% END %] > >- <label for="sex-male" class="radio inline">Male:</label> >+ <label for="sex-male" class="radio inline"><span class="patronsex-male">Male:</span></label> > [% IF borrower.sex == 'M' %] > <input type="radio" name="borrower_sex" id="sex-male" value="M" checked="checked" /> > [% ELSE %] > <input type="radio" name="borrower_sex" id="sex-male" value="M" /> > [% END %] > >- <label for="sex-none" class="radio inline">None specified: </label> >+ <label for="sex-other" class="radio inline"><span class="patronsex-other">Other:</span></label> >+ [% IF borrower.sex == 'O' %] >+ <input type="radio" name="borrower_sex" id="sex-other" value="O" checked="checked" /> >+ [% ELSE %] >+ <input type="radio" name="borrower_sex" id="sex-other" value="O" /> >+ [% END %] >+ >+ >+ <label for="sex-none" class="radio inline"><span class="patronsex-none">None specified / Prefer not to say:</span></label> > [% IF borrower.sex == '' %] > <input type="radio" name="borrower_sex" id="sex-none" value="" checked="checked" /> > [% ELSE %] >diff --git a/members/memberentry.pl b/members/memberentry.pl >index cfdc06032e..756ce2a01d 100755 >--- a/members/memberentry.pl >+++ b/members/memberentry.pl >@@ -646,6 +646,8 @@ if(!defined($data{'sex'})){ > $template->param( female => 1); > } elsif ($data{'sex'} eq 'M'){ > $template->param( male => 1); >+} elsif ($data{'sex'} eq 'O') { >+ $template->param( other => 1); > } else { > $template->param( none => 1); > } >-- >2.11.0
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 25364
:
104245
|
104454
|
104523
|
104614
|
104617
| 105162 |
108375