Bugzilla – Attachment 37721 Details for
Bug 13919
Renewal possible with item level hold on item
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13919 - Renewal possible with item level hold on item
Bug-13919---Renewal-possible-with-item-level-hold-.patch (text/plain), 4.93 KB, created by
Nicolas Legrand
on 2015-04-13 11:06:13 UTC
(
hide
)
Description:
Bug 13919 - Renewal possible with item level hold on item
Filename:
MIME Type:
Creator:
Nicolas Legrand
Created:
2015-04-13 11:06:13 UTC
Size:
4.93 KB
patch
obsolete
>From a66484fcf601efe5ea47517343cb6bb9302067cc Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 30 Mar 2015 10:16:31 -0400 >Subject: [PATCH] Bug 13919 - Renewal possible with item level hold on item > >Test Plan: >1) Apply this patch >2) Enable AllowRenewalIfOtherItemsAvailable >3) Check out an item from a record with multiple holdable items >4) Place an item level hold on the checked out item >5) Verify the item can not be renewed from the opac > >Signed-off-by: Nicolas Legrand <nicolas.legrand@bulac.fr> >--- > C4/Circulation.pm | 87 +++++++++++++++++++++++++++++------------------------ > 1 file changed, 47 insertions(+), 40 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index a8c8c08..780a239 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -2668,53 +2668,60 @@ sub CanBookBeRenewed { > { > my $schema = Koha::Database->new()->schema(); > >- # Get all other items that could possibly fill reserves >- my @itemnumbers = $schema->resultset('Item')->search( >- { >- biblionumber => $resrec->{biblionumber}, >- onloan => undef, >- -not => { itemnumber => $itemnumber } >- }, >- { columns => 'itemnumber' } >- )->get_column('itemnumber')->all(); >- >- # Get all other reserves that could have been filled by this item >- my @borrowernumbers; >- while (1) { >- my ( $reserve_found, $reserve, undef ) = >- C4::Reserves::CheckReserves( $itemnumber, undef, undef, >- \@borrowernumbers ); >- >- if ($reserve_found) { >- push( @borrowernumbers, $reserve->{borrowernumber} ); >- } >- else { >- last; >- } >+ my $item_holds = $schema->resultset('Reserve')->search( { itemnumber => $itemnumber, found => undef } )->count(); >+ if ($item_holds) { >+ # There is an item level hold on this item, no other item can fill the hold >+ $resfound = 1; > } >+ else { > >- # If the count of the union of the lists of reservable items for each borrower >- # is equal or greater than the number of borrowers, we know that all reserves >- # can be filled with available items. We can get the union of the sets simply >- # by pushing all the elements onto an array and removing the duplicates. >- my @reservable; >- foreach my $b (@borrowernumbers) { >- my ( $borr ) = C4::Members::GetMemberDetails( $b ); >- foreach my $i (@itemnumbers) { >- my $item = GetItem($i); >- if ( IsAvailableForItemLevelRequest($item, $borr) >- && CanItemBeReserved( $b, $i ) >- && !IsItemOnHoldAndFound($i) ) >+ # Get all other items that could possibly fill reserves >+ my @itemnumbers = $schema->resultset('Item')->search( > { >- push( @reservable, $i ); >+ biblionumber => $resrec->{biblionumber}, >+ onloan => undef, >+ -not => { itemnumber => $itemnumber } >+ }, >+ { columns => 'itemnumber' } >+ )->get_column('itemnumber')->all(); >+ >+ # Get all other reserves that could have been filled by this item >+ my @borrowernumbers; >+ while (1) { >+ my ( $reserve_found, $reserve, undef ) = >+ C4::Reserves::CheckReserves( $itemnumber, undef, undef, \@borrowernumbers ); >+ >+ if ($reserve_found) { >+ push( @borrowernumbers, $reserve->{borrowernumber} ); >+ } >+ else { >+ last; >+ } >+ } >+ >+ # If the count of the union of the lists of reservable items for each borrower >+ # is equal or greater than the number of borrowers, we know that all reserves >+ # can be filled with available items. We can get the union of the sets simply >+ # by pushing all the elements onto an array and removing the duplicates. >+ my @reservable; >+ foreach my $b (@borrowernumbers) { >+ my ($borr) = C4::Members::GetMemberDetails($b); >+ foreach my $i (@itemnumbers) { >+ my $item = GetItem($i); >+ if ( IsAvailableForItemLevelRequest( $item, $borr ) >+ && CanItemBeReserved( $b, $i ) >+ && !IsItemOnHoldAndFound($i) ) >+ { >+ push( @reservable, $i ); >+ } > } > } >- } > >- @reservable = uniq(@reservable); >+ @reservable = uniq(@reservable); > >- if ( @reservable >= @borrowernumbers ) { >- $resfound = 0; >+ if ( @reservable >= @borrowernumbers ) { >+ $resfound = 0; >+ } > } > } > >-- >1.7.10.4
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 13919
:
37376
|
37377
|
37721
|
37722
|
37729
|
38307
|
38308
|
38315
|
38377
|
38378
|
38379