Added magic RCS comment.
[koha.git] / acqui / basket.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 #script to show display basket of orders
6 #written by chris@katipo.co.nz 24/2/2000
7
8
9 # Copyright 2000-2002 Katipo Communications
10 #
11 # This file is part of Koha.
12 #
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
16 # version.
17 #
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License along with
23 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
24 # Suite 330, Boston, MA  02111-1307 USA
25
26 use C4::Catalogue;
27 use C4::Biblio;
28 use C4::Output;
29 use CGI;
30 use strict;
31
32 my $input=new CGI;
33 print $input->header();
34 my $basket=$input->param('basket');
35 my ($count,@results)=basket($basket);
36 print startpage;
37
38 my @inp=startmenu('acquisitions');
39
40 my $count3=@inp;
41 for (my $i=0;$i<$count3;$i++){
42       $inp[$i]=~ s/leftmargin=0 topmargin=0\>/leftmargin=0 topmargin=0 onload='update(orderform)'\>/;
43     }
44 print @inp;
45 # print $count;
46 my ($count2,@booksellers)=bookseller($results[0]->{'booksellerid'});
47
48 print <<printend
49 <div align=right>
50 Our Reference: $basket<br>
51 Authorised By: $results[0]->{'authorisedby'}<br>
52 $results[0]->{'entrydate'};
53 </div>
54 <FONT SIZE=6><em>Shopping Basket For: <a href=supplier.pl?id=$results[0]->{'booksellerid'}></a> $booksellers[0]->{'name'}</em></FONT>
55 <a href=newbasket.pl?id=$results[0]->{'booksellerid'}&basket=$basket>Add more orders</a>
56 <CENTER>
57 <FORM ACTION="/cgi-bin/koha/search.pl" method=post>
58  <b>Search ISBN, Title or Author:</b> <INPUT TYPE="text"  SIZE="25"   NAME="recieve">
59 </form>
60 <p>
61 <FORM ACTION="/cgi-bin/koha/acqui/modorders.pl" method=post name=orderform>
62 <table border=0 cellspacing=0 cellpadding=5>
63 <tr valign=top bgcolor=#99cc33>
64   <td background="/images/background-mem.gif"><b>ORDER</b></td>
65   <td background="/images/background-mem.gif"><b>ISBN</b></td>
66   <td background="/images/background-mem.gif"><b>TITLE</b></td>
67   <td background="/images/background-mem.gif"><b>AUTHOR</b></td>
68   <td background="/images/background-mem.gif"><b>RRP</b></td>
69   <td background="/images/background-mem.gif"><b>\$EST</b></td>
70   <td background="/images/background-mem.gif"><b>QUANTITY</b></td>
71   <td background="/images/background-mem.gif"><b>TOTAL</b></td></tr>
72 printend
73 ;
74
75
76 my $line_total; # total of each line
77 my $sub_total; # total of line totals
78 my $gist;      # GST
79 my $grand_total; # $subttotal + $gist
80
81 for (my $i=0;$i<$count;$i++){
82 my $rrp=$results[$i]->{'listprice'};
83 if ($results[$i]->{'currency'} ne 'NZD'){
84 $rrp=curconvert($results[$i]->{'currency'},$rrp);
85 }
86
87 $line_total=$results[$i]->{'quantity'}*$results[$i]->{'ecost'};
88 $sub_total+=$line_total;
89 $gist=sprintf("%.2f",$sub_total*0.125);
90 $grand_total=$sub_total+$gist;
91
92 print <<EOP
93 <tr valign=top bgcolor=#ffffcc>
94   <td>$results[$i]->{'ordernumber'}</td>
95   <td>$results[$i]->{'isbn'}</td>
96   <td><a href="newbiblio.pl?ordnum=$results[$i]->{'ordernumber'}&id=$results[$i]->{'booksellerid'}&basket=$basket">$results[$i]->{'title'}</a></td>
97   <td>$results[$i]->{'author'}</td>
98   <td>\$<input type=text name=rrp$i size=6 value="$results[$i]->{'rrp'}"></td>
99   <td>\$<input type=text name=eup$i size=6 value="$results[$i]->{'ecost'}"></td>
100   <td><input type=text name=quantity$i size=6 value=$results[$i]->{'quantity'} onchange='update(this.form)'></td>
101   <td>\$<input type=text name=total$i size=10 value=$line_total></td>
102   <input type=hidden name=ordnum$i value=$results[$i]->{'ordernumber'}>
103   <input type=hidden name=bibnum$i value=$results[$i]->{'biblionumber'}>
104 </tr>
105 EOP
106 ;
107 }
108 #
109 print "<input type=hidden name=number value=$count>
110 <input type=hidden name=basketno value=\"$basket\">";
111 print <<EOP
112 <tr valign=top bgcolor=white><td colspan=6 rowspan=3  bgcolor=#cccc99  background="/images/background-mem.gif">
113   <b>HELP</b><br>
114   To cancel an order, just change the quantity to 0 and click "save changes".<br>
115   To change any of the catalogue or accounting information attached to an order,  click on the title.<br>
116   To add new orders to this supplier, start with a search. </td>
117   <td><b>SubTotal</b></td>
118   <td>\$<input type=text name=subtotal size=10 value=$sub_total></td></tr>
119 <tr valign=top bgcolor=white>
120   <td><b>GST</b></td>
121   <td>\$<input type=text name=gst size=10 value=$gist></td></tr>
122 <tr valign=top bgcolor=white><td><b>TOTAL</b></td>
123   <td>\$<input type=text name=grandtotal size=10 value=$grand_total></td></tr>
124 <tr valign=top bgcolor=white>
125   <td></td>
126   <td></td>
127   <td></td>
128   <td></td>
129   <td></td>
130   <td></td>
131   <td colspan=3><input type=image  name=submit src=/images/save-changes.gif border=0 width=187 height=42 align=right></td></tr>
132 </table>
133 </CENTER>
134 EOP
135   ;
136
137 print endmenu('acquisitions');
138
139 print endpage;