records appear in message body instead of in attached file
[koha.git] / acqui.simple / savebiblio.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use CGI;
21 use strict;
22 use C4::Catalogue;
23 use C4::Biblio;
24
25 my $input  = new CGI;
26 my $biblio = {
27     title    => $input->param('title'),
28     subtitle => $input->param('subtitle') ? $input->param('subtitle') : "",
29     author   => $input->param('author') ? $input->param('author') : "",
30     seriestitle => $input->param('seriestitle') ? $input->param('seriestitle')
31     : "",
32     copyrightdate => $input->param('copyrightdate')
33     ? $input->param('copyrightdate')
34     : "",
35     abstract => $input->param('abstract') ? $input->param('abstract') : "",
36     notes    => $input->param('notes')    ? $input->param('notes')    : ""
37 };    # my $biblio
38
39 my $subjectheadings = $input->param('subjectheadings');
40 my @subjects = split ( /\n/, $subjectheadings );
41 my $biblionumber;
42 my $aauthors = $input->param('additionalauthors');
43 my @authors  = split ( /\n/, $aauthors );
44 my $force    = $input->param('force');
45
46 if ( !$biblio->{'title'} ) {
47     print $input->redirect('addbiblio-nomarc.pl?error=notitle');
48 }
49 else {
50     $biblionumber = &newbiblio($biblio);
51     &newsubtitle( $biblionumber, $biblio->{'subtitle'} );
52     my $error = modsubject( $biblionumber, 1, @subjects );
53     modaddauthor( $biblionumber, @authors );
54     print $input->redirect("additem-nomarc.pl?biblionumber=$biblionumber");
55 }    # else