Corrections for XHTML compliance, again.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / parcel.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Recieve <!-- TMPL_VAR name="bookselname" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-acqui.inc" -->
7
8     <h1>
9         <!-- TMPL_IF name="date" -->
10             Receipt Summary for <i><!-- TMPL_VAR NAME="name" --></i> <!--TMPL_IF Name="invoice"-->Parcel <i><!-- TMPL_VAR NAME="invoice" --></i><!--/TMPL_IF --> on <i><!-- TMPL_VAR NAME="date" --></i>
11         <!-- TMPL_ELSE -->
12             orders not yet recieved for <!-- TMPL_VAR NAME="name" -->
13         <!-- /TMPL_IF -->
14     </h1>
15 <div id="acqui_recieve_summary">
16     <p>Parcel: <!-- TMPL_VAR NAME="invoice" --></p>
17     <p>Received by: <!-- TMPL_VAR NAME="loggedinusername" --></p>
18     <p>On: <!-- TMPL_VAR NAME="datereceived" --></p>
19 </div>
20 <div id="acqui_recieve_recievelist">
21     <h2>Recieve list</h2>
22     <form action="" method="get" name="orderform">
23     <table>
24         <tr>
25             <th>BASKET</th>
26             <th>Summary</th>
27             <th>QTY ordered</th>
28             <th>Est Cost</th>
29             <th>ACTUAL</th>
30             <th>P&amp;P</th>
31             <th>QTY received</th>
32             <th>TOTAL</th>
33         </tr>
34         <!-- TMPL_LOOP NAME="loop_received" -->
35             <tr>
36                 <td><!-- TMPL_VAR NAME="basketno" --></td>
37                 <td><a href="orderreceive.pl?recieve=<!-- TMPL_VAR NAME="ordernumber" -->&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;daterecieved=<!-- TMPL_VAR NAME="datereceived" -->&amp;invoice=<!-- TMPL_VAR NAME="invoice" -->&amp;gst=<!-- TMPL_VAR NAME="gst" -->&amp;freight=<!-- TMPL_VAR NAME="freight" -->&amp;supplierid=<!-- TMPL_VAR NAME="supplierid" -->"><!-- TMPL_VAR NAME="title" --></a>
38                 <!-- TMPL_IF NAME="isbn" --><br />ISBN: <!-- TMPL_VAR NAME="isbn" --><!--/TMPL_IF-->
39                 <!-- TMPL_IF NAME="author" --><br />author :<!-- TMPL_VAR NAME="author" --><!--/TMPL_IF-->
40                 <!-- TMPL_IF NAME="publishercode" --><br />Publisher :<!-- TMPL_VAR NAME="publishercode" --><!--/TMPL_IF-->
41                 </td>
42                 <td><!-- TMPL_VAR NAME="quantity" --></td>
43                 <td><!-- TMPL_VAR NAME="ecost" --></td>
44                 <td><!-- TMPL_VAR NAME="unitprice" --></td>
45                 <td></td>
46                 <td><!-- TMPL_VAR NAME="quantityreceived" --></td>
47                 <td><!-- TMPL_VAR NAME="total" --></td>
48             </tr>
49         <!-- /TMPL_LOOP -->
50         <tr>
51             <th colspan="3"></th>
52             <th>SUBTOTALS</th>
53             <th><!-- TMPL_VAR NAME="totalprice" --></th>
54             <th><!-- TMPL_VAR NAME="totalfreight" --></th>
55             <th><!-- TMPL_VAR NAME="totalquantity" --></th>
56             <th><!-- TMPL_VAR NAME="tototal" --></th>
57         </tr>
58         <tr>
59             <td colspan="5">
60             <b>HELP</b>
61                 <p>The total at the bottom of the page should be within a few cents of the total for the invoice.</p>
62             </td>
63             <td colspan="2"><b>GST</b></td>
64             <td><!-- TMPL_VAR NAME="gst" --></td>
65         </tr>
66         <tr>
67         <td colspan="5">&nbsp;</td>
68             <td colspan="2"><b>TOTAL</b></td>
69             <td><!-- TMPL_VAR NAME="grandtot" --></td>
70         </tr>
71     </table>
72     </form>
73 </div>
74 <div id="acqui_recieve_search">
75     <h2>Add a book to the receipt</h2>
76     <form action="/cgi-bin/koha/acqui/orderreceive.pl">
77         <input type="hidden" name="supplierid" value="<!-- TMPL_VAR NAME="supplierid" -->" />
78         <input type="hidden" name="gst" value="<!-- TMPL_VAR NAME="gst" -->" />
79         <input type="hidden" name="freight" value="<!-- TMPL_VAR NAME="freight" -->" />
80         <input type="hidden" name="invoice" value="<!-- TMPL_VAR NAME="invoice" -->" />
81         <p><label for="recieve">Search ISBN or Title:</label> <input type="text" size="25" id="recieve" name="recieve" /></p>
82     </form>
83     <table> <caption>or select a pending orders</caption>
84         <tr>
85             <th>BASKET</th>
86             <th>Summary</th>
87             <th>Est. Cost</th>
88             <th>P&amp;P</th>
89             <th>QTY Ordered</th>
90             <th>QTY</th>
91             <th>TOTAL</th>
92         </tr>
93         <!-- TMPL_LOOP NAME="loop_orders" -->
94             <tr>
95                 <td><!-- TMPL_VAR NAME="basketno" --></td>
96                 <td>
97                   <a href="orderreceive.pl?recieve=<!-- TMPL_VAR NAME="ordernumber" -->&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;daterecieved=<!-- TMPL_VAR NAME="datereceived" -->&amp;invoice=<!-- TMPL_VAR NAME="invoice" -->&amp;gst=<!-- TMPL_VAR NAME="gst" -->&amp;freight=<!-- TMPL_VAR NAME="freight" -->&amp;supplierid=<!-- TMPL_VAR NAME="supplierid" -->"><!-- TMPL_VAR NAME="title" --></a>
98                 <!-- TMPL_IF NAME="isbn" --><br />ISBN: <!-- TMPL_VAR NAME="isbn" --><!--/TMPL_IF-->
99                 <!-- TMPL_IF NAME="author" --><br />author :<!-- TMPL_VAR NAME="author" --><!--/TMPL_IF-->
100                 <!-- TMPL_IF NAME="publishercode" --><br />Publisher :<!-- TMPL_VAR NAME="publishercode" --><!--/TMPL_IF-->
101                 </td>
102                 <td><!-- TMPL_VAR NAME="unitprice" --></td>
103                 <td></td>
104                 <td><!-- TMPL_VAR NAME="quantity" --></td>
105                 <td><!-- TMPL_VAR NAME="quantityreceived" --></td>
106                 <td><!-- TMPL_VAR NAME="ecost" --></td>
107             </tr>
108         <!-- /TMPL_LOOP -->
109      </table>
110 </div>
111 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->
112