[Koha-cvs] koha circcirculation.pl updater/updatedatabase

Chris Cormack chris at katipo.co.nz
Wed Jun 21 00:35:47 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Chris Cormack <rangi>	06/06/20 22:35:47

Modified files:
	circ           : circulation.pl 
	updater        : updatedatabase 

Log message:
	Code to allow the associated borrowers to work

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/circ/circulation.pl?cvsroot=koha&r1=1.95&r2=1.96
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&r1=1.148&r2=1.149

Patches:
Index: circ/circulation.pl
===================================================================
RCS file: /sources/koha/koha/circ/circulation.pl,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -b -r1.95 -r1.96
--- circ/circulation.pl	7 Jun 2006 04:13:22 -0000	1.95
+++ circ/circulation.pl	20 Jun 2006 22:35:47 -0000	1.96
@@ -89,6 +89,7 @@
 my $print; 
 $env{'branchcode'}= $branch;
 $env{'printer'}= $printer;
+$env{'organisation'} = $organisation;
 # $env{'queue'}=$printer;
 
 my @datearr = localtime(time());

Index: updater/updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -b -r1.148 -r1.149
--- updater/updatedatabase	17 Jun 2006 22:12:01 -0000	1.148
+++ updater/updatedatabase	20 Jun 2006 22:35:47 -0000	1.149
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.148 2006/06/17 22:12:01 rangi Exp $
+# $Id: updatedatabase,v 1.149 2006/06/20 22:35:47 rangi Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -175,6 +175,10 @@
 	                        datereviewed datetime,
 	                        PRIMARY KEY (reviewid)
 	                        )",
+       borrowers_to_borrowers  => "(
+	                        borrower1 integer,
+	                        borrower2 integer
+	                        )",
 
 );
 
@@ -1793,6 +1797,9 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.149  2006/06/20 22:35:47  rangi
+# Code to allow the associated borrowers to work
+#
 # Revision 1.148  2006/06/17 22:12:01  rangi
 # Adding id field to reviews table
 #





More information about the Koha-cvs mailing list