Lines 1-7
Link Here
|
1 |
[% USE KohaDates %] |
1 |
[% USE KohaDates %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
<title>Koha › Acquisitions › Ordered</title> |
3 |
<title>Koha › Acquisitions › Ordered</title> |
|
|
4 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
4 |
[% INCLUDE 'doc-head-close.inc' %] |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
6 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
7 |
[% INCLUDE 'datatables-strings.inc' %] |
8 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
9 |
<script type="text/javascript"> |
10 |
//<![CDATA[ |
11 |
$(document).ready(function() { |
12 |
var spent = $("#spent").dataTable($.extend(true, {}, dataTablesDefaults, { |
13 |
"sPaginationType": "four_button" |
14 |
} ) ); |
15 |
}); |
16 |
//]]> |
17 |
</script> |
5 |
</head> |
18 |
</head> |
6 |
<body id="acq_ordered" class="acq"> |
19 |
<body id="acq_ordered" class="acq"> |
7 |
[% INCLUDE 'header.inc' %] |
20 |
[% INCLUDE 'header.inc' %] |
Lines 31-37
Link Here
|
31 |
<th> Subtotal </th> |
44 |
<th> Subtotal </th> |
32 |
</tr> |
45 |
</tr> |
33 |
</thead> |
46 |
</thead> |
34 |
|
47 |
<tbody> |
35 |
[% FOREACH order IN ordered %] |
48 |
[% FOREACH order IN ordered %] |
36 |
[% IF loop.odd %] |
49 |
[% IF loop.odd %] |
37 |
<tr class="highlight"> |
50 |
<tr class="highlight"> |
Lines 68-74
Link Here
|
68 |
</td> |
81 |
</td> |
69 |
</tr> |
82 |
</tr> |
70 |
[% END %] |
83 |
[% END %] |
71 |
|
84 |
</tbody> |
72 |
<tfoot> |
85 |
<tfoot> |
73 |
<tr> |
86 |
<tr> |
74 |
<td> Total </td> |
87 |
<td> Total </td> |
75 |
- |
|
|