minor template changes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / acqui / orderreceive.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Receipt summary for : <!-- TMPL_VAR NAME="name" --> <!-- TMPL_IF NAME="invoice" -->invoice, <!-- TMPL_VAR NAME="invoice" --><!-- /TMPL_IF --></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
9 <h1>Receipt order for : <!-- TMPL_VAR NAME="name" --> <!-- TMPL_IF NAME="invoice" -->Parcel <!-- TMPL_VAR NAME="invoice" --><!-- /TMPL_IF --> (order #<!-- TMPL_VAR NAME="ordernumber" -->)</h1>
10
11 <!-- TMPL_IF name="count" -->
12 <div id="acqui_acquire_neworder">
13     <script language="javascript" type="text/javascript">
14     <!--
15     function messenger(X,Y,etc){
16     win=window.open("","mess","height="+X+",width="+Y+",screenX=150,screenY=0");
17     win.focus();
18     win.document.close();
19     win.document.write("<body link='#333333' bgcolor='#ffffff' text='#000000'><font size=2><p><br>");
20     win.document.write(etc);
21     win.document.write("<center><form><input type=button onclick='self.close()' value=Close></form></center>");
22     win.document.write("</font></body></html>");
23 }
24     //-->
25     </script>
26     <form action="/cgi-bin/koha/acqui/finishreceive.pl" method="post">
27     <fieldset>
28     <legend>Catalogue Details</legend>
29     <p><label>Title</label><!-- TMPL_VAR NAME="title" --></p>
30     <p>
31         <label>Author</label>
32         <!-- TMPL_VAR NAME="author" -->
33     </p>
34     <p>
35         <label>Copyright Date</label>
36         <!-- TMPL_VAR NAME="copyrightdate" -->
37     </p>
38     
39     <p>
40         <label>ISBN</label>
41         <!-- TMPL_VAR NAME="isbn" -->
42     </p>
43     <p>
44         <label>Series</label>
45         <!-- TMPL_VAR NAME="seriestitle" -->
46     </p>
47     <p>
48         <label>Item Barcode</label>
49         <input type="text" size="20" name="barcode" value="<!-- TMPL_VAR NAME="barcode" -->" />
50     </p>
51     <p>
52         <label>Volume Info (for serials)</label>
53         <input type="text" size="20" name="volinf" />
54     </p>
55     <input type="hidden" name="biblionumber" value="<!-- TMPL_VAR NAME="biblionumber" -->" />
56     <input type="hidden" name="ordnum" value="<!-- TMPL_VAR NAME="ordernumber" -->" />
57     <input type="hidden" name="biblioitemnumber" value="<!-- TMPL_VAR NAME="biblioitemnumber" -->" />
58     <input type="hidden" name="supplierid" value="<!-- TMPL_VAR NAME="supplierid" -->" />
59     <input type="hidden" name="daterecieved" value="<!-- TMPL_VAR NAME="daterecieved" -->" />
60     <input type="hidden" name="freight" value="<!-- TMPL_VAR NAME="freight" -->" />
61     <input type="hidden" name="gst" value="<!-- TMPL_VAR NAME="gst" -->" />
62     </fieldset>
63     <fieldset>
64     <legend>Accounting Details</legend>
65         <p><label>Quantity Ordered</label><input type="text" size="20" name="quantity" value="<!-- TMPL_VAR NAME="quantity" -->" /></p>
66         <p><label>Quantity Received</label><input type="text" size="20" name="quantityrec" value="<!-- TMPL_VAR NAME="quantityreceived" -->" /></p>
67         <p><label>Replacement Cost</label><input type="text" size="20" name="rrp" value="<!-- TMPL_VAR NAME="rrp" -->" /></p>
68         <p><label>Budgeted Cost </label><input type="text" size="20" name="ecost" value="<!-- TMPL_VAR NAME="ecost" -->" /></p>
69         <p><label>Actual Cost</label>
70         <!-- TMPL_IF name="unitprice"-->
71          <input type="text" size="20" name="cost" value="<!-- TMPL_VAR NAME="unitprice" -->" />
72         <!-- TMPL_ELSE -->
73             <input type="text" size="20" name="cost" value="<!-- TMPL_VAR name="rrp" -->" />
74         <!-- /TMPL_IF --></p>
75         <input type="hidden" name="invoice" value="<!-- TMPL_VAR NAME="invoice" -->" />
76         <p><label>Notes</label><input type="text" size="20" name="notes" value="<!-- TMPL_VAR NAME="notes" -->" /></p>
77     <!-- TMPL_IF name="catview" -->
78         <input type="submit"  name="submit" value="Save" />
79     <!-- TMPL_ELSE -->
80         <a href="/cgi-bin/koha/acqui/neworderempty.pl?ordnum=<!-- TMPL_VAR NAME="ordernumber" -->&amp;id=<!-- TMPL_VAR NAME="booksellerid" -->">Edit</a>
81     <!-- /TMPL_IF -->
82     </fieldset>
83     </form>
84 </div>
85 <!-- TMPL_ELSE -->
86 <div id="acqui_acquire_orderlist">
87     <table>
88     <tr>
89         <th>Basket</th>
90         <th>ISBN</th>
91         <th>Title</th>
92         <th>Author</th>
93         <th>Qty</th>
94         <th>Received</th>
95     </tr>
96     <!-- TMPL_LOOP name="loop" -->
97         <tr>
98             <td><!-- TMPL_VAR NAME="basketno" --></td>
99             <td><!-- TMPL_VAR NAME="isbn" --></td>
100          <td><a href="orderreceive.pl?daterecieved=<!-- TMPL_VAR NAME="daterecieved" -->&amp;recieve=<!-- TMPL_VAR NAME="ordernumber" -->&amp;biblio=<!-- TMPL_VAR NAME="biblionumber" -->&amp;invoice=<!-- TMPL_VAR NAME="invoice" -->&amp;freight=<!-- TMPL_VAR NAME="freight" -->&amp;gst=<!-- TMPL_VAR NAME="gst" -->&amp;id=<!-- TMPL_VAR NAME="id" -->"><!-- TMPL_VAR NAME="title" --></a></td>
101             <td><!-- TMPL_VAR NAME="author" --></td>
102             <td><!-- TMPL_VAR NAME="quantity" --></td>
103             <td><!-- TMPL_VAR NAME="quantityrecieved" --></td>
104         </tr>
105     <!-- /TMPL_LOOP -->
106     </table>
107 </div>
108 <!-- /TMPL_IF -->
109
110 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->
111