Bugzilla – Attachment 71371 Details for
Bug 20133
"Hide patron information" feature should not affect all library groups
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20133: UI Changes
Bug-20133-UI-Changes.patch (text/plain), 8.79 KB, created by
Kyle M Hall (khall)
on 2018-02-09 11:44:10 UTC
(
hide
)
Description:
Bug 20133: UI Changes
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2018-02-09 11:44:10 UTC
Size:
8.79 KB
patch
obsolete
>From 9640c482fc2faad81b0a1a06c20da6d444895830 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 2 Feb 2018 14:21:49 -0300 >Subject: [PATCH] Bug 20133: UI Changes > >Add a checkbox to enable/disable the feature for given group of >libraries. > >Important note: Only the top level node can turn the feature, the idea >is to avoid confusion, ease testing (by limiting the number of cases) >and force libraries to define one tree per feature (Maybe this is wrong, >but maybe good to start) > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > admin/library_groups.pl | 4 ++ > .../prog/en/modules/admin/library_groups.tt | 51 +++++++++++++++++++--- > 2 files changed, 48 insertions(+), 7 deletions(-) > >diff --git a/admin/library_groups.pl b/admin/library_groups.pl >index c540948..c84e6d2 100755 >--- a/admin/library_groups.pl >+++ b/admin/library_groups.pl >@@ -46,6 +46,7 @@ if ( $action eq 'add' ) { > my $parent_id = $cgi->param('parent_id') || undef; > my $title = $cgi->param('title') || undef; > my $description = $cgi->param('description') || undef; >+ my $ft_hide_patron_info = $cgi->param('ft_hide_patron_info') || 0; > my $branchcode = $cgi->param('branchcode') || undef; > > if ( !$branchcode && Koha::Library::Groups->search( { title => $title } )->count() ) { >@@ -57,6 +58,7 @@ if ( $action eq 'add' ) { > parent_id => $parent_id, > title => $title, > description => $description, >+ ft_hide_patron_info => $ft_hide_patron_info, > branchcode => $branchcode, > } > )->store(); >@@ -68,6 +70,7 @@ elsif ( $action eq 'edit' ) { > my $id = $cgi->param('id') || undef; > my $title = $cgi->param('title') || undef; > my $description = $cgi->param('description') || undef; >+ my $ft_hide_patron_info = $cgi->param('ft_hide_patron_info') || 0; > > if ($id) { > my $group = Koha::Library::Groups->find($id); >@@ -76,6 +79,7 @@ elsif ( $action eq 'edit' ) { > { > title => $title, > description => $description, >+ ft_hide_patron_info => $ft_hide_patron_info, > } > )->store(); > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/library_groups.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/library_groups.tt >index 954722d..2b908d9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/library_groups.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/library_groups.tt >@@ -22,9 +22,11 @@ > > $('.edit-group').on('click', function() { > var id = $(this).data('groupId'); >+ var parent_id = $(this).data('groupParentId'); > var title = $(this).data('groupTitle'); > var description = $(this).data('groupDescription'); >- edit_group( id, title, description ); >+ var ft_hide_patron_info = $(this).data('groupFt_hide_patron_info'); >+ edit_group( id, parent_id, title, description, ft_hide_patron_info ); > }); > > $('.delete-group').on('click', function() { >@@ -51,14 +53,33 @@ > $('#add-group-modal-title').focus(); > }); > >+ $('#add-group-modal-ft_hide_patron_info').prop('checked', false); >+ if ( parent_id ) { >+ $('#add-group-modal-ft_hide_patron_info').parent().hide(); >+ } else { >+ $('#add-group-modal-ft_hide_patron_info').parent().show(); >+ } > $('#add-group-modal').modal('show'); > } > >- function edit_group( id, title, description ) { >+ function edit_group( id, parent_id, title, description, ft_hide_patron_info ) { > $('#edit-group-modal-id').val( id ); > $('#edit-group-modal-title').val( title ); > $('#edit-group-modal-description').val( description ); > >+ if ( parent_id ) { >+ $('#edit-group-modal-ft_hide_patron_info').prop('checked', false); >+ $('#edit-group-modal-ft_hide_patron_info').parent().hide(); >+ } else { >+ if ( ft_hide_patron_info ) { >+ $('#edit-group-modal-ft_hide_patron_info').prop('checked', true); >+ } else { >+ $('#edit-group-modal-ft_hide_patron_info').prop('checked', false); >+ } >+ >+ $('#edit-group-modal-ft_hide_patron_info').parent().show(); >+ } >+ > $('#edit-group-modal').on('shown', function() { > $('#edit-group-modal-title').focus(); > }); >@@ -133,6 +154,7 @@ > <tr> > <th> </th> > <th>Description</th> >+ <th>Features enabled</th> > <th> </th> > </tr> > [% PROCESS tree group=root_group %] >@@ -157,15 +179,19 @@ > <input type="hidden" id="add-group-modal-action" name="action" value="add"> > > <p> >- <label for="title">Title: </label> >+ <label for="add-group-modal-title">Title: </label> > <input type="text" name="title" id="add-group-modal-title" required="required" /> > <i>required</i> > </p> > > <p> >- <label for="description">Description: </label> >+ <label for="add-group-modal-description">Description: </label> > <input type="text" name="description" id="add-group-modal-description" /> > </p> >+ <p> >+ <label for="add-group-modal-ft_hide_patron_info">Feature hide patron's info</label> >+ <input type="checkbox" name="ft_hide_patron_info" id="add-group-modal-ft_hide_patron_info" value="1" /> >+ </p> > </div> > <div class="modal-footer"> > <button type="submit" class="btn btn-primary">Save</button> >@@ -188,15 +214,19 @@ > <input type="hidden" id="edit-group-modal-action" name="action" value="edit" /> > > <p> >- <label for="title">Title: </label> >+ <label for="edit-group-modal-title">Title: </label> > <input type="text" id="edit-group-modal-title" name="title" value="" required="required" /> > <i>required</i> > </p> > > <p> >- <label for="description">Description: </label> >+ <label for="edit-group-modal-description">Description: </label> > <input type="text" id="edit-group-modal-description" name="description" value="" /> > </p> >+ <p> >+ <label for="edit-group-modal-ft_hide_patron_info">Feature hide patron's info</label> >+ <input type="checkbox" id="edit-group-modal-ft_hide_patron_info" name="ft_hide_patron_info" value="1" /> >+ </p> > </div> > <div class="modal-footer"> > <button type="submit" class="btn btn-primary">Update</button> >@@ -269,6 +299,13 @@ > [% END %] > </td> > <td> >+ [% UNLESS group.branchcode %] >+ [% IF group.ft_hide_patron_info %] >+ <span> * Hide patron's info for librarians outside of this group.</span> >+ [% END %] >+ [% END %] >+ </td> >+ <td> > [% IF group.branchcode %] > <button class="btn btn-default btn-sm remove-library" data-group-id="[% group.id %]" data-group-library="[% group.library.branchname %]" data-group-parent-title="[% group.parent.title %]" ><i class="fa fa-trash"></i> Remove from group</button> > [% ELSE %] >@@ -282,7 +319,7 @@ > </li> > > <li> >- <a class="edit-group" id="edit-group-[% group.id %]" href="#" class="edit-group" data-group-id="[% group.id %]" data-group-title="[% group.title | html %]" data-group-description="[% group.description | html %]"> >+ <a class="edit-group" id="edit-group-[% group.id %]" href="#" class="edit-group" data-group-id="[% group.id %]" data-group-parent-id="[% group.parent_id %]" data-group-title="[% group.title | html %]" data-group-description="[% group.description | html %]" data-group-ft_hide_patron_info="[% group.ft_hide_patron_info | html %]"> > <i class="fa fa-pencil"></i> Edit > </a> > </li> >-- >2.10.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 20133
:
71156
|
71157
|
71158
|
71159
|
71296
|
71368
|
71369
|
71370
| 71371 |
71372
|
71373