[Koha-patches] [PATCH] Revert "(bug #3025) multiple check-in of a multiple times reserved item go wrong"

Ryan Higgins rch at liblime.com
Thu May 7 20:19:04 CEST 2009


This reverts commit 257a439dafa33d0c642f1ec7badedb5414027e64.
This patch causes Bug 3195 .
---
 C4/Reserves.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/C4/Reserves.pm b/C4/Reserves.pm
index a8e3070..30a054b 100644
--- a/C4/Reserves.pm
+++ b/C4/Reserves.pm
@@ -363,7 +363,7 @@ sub GetOtherReserves {
     my $messages;
     my $nextreservinfo;
     my ( $restype, $checkreserves ) = CheckReserves($itemnumber);
-    if ($checkreserves and $restype ne "Waiting" ) {
+    if ($checkreserves) {
         my $iteminfo = GetItem($itemnumber);
         if ( $iteminfo->{'holdingbranch'} ne $checkreserves->{'branchcode'} ) {
             $messages->{'transfert'} = $checkreserves->{'branchcode'};
-- 
1.5.6.2



More information about the Koha-patches mailing list