From ccde2125fdbd5821f894c37771e16174d73a43a8 Mon Sep 17 00:00:00 2001 From: Brendan Lawlor 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 --- 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 da34a34669..a3c9d73f1b 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.39.5