Bugzilla – Attachment 17936 Details for
Bug 10166
Can't place holds on multiple titles if one or more are un-holdable
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10166 - Can't place holds on multiple titles if one or more are un-holdable
Bug-10166---Cant-place-holds-on-multiple-titles-if.patch (text/plain), 2.97 KB, created by
Kyle M Hall (khall)
on 2013-05-03 17:01:26 UTC
(
hide
)
Description:
Bug 10166 - Can't place holds on multiple titles if one or more are un-holdable
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2013-05-03 17:01:26 UTC
Size:
2.97 KB
patch
obsolete
>From eab0cae7caf355159be7eea74c5b34821a77d1dd Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Wed, 1 May 2013 14:22:50 -0400 >Subject: [PATCH] Bug 10166 - Can't place holds on multiple titles if one or more are un-holdable > >opac-reserve.pl tries to check whether all selected titles in a >multiple-hold batch are unavailable to be placed on hold. However, the >logic is flawed in such a way that if the last item in the batch cannot >be placed on hold the script assumes none can be placed on hold. > >This patch modifies the way the script tracks the "no titles available >for holds" variable in order to correct the error. > >To test, place multiple holds by selecting titles from a list of search >results. Test three conditions: > >- All titles are available to be placed on hold > > You should see no onscreen warnings, and all titles should be > selectable on the place hold screen. A "Place hold" button should > appear at the bottom. > >- Some titles can be placed on hold, some cannot > > The titles which can be placed on hold should be selectable. > Titles which cannot be placed on hold should show a warning > message. A "Place hold" button should appear at the bottom. > >- No titles can be placed on hold > > "Sorry, none of these items can be placed on hold." should appear at > the top of the page. All titles should appear with warning messages. > There should be no "Place hold" button. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > opac/opac-reserve.pl | 10 ++++------ > 1 files changed, 4 insertions(+), 6 deletions(-) > >diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl >index e725d30..c6e05f5 100755 >--- a/opac/opac-reserve.pl >+++ b/opac/opac-reserve.pl >@@ -349,7 +349,7 @@ my $notforloan_label_of = get_notforloan_label_of(); > my $biblioLoop = []; > my $numBibsAvailable = 0; > my $itemdata_enumchron = 0; >-my $anyholdable; >+my $anyholdable = 0; > my $itemLevelTypes = C4::Context->preference('item-level_itypes'); > $template->param('item_level_itypes' => $itemLevelTypes); > >@@ -526,26 +526,24 @@ foreach my $biblioNum (@biblionumbers) { > $numBibsAvailable++; > $biblioLoopIter{bib_available} = 1; > $biblioLoopIter{holdable} = 1; >- $anyholdable = 1; > } > if ($biblioLoopIter{already_reserved}) { > $biblioLoopIter{holdable} = undef; >- $anyholdable = undef; > } > if(not CanBookBeReserved($borrowernumber,$biblioNum)){ > $biblioLoopIter{holdable} = undef; >- $anyholdable = undef; > } > if(not C4::Context->preference('AllowHoldsOnPatronsPossessions') and CheckIfIssuedToPatron($borrowernumber,$biblioNum)) { > $biblioLoopIter{holdable} = undef; > $biblioLoopIter{already_patron_possession} = 1; >- $anyholdable = undef; > } > >+ if( $biblioLoopIter{holdable} ){ $anyholdable = 1; } >+ > push @$biblioLoop, \%biblioLoopIter; > } > >-if ( $numBibsAvailable == 0 || !$anyholdable) { >+if ( $numBibsAvailable == 0 || $anyholdable == 0) { > $template->param( none_available => 1 ); > } > >-- >1.7.2.5
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 10166
:
17872
|
17873
|
17936
|
17947
|
18167
|
18395
|
18989