Long is the road to MARC..
[koha.git] / acqui / recieveorder.pl
1 #!/usr/bin/perl
2
3 #script to show display basket of orders
4 #written by chris@katipo.co.nz 24/2/2000
5
6 use C4::Catalogue;
7 use C4::Biblio;
8 use C4::Output;
9 use CGI;
10 use strict;
11
12 my $input=new CGI;
13 print $input->header();
14 my $id=$input->param('id');
15 my ($count,@booksellers)=bookseller($id); 
16 print startpage;
17
18 print startmenu('acquisitions');
19
20 print <<EOP
21
22 <FONT SIZE=6><em>Receive Orders From Supplier <a href=whitcoulls.html>$booksellers[0]->{'name'}</a></em></FONT>
23 <p>
24 <CENTER>
25 <form method=post action="receive.pl">
26 <input type=hidden name=id value=$id>
27 <p>
28 <table border=1 cellspacing=0 cellpadding=5>
29 <tr valign=top bgcolor=#99cc33><td background="/images/background-mem.gif" colspan=2><B>SUPPLIER INVOICE INFORMATION</B></td></tr>
30 <TR VALIGN=TOP >
31 <TD>Supplier Invoice Number</td>
32 <td><input type=text size=20 name=invoice>        
33 </td>
34 </tr>
35 <TR VALIGN=TOP>
36 <TD>GST</td>
37 <td><input type=text size=20 name=gst>
38 </td>
39 </tr>
40 <TR VALIGN=TOP>
41 <TD>Freight</td>
42 <td><input type=text size=20 name=freight>
43 </td>
44 </tr>
45 <TR VALIGN=TOP>
46 <TD></td>
47 <td><input type=image  name=submit src=/images/continue.gif border=0 width=120 height=42>
48 </td>
49 </tr>
50 </table>
51 </CENTER>
52
53 EOP
54 ;
55
56
57 print endmenu('acquisitions');
58
59 print endpage;