#!/usr/bin/perl # $Id$ #script to recieve orders #written by chris@katipo.co.nz 24/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 $id=$input->param('id'); my ($count,@booksellers)=bookseller($id); my $invoice=$input->param('invoice'); my $freight=$input->param('freight'); my $gst=$input->param('gst'); my $user=$input->remote_user; my $date=localtime(time); print startpage; print startmenu('acquisitions'); print < Invoice: $invoice
Received By: $user
$date Receipt Summary For : $booksellers[0]->{'name'}
Search ISBN or Title:

EOP ; my @results; ($count,@results)=invoice($invoice); if ($invoice eq ''){ ($count,@results)=getallorders($id); } print $count; my $totalprice=0; my $totalfreight=0; my $totalquantity=0; my $total; my $tototal; for (my$i=0;$i<$count;$i++){ $total=($results[$i]->{'unitprice'} + $results[$i]->{'freight'}) * $results[$i]->{'quantityreceived'}; $results[$i]->{'unitprice'}+=0; print < EOP ; $totalprice+=$results[$i]->{'unitprice'}; $totalfreight+=$results[$i]->{'freight'}; $totalquantity+=$results[$i]->{'quantityreceived'}; $tototal+=$total; } $totalfreight=$freight; $tototal=$tototal+$freight; my $grandtot=$tototal+$gst; print <
BASKET ISBN TITLE AUTHOR ACTUAL P&P QTY TOTAL
$results[$i]->{'basketno'} $results[$i]->{'isbn'} $results[$i]->{'title'} $results[$i]->{'author'} \$$results[$i]->{'unitprice'} $results[$i]->{'quantityreceived'} \$ $total

SUBTOTALS \$$totalprice $totalfreight $totalquantity \$$tototal
HELP
The total at the bottom of the page should be within a few cents of the total for the invoice.

When you have finished this invoice save the changes.

GST \$$gst
TOTAL \$$grandtot
EOP ; print endmenu('acquisitions'); print endpage;