3 #script to show suppliers and orders
5 # Copyright 2000-2002 Katipo Communications
6 # Copyright 2008-2009 BibLibre SARL
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
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
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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.
40 C<$supplier> is the suplier we have to search order.
45 C<OP> can be equals to 'close' if we have to close a basket before building the page.
49 the C<basket> we have to close if op is equal to 'close'.
56 #use warnings; FIXME - Bug 2505
64 use C4
::Dates qw
/format_date/;
66 use C4
::Members qw
/GetMember/;
69 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
71 template_name
=> "acqui/booksellers.tmpl",
75 flagsrequired
=> { acquisition
=> 'vendors_manage' },
81 my $supplier = $query->param('supplier');
82 my $id = $query->param('id') || $query->param('supplierid');
86 push @suppliers, GetBookSellerFromId
($id);
88 @suppliers = GetBookSeller
($supplier);
90 my $count = scalar @suppliers;
92 $template->param( supplier_name
=> $suppliers[0]->{'name'},
93 id
=> $suppliers[0]->{'id'}
99 for ( my $i = 0 ; $i < $count ; $i++ ) {
100 my $orders = GetBasketsByBookseller
( $suppliers[$i]->{'id'}, {groupby
=> "aqbasket.basketno", orderby
=> "aqbasket.basketname"} );
101 my $ordcount = scalar @
$orders;
104 $line{supplierid
} = $suppliers[$i]->{'id'};
105 $line{name
} = $suppliers[$i]->{'name'};
106 $line{active
} = $suppliers[$i]->{'active'};
108 my $uid = GetMember
(borrowernumber
=> $loggedinuser)->{userid
} if $loggedinuser;
109 for ( my $i2 = 0 ; $i2 < $ordcount ; $i2++ ) {
110 if ( $orders->[$i2]{'authorisedby'} eq $loggedinuser || haspermission
($uid, { flagsrequired
=> { 'acquisition' => '*' } } ) ) {
112 $inner_line{basketno
} = $orders->[$i2]{'basketno'};
113 $inner_line{basketname
} = $orders->[$i2]{'basketname'};
114 $inner_line{total
} = scalar GetOrders
($orders->[$i2]{'basketno'});
115 $inner_line{authorisedby
} = $orders->[$i2]{'authorisedby'};
116 my $authby = GetMember
(borrowernumber
=> $orders->[$i2]{'authorisedby'});
117 $inner_line{surname
} = $authby->{'firstname'};
118 $inner_line{firstname
} = $authby->{'surname'};
119 $inner_line{creationdate
} = format_date
( $orders->[$i2]{'creationdate'} );
120 $inner_line{closedate
} = format_date
( $orders->[$i2]{'closedate'} );
121 $inner_line{uncertainprice
} = $orders->[$i2]{'uncertainprice'};
122 push @loop_basket, \
%inner_line;
125 $line{loop_basket
} = \
@loop_basket;
126 push @loop_suppliers, \
%line;
129 loop_suppliers
=> \
@loop_suppliers,
130 supplier
=> ($id || $supplier),
134 output_html_with_http_headers
$query, $cookie, $template->output;