From c7de19417bda7d6120e3d29e874a8c2ca0a5939e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 20 Apr 2015 10:08:07 +0200 Subject: [PATCH] [Signed-off] Bug 10752: Alert if the suggestion has not been added - OPAC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same as previous patches for the OPAC. Test plan is the same. Tested with all patches applied. Works as expected. Signed-off-by: Marc VĂ©ron --- .../opac-tmpl/bootstrap/en/modules/opac-suggestions.tt | 13 ++++++++++++- opac/opac-suggestions.pl | 15 ++++++++++----- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt index 46d0031..8ac7035 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt @@ -111,9 +111,20 @@ [% END %] [% END %] + [% FOR m IN messages %] +
+ [% SWITCH m.code %] + [% CASE 'already_exists' %] + The suggestion has not been inserted. The same suggestion already exists. + [% CASE 'success_on_inserted' %] + Your suggestion has been submitted. + [% CASE %] + [% m.code %] + [% END %] +
+ [% END %] [% IF ( deleted ) %]
The selected suggestions have been deleted.
[% END %] - [% IF ( submitted ) %]
Your suggestion has been submitted.
[% END %] [% IF ( suggestions_loop ) %] [% IF Koha.Preference( 'OPACViewOthersSuggestions' ) == 1 %] diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index dd2a8b9..0fa7812 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -54,7 +54,7 @@ if ( ! C4::Context->preference('suggestion') ) { delete $$suggestion{$_} foreach qw; $op = 'else' unless $op; -my ( $template, $borrowernumber, $cookie ); +my ( $template, $borrowernumber, $cookie, @messages ); my $deleted = $input->param('deleted'); my $submitted = $input->param('submitted'); @@ -94,6 +94,10 @@ my $suggestions_loop = if ( $op eq "add_confirm" ) { if (@$suggestions_loop>=1){ #some suggestion are answering the request Donot Add + for my $suggestion ( @$suggestions_loop ) { + push @messages, { type => 'error', code => 'already_exists', id => $suggestion->{suggestionid} }; + last; + } } else { my $scrubber = C4::Scrubber->new(); @@ -109,10 +113,9 @@ if ( $op eq "add_confirm" ) { $$suggestion{$_}='' foreach qw; $suggestions_loop = &SearchSuggestion( $suggestion ); + push @messages, { type => 'info', code => 'success_on_inserted' }; } - $op = 'else'; - print $input->redirect("/cgi-bin/koha/opac-suggestions.pl?op=else&submitted=1"); - exit; + $op = 'else'; } if ( $op eq "delete_confirm" ) { @@ -121,7 +124,7 @@ if ( $op eq "delete_confirm" ) { &DelSuggestion( $borrowernumber, $delete_field ); } $op = 'else'; - print $input->redirect("/cgi-bin/koha/opac-suggestions.pl?op=else&deleted=1"); + print $input->redirect("/cgi-bin/koha/opac-suggestions.pl?op=else"); exit; } map{ $_->{'branchcodesuggestedby'}=GetBranchInfo($_->{'branchcodesuggestedby'})->[0]->{'branchname'}} @$suggestions_loop; @@ -171,6 +174,8 @@ $template->param( patron_reason_loop => $patron_reason_loop, showall => $allsuggestions, "op_$op" => 1, + $op => 1, + messages => \@messages, suggestionsview => 1, ); -- 1.7.10.4