Bugzilla – Attachment 98679 Details for
Bug 24620
Existing transfers not closed when hold is set to waiting
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24620: Close existing transfers when setting item to waiting
Bug-24620-Close-existing-transfers-when-setting-it.patch (text/plain), 1.70 KB, created by
Nick Clemens (kidclamp)
on 2020-02-10 18:24:05 UTC
(
hide
)
Description:
Bug 24620: Close existing transfers when setting item to waiting
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2020-02-10 18:24:05 UTC
Size:
1.70 KB
patch
obsolete
>From be9abdbf494df4640332bd12dd4d32069ab537b9 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Mon, 10 Feb 2020 18:19:07 +0000 >Subject: [PATCH] Bug 24620: Close existing transfers when setting item to > waiting > >This patch adds a clause in ModReserveAffect to check if there >are existing transfers and close them when setting a hold to waiting > >To test: > 1 - Set AutomaticItemReturn to Do > 2 - Checkin an item from Library B at Library A > 3 - Confirm item is in transfer (check the details page) > 4 - Place a item level hold for pickup at library A > 5 - Checkin the item at Library A > 6 - Confirm the hold > 7 - View the details page > 8 - Note the item is in transit and waiting > 9 - Apply patch >10 - Delete hold and repeat >11 - Confirm that transfer is closed when hold marked waiting >--- > C4/Reserves.pm | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index 8e6dca8a39..f3468f3770 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -1119,6 +1119,18 @@ sub ModReserveAffect { > _koha_notify_reserve( $hold->reserve_id ) > if ( !$transferToDo && !$already_on_shelf ); > >+ if( !$transferToDo ){ >+ _koha_notify_reserve( $hold->reserve_id ) unless $already_on_shelf; >+ my $transfers = Koha::Item::Transfers->search({ >+ itemnumber => $itemnumber, >+ datearrived => undef >+ }); >+ while( my $transfer = $transfers->next ){ >+ $transfer->datearrived( DateTime->now( time_zone => C4::Context->tz() ) )->store; >+ }; >+ } >+ >+ > _FixPriority( { biblionumber => $biblionumber } ); > my $item = Koha::Items->find($itemnumber); > if ( $item->location && $item->location eq 'CART' >-- >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 24620
:
98678
|
98679
|
98711
|
98805
|
100448
|
100451
|
102914
|
102915
|
102916
|
104437