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