Bugzilla – Attachment 111789 Details for
Bug 26698
Hold can show as waiting and in transit at the same time
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26698: Use is_at_destination to determine if hold is at destination
Bug-26698-Use-isatdestination-to-determine-if-hold.patch (text/plain), 2.06 KB, created by
Nick Clemens (kidclamp)
on 2020-10-15 19:28:15 UTC
(
hide
)
Description:
Bug 26698: Use is_at_destination to determine if hold is at destination
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2020-10-15 19:28:15 UTC
Size:
2.06 KB
patch
obsolete
>From c7e2e57f75d0a46111fe15059e8cdaab21955a0f Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Thu, 15 Oct 2020 19:24:24 +0000 >Subject: [PATCH] Bug 26698: Use is_at_destination to determine if hold is at > destination > >This copies code from bug 12556 and uses a Koha::Hold method rather than >code in script > >TO test: >1 - Place a hold for item from library B for delivery at library A >2 - Check the item in at library B, confirm and transfer >3 - Check item in at Library A but ignore the hold >4 - View the Holds tab of the details page: > http://localhost:8081/cgi-bin/koha/reserve/request.pl?biblionumber=6 >5 - Priority = "In transit" Pickup Library = "Item waiting at" >6 - Apply patch >7 - Restart all the thigns >8 - Reload the page >9 - Priority="In transit" and Pickup library="Item being transferred" >--- > reserve/request.pl | 12 +----------- > 1 file changed, 1 insertion(+), 11 deletions(-) > >diff --git a/reserve/request.pl b/reserve/request.pl >index 5b050ce02b..7a57dd887f 100755 >--- a/reserve/request.pl >+++ b/reserve/request.pl >@@ -662,17 +662,7 @@ foreach my $biblionumber (@biblionumbers) { > $reserve{'wbrcode'} = $res->branchcode(); > $reserve{'itemnumber'} = $res->itemnumber(); > $reserve{'wbrname'} = $res->branch()->branchname(); >- >- if ( $reserve{'holdingbranch'} eq $reserve{'wbrcode'} ) { >- >- # Just because the holdingbranch matches the reserve branch doesn't mean the item >- # has arrived at the destination, check for an open transfer for the item as well >- my ( $transfertwhen, $transfertfrom, $transferto ) = >- C4::Circulation::GetTransfers( $res->itemnumber() ); >- if ( not $transferto or $transferto ne $res->branchcode() ) { >- $reserve{'atdestination'} = 1; >- } >- } >+ $reserve{'atdestination'} = $res->is_at_destination(); > > # set found to 1 if reserve is waiting for patron pickup > $reserve{'found'} = $res->is_found(); >-- >2.11.0
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 26698
:
111789
|
114486
|
115019