3 #script to show suppliers and orders
4 #written by chris@katipo.co.nz 23/2/2000
6 # Copyright 2000-2002 Katipo Communications
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.
26 acqui-search-result.pl
49 use C4
::Acquisition
qw( SearchOrders );
50 use C4
::Dates qw
/format_date/;
52 use Koha
::Acquisition
::Bookseller
;
55 my ($template, $loggedinuser, $cookie)
56 = get_template_and_user
({template_name
=> "serials/acqui-search-result.tt",
60 flagsrequired
=> {serials
=> '*'},
64 my $supplier=$query->param('supplier');
65 my @suppliers = Koha
::Acquisition
::Bookseller
->search({ name
=> $supplier });
66 #my $count = scalar @suppliers;
69 my $loop_suppliers = [];
70 for my $s (@suppliers) {
71 my $orders = SearchOrders
({
72 booksellerid
=> $s->{'id'},
77 for my $ord ( @
{$orders} ) {
78 push @
{$loop_basket}, {
79 basketno
=> $ord->{'basketno'},
80 total
=> $ord->{'count(*)'},
81 authorisedby
=> $ord->{'authorisedby'},
82 creationdate
=> format_date
($ord->{'creationdate'}),
83 closedate
=> format_date
($ord->{'closedate'}),
86 push @
{$loop_suppliers}, {
87 loop_basket
=> $loop_basket,
88 aqbooksellerid
=> $s->{'id'},
90 active
=> $s->{'active'},
94 $template->param(loop_suppliers
=> $loop_suppliers,
95 supplier
=> $supplier,
96 count
=> scalar @suppliers);
98 output_html_with_http_headers
$query, $cookie, $template->output;