Sub renamed and/or GPL Licence added according to the coding guideline.
[koha.git] / serials / acqui-search-result.pl
1 #!/usr/bin/perl
2
3 #script to show suppliers and orders
4 #written by chris@katipo.co.nz 23/2/2000
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA  02111-1307 USA
22
23 # $Id$
24
25 use strict;
26 use C4::Auth;
27 use C4::Biblio;
28 use C4::Output;
29 use CGI;
30 use C4::Interface::CGI::Output;
31 use C4::Database;
32 use HTML::Template;
33 use C4::Acquisition;
34 use C4::Date;
35
36 my $query=new CGI;
37 my ($template, $loggedinuser, $cookie)
38     = get_template_and_user({template_name => "serials/acqui-search-result.tmpl",
39                              query => $query,
40                              type => "intranet",
41                              authnotrequired => 0,
42                              flagsrequired => {acquisition => 1},
43                              debug => 1,
44                              });
45
46 my $supplier=$query->param('supplier');
47 my ($count,@suppliers)=bookseller($supplier);
48
49 #build reult page
50 my $toggle=0;
51 my @loop_suppliers;
52 for (my $i=0; $i<$count; $i++) {
53         my ($ordcount,$orders)=getorders($suppliers[$i]->{'id'});
54         my %line;
55         if ($toggle==0){
56                 $line{even}=1;
57                 $toggle=1;
58         } else {
59                 $line{even}=0;
60                 $toggle=0;
61         }
62         $line{aqbooksellerid} =$suppliers[$i]->{'id'};
63         $line{name} = $suppliers[$i]->{'name'};
64         $line{active} = $suppliers[$i]->{'active'};
65         my @loop_basket;
66         for (my $i2=0;$i2<$ordcount;$i2++){
67                 my %inner_line;
68                 $inner_line{basketno} =$orders->[$i2]->{'basketno'};
69                 $inner_line{total} =$orders->[$i2]->{'count(*)'};
70                 $inner_line{authorisedby} = $orders->[$i2]->{'authorisedby'};
71                 $inner_line{creationdate} = format_date($orders->[$i2]->{'creationdate'});
72                 $inner_line{closedate} = format_date($orders->[$i2]->{'closedate'});
73                 push @loop_basket, \%inner_line;
74         }
75         $line{loop_basket} = \@loop_basket;
76         push @loop_suppliers, \%line;
77 }
78 $template->param(loop_suppliers => \@loop_suppliers,
79                                                 supplier => $supplier,
80                                                 count => $count);
81
82 output_html_with_http_headers $query, $cookie, $template->output;