Bugzilla – Attachment 149130 Details for
Bug 32627
Reprinting holds slips should not reset the expiration date
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32627: Calculate expirationdate relative to waitingdate
Bug-32627-Calculate-expirationdate-relative-to-wai.patch (text/plain), 2.36 KB, created by
Emily Lamancusa (emlam)
on 2023-04-04 14:58:25 UTC
(
hide
)
Description:
Bug 32627: Calculate expirationdate relative to waitingdate
Filename:
MIME Type:
Creator:
Emily Lamancusa (emlam)
Created:
2023-04-04 14:58:25 UTC
Size:
2.36 KB
patch
obsolete
>From 5bef6f0154a11182042e1d4570038ca691b3ec1c Mon Sep 17 00:00:00 2001 >From: emlam <emily.lamancusa@montgomerycountymd.gov> >Date: Wed, 5 Apr 2023 09:30:30 -0400 >Subject: [PATCH] Bug 32627: Calculate expirationdate relative to waitingdate > >Hold::set_waiting should calculate the MaxPickupDelay expiration date >based on waitingdate rather than the current date, to avoid resetting >the expirationdate on a hold that was already waiting. > >To test: >1. Place a hold and check in the item so the hold will be set to Waiting >2. Confirm that the expiration date is correct based on the > ReservesMaxPickupDelay setting >3. Adjust your system clock to one day later >4. Check in the item again and confirm the hold >5. Note that the expiration date has changed >7. Apply patch and restart_all >8. Repeat steps 1-4. Confirm that the expiration date is calculated > correctly, and does not change when the item is checked in again >9. Reset your system clock to the current date >10. Set ExcludeHolidaysFromMaxPickupDelay to Use the Calendar >11. Add an upcoming holiday to the calendar >12. Repeat steps 1-4. Confirm the expiration date correctly accounts for > the holiday, and does not change when the item is checked in again >--- > Koha/Hold.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/Hold.pm b/Koha/Hold.pm >index a5a9d03003..d832c2097b 100644 >--- a/Koha/Hold.pm >+++ b/Koha/Hold.pm >@@ -231,7 +231,7 @@ sub set_waiting { > my $max_pickup_delay = C4::Context->preference("ReservesMaxPickUpDelay"); > my $cancel_on_holidays = C4::Context->preference('ExpireReservesOnHolidays'); > >- my $new_expiration_date = $today->clone->add(days => $max_pickup_delay); >+ my $new_expiration_date = dt_from_string($self->waitingdate)->clone->add( days => $max_pickup_delay ); > > if ( C4::Context->preference("ExcludeHolidaysFromMaxPickUpDelay") ) { > my $itemtype = $self->item ? $self->item->effective_itemtype : $self->biblio->itemtype; >@@ -244,7 +244,7 @@ sub set_waiting { > ); > my $calendar = Koha::Calendar->new( branchcode => $self->branchcode, days_mode => $daysmode ); > >- $new_expiration_date = $calendar->days_forward( dt_from_string(), $max_pickup_delay ); >+ $new_expiration_date = $calendar->days_forward( dt_from_string($self->waitingdate), $max_pickup_delay ); > } > > # If patron's requested expiration date is prior to the >-- >2.34.1
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 32627
:
149130
|
149148
|
149245
|
150403