Bugzilla – Attachment 117205 Details for
Bug 27071
Hold pickup library match not enforced correctly on intranet when using hold groups
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27071: Code simplification
Bug-27071-Code-simplification.patch (text/plain), 2.48 KB, created by
Martin Renvoize (ashimema)
on 2021-02-23 13:41:01 UTC
(
hide
)
Description:
Bug 27071: Code simplification
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-02-23 13:41:01 UTC
Size:
2.48 KB
patch
obsolete
>From 3916d2e6a6dfc466eb0c9ab85592516f40da3de1 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 23 Nov 2020 15:52:56 +0100 >Subject: [PATCH] Bug 27071: Code simplification > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > C4/Reserves.pm | 4 ++-- > Koha/Library.pm | 18 ++---------------- > 2 files changed, 4 insertions(+), 18 deletions(-) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index a658646407..515659fd05 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -566,10 +566,10 @@ sub CanItemBeReserved { > unless ($item->can_be_transferred({ to => $destination })) { > return { status => 'cannotBeTransferred' }; > } >- unless ($branchitemrule->{hold_fulfillment_policy} ne 'holdgroup' || $item_library->validate_hold_sibling( {branchcode => $pickup_branchcode} )) { >+ if ($branchitemrule->{hold_fulfillment_policy} eq 'holdgroup' && !$item_library->validate_hold_sibling( {branchcode => $pickup_branchcode} )) { > return { status => 'pickupNotInHoldGroup' }; > } >- unless ($branchitemrule->{hold_fulfillment_policy} ne 'patrongroup' || Koha::Libraries->find({branchcode => $borrower->{branchcode}})->validate_hold_sibling({branchcode => $pickup_branchcode})) { >+ if ($branchitemrule->{hold_fulfillment_policy} eq 'patrongroup' && !Koha::Libraries->find({branchcode => $borrower->{branchcode}})->validate_hold_sibling({branchcode => $pickup_branchcode})) { > return { status => 'pickupNotInHoldGroup' }; > } > } >diff --git a/Koha/Library.pm b/Koha/Library.pm >index 62ec4ec49c..8dcb2bb48b 100644 >--- a/Koha/Library.pm >+++ b/Koha/Library.pm >@@ -243,23 +243,9 @@ sub validate_hold_sibling { > > return 1 if $params->{branchcode} eq $self->id; > >+ my $branchcode = $params->{branchcode}; > my @hold_libraries = $self->get_hold_libraries; >- >- foreach (@hold_libraries) { >- my $hold_library = $_; >- my $is_valid = 0; >- foreach my $key (keys %$params) { >- if ($hold_library->$key eq $params->{$key}) { >- $is_valid=1; >- last; >- } >- } >- if($is_valid) { >- #Found one library that meets all search parameters >- return 1; >- } >- } >- return 0; >+ return grep {$_->branchcode eq $branchcode} @hold_libraries; > } > > =head2 Internal methods >-- >2.20.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 27071
:
113928
|
113929
|
113963
|
116599
|
116600
|
116601
|
116602
|
116603
|
117140
|
117141
|
117142
|
117143
|
117144
|
117145
|
117184
|
117185
|
117186
|
117187
|
117188
|
117189
|
117204
| 117205 |
117206
|
117207
|
117208
|
117209