Bugzilla – Attachment 168107 Details for
Bug 37152
Delete-confirm should not start with 'cud-'
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37152: Aquisitions basket and OPAC suggestion deletion should use the op cud-delete
Bug-37152-Aquisitions-basket-and-OPAC-suggestion-d.patch (text/plain), 6.54 KB, created by
Nick Clemens (kidclamp)
on 2024-06-25 22:26:46 UTC
(
hide
)
Description:
Bug 37152: Aquisitions basket and OPAC suggestion deletion should use the op cud-delete
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2024-06-25 22:26:46 UTC
Size:
6.54 KB
patch
obsolete
>From 3573981ca245ee53a32f7c8f9fcab90a3d0a921d Mon Sep 17 00:00:00 2001 >From: Phil Ringnalda <phil@chetcolibrary.org> >Date: Fri, 21 Jun 2024 12:20:05 -0700 >Subject: [PATCH] Bug 37152: Aquisitions basket and OPAC suggestion deletion > should use the op cud-delete > >Both deleting a basket in Aquisitions and deleting a suggestion in the OPAC >take care of the confirmation in a javascript modal, rather than having a >whole separate page for confirmation, so they should be using the op >cud-delete rather than either cud-delete_confirm (which shouldn't ever be >used) or delete_confirm (which they aren't doing, they already confirmed). > >Test plan: >1. There's no wrong behavior to see, so apply patch and restart_all >2. Aquisitions - Vendor search for My Vendor - Click My Basket >3. Click Delete basket, in the popup again Delete basket >4. Click Show baskets for vendor My Vendor and verify the basket is gone >5. OPAC - Your account - Purchase suggestions >6. Create a suggestion, then click the checkbox for it, Delete selected, > confirm >7. Verify the suggestion was deleted > >Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > acqui/basket.pl | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 6 +++--- > .../opac-tmpl/bootstrap/en/modules/opac-suggestions.tt | 2 +- > opac/opac-suggestions.pl | 2 +- > 4 files changed, 6 insertions(+), 6 deletions(-) > >diff --git a/acqui/basket.pl b/acqui/basket.pl >index 8cc57bbd101..38a555ef529 100755 >--- a/acqui/basket.pl >+++ b/acqui/basket.pl >@@ -134,7 +134,7 @@ if ( $op eq 'cud-delete-order' ) { > $order->delete if $order; > $op = 'list'; > >-} elsif ( $op eq 'cud-delete_confirm' ) { >+} elsif ( $op eq 'cud-delete' ) { > > output_and_exit( $query, $cookie, $template, 'insufficient_permission' ) > unless $logged_in_patron->has_permission( { acquisition => 'delete_baskets' } ); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >index c815cadc757..651200ac258 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >@@ -146,7 +146,7 @@ > <button type="button" class="btn btn-primary" data-dismiss="modal">Cancel</button> > <form action="/cgi-bin/koha/acqui/basket.pl" method="post"> > [% INCLUDE 'csrf-token.inc' %] >- <input type="hidden" name="op" value="cud-delete_confirm" /> >+ <input type="hidden" name="op" value="cud-delete" /> > <input type="hidden" name="basketno" value="[% basketno | html %]" /> > <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" /> > <input type="hidden" name="delbiblio" value="0" /> >@@ -165,7 +165,7 @@ > <button type="button" class="btn btn-primary" data-dismiss="modal">Cancel</button> > <form action="/cgi-bin/koha/acqui/basket.pl" method="post"> > [% INCLUDE 'csrf-token.inc' %] >- <input type="hidden" name="op" value="cud-delete_confirm" /> >+ <input type="hidden" name="op" value="cud-delete" /> > <input type="hidden" name="basketno" value="[% basketno | html %]" /> > <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" /> > <input type="hidden" name="delbiblio" value="0" /> >@@ -174,7 +174,7 @@ > > <form action="/cgi-bin/koha/acqui/basket.pl" method="post"> > [% INCLUDE 'csrf-token.inc' %] >- <input type="hidden" name="op" value="cud-delete_confirm" /> >+ <input type="hidden" name="op" value="cud-delete" /> > <input type="hidden" name="basketno" value="[% basketno | html %]" /> > <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" /> > <input type="hidden" name="delbiblio" value="1" /> >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 a1956df42b3..7c5feb8d848 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-suggestions.tt >@@ -374,7 +374,7 @@ > [% SET can_delete_suggestion = 0 %] > <form action="/cgi-bin/koha/opac-suggestions.pl" method="post" id="delete_suggestions"> > [% INCLUDE 'csrf-token.inc' %] >- <input type="hidden" name="op" value="cud-delete_confirm" /> >+ <input type="hidden" name="op" value="cud-delete" /> > [% IF ( loggedinusername || ( Koha.Preference( 'AnonSuggestions' ) == 1 ) ) %] > <div id="toolbar" class="toolbar clearfix"> > [% IF ( Koha.Preference('MaxTotalSuggestions') != '' && patrons_total_suggestions_count >= Koha.Preference('MaxTotalSuggestions') ) %] >diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl >index 8a81e01b529..528bd9ccd7f 100755 >--- a/opac/opac-suggestions.pl >+++ b/opac/opac-suggestions.pl >@@ -232,7 +232,7 @@ my $suggestions = [ Koha::Suggestions->search_limited( > } > )->as_list ]; > >-if ( $op eq "cud-delete_confirm" ) { >+if ( $op eq "cud-delete" ) { > my @delete_field = $input->multi_param("delete_field"); > foreach my $delete_field (@delete_field) { > &DelSuggestion( $borrowernumber, $delete_field ); >-- >2.39.2
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 37152
:
167987
|
167988
|
167989
|
167990
|
167993
|
167994
|
167995
|
167996
|
168104
|
168105
|
168106
| 168107