From 4fcbf73cd8bdd38fae8b07d2a2267225f1aad744 Mon Sep 17 00:00:00 2001 From: Brendan Lawlor Date: Wed, 18 Dec 2024 21:33:02 +0000 Subject: [PATCH] Bug 38155: Fix Acquisitions Reopen selected invoices button This patch updates the reopen selected invoices link button to use the form-submit.js method from bug 36246. The link needs to have a single data-invoiceid parameter, so the js on invoices.tt creates a comma separated list from the checkboxes. The list of invoiceid is split into an array in invoice.pl To test: 1. Add some invoices for a vendor using the 'receive shipments' button 2. Go to Acquisitions->Invoices 3. Select multiple invoices using the checkboxes 4. Click the 'Close selected invoices' button 5. Confirm it works 6. Go to the Closed invoices tab 7. Select multiple invoices using the checkboxes 8. Click the 'Reopen selected invoices' button 9. Confirm it works 6. Confirm reopening individual invoices from the Actions button still works Signed-off-by: Andrew Fuerste Henry Signed-off-by: Emily Lamancusa --- acqui/invoice.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/acqui/invoice.pl b/acqui/invoice.pl index ec07d05428..cac30ff265 100755 --- a/acqui/invoice.pl +++ b/acqui/invoice.pl @@ -87,7 +87,7 @@ if ( $op && $op eq 'cud-close' ) { elsif ( $op && $op eq 'cud-reopen' ) { output_and_exit( $input, $cookie, $template, 'insufficient_permission' ) unless $logged_in_patron->has_permission( { acquisition => 'reopen_closed_invoices' } ); - my @invoiceid = $input->multi_param('invoiceid'); + my @invoiceid = split( ',', $input->param('invoiceid') ); foreach my $invoiceid ( @invoiceid ) { ReopenInvoice($invoiceid); } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt index 6b17d01cf7..314bbff1b9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt @@ -125,7 +125,7 @@ [% IF CAN_user_acquisition_merge_invoices %] [% IF tab == 'closed' %] Merge selected invoices - Reopen selected invoices + Reopen selected invoices [% ELSE %] Merge selected invoices Close selected invoices -- 2.34.1