Bugzilla – Attachment 146450 Details for
Bug 32934
SIP checkouts using "no block" flag have a calculated due rather than the specified due date
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32934: Correctly honor the no block due date for SIP checkout messages
Bug-32934-Correctly-honor-the-no-block-due-date-fo.patch (text/plain), 1.37 KB, created by
Kyle M Hall (khall)
on 2023-02-09 19:58:28 UTC
(
hide
)
Description:
Bug 32934: Correctly honor the no block due date for SIP checkout messages
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2023-02-09 19:58:28 UTC
Size:
1.37 KB
patch
obsolete
>From 9bdfe4e36ede90a1432d410015671388e4e132a5 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Thu, 9 Feb 2023 14:56:01 -0500 >Subject: [PATCH] Bug 32934: Correctly honor the no block due date for SIP > checkout messages > >--- > C4/Circulation.pm | 4 ++-- > C4/SIP/ILS/Transaction/Checkout.pm | 3 ++- > 2 files changed, 4 insertions(+), 3 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 5255c69e26b..a355ddff5a5 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -4087,8 +4087,8 @@ sub ProcessOfflineIssue { > } > AddIssue( > $patron->unblessed, >- $operation->{'barcode'}, >- undef, >+ $operation->{barcode}, >+ $operation->{due_date}, > undef, > $operation->{timestamp}, > undef, >diff --git a/C4/SIP/ILS/Transaction/Checkout.pm b/C4/SIP/ILS/Transaction/Checkout.pm >index d9056f1c824..60b60bfbd35 100644 >--- a/C4/SIP/ILS/Transaction/Checkout.pm >+++ b/C4/SIP/ILS/Transaction/Checkout.pm >@@ -137,7 +137,8 @@ sub do_checkout { > ProcessOfflineIssue({ > cardnumber => $patron->cardnumber, > barcode => $barcode, >- timestamp => $no_block_due_date, >+ due_date => $no_block_due_date, >+ timestamp => dt_from_string, > }); > } else { > # can issue >-- >2.39.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 32934
:
146450
|
146467
|
162737
|
172389
|
172399
|
172566
|
172567