Bugzilla – Attachment 173877 Details for
Bug 38325
Cannot delete invoice while viewing it
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38325: Cannot delete invoice while viewing it
Bug-38325-Cannot-delete-invoice-while-viewing-it.patch (text/plain), 2.77 KB, created by
Phil Ringnalda
on 2024-11-01 16:44:36 UTC
(
hide
)
Description:
Bug 38325: Cannot delete invoice while viewing it
Filename:
MIME Type:
Creator:
Phil Ringnalda
Created:
2024-11-01 16:44:36 UTC
Size:
2.77 KB
patch
obsolete
>From 4cd9d9a515ba289bd78ebb8606ad6540747a45b0 Mon Sep 17 00:00:00 2001 >From: Phil Ringnalda <phil@chetcolibrary.org> >Date: Fri, 1 Nov 2024 09:13:50 -0700 >Subject: [PATCH] Bug 38325: Cannot delete invoice while viewing it > >The link to delete while viewing an individual invoice needs to be updated to >use submit-form-link so it can POST with op='cud-delete'. > >Test plan: > 1. Home - Acquisitions, click Search with an empty Vendor: input > 2. Click Receive shipments, enter a number in the Vendor invoice input, > click Next > 3. In the left sidebar, click Invoices, click Search without any parameters > 4. In the row for your invoice, click the invoice number link > 5. Next to the Save button, click the Delete link, click OK in the > confirmation alert > 6. You'll see the page reload, and the URL change to include ?op=delete, > but your invoice remains undeleted. > 7. Apply patch, reload the page > 8. Click Delete, click OK in the confirmation alert > 9. Click Search with no parameters, just to make sure the message about > "Sorry, but there are no results for your search" really truly means > that your invoice was deleted and now you don't have any invoices > >Sponsored-by: Chetco Community Public Library >--- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >index edd10da42e..baef5c261a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >@@ -142,7 +142,7 @@ > <input type="hidden" name="invoiceid" value="[% invoiceid | html %]" /> > <input type="submit" class="btn btn-primary" value="Save" /> > [% IF CAN_user_acquisition_delete_invoices AND NOT orders_loop.size %] >- <a href="invoice.pl?op=delete&invoiceid=[% invoiceid | uri %]" id="delete">Delete</a> >+ <a class="submit-form-link" href="#" data-action="invoice.pl" data-method="post" data-op="cud-delete" data-invoiceid="[% invoiceid | html %]" data-confirmation-msg="[% t('Are you sure you want to delete this invoice?') | html %]" id="delete">Delete</a> > [% END %] > </fieldset> > [% END %] >@@ -561,9 +561,6 @@ > } > > $(document).ready(function() { >- $("#delete").click(function(){ >- return confirmDelete(_("Are you sure you want to delete this invoice?")); >- }); > $("#orderst").dataTable($.extend(true, {}, dataTablesDefaults, { > "info": false, > "paging": false, >-- >2.44.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 38325
:
173877
|
173886