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 with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA 02111-1307 USA
26 acqui-search-result.pl
54 my ($template, $loggedinuser, $cookie)
55 = get_template_and_user
({template_name
=> "serials/acqui-search-result.tmpl",
59 flagsrequired
=> {serials
=> 1},
63 my $supplier=$query->param('supplier');
64 my @suppliers = GetBookSeller
($supplier);
65 my $count = scalar @suppliers;
70 for (my $i=0; $i<$count; $i++) {
71 my $orders = GetPendingOrders
($suppliers[$i]->{'id'});
72 my $ordcount = scalar @
$orders;
82 $line{aqbooksellerid
} =$suppliers[$i]->{'id'};
83 $line{name
} = $suppliers[$i]->{'name'};
84 $line{active
} = $suppliers[$i]->{'active'};
86 for (my $i2=0;$i2<$ordcount;$i2++){
88 $inner_line{basketno
} =$orders->[$i2]->{'basketno'};
89 $inner_line{total
} =$orders->[$i2]->{'count(*)'};
90 $inner_line{authorisedby
} = $orders->[$i2]->{'authorisedby'};
91 $inner_line{creationdate
} = format_date
($orders->[$i2]->{'creationdate'});
92 $inner_line{closedate
} = format_date
($orders->[$i2]->{'closedate'});
93 push @loop_basket, \
%inner_line;
95 $line{loop_basket
} = \
@loop_basket;
96 push @loop_suppliers, \
%line;
98 $template->param(loop_suppliers
=> \
@loop_suppliers,
99 supplier
=> $supplier,
102 output_html_with_http_headers
$query, $cookie, $template->output;