Bugzilla – Attachment 172566 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), 2.38 KB, created by
Kyle M Hall (khall)
on 2024-10-09 11:00:50 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:
2024-10-09 11:00:50 UTC
Size:
2.38 KB
patch
obsolete
>From 4128524e083f400abee0293f3c59379ec52c3be2 Mon Sep 17 00:00:00 2001 >From: Lari Strand <lari.strand@koha-suomi.fi> >Date: Fri, 4 Oct 2024 15:18:29 +0300 >Subject: [PATCH] Bug 32934: Correctly honor the no block due date for SIP > checkout messages > >Signed-off-by: Brendan Lawlor <blawlor@clamsnet.org> >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > C4/Circulation.pm | 10 +++++----- > C4/SIP/ILS/Transaction/Checkout.pm | 6 ++++-- > 2 files changed, 9 insertions(+), 7 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index bd8ecfc58fa..266ef57b2b6 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -4263,7 +4263,7 @@ sub ProcessOfflineOperation { > if ( $operation->{action} eq 'return' ) { > $report = ProcessOfflineReturn( $operation ); > } elsif ( $operation->{action} eq 'issue' ) { >- $report = ProcessOfflineIssue( $operation ); >+ ( $report ) = ProcessOfflineIssue( $operation ); > } elsif ( $operation->{action} eq 'payment' ) { > $report = ProcessOfflinePayment( $operation ); > } >@@ -4321,15 +4321,15 @@ sub ProcessOfflineIssue { > $operation->{timestamp}, > ); > } >- AddIssue( >+ my $checkout = AddIssue( > $patron, >- $operation->{'barcode'}, >- undef, >+ $operation->{barcode}, >+ $operation->{due_date}, > undef, > $operation->{timestamp}, > undef, > ); >- return "Success."; >+ return ( "Success.", $checkout ); > } else { > return "Borrower not found."; > } >diff --git a/C4/SIP/ILS/Transaction/Checkout.pm b/C4/SIP/ILS/Transaction/Checkout.pm >index b27fcbe4ff3..78ee828db8b 100644 >--- a/C4/SIP/ILS/Transaction/Checkout.pm >+++ b/C4/SIP/ILS/Transaction/Checkout.pm >@@ -152,11 +152,13 @@ sub do_checkout { > > if ( $no_block_due_date ) { > $overridden_duedate = $no_block_due_date; >- ProcessOfflineIssue({ >+ my ( $msg, $checkout ) = ProcessOfflineIssue({ > cardnumber => $patron->cardnumber, > barcode => $barcode, >- timestamp => $no_block_due_date, >+ due_date => $no_block_due_date, >+ timestamp => dt_from_string, > }); >+ $self->{due} = $self->duedatefromissue($checkout, $itemnumber); > } else { > # can issue > my $recall_id; >-- >2.39.5 (Apple Git-154)
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