Bugzilla – Attachment 65150 Details for
Bug 18958
If patron has multiple record level holds on one record transferring first hold causes next hold to become item level
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18958 - If patron has multiple record level holds on one record transferring first hold causes next hold to become item level
Bug-18958---If-patron-has-multiple-record-level-ho.patch (text/plain), 2.93 KB, created by
Kyle M Hall (khall)
on 2017-07-20 15:08:23 UTC
(
hide
)
Description:
Bug 18958 - If patron has multiple record level holds on one record transferring first hold causes next hold to become item level
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-07-20 15:08:23 UTC
Size:
2.93 KB
patch
obsolete
>From 7de026fc17a547d660d6009b3144346b960ae0b6 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Wed, 19 Jul 2017 08:06:56 -0700 >Subject: [PATCH] Bug 18958 - If patron has multiple record level holds on one > record transferring first hold causes next hold to become item level > >Imagine you have a record with 3 items, each item is held by LibraryA, LibraryB and LibraryC respectively. Now, a patron places to record level holds for pickup at LibraryD. When any of the items are checked in, that item is trapped to fill the first hold, but a side affect is that the next open hold because item level for the item that was just checked in! > >This is clearly incorrect and prevents the patron from placing more record level holds on the record. > >Test Plan: >1. Create and use a patron that can place multiple record level holds per record >2. Create a record with X items, each at a different library >3. Place X 'Next available' holds on the record for the patron using the 'Holds to place' box >4. Rebuild the holds queue >5. Check in LibraryA's copy as LibraryA and confirm the hold >6. Revisit request.pl for the record, notice the next hold in line is now item-specific >7. Attempt to place another hold for your patron, notice that it requires an item-specific hold >8. Apply this patch >9. Repeat steps 1-4 >10. Revisit request.pl for the record, notice the next hold in line has *not* become item-specific >--- > circ/returns.pl | 21 +-------------------- > 1 file changed, 1 insertion(+), 20 deletions(-) > >diff --git a/circ/returns.pl b/circ/returns.pl >index 26286e8..f780f13 100755 >--- a/circ/returns.pl >+++ b/circ/returns.pl >@@ -165,26 +165,7 @@ if ( $query->param('reserve_id') ) { > # diffBranchSend tells ModReserveAffect whether document is expected in this library or not, > # i.e., whether to apply waiting status > ModReserveAffect( $itemnumber, $borrowernumber, $diffBranchSend, $reserve_id ); >- } >-# check if we have other reserves for this document, if we have a return send the message of transfer >- my ( $messages, $nextreservinfo ) = GetOtherReserves($itemnumber); >- >- my $patron = Koha::Patrons->find( $nextreservinfo ); >- my $name = $patron->surname . ", " . $patron->title . " " . $patron->firstname; >- if ( $messages->{'transfert'} ) { >- $template->param( >- itemtitle => $biblio->title, >- itemnumber => $item->itemnumber, >- itembiblionumber => $biblio->biblionumber, >- iteminfo => $biblio->author, >- name => $name, >- borrowernumber => $borrowernumber, >- borcnum => $patron->cardnumber, >- borfirstname => $patron->firstname, >- borsurname => $patron->surname, >- borcategory => $patron->category->description, >- diffbranch => 1, >- ); >+ ModItemTransfer( $itemnumber, $userenv_branch, $diffBranchSend ) if $diffBranchSend; > } > } > >-- >2.10.2
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 18958
:
65104
|
65150
|
65184
|
71164
|
71232
|
72210
|
72211
|
72348
|
72349
|
92159
|
92160
|
93106
|
93107
|
93108
|
93111
|
93112
|
93113
|
93216
|
93217
|
93218
|
107576
|
107577
|
107582
|
107584
|
107585
|
107586
|
108256
|
108274
|
108473
|
108474
|
108497
|
108499
|
108500
|
108936
|
108937
|
109061
|
109222
|
109640
|
109641
|
109642
|
109643
|
109644
|
109645