Summary: | Can't close invoices using checkboxes from invoices.pl | ||
---|---|---|---|
Product: | Koha | Reporter: | Sara Brown <sbrown> |
Component: | Acquisitions | Assignee: | Brendan Lawlor <blawlor> |
Status: | Pushed to stable --- | QA Contact: | Emily Lamancusa (emlam) <emily.lamancusa> |
Severity: | normal | ||
Priority: | P5 - low | CC: | blawlor, david, emily.lamancusa, jaskins, lcraumer, maura.stephens, michaela.sieber, mteal, nick, paul.derscheid |
Version: | Main | Keywords: | regression |
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | Small patch |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: |
This fixes closing and reopening of invoices (Acquisitions > [Vendor] > Invoices). Previously, the invoices you selected weren't closed or reopened when clicking on the "Close/Reopen selected invoices" button - all that happened was that one of the selected invoices was displayed instead. (This is related to the CSRF changes added in Koha 24.05 to improve form security.)
|
Version(s) released in: |
25.05.00,24.11.02
|
Circulation function: | |||
Bug Depends on: | 36246 | ||
Bug Blocks: | 38766, 36192 | ||
Attachments: |
Bug 38155: Fix Acquistions close selected invoices button
Bug 38155: Fix Acquistions close selected invoices button Bug 38155: Fix Acquisitions Reopen selected invoices button Bug 38155: Fix Acquistions close selected invoices button Bug 38155: Fix Acquisitions Reopen selected invoices button Bug 38155: Fix Acquistions close selected invoices button Bug 38155: Fix Acquisitions Reopen selected invoices button Bug 38155: (QA follow-up) Fix TT filters and scalar context |
Description
Sara Brown
2024-10-11 18:38:39 UTC
Fayetteville Public Library noticed this issue shortly after our most recent upgrade. We would very much like this button's old functionality to return, as it's nice to be able to bulk-close invoices. We look forward to seeing this addressed! Created attachment 175658 [details] [review] Bug 38155: Fix Acquistions close selected invoices button This patch updates the data-op property of the button to be prefixed with cud- To test: 1. Add some invoices for a vendor 2. Got to Acquisitions->Invoices 3. Select multiple invoices using the checkbox 4. Click the 'Close selected invoices' button 5. Confirm it worked Hi Brandan. I'm getting this error after the patch when I go to close the invoices: An error has occurred! Error 403 Programming error - op 'cud-close' must not start with 'cud-' for GET http://127.0.0.1:8081/intranet/acqui/invoice.pl?op=cud-close&invoiceid=3&invoiceid=4&referer=/cgi-bin/koha/acqui/invoices.pl%3Fop=do_search%26invoicenumber=%26supplier=%26shipmentdatefrom=%26shipmentdateto=%26billingdatefrom=%26billingdateto=%26isbneanissn=%26title=%26author=%26publisher=%26publicationyear=%26branch= (referer: http://127.0.0.1:8081/cgi-bin/koha/acqui/invoices.pl?invoicenumber=&shipmentdatefrom=&shipmentdateto=&billingdatefrom=&billingdateto=&isbneanissn=&title=&author=&publisher=&publicationyear=&branch=&op=do_search) (In reply to David Nind from comment #3) > Hi Brandan. > > I'm getting this error after the patch when I go to close the invoices: > > An error has occurred! > Error 403 > Programming error - op 'cud-close' must not start with 'cud-' for GET This is hard for me to test in ktd, do you have the steps to create invoices handy? I think for the link to work it needs some more attributes, probably at least data-method="post" (In reply to Brendan Lawlor from comment #4) > (In reply to David Nind from comment #3) > > Hi Brandan. > > > > I'm getting this error after the patch when I go to close the invoices: > > > > An error has occurred! > > Error 403 > > Programming error - op 'cud-close' must not start with 'cud-' for GET > > > This is hard for me to test in ktd, do you have the steps to create invoices > handy? > > I think for the link to work it needs some more attributes, probably at > least data-method="post" I followed the test plan 8-) Steps to reproduce: 1. Apply the patch, restart everything (restart_all), clear your browser cache. 2. Acquisitions > go to a vendor page (click Search in the search vendors section). 3. Receive shipments 4. Create several invoices from here. (Even though the invoices have no data, I did check whether that was the issue by adding orders to a basket, closing the basket, and then receiving them properly, but I still got the same error.) 5. Acquisitions > Invoices > Search (no filter information entered). 6. Select a couple of the open invoices (tick boxes). 7. Click "Close selected invoices". 8. Error! Created attachment 175682 [details] [review] 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 Created attachment 175683 [details] [review] 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 Created attachment 175777 [details] [review] 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> Created attachment 175778 [details] [review] 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 <andrew@bywatersolutions.com> Created attachment 175846 [details] [review] 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> Created attachment 175847 [details] [review] 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 <andrew@bywatersolutions.com> Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> Created attachment 175848 [details] [review] Bug 38155: (QA follow-up) Fix TT filters and scalar context data-referer is the url for the current search page, to redirect back after performing the operation. Since it is a url, variables within this link all need to use the uri filter, not html or KohaDates. Also specify scalar context when splitting the input parameter to prevent param in list context warnings. Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> Cleaned up a few things in a follow-up, but otherwise it looks good! Thanks, Brendan! Passing QA (In reply to Emily Lamancusa (emlam) from comment #13) > Cleaned up a few things in a follow-up, but otherwise it looks good! Thanks, > Brendan! Passing QA > variables within this link all need to use the uri filter, not html or KohaDates. Thanks for this info. I got this from copying the link formatting from the Actions drop down link (line 109) for close because the data-referer wasn't working because it was url encoded. It needed to be encoded before because it used window.location.href for the redirect. Should I file a new bug to change the filters in those Actions links to use uri instead of html? > Also specify scalar context when splitting the input parameter I need to read up on this and learn more Perl :) Thanks, Emily! (In reply to Brendan Lawlor from comment #14) > (In reply to Emily Lamancusa (emlam) from comment #13) > > variables within this link all need to use the uri filter, not html or KohaDates. > > Thanks for this info. I got this from copying the link formatting from the > Actions drop down link (line 109) for close because the data-referer wasn't > working because it was url encoded. It needed to be encoded before because > it used window.location.href for the redirect. > > Should I file a new bug to change the filters in those Actions links to use > uri instead of html? Ah...yes, those are wrong too, though I think | html and | uri give the same output if the data doesn't have any special characters? More importantly, use uri instead of $KohaDates in the referer link - otherwise, the redirect after performing the operation will break if the original search included dates. For example, you'll get an internal server error if you do the following without my follow-up: 1. Add some vendor invoices 2. Go to Acquisitions > Invoices 3. Specify search filters for shipment to/from dates (that match at least some of your invoices) and search for invoices 4. Select some invoices and click "Close selected invoices" --> Internal server error! "The given date <date> does not match the date format (iso)" There seem to be a lot of places in invoices.tt that are passing locally-formatted dates as parameters, but they've been that way for years...I wonder if the processing changed at some point? Or have the internal server errors just gone quietly unnoticed until now? =/ > > Also specify scalar context when splitting the input parameter > I need to read up on this and learn more Perl :) > > Thanks, Emily! :) Thank you too! Also full disclosure, it helps to have a general understanding of what scalar context vs list context means in Perl...but mostly I caught that last bit because I found bug 29771 while checking if we had precedent for sending multiple values as a single comma-separated parameter. Pushed for 25.05! Well done everyone, thank you! It would be great if this could be backported to 24.11. Closing invoices individually takes significantly longer. Seconding Greenville's desire to see this backported. This loss of functionality negatively affected our workflow, so we'd love to get it back ASAP. Thanks! Nice work everyone! Pushed to 24.11.x for 24.11.02 |