[Koha-cvs] koha/C4 Circulation.pm

Chris Cormack crc at liblime.com
Mon Jul 2 01:56:44 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Chris Cormack <rangi>	07/07/01 23:56:44

Modified files:
	C4             : Circulation.pm 

Log message:
	Making transferbook update the last seen date of the item transfered

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Circulation.pm?cvsroot=koha&r1=1.28&r2=1.29

Patches:
Index: Circulation.pm
===================================================================
RCS file: /sources/koha/koha/C4/Circulation.pm,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- Circulation.pm	30 May 2007 09:12:36 -0000	1.28
+++ Circulation.pm	1 Jul 2007 23:56:43 -0000	1.29
@@ -17,7 +17,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: Circulation.pm,v 1.28 2007/05/30 09:12:36 tipaul Exp $
+# $Id: Circulation.pm,v 1.29 2007/07/01 23:56:43 rangi Exp $
 
 use strict;
 require Exporter;
@@ -45,7 +45,7 @@
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.28 $' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.29 $' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
 
 =head1 NAME
 
@@ -275,6 +275,7 @@
 
         # don't need to update MARC anymore, we do it in batch now
         $messages->{'WasTransfered'} = 1;
+		ModDateLastSeen( $itemnumber );
     }
     return ( $dotransfer, $messages, $biblio );
 }





More information about the Koha-cvs mailing list