From ba52d15f7bbdb12da105a57b39d98129a048d904 Mon Sep 17 00:00:00 2001 From: rangi Date: Sun, 1 Jul 2007 23:56:43 +0000 Subject: [PATCH] Making transferbook update the last seen date of the item transfered --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index dcedd0781e..77760792c1 100755 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -275,6 +275,7 @@ sub transferbook { # don't need to update MARC anymore, we do it in batch now $messages->{'WasTransfered'} = 1; + ModDateLastSeen( $itemnumber ); } return ( $dotransfer, $messages, $biblio ); } -- 2.20.1