Bugzilla – Attachment 179192 Details for
Bug 39313
OpacTrustedCheckout self-checkout modal not checking out valid barcode
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39313: Make OpacTrustedCheckout self-checkout modal accept valid barcode
Bug-39313-Make-OpacTrustedCheckout-self-checkout-m.patch (text/plain), 2.05 KB, created by
Magnus Enger
on 2025-03-12 07:47:35 UTC
(
hide
)
Description:
Bug 39313: Make OpacTrustedCheckout self-checkout modal accept valid barcode
Filename:
MIME Type:
Creator:
Magnus Enger
Created:
2025-03-12 07:47:35 UTC
Size:
2.05 KB
patch
obsolete
>From 471a12188684a3ee3a9cd31bec4d2f6786ee973a Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleishaamohia@hotmail.com> >Date: Wed, 12 Mar 2025 03:45:30 +0000 >Subject: [PATCH] Bug 39313: Make OpacTrustedCheckout self-checkout modal > accept valid barcode > >This patch fixes a regression introduced by Bug 38505. > >To test: > >1. Enabled OpacTrustedCheckout system preference >2. Search for an item and get the barcode >3. Go to the OPAC >4. Click the Self-checkout button at the top >5. Enter the barcode and submit >6. Notice you are given an error UNKNOWN_BARCODE and the item is not checked out > >7. Apply the patch and restart services > >8. Repeat steps 4-6 and confirm you are able to successfully check out the item >9. Test submitting the modal with no barcode entered - confirm you are shown an appropriate error >10. Test with a fake barcode that does not exist - confirm you are shown an appropriate error > >11. Run tests to confirm no regressions >prove t/db_dependent/Circulation* >prove t/db_dependent/DecreaseLoanHighHolds.t >prove t/db_dependent/rollingloans.t >prove t/db_dependent/api/v1/checkouts.t >prove t/db_dependent/Patron/Borrower_PrevCheckout.t >prove t/db_dependent/Koha/ILL/Requests.t > >Sponsored-by: Reserve Bank of New Zealand >Signed-off-by: Magnus Enger <magnus@libriotech.no> >Works as advertised, including the tests. >--- > C4/Circulation.pm | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index d546bc04f3..31794b7c02 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -793,7 +793,10 @@ sub CanBookBeIssued { > my $onsite_checkout = $params->{onsite_checkout} || 0; > my $override_high_holds = $params->{override_high_holds} || 0; > >- my $item_object = !$barcode ? undef : $params->{item} // Koha::Items->find( { barcode => $barcode } ); >+ my $item_object = $params->{item}; >+ if ( !$item_object and $barcode ) { >+ $item_object = Koha::Items->find( { barcode => $barcode } ); >+ } > > # MANDATORY CHECKS - unless item exists, nothing else matters > unless ($item_object) { >-- >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 39313
:
179191
|
179192
|
179196
|
179296
|
179324
|
179327
|
179328