Bugzilla – Attachment 18315 Details for
Bug 10311
Holds queue ignores item-level holds where only one items exists
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10311 - Holds queue ignores item-level holds where only one items exists
Bug-10311---Holds-queue-ignores-item-level-holds-w.patch (text/plain), 1.33 KB, created by
Kyle M Hall (khall)
on 2013-05-22 13:55:04 UTC
(
hide
)
Description:
Bug 10311 - Holds queue ignores item-level holds where only one items exists
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2013-05-22 13:55:04 UTC
Size:
1.33 KB
patch
obsolete
>From 696014ff771f6a38f096d29348e8eea79a7e1f32 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 22 May 2013 09:52:40 -0400 >Subject: [PATCH] Bug 10311 - Holds queue ignores item-level holds where only one items exists > >If a record has only one item, and that item has one item-level hold on >it, that hold will not show in the holds queue. > >Test Plan: >1) Create 1 record with 1 item at BranchA >2) Create an item-level hold for that item, for pickup at BranchA by a > patron of BranchA >3) Run build_holds_queue.pl >4) View the holds queue for BranchA >5) Note the hold is not in there >6) Apply this patch >7) Re-run build_holds_queue.pl >8) View the holds queue again >9) Not that the hold is now there >--- > C4/HoldsQueue.pm | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/C4/HoldsQueue.pm b/C4/HoldsQueue.pm >index dc43113..2052f09 100755 >--- a/C4/HoldsQueue.pm >+++ b/C4/HoldsQueue.pm >@@ -406,7 +406,7 @@ sub MapItemsToHoldRequests { > push @{ $items_by_branch{ $item->{holdingbranch} } }, $item > unless exists $allocated_items{ $item->{itemnumber} }; > } >- return unless keys %items_by_branch; >+ return \%item_map unless keys %items_by_branch; > > # now handle the title-level requests > $num_items_remaining = scalar(@$available_items) - scalar(keys %allocated_items); >-- >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 10311
:
18315
|
18359
|
18778