more instances of branches => libraries
[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
62
63 use C4::Acquisition;
64 use C4::Date;
65 use C4::Bookseller;
66
67 my $query = new CGI;
68 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
69     {
70         template_name   => "acqui/booksellers.tmpl",
71         query           => $query,
72         type            => "intranet",
73         authnotrequired => 0,
74         flagsrequired   => { acquisition => 1 },
75         debug           => 1,
76     }
77 );
78
79 #parameters
80 my $supplier = $query->param('supplier');
81
82 my @suppliers = GetBookSeller($supplier);
83 my $count = scalar @suppliers;
84
85 # check if we have to "close" a basket before building page
86 my $op     = $query->param('op');
87 my $basket = $query->param('basketno');
88 if ( $op eq 'close' ) {
89     CloseBasket($basket);
90 }
91
92 #build result page
93 my $toggle = 0;
94 my @loop_suppliers;
95 for ( my $i = 0 ; $i < $count ; $i++ ) {
96     my $orders  = GetPendingOrders( $suppliers[$i]->{'id'}, "grouped" );
97     my $ordcount = scalar @$orders;
98     my %line;
99     if ( $toggle == 0 ) {
100         $line{even} = 1;
101         $toggle = 1;
102     } else {
103         $line{even} = 0;
104         $toggle = 0;
105     }
106     $line{supplierid} = $suppliers[$i]->{'id'};
107     $line{name}       = $suppliers[$i]->{'name'};
108     $line{active}     = $suppliers[$i]->{'active'};
109     my @loop_basket;
110     for ( my $i2 = 0 ; $i2 < $ordcount ; $i2++ ) {
111         my %inner_line;
112         $inner_line{basketno}     = $orders->[$i2]{'basketno'};
113         $inner_line{total}        = $orders->[$i2]{'count(*)'};
114         $inner_line{authorisedby} = $orders->[$i2]{'authorisedby'};
115         $inner_line{surname}      = $orders->[$i2]{'firstname'};
116         $inner_line{firstname}    = $orders->[$i2]{'surname'};
117         $inner_line{creationdate} = format_date( $orders->[$i2]{'creationdate'} );
118         $inner_line{closedate} = format_date( $orders->[$i2]{'closedate'} );
119         push @loop_basket, \%inner_line;
120     }
121     $line{loop_basket} = \@loop_basket;
122     push @loop_suppliers, \%line;
123 }
124 $template->param(
125     loop_suppliers          => \@loop_suppliers,
126     supplier                => $supplier,
127     count                   => $count,
128     intranetcolorstylesheet =>
129     C4::Context->preference("intranetcolorstylesheet"),
130     intranetstylesheet => C4::Context->preference("intranetstylesheet"),
131     IntranetNav        => C4::Context->preference("IntranetNav"),
132 );
133
134 output_html_with_http_headers $query, $cookie, $template->output;