Added some FIXME comments.
[koha.git] / acqui / modorders.pl
1 #!/usr/bin/perl
2
3 #script to add an order into the system
4 #written 29/2/00 by chris@katipo.co.nz
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use CGI;
26 use C4::Output;
27 use C4::Catalogue;
28 use C4::Biblio;
29 #use Date::Manip;
30
31 my $input = new CGI;
32 #print $input->header;
33 #print startpage();
34 #print startmenu('acquisitions');
35 #print $input->Dump;
36 my $basketno=$input->param('basketno');
37 my $count=$input->param('number');
38 for (my $i=0;$i<$count;$i++){
39   my  $bibnum=$input->param("bibnum$i");
40   my $ordnum=$input->param("ordnum$i");
41   my $quantity=$input->param("quantity$i");
42   if ($quantity == 0){
43     delorder($bibnum,$ordnum);
44   }
45 }
46 print $input->redirect("basket.pl?basket=$basketno");
47 #print $input->dump;
48 #print endmenu('acquisitions');
49 #print endpage();