koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha C4/Biblio.pm misc/fines2.pl


From: Bruno Toumi
Subject: [Koha-cvs] koha C4/Biblio.pm misc/fines2.pl
Date: Wed, 12 Jul 2006 13:43:42 +0000

CVSROOT:        /sources/koha
Module name:    koha
Changes by:     Bruno Toumi <btoumi>    06/07/12 13:43:42

Modified files:
        C4             : Biblio.pm 
        misc           : fines2.pl 

Log message:
        bug fixing:
        Biblio.pm: add in export line  getbibliofromitemnumber function 
        fines2.pl:call to biblio.pm for use of getbibliofromitemnumber function 

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Biblio.pm?cvsroot=koha&r1=1.173&r2=1.174
http://cvs.savannah.gnu.org/viewcvs/koha/misc/fines2.pl?cvsroot=koha&r1=1.11&r2=1.12

Patches:
Index: C4/Biblio.pm
===================================================================
RCS file: /sources/koha/koha/C4/Biblio.pm,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -b -r1.173 -r1.174
--- C4/Biblio.pm        4 Jul 2006 14:36:51 -0000       1.173
+++ C4/Biblio.pm        12 Jul 2006 13:43:42 -0000      1.174
@@ -33,7 +33,7 @@
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.173 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.174 $' =~ /\d+/g;
                 shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
 
 @ISA = qw(Exporter);
@@ -56,6 +56,7 @@
   &getsubject &getaddauthor &getsubtitle
   &getwebbiblioitems &getwebsites
   &getbiblioitembybiblionumber
+  &getbibliofromitemnumber     
   &getbiblioitem &getitemsbybiblioitem
 
   &MARCfind_marc_from_kohafield
@@ -3139,8 +3140,13 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.173 2006/07/04 14:36:51 toins Exp $
+# $Id: Biblio.pm,v 1.174 2006/07/12 13:43:42 btoumi Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.174  2006/07/12 13:43:42  btoumi
+# bug fixing:
+# Biblio.pm: add in export line  getbibliofromitemnumber function
+# fines2.pl:call to biblio.pm for use of getbibliofromitemnumber function
+#
 # Revision 1.173  2006/07/04 14:36:51  toins
 # Head & rel_2_2 merged
 #

Index: misc/fines2.pl
===================================================================
RCS file: /sources/koha/koha/misc/fines2.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- misc/fines2.pl      22 Sep 2005 10:01:46 -0000      1.11
+++ misc/fines2.pl      12 Jul 2006 13:43:42 -0000      1.12
@@ -25,13 +25,14 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: fines2.pl,v 1.11 2005/09/22 10:01:46 tipaul Exp $
+# $Id: fines2.pl,v 1.12 2006/07/12 13:43:42 btoumi Exp $
 
 use C4::Context;
 use C4::Search;
 use C4::Circulation::Circ2;
 use C4::Circulation::Fines;
 use Date::Manip;
+use C4::Biblio;
 
 open (FILE,'>/tmp/fines') || die;
 # FIXME




reply via email to

[Prev in Thread] Current Thread [Next in Thread]