Lines 1-8
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 |
[% INCLUDE 'additem.js.inc' %] |
5 |
[% INCLUDE 'additem.js.inc' %] |
5 |
<script type="text/javascript" src="[% themelang %]/js/additem.js"> </script> |
6 |
<script type="text/javascript" src="[% themelang %]/js/additem.js"> </script> |
|
|
7 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
8 |
[% INCLUDE 'datatables-strings.inc' %] |
9 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
6 |
<script type="text/javascript"> |
10 |
<script type="text/javascript"> |
7 |
//<![CDATA[ |
11 |
//<![CDATA[ |
8 |
function Check(form) { |
12 |
function Check(form) { |
Lines 95-100
Link Here
|
95 |
CheckNItems($(this).val()); |
99 |
CheckNItems($(this).val()); |
96 |
}); |
100 |
}); |
97 |
[% END %] |
101 |
[% END %] |
|
|
102 |
|
103 |
var orderlistt = $("#orderlistt").dataTable($.extend(true, {}, dataTablesDefaults, { |
104 |
"sPaginationType": "four_button" |
105 |
} ) ); |
106 |
|
98 |
}); |
107 |
}); |
99 |
//]]> |
108 |
//]]> |
100 |
</script> |
109 |
</script> |
Lines 306-320
Link Here
|
306 |
</fieldset></div> </form> |
315 |
</fieldset></div> </form> |
307 |
[% ELSE %] |
316 |
[% ELSE %] |
308 |
<div id="acqui_acquire_orderlist"> |
317 |
<div id="acqui_acquire_orderlist"> |
309 |
<table> |
318 |
<table id="orderlistt"> |
310 |
<tr> |
319 |
<thead> |
|
|
320 |
<tr> |
311 |
<th>Basket</th> |
321 |
<th>Basket</th> |
312 |
<th>ISBN</th> |
322 |
<th>ISBN</th> |
313 |
<th>Title</th> |
323 |
<th>Title</th> |
314 |
<th>Author</th> |
324 |
<th>Author</th> |
315 |
<th>Qty</th> |
325 |
<th>Qty</th> |
316 |
<th>Received</th> |
326 |
<th>Received</th> |
317 |
</tr> |
327 |
</tr> |
|
|
328 |
</thead> |
329 |
<tbody> |
318 |
[% FOREACH loo IN loop %] |
330 |
[% FOREACH loo IN loop %] |
319 |
<tr> |
331 |
<tr> |
320 |
<td>[% loo.basketno %]</td> |
332 |
<td>[% loo.basketno %]</td> |
Lines 325-330
Link Here
|
325 |
<td>[% loo.quantityreceived %]</td> |
337 |
<td>[% loo.quantityreceived %]</td> |
326 |
</tr> |
338 |
</tr> |
327 |
[% END %] |
339 |
[% END %] |
|
|
340 |
</tbody> |
328 |
</table> |
341 |
</table> |
329 |
</div> |
342 |
</div> |
330 |
[% END %] |
343 |
[% END %] |
331 |
- |
|
|