Bugzilla – Attachment 175846 Details for
Bug 38155
Can't close invoices using checkboxes from invoices.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38155: Fix Acquistions close selected invoices button
Bug-38155-Fix-Acquistions-close-selected-invoices-.patch (text/plain), 5.78 KB, created by
Emily Lamancusa (emlam)
on 2024-12-20 15:04:28 UTC
(
hide
)
Description:
Bug 38155: Fix Acquistions close selected invoices button
Filename:
MIME Type:
Creator:
Emily Lamancusa (emlam)
Created:
2024-12-20 15:04:28 UTC
Size:
5.78 KB
patch
obsolete
>From 2ee2832918fd8c46fb1968042345479c7da6dab1 Mon Sep 17 00:00:00 2001 >From: Brendan Lawlor <blawlor@clamsnet.org> >Date: Wed, 18 Dec 2024 21:03:11 +0000 >Subject: [PATCH] Bug 38155: Fix Acquistions close selected invoices button > >This patch updates the closed 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 checkbox >4. Click the 'Close selected invoices' button >5. Confirm it works >6. Confirm closing individual invoices from the Actions button still works > >Signed-off-by: Andrew Fuerste Henry <andrew@bywatersolutions.com> >Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> >--- > acqui/invoice.pl | 2 +- > .../intranet-tmpl/prog/en/modules/acqui/invoices.tt | 10 ++++------ > 2 files changed, 5 insertions(+), 7 deletions(-) > >diff --git a/acqui/invoice.pl b/acqui/invoice.pl >index bed7a6440e..ec07d05428 100755 >--- a/acqui/invoice.pl >+++ b/acqui/invoice.pl >@@ -74,7 +74,7 @@ if ( C4::Context->preference('AcqEnableFiles') ) { > if ( $op && $op eq 'cud-close' ) { > output_and_exit( $input, $cookie, $template, 'insufficient_permission' ) > unless $logged_in_patron->has_permission( { acquisition => 'edit_invoices' } ); >- my @invoiceid = $input->multi_param('invoiceid'); >+ my @invoiceid = split( ',', $input->param('invoiceid') ); > foreach my $invoiceid ( @invoiceid ) { > CloseInvoice($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 6c46799d2a..6b17d01cf7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt >@@ -128,7 +128,7 @@ > <a class="btn btn-default" id="open_sel" href="#reopen_selected" data-table="closedresultst" data-op="reopen" data-referer="referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=[% invoicenumber | uri %]%26supplier=[% booksellerid | uri %]%26shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]%26shipmentdateto=[% shipmentdateto | $KohaDates %]%26billingdatefrom=[% billingdatefrom | $KohaDates %]%26billingdateto=[% billingdateto | $KohaDates %]%26isbneanissn=[% isbneanissn | uri %]%26title=[% title | uri %]%26author=[% author | uri %]%26publisher=[% publisher | uri %]%26publicationyear=[% publicationyear | uri %]%26branch=[% branch | uri %]"><i class="fa-solid fa-rotate"></i> Reopen selected invoices</a> > [% ELSE %] > <a class="btn btn-default merge" id="merge_open" href="#merge_invoices" data-table="openedresultst"><i class="fa fa-compress"></i> Merge selected invoices</a> >- <a class="btn btn-default" id="close_sel" href="#close_selected" data-table="openedresultst" data-op="close" data-referer="referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=[% invoicenumber | uri %]%26supplier=[% booksellerid | uri %]%26shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]%26shipmentdateto=[% shipmentdateto | $KohaDates %]%26billingdatefrom=[% billingdatefrom | $KohaDates %]%26billingdateto=[% billingdateto | $KohaDates %]%26isbneanissn=[% isbneanissn | uri %]%26title=[% title | uri %]%26author=[% author | uri %]%26publisher=[% publisher | uri %]%26publicationyear=[% publicationyear | uri %]%26branch=[% branch | uri %]"><i class="fa fa-times-circle"></i> Close selected invoices</a> >+ <a class="submit-form-link btn btn-default" id="close_sel" data-table="openedresultst" data-op="cud-close" data-action="invoice.pl" data-method="post" data-referer="/cgi-bin/koha/acqui/invoices.pl?op=do_search&invoicenumber=[% invoicenumber | html %]&supplier=[% booksellerid | html %]&shipmentdatefrom=[% shipmentdatefrom | $KohaDates %]&shipmentdateto=[% shipmentdateto | $KohaDates %]&billingdatefrom=[% billingdatefrom | $KohaDates %]&billingdateto=[% billingdateto | $KohaDates %]&isbneanissn=[% isbneanissn | html %]&title=[% title | html %]&author=[% author | html %]&publisher=[% publisher | html %]&publicationyear=[% publicationyear | html %]&branch=[% branch | html %]"><i class="fa fa-times-circle"></i> Close selected invoices</a> > [% END # /IF tab == 'closed' %] > [% END # /IF CAN_user_acquisition_merge_invoices %] > [% END # /BLOCK invoices_table %] >@@ -462,16 +462,14 @@ > }); > > $('#open_sel,#close_sel').click(function () { >- var referer = $(this).attr("data-referer"); >- var op = $(this).attr("data-op"); > var table = $(this).data('table'); >- var invoice_link = "invoice.pl?op="+op; >+ var invoice_ids = ""; > if ($('#' + table + ' .select-invoice:checked').length) { > $('#' + table + ' .select-invoice:checked').each(function () { > var row = $(this).parents('tr'); >- invoice_link = invoice_link + "&invoiceid="+$(row).attr('data-invoiceid'); >+ invoice_ids = invoice_ids + ","+$(row).attr('data-invoiceid'); > }); >- window.location.href =invoice_link +"&"+referer; >+ $(this).attr('data-invoiceid', invoice_ids); > } else { > alert ("Please select at least one invoice." ); > } >-- >2.34.1
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 38155
:
175658
|
175682
|
175683
|
175777
|
175778
| 175846 |
175847
|
175848