Bug 26114: ILL should mark status=RET only if a return happened
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 31 Jul 2020 14:14:20 +0000 (11:14 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 13 Aug 2020 08:15:33 +0000 (10:15 +0200)
The original code assumed every codepath should be trated as a
successful check-in. Such is not the case and the regression tests
verify that the code acknowledges this.

To test:
1. Apply the regression tests patch
2. Run:
   $ kshell
  k$ prove t/db_dependent/Illrequests.t
=> FAIL: Tests fail
3. Apply this patch
4. Repeat 2
=> SUCCESS: Tests pass!
5. Sign off :-D

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

C4/Circulation.pm

index 6297286..f530d92 100644 (file)
@@ -2201,7 +2201,7 @@ sub AddReturn {
 
     # Check if this item belongs to a biblio record that is attached to an
     # ILL request, if it is we need to update the ILL request's status
-    if (C4::Context->preference('CirculateILL')) {
+    if ( $doreturn and C4::Context->preference('CirculateILL')) {
         my $request = Koha::Illrequests->find(
             { biblio_id => $item->biblio->biblionumber }
         );