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