|
Lines 1-7
Link Here
|
| 1 |
[% INCLUDE 'doc-head-open.inc' %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
| 2 |
<title>Koha › Acquisitions › Receipt summary for : [% name %] [% IF ( invoice ) %]invoice, [% invoice %][% END %]</title> |
2 |
<title>Koha › Acquisitions › Receipt summary for : [% name %] [% IF ( invoice ) %]invoice, [% invoice %][% END %]</title> |
|
|
3 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
| 3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
[% INCLUDE 'doc-head-close.inc' %] |
| 4 |
<script type="text/javascript" src="[% themelang %]/js/additem.js"> </script> |
5 |
<script type="text/javascript" src="[% themelang %]/js/additem.js"> </script> |
|
|
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 orderlistt = $("#orderlistt").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 13 |
"sPaginationType": "four_button" |
| 14 |
} ) ); |
| 15 |
}); |
| 16 |
//]]> |
| 17 |
</script> |
| 18 |
|
| 5 |
</head> |
19 |
</head> |
| 6 |
<body> |
20 |
<body> |
| 7 |
[% INCLUDE 'header.inc' %] |
21 |
[% INCLUDE 'header.inc' %] |
|
Lines 139-145
Link Here
|
| 139 |
</fieldset></div> </form> |
153 |
</fieldset></div> </form> |
| 140 |
[% ELSE %] |
154 |
[% ELSE %] |
| 141 |
<div id="acqui_acquire_orderlist"> |
155 |
<div id="acqui_acquire_orderlist"> |
| 142 |
<table> |
156 |
<table id="orderlistt"> |
|
|
157 |
<thead> |
| 143 |
<tr> |
158 |
<tr> |
| 144 |
<th>Basket</th> |
159 |
<th>Basket</th> |
| 145 |
<th>ISBN</th> |
160 |
<th>ISBN</th> |
|
Lines 148-153
Link Here
|
| 148 |
<th>Qty</th> |
163 |
<th>Qty</th> |
| 149 |
<th>Received</th> |
164 |
<th>Received</th> |
| 150 |
</tr> |
165 |
</tr> |
|
|
166 |
</thead> |
| 167 |
<tbody> |
| 151 |
[% FOREACH loo IN loop %] |
168 |
[% FOREACH loo IN loop %] |
| 152 |
<tr> |
169 |
<tr> |
| 153 |
<td>[% loo.basketno %]</td> |
170 |
<td>[% loo.basketno %]</td> |
|
Lines 158-163
Link Here
|
| 158 |
<td>[% loo.quantityreceived %]</td> |
175 |
<td>[% loo.quantityreceived %]</td> |
| 159 |
</tr> |
176 |
</tr> |
| 160 |
[% END %] |
177 |
[% END %] |
|
|
178 |
</tbody> |
| 161 |
</table> |
179 |
</table> |
| 162 |
</div> |
180 |
</div> |
| 163 |
[% END %] |
181 |
[% END %] |
| 164 |
- |
|
|