Adding ability to return biblio results from acquisition search that contain no items
[koha.git] / acqui / booksellers.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 =head1 NAME
26
27 booksellers.pl
28
29 =head1 DESCRIPTION
30
31 this script displays the list of suppliers & orders like C<$supplier> given on input arg.
32 thus, this page brings differents features like to display supplier's details,
33 to add an order for a specific supplier or to just add a new supplier.
34
35 =head1 CGI PARAMETERS
36
37 =over 4
38
39 =item supplier
40
41 C<$supplier> is the suplier we have to search order.
42 =back
43
44 =item op
45
46 C<OP> can be equals to 'close' if we have to close a basket before building the page.
47
48 =item basket
49
50 the C<basket> we have to close if op is equal to 'close'.
51
52 =back
53
54 =cut
55
56 use strict;
57 use C4::Auth;
58 use C4::Biblio;
59 use C4::Output;
60 use CGI;
61 use C4::Interface::CGI::Output;
62 use C4::Database;
63 use HTML::Template;
64 use C4::Acquisition;
65 use C4::Date;
66 use C4::Bookseller;
67
68 my $query = new CGI;
69 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
70     {
71         template_name   => "acqui/booksellers.tmpl",
72         query           => $query,
73         type            => "intranet",
74         authnotrequired => 0,
75         flagsrequired   => { acquisition => 1 },
76         debug           => 1,
77     }
78 );
79
80 #parameters
81 my $supplier = $query->param('supplier');
82
83 my @suppliers = GetBookSeller($supplier);
84 my $count = scalar @suppliers;
85
86 # check if we have to "close" a basket before building page
87 my $op     = $query->param('op');
88 my $basket = $query->param('basket');
89 if ( $op eq 'close' ) {
90     CloseBasket($basket);
91 }
92
93 #build result page
94 my $toggle = 0;
95 my @loop_suppliers;
96 for ( my $i = 0 ; $i < $count ; $i++ ) {
97     my $orders  = GetPendingOrders( $suppliers[$i]->{'id'} );
98     my $ordcount = scalar @$orders;
99 # FIXME : $ordcount seems to be equals to 0 each times...
100
101     my %line;
102     if ( $toggle == 0 ) {
103         $line{even} = 1;
104         $toggle = 1;
105     }
106     else {
107         $line{even} = 0;
108         $toggle = 0;
109     }
110     $line{supplierid} = $suppliers[$i]->{'id'};
111     $line{name}       = $suppliers[$i]->{'name'};
112     $line{active}     = $suppliers[$i]->{'active'};
113     my @loop_basket;
114     for ( my $i2 = 0 ; $i2 < $ordcount ; $i2++ ) {
115         my %inner_line;
116         $inner_line{basketno}     = $orders->[$i2]->{'basketno'};
117         $inner_line{total}        = $orders->[$i2]->{'count(*)'};
118         $inner_line{authorisedby} = $orders->[$i2]->{'authorisedby'};
119         $inner_line{surname}      = $orders->[$i2]->{'firstname'};
120         $inner_line{firstname}    = $orders->[$i2]->{'surname'};
121         $inner_line{creationdate} =
122           format_date( $orders->[$i2]->{'creationdate'} );
123         $inner_line{closedate} = format_date( $orders->[$i2]->{'closedate'} );
124         push @loop_basket, \%inner_line;
125     }
126     $line{loop_basket} = \@loop_basket;
127     push @loop_suppliers, \%line;
128 }
129 $template->param(
130     loop_suppliers          => \@loop_suppliers,
131     supplier                => $supplier,
132     count                   => $count,
133     intranetcolorstylesheet =>
134     C4::Context->preference("intranetcolorstylesheet"),
135     intranetstylesheet => C4::Context->preference("intranetstylesheet"),
136     IntranetNav        => C4::Context->preference("IntranetNav"),
137 );
138
139 output_html_with_http_headers $query, $cookie, $template->output;