7197a3735b
Removed trailing whitespace.
127 lines
4.3 KiB
Perl
Executable file
127 lines
4.3 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# $Id$
|
|
|
|
#script to show suppliers and orders
|
|
#written by chris@katipo.co.nz 23/2/2000
|
|
|
|
|
|
# Copyright 2000-2002 Katipo Communications
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 2 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
|
|
# Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
use C4::Catalogue;
|
|
use C4::Biblio;
|
|
use C4::Output;
|
|
use CGI;
|
|
use strict;
|
|
|
|
my $input=new CGI;
|
|
print $input->header();
|
|
my $supplier=$input->param('supplier');
|
|
print startpage;
|
|
|
|
print startmenu('acquisitions');
|
|
my ($count,@suppliers)=bookseller($supplier);
|
|
|
|
print <<printend
|
|
<FONT SIZE=6><em>Supplier Search Results</em></FONT>
|
|
<div align=right>
|
|
<a href=supplier.pl?id=0><img alt="Add New Supplier" src="/images/new-supplier.gif" WIDTH=187 HEIGHT=42 BORDER=0 border=0></a>
|
|
</div>
|
|
<CENTER>
|
|
You searched on <b>supplier $supplier,</b> $count results found<p>
|
|
<table border=0 cellspacing=0 cellpadding=5>
|
|
<tr valign=top bgcolor=#99cc33>
|
|
<td background="/images/background-mem.gif"> </td>
|
|
<td background="/images/background-mem.gif"><b>COMPANY</b></td>
|
|
<td background="/images/background-mem.gif"><b>BASKETS</b></td><td background="/images/background-mem.gif"><b>ITEMS</b></td><td background="/images/background-mem.gif"><b>STAFF</b></td><td background="/images/background-mem.gif"><b>DATE</b></td></tr>
|
|
printend
|
|
;
|
|
my $colour='#ffffcc';
|
|
my $toggle=0;
|
|
for (my $i=0; $i<$count; $i++) {
|
|
if ($toggle==0){
|
|
$colour='#ffffcc';
|
|
$toggle=1;
|
|
} else {
|
|
$colour='white';
|
|
$toggle=0;
|
|
}
|
|
my ($ordcount,$orders)=getorders($suppliers[$i]->{'id'});
|
|
# print $ordcount;
|
|
if ($orders->[0]->{'basketno'}>0) {
|
|
print <<printend
|
|
<tr valign=top bgcolor=$colour>
|
|
<td><a href="newbasket.pl?id=$suppliers[$i]->{'id'}"><img src="/images/new-basket-short.gif" alt="New Basket" width=77 height=32 border=0 ></a>
|
|
<a href="recieveorder.pl?id=$suppliers[$i]->{'id'}"><img src="/images/receive-order-short.gif" alt="Receive Order" width=77 height=32 border=0 ></a></td>
|
|
<td><a href="supplier.pl?id=$suppliers[$i]->{'id'}">$suppliers[$i]->{'name'}</a></td>
|
|
<td><a href="/cgi-bin/koha/acqui/basket.pl?basket=$orders->[0]->{'basketno'}">HLT-$orders->[0]->{'basketno'}</a></td>
|
|
<td>$orders->[0]->{'count(*)'}</td>
|
|
<td>$orders->[0]->{'authorisedby'}</td>
|
|
<td>$orders->[0]->{'entrydate'}</td></tr>
|
|
printend
|
|
;
|
|
} else {
|
|
print <<printend
|
|
<tr valign=top bgcolor=$colour>
|
|
<td><a href="newbasket.pl?id=$suppliers[$i]->{'id'}"><img src="/images/new-basket-short.gif" alt="New Basket" width=77 height=32 border=0 ></a>
|
|
<a href="recieveorder.pl?id=$suppliers[$i]->{'id'}"><img src="/images/receive-order-short.gif" alt="Receive Order" width=77 height=32 border=0 ></a></td>
|
|
<td><a href="supplier.pl?id=$suppliers[$i]->{'id'}">$suppliers[$i]->{'name'}</a></td>
|
|
<td> </a></td>
|
|
<td>$orders->[0]->{'count(*)'}</td>
|
|
<td>$orders->[0]->{'authorisedby'}</td>
|
|
<td>$orders->[0]->{'entrydate'}</td></tr>
|
|
printend
|
|
;
|
|
}
|
|
for (my $i2=1;$i2<$ordcount;$i2++){
|
|
if ($orders->[$i2]->{'basketno'}>=1) {
|
|
print <<printend
|
|
<tr valign=top bgcolor=$colour>
|
|
<td> </td>
|
|
<td> </td>
|
|
<td><a href="/cgi-bin/koha/acqui/basket.pl?basket=$orders->[$i2]->{'basketno'}">HLT-$orders->[$i2]->{'basketno'}</a></td>
|
|
<td>$orders->[$i2]->{'count(*)'}</td><td>$orders->[$i2]->{'authorisedby'} </td>
|
|
<td>$orders->[$i2]->{'entrydate'}</td></tr>
|
|
|
|
printend
|
|
;
|
|
} else {
|
|
print <<printend
|
|
<tr valign=top bgcolor=$colour>
|
|
<td> </td>
|
|
<td> </td>
|
|
<td> </td>
|
|
<td>$orders->[$i2]->{'count(*)'}</td><td>$orders->[$i2]->{'authorisedby'} </td>
|
|
<td>$orders->[$i2]->{'entrydate'}</td></tr>
|
|
|
|
printend
|
|
;
|
|
}
|
|
}
|
|
}
|
|
|
|
print <<printend
|
|
</table>
|
|
|
|
</CENTER>
|
|
printend
|
|
;
|
|
|
|
print endmenu('acquisitions');
|
|
|
|
print endpage;
|