Bugzilla – Attachment 175595 Details for
Bug 38649
Searching for a patron from additem.pl triggers an issue slip to print
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38649: Fix autocheckout for circulation Fast Add only
Bug-38649-Fix-autocheckout-for-circulation-Fast-Ad.patch (text/plain), 2.07 KB, created by
Martin Renvoize (ashimema)
on 2024-12-17 08:09:03 UTC
(
hide
)
Description:
Bug 38649: Fix autocheckout for circulation Fast Add only
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-12-17 08:09:03 UTC
Size:
2.07 KB
patch
obsolete
>From 538f21b3643da96fcb2c807f5ed6451893fd3056 Mon Sep 17 00:00:00 2001 >From: Brendan Lawlor <blawlor@clamsnet.org> >Date: Fri, 6 Dec 2024 17:32:44 +0000 >Subject: [PATCH] Bug 38649: Fix autocheckout for circulation Fast Add only > >In addition to checking the referrer for the URL domain and path >we should also check the query string of the referrer to make sure >it was from a circulation fast add. > >It should include frameworkcode=FA&circborrowernumber > >To test: >1. From anywhere on the additem.pl page where you are adding or editing an item >2. Click on Checkout in the menu bar and enter a patron's barcode >3. When circulation.pl loads it triggers a blank issue slip to be printed >4. Apply patch and repeat steps 1-3, no slip is triggered to print >5. Go to Circulation Checkout for a patron and enter a non existing barcode like 1337 >6. Click '+ Add record using fast cataloging' >7. Fill in required fields and click 'Add item' >8. Confirm the item is auto checked out > >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index da34a346693..a3c9d73f1bb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -1149,7 +1149,7 @@ > > // Handle checkout for fast cataloging > // Check the referrer to prevent csrf, fill and submit form >- if(document.referrer.split('?')[0] === window.location.origin +'/cgi-bin/koha/cataloguing/additem.pl') { >+ if(document.referrer.split(window.location.origin + '/cgi-bin/koha/cataloguing/additem.pl?')[1].match(/frameworkcode=FA&circborrowernumber=/) ) { > let urlParams = new URLSearchParams(window.location.search); > let barcode = urlParams.get('barcode'); > $('#barcode').val(barcode); >-- >2.47.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 38649
:
175269
|
175275
| 175595