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 a0d9468137..70d00addeb 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; + }); }); // ]]> @@ -460,7 +484,7 @@ h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o [% FOREACH suggestion IN suggestions %]
-
+ [% IF ( suggestion.suggestions_loop ) %]

Check all | Uncheck all