Bug 929 : Last follow up, implementing the last of Katrins suggestions
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / ordered.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Acquisitions &rsaquo; Ordered</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body>
6 [% INCLUDE 'header.inc' %]
7 [% INCLUDE 'acquisitions-search.inc' %]
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; Ordered - [% fund %]</div>
10
11 <div id="doc3" class="yui-t2">
12
13 <div id="bd">
14     <div id="yui-main">
15         <div class="yui-b">
16
17 <h1>Bookfunds</h1>
18 <h2>Ordered - [% fund %]</h2>
19
20 <table cellspacing="0" cellpadding="0" border="0" id="spent" class="collapse">
21     <thead>
22     <tr>
23         <th> Title </th>
24         <th> Order </th>
25         <th> Vendor </th>
26         <th> Itemtype </th>
27         <th> Left on Order </th>
28         <th> Estimated cost per unit </th>
29         <th> Date Ordered </th>
30         <th> Subtotal </th>
31     </tr>
32     </thead>
33
34 [% FOREACH order IN ordered %]
35     [% IF loop.odd %]
36         <tr class="highlight">
37     [% ELSE %]
38         <tr>
39     [% END %]
40         <td class="cell">
41             [% order.title %]
42         </td>
43         <td class="cell">
44             <a href=/cgi-bin/koha/acqui/neworderempty.pl?ordernumber=[% order.ordernumber %]&booksellerid=[% order.booksellerid %]&basketno=[% order.basketno %]">[% order.ordernumber %]</a>
45         </td>
46         <td class="cell">
47             <a href="/cgi-bin/koha/acqui/supplier.pl?supplierid=[% order.booksellerid %]">[% order.booksellerid %]</a>
48         </td>
49         <td class="cell">
50             [% order.itype %]
51         </td>
52         <td class="cell">
53             [% order.left %]
54         </td>
55         <td class="cell" align="right">
56             [% order.ecost %]
57         </td>
58         <td class="cell">
59             [% order.entrydate %]
60         </td>
61         <td class="cell" align="right">
62             [% order.subtotal %]
63         </td>
64     </tr>
65 [% END %]
66
67     <tfoot>
68     <tr>
69         <td> Total </td>
70         <td> </td>
71         <td> </td>
72         <td> </td>
73         <td> </td>
74         <td> </td>
75         <td> </td>
76         <td align="right">
77             [% total %]
78         </td>
79     </tr>
80     </tfoot>
81
82 </table>
83
84 </div>
85 </div>
86 <div class="yui-b">
87 [% INCLUDE 'acquisitions-menu.inc' %]
88 </div>
89 </div>
90 [% INCLUDE 'intranet-bottom.inc' %]