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