Bugzilla – Attachment 171790 Details for
Bug 37966
When overriding a hold to renew a book the due date becomes "now" if not specified
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37966: When Renewing a book on hold, don't require the due date
0001-Bug-37966-When-Renewing-a-book-on-hold-don-t-require.patch (text/plain), 2.35 KB, created by
Michael Hafen
on 2024-09-19 18:33:10 UTC
(
hide
)
Description:
Bug 37966: When Renewing a book on hold, don't require the due date
Filename:
MIME Type:
Creator:
Michael Hafen
Created:
2024-09-19 18:33:10 UTC
Size:
2.35 KB
patch
obsolete
>From ad826b8a53d1a3fa65d9fa957312acbbeb356fbe Mon Sep 17 00:00:00 2001 >From: Michael Hafen <michael.hafen@washk12.org> >Date: Thu, 19 Sep 2024 12:26:30 -0600 >Subject: [PATCH] Bug 37966: When Renewing a book on hold, don't require the > due date >Content-Type: text/plain; charset="utf-8" > >When renewing a book on hold with the RenewalOnHoldOverride sys pref set >to "Allow", if the due date is not specified then it becomes "now". By >checking the input is set rather than just defined the due date is set as >expected based on circulation rules. >Also change the description of the RenewalOnHoldOverride sys pref as the >due date would no longer be required to be entered with this change. > >Test plan: >1. make sure RenewalOnHoldOverride is set to 'Allow' >2. check out a book, then place a title-level hold on it >3. renew the book, see the hold override dialog >4. leave the due date empty and hit the override button >5. observe the new due date is "now" >6. apply patch and restart plack >7. renew the book again, overriding the hold, and see the expected due date > as per circulation rules. >--- > C4/Circulation.pm | 2 +- > .../prog/en/modules/admin/preferences/circulation.pref | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 70ccd7fb54..74c6c4c331 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -3243,7 +3243,7 @@ sub AddRenewal { > > $borrowernumber ||= $issue->borrowernumber; > >- if ( defined $datedue && ref $datedue ne 'DateTime' ) { >+ if ( $datedue && ref $datedue ne 'DateTime' ) { > $datedue = dt_from_string($datedue, 'sql'); > } > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >index 317e4238ec..aa5ba94fe7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >@@ -217,7 +217,7 @@ Circulation: > choices: > 1: Allow > 0: "Don't allow" >- - staff to renew items that are on hold by manually specifying a due date. >+ - staff to renew items that are on hold. > - > - pref: AllowItemsOnHoldCheckoutSIP > choices: >-- >2.43.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 37966
:
171790
|
179490
|
180478