Bugzilla – Attachment 64869 Details for
Bug 17680
C4::Circulation - Replace GetItemIssue with Koha::Checkouts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17680: Fix regression - is_overdue must be called
Bug-17680-Fix-regression---isoverdue-must-be-calle.patch (text/plain), 805 bytes, created by
Jonathan Druart
on 2017-07-06 19:05:21 UTC
(
hide
)
Description:
Bug 17680: Fix regression - is_overdue must be called
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2017-07-06 19:05:21 UTC
Size:
805 bytes
patch
obsolete
>From 930f5d9123cf18a5e7f9f0abe4e901684bf773a3 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 14 Jun 2017 10:48:29 -0300 >Subject: [PATCH] Bug 17680: Fix regression - is_overdue must be called > >is_overdue must be called even if there is not dropbox date (!) >--- > C4/Circulation.pm | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 4a27c3ba77..8ee7e6ee21 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -1930,6 +1930,8 @@ sub AddReturn { > > $circControlBranch = _GetCircControlBranch($item,$borrower); > $is_overdue = $issue->is_overdue( $dropboxdate ); >+ } else { >+ $is_overdue = $issue->is_overdue; > } > > if ($borrowernumber) { >-- >2.11.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 17680
:
57787
|
57788
|
57789
|
57847
|
58431
|
58432
|
58433
|
58501
|
58918
|
58919
|
58920
|
61761
|
61762
|
61763
|
62034
|
62086
|
62102
|
62103
|
62104
|
64257
|
64258
|
64259
|
64284
|
64337
|
64805
|
64806
|
64807
|
64833
|
64866
|
64867
|
64868
|
64869
|
64870
|
64871
|
64925
|
64926
|
64927
|
64928
|
64929
|
64930
|
64931
|
65302
|
65310