completed removal of breeding.pl; fixed location of help for import.pl
[koha_fer] / tools / import.pl
index 1f4f66d..07a4b10 100755 (executable)
@@ -1,7 +1,5 @@
 #!/usr/bin/perl
 
-# $Id$
-
 # Script for handling import of MARC data into Koha db
 #   and Z39.50 lookups
 
@@ -9,7 +7,6 @@
 
 # Licensed under the GPL
 
-
 # Copyright 2000-2002 Katipo Communications
 #
 # This file is part of Koha.
@@ -31,17 +28,21 @@ use strict;
 
 # standard or CPAN modules used
 use CGI;
+use MARC::File::USMARC;
 
 # Koha modules used
 use C4::Context;
-use C4::Interface::CGI::Output;
 use C4::Auth;
+use C4::Input;
+use C4::Output;
+use C4::Biblio;
 use C4::Breeding;
 
 #------------------
 # Constants
 
-
+my $includes = C4::Context->config('includes') ||
+       "/usr/local/www/hdl/htdocs/includes";
 
 # HTML colors for alternating lines
 my $lc1='#dddddd';
@@ -61,11 +62,11 @@ my $overwrite_biblio = $input->param('overwrite_biblio');
 my $filename = $input->param('filename');
 my $syntax = $input->param('syntax');
 my ($template, $loggedinuser, $cookie)
-       = get_template_and_user({template_name => "tools/breeding.tmpl",
+       = get_template_and_user({template_name => "tools/import.tmpl",
                                        query => $input,
                                        type => "intranet",
                                        authnotrequired => 0,
-                                       flagsrequired => {parameters => 1, management => 1, tools => 1},
+                                       flagsrequired => {tools => 1},
                                        debug => 1,
                                        });
 
@@ -76,7 +77,7 @@ if ($uploadmarc && length($uploadmarc)>0) {
        while (<$uploadmarc>) {
                $marcrecord.=$_;
        }
-       my ($notmarcrecord,$alreadyindb,$alreadyinfarm,$imported) = ImportBreeding($marcrecord,$overwrite_biblio,$filename,$syntax,"");
+       my ($notmarcrecord,$alreadyindb,$alreadyinfarm,$imported) = ImportBreeding($marcrecord,$overwrite_biblio,$filename,$syntax,int(rand(99999)), 'batch');
 
        $template->param(imported => $imported,
                                                        alreadyindb => $alreadyindb,
@@ -88,16 +89,41 @@ if ($uploadmarc && length($uploadmarc)>0) {
 }
 
 output_html_with_http_headers $input, $cookie, $template->output;
-my $menu;
-my $file;
 
 
 #---------------
 # log cleared, as marcimport is (almost) rewritten from scratch.
-# $Log$
-# Revision 1.2  2006/09/11 17:41:56  tgarip1957
-# New XML API
 #
-# Revision 1.2.4.1  2005/04/07 10:10:52  tipaul
-# copying processz3950queue from 2.0 branch. The 2.2 version misses an important fix
+# Revision 1.5  2007/04/24 13:54:30  hdl
+# functions that were in C4::Interface::CGI::Output are now in C4::Output.
+# So this implies quite a change for files.
+# Sorry about conflicts which will be caused.
+# directory Interface::CGI should now be dropped.
+# I noticed that many scripts (reports ones, but also some circ/stats.pl or opac-topissues) still use Date::Manip.
+#
+# Revision 1.4  2007/03/09 15:14:47  tipaul
+# rel_3_0 moved to HEAD
+#
+# Revision 1.1.2.4  2006/12/22 17:13:49  tipaul
+# removing "management" permission, that is useless (replaced by tools & admin)
+#
+# Revision 1.1.2.3  2006/12/18 16:35:20  toins
+# removing use HTML::Template from *.pl.
+#
+# Revision 1.1.2.2  2006/10/03 12:27:32  toins
+# the script was written twice into the file !
+#
+# Revision 1.1.2.1  2006/09/26 13:42:54  toins
+# fix wrong link to breeding.tmpl
+#
+# Revision 1.1  2006/02/24 11:52:38  hdl
+# Adding tools directory template and scripts
+# Changing barcodes, export and import and letters directory.
+# Changing export script name (marc.pl) to export.pl
+# Changing import script name (breeding.pl) to import.pl
+#
+# Revision 1.4  2005/05/04 08:52:13  tipaul
+# synch'ing 2.2 and head
 #
+# Revision 1.3  2005/03/23 09:57:47  doxulting
+# Adding a parameter to allow acces to people with management/tools flags