#!/usr/bin/perl #script to recieve orders #written by chris@katipo.co.nz 24/2/2000 use C4::Acquisitions; 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;