Bugzilla – Attachment 105753 Details for
Bug 10910
Add a warn when deleting a patron with pending suggestions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10910: (follow-up) Move the suggestions note with the other non-blocking notes
Bug-10910-follow-up-Move-the-suggestions-note-with.patch (text/plain), 3.80 KB, created by
Katrin Fischer
on 2020-06-11 12:56:00 UTC
(
hide
)
Description:
Bug 10910: (follow-up) Move the suggestions note with the other non-blocking notes
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-06-11 12:56:00 UTC
Size:
3.80 KB
patch
obsolete
>From abf9dd3778dc41524508dc55e5e6664810551adf Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Fri, 1 May 2020 16:28:25 +0000 >Subject: [PATCH] Bug 10910: (follow-up) Move the suggestions note with the > other non-blocking notes > >To test: >- Add a credit to the patron's account >- Make sure they got a pending suggestion >- Try to delete >- Verify you notes for both as list items > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../intranet-tmpl/prog/en/modules/members/deletemem.tt | 10 +++++----- > members/deletemem.pl | 17 +++++++++-------- > 2 files changed, 14 insertions(+), 13 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/deletemem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/deletemem.tt >index e27af5288a..23c59cd49b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/deletemem.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/deletemem.tt >@@ -37,7 +37,7 @@ > [% ELSIF op == 'delete_confirm' and patron %] > [%# TODO add "patron does not exist" unless patron %] > <div class="dialog alert"> >- [% IF ItemsOnHold or credits %] >+ [% IF ItemsOnHold or credits or pending_suggestions > 0 %] > <ul> > [% IF ItemsOnHold %] > <li>Patron has [% ItemsOnHold | html %] hold(s). Deleting patron cancels all their holds.</li> >@@ -45,12 +45,12 @@ > [% IF credits %] > <li>Patron has a [% credits | $Price %] credit.</li> > [% END %] >- <ul> >+ [% IF pending_suggestions > 0 %] >+ <li>Patron has [% pending_suggestions | html %] pending suggestions.</li> >+ [% END %] >+ </ul> > [% END %] > <h3>Are you sure you want to delete the patron [% patron.firstname | html %] [% patron.surname | html %]? This cannot be undone.</h3> >- [% IF pending_suggestions > 0 %] >- <h3>Note that this patron has [% pending_suggestions %] pending suggestions.</h3> >- [% END %] > <form action="/cgi-bin/koha/members/deletemem.pl"> > <input type="hidden" name="csrf_token" value="[% csrf_token | html %]" /> > <input type="hidden" name="member" value="[% patron.borrowernumber | html %]"/> >diff --git a/members/deletemem.pl b/members/deletemem.pl >index bd8a043bd6..8593a76885 100755 >--- a/members/deletemem.pl >+++ b/members/deletemem.pl >@@ -89,6 +89,15 @@ my $dbh = C4::Context->dbh; > my $is_guarantor = $patron->guarantee_relationships->count; > my $countholds = $dbh->selectrow_array("SELECT COUNT(*) FROM reserves WHERE borrowernumber=?", undef, $member); > >+# Add warning if patron has pending suggestions >+$template->param( >+ pending_suggestions => scalar @{ >+ C4::Suggestions::SearchSuggestion( >+ { suggestedby => $member, STATUS => 'ASKED' } >+ ) >+ } >+); >+ > $template->param( > patron => $patron, > ItemsOnIssues => $countissues, >@@ -104,14 +113,6 @@ if ( $op eq 'delete_confirm' or $countissues > 0 or $debits or $is_guarantor ) { > csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $input->cookie('CGISESSID') }), > ); > >- # Add warning if patron has pending suggestions >- $template->param( >- pending_suggestions => scalar @{ >- C4::Suggestions::SearchSuggestion( >- { suggestedby => $member, STATUS => 'ASKED' } >- ) >- } >- ); > } elsif ( $op eq 'delete_confirmed' ) { > output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' ) > unless Koha::Token->new->check_csrf( { >-- >2.11.0
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 10910
:
89360
|
103903
|
104094
|
104128
|
104129
|
104237
|
104238
|
105752
| 105753