Code to allow the associated borrowers to work
authorrangi <rangi>
Tue, 20 Jun 2006 22:35:47 +0000 (22:35 +0000)
committerrangi <rangi>
Tue, 20 Jun 2006 22:35:47 +0000 (22:35 +0000)
circ/circulation.pl
updater/updatedatabase

index 4647b2c..082d70c 100755 (executable)
@@ -89,6 +89,7 @@ my %env; # FIXME env is used as an "environment" variable. Could be dropped prob
 my $print; 
 $env{'branchcode'}= $branch;
 $env{'printer'}= $printer;
+$env{'organisation'} = $organisation;
 # $env{'queue'}=$printer;
 
 my @datearr = localtime(time());
index 76aadef..5d298c0 100755 (executable)
@@ -175,6 +175,10 @@ my %requiretables = (
                                datereviewed datetime,
                                PRIMARY KEY (reviewid)
                                )",
+       borrowers_to_borrowers  => "(
+                               borrower1 integer,
+                               borrower2 integer
+                               )",
 
 );
 
@@ -1793,6 +1797,9 @@ sub MARCgetitem {
 exit;
 
 # $Log$
+# 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
 #