fix "Add Tag" button in MARC framework editor
[koha.git] / serials / acqui-search-result.pl
blob6066bdde34af9ca95a20ae9662bf6b549fec9707
1 #!/usr/bin/perl
3 #script to show suppliers and orders
4 #written by chris@katipo.co.nz 23/2/2000
6 # Copyright 2000-2002 Katipo Communications
8 # This file is part of Koha.
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.
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.
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
24 =head1 NAME
26 acqui-search-result.pl
28 =head1 DESCRIPTION
29 TODO
31 =head1 PARAMETERS
33 =over 4
35 =item supplier
37 =back
39 =cut
42 use strict;
43 use C4::Auth;
44 use C4::Biblio;
45 use C4::Output;
46 use CGI;
47 use C4::Acquisition;
48 use C4::Dates qw/format_date/;
49 use C4::Bookseller;
51 my $query=new CGI;
52 my ($template, $loggedinuser, $cookie)
53 = get_template_and_user({template_name => "serials/acqui-search-result.tmpl",
54 query => $query,
55 type => "intranet",
56 authnotrequired => 0,
57 flagsrequired => {serials => 1},
58 debug => 1,
59 });
61 my $supplier=$query->param('supplier');
62 my @suppliers = GetBookSeller($supplier);
63 my $count = scalar @suppliers;
65 #build result page
66 my $toggle=0;
67 my @loop_suppliers;
68 for (my $i=0; $i<$count; $i++) {
69 my $orders = GetPendingOrders($suppliers[$i]->{'id'});
70 my $ordcount = scalar @$orders;
72 my %line;
73 if ($toggle==0){
74 $line{even}=1;
75 $toggle=1;
76 } else {
77 $line{even}=0;
78 $toggle=0;
80 $line{aqbooksellerid} =$suppliers[$i]->{'id'};
81 $line{name} = $suppliers[$i]->{'name'};
82 $line{active} = $suppliers[$i]->{'active'};
83 my @loop_basket;
84 for (my $i2=0;$i2<$ordcount;$i2++){
85 my %inner_line;
86 $inner_line{basketno} =$orders->[$i2]->{'basketno'};
87 $inner_line{total} =$orders->[$i2]->{'count(*)'};
88 $inner_line{authorisedby} = $orders->[$i2]->{'authorisedby'};
89 $inner_line{creationdate} = format_date($orders->[$i2]->{'creationdate'});
90 $inner_line{closedate} = format_date($orders->[$i2]->{'closedate'});
91 push @loop_basket, \%inner_line;
93 $line{loop_basket} = \@loop_basket;
94 push @loop_suppliers, \%line;
96 $template->param(loop_suppliers => \@loop_suppliers,
97 supplier => $supplier,
98 count => $count);
100 output_html_with_http_headers $query, $cookie, $template->output;