fixed branchname and printername in returns.tmpl
[koha.git] / updatebiblio.pl
index 51abf81..c8a607d 100755 (executable)
 #!/usr/bin/perl
 
-use C4::Database;
-use CGI;
+
+# Copyright 2000-2002 Katipo Communications
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
 use strict;
-use C4::Acquisitions;
+require Exporter;
+use C4::Context;
+use C4::Output;  # contains gettemplate
+use C4::Search;
+use C4::Auth;
+use C4::Interface::CGI::Output;
+use CGI;
+use C4::Biblio;
 use C4::Output;
+use HTML::Template;
 
-my $input= new CGI;
-#print $input->header;
-#print $input->dump;
-
+my $input       = new CGI;
+my $bibnum      = checkinp($input->param('biblionumber'));
+my $biblio = {
+       biblionumber => $bibnum,
+       title        => $input->param('title')?$input->param('title'):"",
+       author       => $input->param('author')?$input->param('author'):"",
+       abstract     => $input->param('abstract')?$input->param('abstract'):"",
+       copyrightdate    => $input->param('copyrightdate')?$input->param('copyrightdate'):"",
+       seriestitle  => $input->param('seriestitle')?$input->param('seriestitle'):"",
+       serial       => $input->param('serial')?$input->param('serial'):"",
+       unititle     => $input->param('unititle')?$input->param('unititle'):"",
+       notes        => $input->param('notes')?$input->param('notes'):"",
+}; # my $biblio
+my $subtitle    = checkinp($input->param('subtitle'));
+my $subject     = checkinp($input->param('subject'));
+my $addauthor   = checkinp($input->param('additionalauthor'));
+my $force       = $input->param('Force');
+my %data;
+my @sub;
+my @subs;
+my @names;
+my $count;
+my $error;
 
-my $title=checkinp($input->param('Title'));
-my $author=checkinp($input->param('Author'));
-my $bibnum=checkinp($input->param('bibnum'));
-my $copyright=checkinp($input->param('Copyright'));
-my $seriestitle=checkinp($input->param('Series'));
-my $serial=checkinp($input->param('Serial'));
-my $unititle=checkinp($input->param('Unititle'));
-my $notes=checkinp($input->param('Notes'));
+&modsubtitle($bibnum, $subtitle);
+&modaddauthor($bibnum, $addauthor);
 
-modbiblio($bibnum,$title,$author,$copyright,$seriestitle,$serial,$unititle,$notes);
+$subject = uc($subject);
+@sub     = split(/\||\n/, $subject);
+$count   = @sub;
 
-my $subtitle=checkinp($input->param('Subtitle'));
-modsubtitle($bibnum,$subtitle);
+for (my $i = 0; $i < $count; $i++) {
+       $sub[$i] =~ s/ +$//;
+} # for
 
-my $subject=checkinp($input->param('Subject'));
-$subject=uc $subject;
-my @sub=split(/\|/,$subject);
-#print @sub;
-#
+$error = &modsubject($bibnum,$force,@sub);
 
-my $addauthor=checkinp($input->param('Additional'));
-modaddauthor($bibnum,$addauthor);
-my $count1=@sub;
+&modbiblio($biblio);
 
-for (my $i=0; $i<$count1; $i++){
-  $sub[$i]=~ s/ +$//;
-}
+if ($error ne ''){
+               my ($template, $loggedinuser, $cookie) = get_template_and_user({
+                       template_name   => "updatebiblio.tmpl",
+                       query           => $input,
+                       type            => "intranet",
+                       flagsrequired   => {catalogue => 1},
+               });
 
-#print $input->header;
-my $force=$input->param('Force');
-my $error=modsubject($bibnum,$force,@sub);
 
-if ($error ne ''){
-  print $input->header;
-  print startpage();
-  print startmenu();
-  print $error;
-  my @subs=split('\n',$error);
-  print "<p> Click submit to force the subject";
-  my @names=$input->param;
-  my %data;
-  my $count=@names;
-  for (my $i=0;$i<$count;$i++){
-    if ($names[$i] ne 'Force'){
-      my $value=$input->param("$names[$i]");
-      $data{$names[$i]}="hidden\t$value\t$i";
-    }
-  }
-  $data{"Force"}="hidden\t$subs[0]\t$count";
-  print mkform3('updatebiblio.pl',%data);
-  print endmenu();
-  print endpage();
+       my @subs=split('\n',$error);
+       my @names=$input->param;
+       my $count=@names;
+               my @dataloop;
+       for (my $i=0;$i<$count;$i++) {
+               if ($names[$i] ne 'Force') {
+                       my %line;
+               $line{'value'}=$input->param("$names[$i]");
+                       $line{'name'}=$names[$i];
+                       push(@dataloop, \%line);
+               } # if
+       } # for
+       $template->param(substring =>$subs[0],
+                                               error =>$error,
+                                               dataloop => \@dataloop);
+               print "Content-Type: text/html\n\n", $template->output;
 } else {
-  print $input->redirect("detail.pl?type=intra&bib=$bibnum");
-}
+       print $input->redirect("detail.pl?type=intra&bib=$bibnum");
+} # else
 
 sub checkinp{
   my ($inp)=@_;