9bba1adb8f242b7570d202c3ea8159bd554e4d77
[koha_ffzg] / 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 </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>Budgets &amp; Bookfunds</h1>
18 <h2>Ordered</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> Itemtype </th>
26         <th> Left on Order </th>
27         <th> Estimated cost per unit </th>
28         <th> Budget Date </th>
29         <th> Subtotal </th>
30     </tr>
31     </thead>
32
33 [% FOREACH order IN ordered %]
34     [% IF loop.odd %]
35         <tr class="highlight">
36     [% ELSE %]
37         <tr>
38     [% END %]
39         <td class="cell">
40             [% order.title %]
41         </td>
42         <td class="cell">
43             <a href=/cgi-bin/koha/acqui/neworderempty.pl?ordernumber=[% order.ordernumber %]&booksellerid=[% order.booksellerid %]&basketno=[% order.basketno %]">[% order.ordernumber %]</a>
44         </td>
45         <td class="cell">
46             [% order.itype %]
47         </td>
48         <td class="cell">
49             [% order.left %]
50         </td>
51         <td class="cell" align="right">
52             [% order.ecost %]
53         </td>
54         <td class="cell">
55             [% order.budgetdate %]
56         </td>
57         <td class="cell" align="right">
58             [% order.subtotal %]
59         </td>
60     </tr>
61 [% END %]
62
63     <tfoot>
64     <tr>
65         <td> Total </td>
66         <td> </td>
67         <td> </td>
68         <td> </td>
69         <td> </td>
70         <td> </td>
71         <td align="right">
72             [% total %]
73         </td>
74     </tr>
75     </tfoot>
76
77 </table>
78
79 </div>
80 </div>
81 <div class="yui-b">
82 [% INCLUDE 'acquisitions-menu.inc' %]
83 </div>
84 </div>
85 [% INCLUDE 'intranet-bottom.inc' %]