Bug 20363: (bug 16966 follow-up) better messages handling
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 23 Mar 2018 16:58:24 +0000 (13:58 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 23 Apr 2018 17:22:16 +0000 (14:22 -0300)
User views the "Your privacy" -page, it shows "No reading history to
delete", even when the user has history.

Test plan:
- Turn OPACPrivacy on
- Go to opac-privacy.pl
- Click the "Immediate deletion button" to delete the reading history
=> If the patron has reading history you must get "Your reading history has been deleted."
Otherwise "No reading history to delete"

Note that this patch reintroduce the "something went wrong" message if
the deletion failed for whatever reason.

Signed-off-by: David Bourgault <david.bourgault@inlibro.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-privacy.tt
opac/opac-privacy.pl

index 98346f6..143f4e0 100644 (file)
@@ -27,7 +27,9 @@
 
                     [% IF deleted %]
                         <div class="alert alert-success">Your reading history has been deleted.</div>
-                    [% ELSE %]
+                    [% ELSIF history_not_deleted %]
+                        <div class="alert">The deletion of your reading history failed, because there is a problem with the configuration of this feature. Please help to fix the system by informing your library of this error</div>
+                    [% ELSIF nothing_to_delete %]
                         <div class="alert">No reading history to delete</div>
                     [% END %]
 
index ff0d328..8796a7a 100755 (executable)
@@ -63,8 +63,13 @@ elsif ( $op eq "delete_record" ) {
     my $rows = eval {
         Koha::Patrons->search({ 'me.borrowernumber' => $borrowernumber })->anonymise_issue_history;
     };
-    $rows = $@ ? 0 : int($rows);
-    $template->param( 'deleted' => $rows );
+    $template->param(
+        (
+              $@    ? ( history_not_deleted => 1 )
+            : $rows ? ( deleted             => int($rows) )
+            :         ( nothing_to_delete => 1 )
+        )
+    );
 }
 
 # get borrower privacy ....