Merge branch 'bug_7368' into 3.14-master
[koha.git] / acqui / booksellers.pl
1 #!/usr/bin/perl
2
3 #script to show suppliers and orders
4
5 # Copyright 2000-2002 Katipo Communications
6 # Copyright 2008-2009 BibLibre SARL
7 # Copyright 2010 PTFS Europe
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with Koha; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
24 =head1 NAME
25
26 booksellers.pl
27
28 =head1 DESCRIPTION
29
30 this script displays the list of suppliers & baskets 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 string with which we search for a supplier
41
42 =back
43
44 =item id or booksellerid
45
46 The id of the supplier whose baskets we will display
47
48 =back
49
50 =cut
51
52 use strict;
53 use warnings;
54 use C4::Auth;
55 use C4::Biblio;
56 use C4::Output;
57 use CGI;
58
59 use C4::Acquisition qw/ GetBasketsInfosByBookseller /;
60 use C4::Bookseller qw/ GetBookSellerFromId GetBookSeller /;
61 use C4::Members qw/GetMember/;
62 use C4::Context;
63
64 my $query = CGI->new;
65 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
66     {   template_name   => 'acqui/booksellers.tmpl',
67         query           => $query,
68         type            => 'intranet',
69         authnotrequired => 0,
70         flagsrequired   => { acquisition => '*' },
71         debug           => 1,
72     }
73 );
74
75 #parameters
76 my $supplier = $query->param('supplier');
77 utf8::decode($supplier);
78 my $booksellerid = $query->param('booksellerid');
79 my @suppliers;
80
81 if ($booksellerid) {
82     push @suppliers, GetBookSellerFromId($booksellerid);
83 } else {
84     @suppliers = GetBookSeller($supplier);
85 }
86
87 my $supplier_count = @suppliers;
88 if ( $supplier_count == 1 ) {
89     $template->param(
90         supplier_name => $suppliers[0]->{'name'},
91         booksellerid  => $suppliers[0]->{'id'},
92         basketcount   => $suppliers[0]->{'basketcount'}
93     );
94 }
95
96 my $uid;
97 if ($loggedinuser) {
98     $uid = GetMember( borrowernumber => $loggedinuser )->{userid};
99 }
100
101 my $userenv = C4::Context::userenv;
102 my $viewbaskets = C4::Context->preference('AcqViewBaskets');
103
104 my $userbranch = $userenv->{branch};
105
106 #build result page
107 my $loop_suppliers = [];
108
109 for my $vendor (@suppliers) {
110     my $baskets = GetBasketsInfosByBookseller( $vendor->{id} );
111
112     my $loop_basket = [];
113
114     for my $basket ( @{$baskets} ) {
115         my $authorisedby = $basket->{authorisedby};
116         my $basketbranch = ''; # set a blank branch to start with
117         my $member = GetMember( borrowernumber => $authorisedby );
118         if ( $member ) {
119            $basketbranch = $member->{branchcode};
120         }
121
122         if ($userenv->{'flags'} & 1 || #user is superlibrarian
123                (haspermission( $uid, { acquisition => q{*} } ) && #user has acq permissions and
124                    ($viewbaskets eq 'all' || #user is allowed to see all baskets
125                    ($viewbaskets eq 'branch' && $authorisedby && $userbranch eq $basketbranch) || #basket belongs to user's branch
126                    ($basket->{authorisedby} &&  $viewbaskets eq 'user' && $authorisedby == $loggedinuser) #user created this basket
127                    ) 
128                 ) 
129            ) { 
130             foreach (qw(total_items total_biblios expected_items)) {
131                 $basket->{$_} ||= 0;
132             }
133             if($member) {
134                 $basket->{authorisedby_firstname} = $member->{firstname};
135                 $basket->{authorisedby_surname} = $member->{surname};
136             }
137             push @{$loop_basket}, $basket; 
138         }
139     }
140
141     push @{$loop_suppliers},
142       { loop_basket => $loop_basket,
143         booksellerid  => $vendor->{id},
144         name        => $vendor->{name},
145         active      => $vendor->{active},
146       };
147
148 }
149 $template->param(
150     loop_suppliers => $loop_suppliers,
151     supplier       => ( $booksellerid || $supplier ),
152     count          => $supplier_count,
153 );
154
155 output_html_with_http_headers $query, $cookie, $template->output;