updated release notes for 3.14.0 beta
[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
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23
24 =head1 NAME
25
26 acqui-search-result.pl
27
28 =head1 DESCRIPTION
29  TODO
30
31 =head1 PARAMETERS
32
33 =over 4
34
35 =item supplier
36
37 =back
38
39 =cut
40
41
42 use strict;
43 use warnings;
44 use C4::Auth;
45 use C4::Biblio;
46 use C4::Output;
47 use CGI;
48 use C4::Acquisition qw( SearchOrders );
49 use C4::Dates qw/format_date/;
50 use C4::Bookseller qw( GetBookSeller );
51
52 my $query=new CGI;
53 my ($template, $loggedinuser, $cookie)
54     = get_template_and_user({template_name => "serials/acqui-search-result.tmpl",
55                  query => $query,
56                  type => "intranet",
57                  authnotrequired => 0,
58                  flagsrequired => {serials => '*'},
59                  debug => 1,
60                  });
61
62 my $supplier=$query->param('supplier');
63 my @suppliers = GetBookSeller($supplier);
64 #my $count = scalar @suppliers;
65
66 #build result page
67 my $loop_suppliers = [];
68 for my $s (@suppliers) {
69     my $orders = SearchOrders({
70         booksellerid => $s->{'id'},
71         pending => 1
72     });
73
74     my $loop_basket = [];
75     for my $ord ( @{$orders} ) {
76         push @{$loop_basket}, {
77             basketno     => $ord->{'basketno'},
78             total        => $ord->{'count(*)'},
79             authorisedby => $ord->{'authorisedby'},
80             creationdate => format_date($ord->{'creationdate'}),
81             closedate    => format_date($ord->{'closedate'}),
82         };
83     }
84     push @{$loop_suppliers}, {
85         loop_basket => $loop_basket,
86         aqbooksellerid => $s->{'id'},
87         name => $s->{'name'},
88         active => $s->{'active'},
89     };
90 }
91
92 $template->param(loop_suppliers => $loop_suppliers,
93                         supplier => $supplier,
94                         count => scalar @suppliers);
95
96 output_html_with_http_headers $query, $cookie, $template->output;