Bugzilla – Attachment 67660 Details for
Bug 19260
Reservations / holds marked as problems being seen as expired ones and deleted wrongly.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19260: Holds marked as problems being seen as expired ones and deleted wrongly
Bug-19260-Holds-marked-as-problems-being-seen-as-e.patch (text/plain), 1.62 KB, created by
Alex Buckley
on 2017-10-05 21:44:40 UTC
(
hide
)
Description:
Bug 19260: Holds marked as problems being seen as expired ones and deleted wrongly
Filename:
MIME Type:
Creator:
Alex Buckley
Created:
2017-10-05 21:44:40 UTC
Size:
1.62 KB
patch
obsolete
>From b811792c61a5d061d2489890a61b90477486e694 Mon Sep 17 00:00:00 2001 >From: Josef Moravec <josef.moravec@gmail.com> >Date: Thu, 5 Oct 2017 20:37:25 +0000 >Subject: [PATCH] Bug 19260: Holds marked as problems being seen as expired > ones and deleted wrongly > >Test plan: >0) Apply just the first patch - the one with test >1) Run t/db_dependent/Reserves.t - test for CancelExpiredReserves should >fail >2) Apply the second patch >3) t/db_dependent/Reserves.t should pass now > >Followed test plan, patch worked as described. Passes QA test tool > >Signed-off-by: Alex Buckley <alexbuckley@catalyst.net.nz> >--- > C4/Reserves.pm | 12 +++++++----- > 1 file changed, 7 insertions(+), 5 deletions(-) > >diff --git a/C4/Reserves.pm b/C4/Reserves.pm >index fbf03fb..3d011a6 100644 >--- a/C4/Reserves.pm >+++ b/C4/Reserves.pm >@@ -799,16 +799,18 @@ sub CancelExpiredReserves { > > my $today = dt_from_string(); > my $cancel_on_holidays = C4::Context->preference('ExpireReservesOnHolidays'); >+ my $expireWaiting = C4::Context->preference('ExpireReservesMaxPickUpDelay'); > > my $dbh = C4::Context->dbh; > > my $dtf = Koha::Database->new->schema->storage->datetime_parser; >+ >+ my $params = { expirationdate => { '<', $dtf->format_date($today) } }; >+ >+ $params->{found} = undef unless $expireWaiting; >+ > # FIXME To move to Koha::Holds->search_expired (?) >- my $holds = Koha::Holds->search( >- { >- expirationdate => { '<', $dtf->format_date($today) } >- } >- ); >+ my $holds = Koha::Holds->search( $params ); > > while ( my $hold = $holds->next ) { > my $calendar = Koha::Calendar->new( branchcode => $hold->branchcode ); >-- >2.1.4
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 19260
:
67428
|
67489
|
67653
|
67654
|
67659
|
67660
|
67677
|
67678
|
67679
|
67680
|
67733
|
67992
|
67993
|
67994
|
67995