@@ -, +, @@ transfers --- C4/Circulation.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -3376,7 +3376,9 @@ sub GetTransfersFromTo { FROM branchtransfers WHERE frombranch=? AND tobranch=? + AND datesent IS NOT NULL AND datearrived IS NULL + AND datecancelled IS NULL "; my $sth = $dbh->prepare($query); $sth->execute( $frombranch, $tobranch ); --