Bugzilla – Attachment 31673 Details for
Bug 12937
Deleting suggestions should ask for a confirmation
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 12937: Deleting suggestions should ask for a confirmation
SIGNED-OFF-Bug-12937-Deleting-suggestions-should-a.patch (text/plain), 3.13 KB, created by
Owen Leonard
on 2014-09-17 12:34:35 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 12937: Deleting suggestions should ask for a confirmation
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2014-09-17 12:34:35 UTC
Size:
3.13 KB
patch
obsolete
>From 1a19d8b7b451b42b75948d9d7859cf0cdabe5430 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Wed, 17 Sep 2014 13:11:00 +0200 >Subject: [PATCH] [SIGNED-OFF] Bug 12937: Deleting suggestions should ask for > a confirmation >Content-Type: text/plain; charset="utf-8" > >On the suggestion management page, the librarian can choose to delete >suggestions but no confirmation is needed. >This could produce unexpected lost of data. > >Test plan: >- go on the suggestion management page >- don't select any suggestion and try to delete (check the checkbox and submit the form). > Verify that you get an alert. >- select 1 suggestion and delete it, verify you get a confirmation > message >- select 1+ suggestions and delete it, verify you get a confirmation > message > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > .../prog/en/modules/suggestion/suggestion.tt | 26 +++++++++++++++++++- > 1 file changed, 25 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >index a0d9468..70d00ad 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >@@ -134,6 +134,30 @@ $(document).ready(function() { > datesAD.not( this ).datepicker( "option", option, date ); > } > }); >+ >+ $("form.update_suggestions").on("submit", function(e){ >+ var form = this; >+ var action_delete_selected = $(this).find("input[value='delete']").is(":checked"); >+ if ( action_delete_selected ) { >+ var suggestions_to_delete = $(this).find("input[name='edit_field']:checked"); >+ if ( suggestions_to_delete.length == 0 ) { >+ alert(_("No suggestion to delete")); >+ e.preventDefault(); >+ return false; >+ } else if ( suggestions_to_delete.length == 1 ) { >+ if ( ! confirm(_("Are you sure you want to delete this suggestion")) ) { >+ e.preventDefault(); >+ return false; >+ } >+ } else if ( suggestions_to_delete.length > 1 ) { >+ if ( ! confirm(_("Are you sure you want to delete these suggestions")) ) { >+ e.preventDefault(); >+ return false; >+ } >+ } >+ } >+ return true; >+ }); > }); > // ]]> > </script> >@@ -460,7 +484,7 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o > > [% FOREACH suggestion IN suggestions %] > <div id="[% suggestion.suggestiontype %]"> >-<form name="f[% suggestion.suggestiontype %]" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#[% suggestion.suggestiontype %]"> >+<form class="update_suggestions" name="f[% suggestion.suggestiontype %]" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#[% suggestion.suggestiontype %]"> > > [% IF ( suggestion.suggestions_loop ) %] > <p><a id="CheckAll[% suggestion.suggestiontype %]" href="#">Check all</a> | <a id="UncheckAll[% suggestion.suggestiontype %]" href="#">Uncheck all</a></p> >-- >1.7.9.5
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 12937
:
31668
|
31673
|
31674
|
31684
|
31731
|
31732