Lines 1-27
Link Here
|
1 |
[% USE raw %] |
1 |
[% USE raw %] |
|
|
2 |
[% USE Asset %] |
2 |
[% USE Koha %] |
3 |
[% USE Koha %] |
3 |
[% USE Branches %] |
4 |
[% USE Branches %] |
4 |
[% USE KohaDates %] |
5 |
[% USE KohaDates %] |
|
|
6 |
[% SET footerjs = 1 %] |
5 |
[% INCLUDE 'doc-head-open.inc' %] |
7 |
[% INCLUDE 'doc-head-open.inc' %] |
6 |
<title>Koha › Stock rotation</title> |
8 |
<title>Koha › Stock rotation</title> |
7 |
[% INCLUDE 'doc-head-close.inc' %] |
9 |
[% INCLUDE 'doc-head-close.inc' %] |
8 |
[% Asset.css("css/datatables.css") | $raw %] |
10 |
[% Asset.css("css/datatables.css") | $raw %] |
9 |
[% INCLUDE 'datatables.inc' %] |
|
|
10 |
[% Asset.js("js/pages/stockrotation.js") | $raw %] |
11 |
<script type="text/javascript"> |
12 |
//<![CDATA[ |
13 |
$(document).ready(function() { |
14 |
$('#sr_manage_items').dataTable($.extend(true, {}, dataTablesDefaults, { |
15 |
"autoWidth": false, |
16 |
"aoColumnDefs": [ |
17 |
{ "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, |
18 |
{ "bSortable": true, "bSearchable": false, 'aTargets': [ 'NoSearch' ] } |
19 |
], |
20 |
"sPaginationType": "four_button" |
21 |
})); |
22 |
}); |
23 |
//]]> |
24 |
</script> |
25 |
</head> |
11 |
</head> |
26 |
|
12 |
|
27 |
<body id="tools_stockrotation" class="tools"> |
13 |
<body id="tools_stockrotation" class="tools"> |
Lines 508-511
Link Here
|
508 |
</div> |
494 |
</div> |
509 |
</div> |
495 |
</div> |
510 |
</div> |
496 |
</div> |
|
|
497 |
|
498 |
[% MACRO jsinclude BLOCK %] |
499 |
[% Asset.js("js/tools-menu.js") | $raw %] |
500 |
[% INCLUDE 'datatables.inc' %] |
501 |
[% Asset.js("js/pages/stockrotation.js") | $raw %] |
502 |
<script type="text/javascript"> |
503 |
$(document).ready(function() { |
504 |
$('#sr_manage_items').dataTable($.extend(true, {}, dataTablesDefaults, { |
505 |
"autoWidth": false, |
506 |
"aoColumnDefs": [ |
507 |
{ "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, |
508 |
{ "bSortable": true, "bSearchable": false, 'aTargets': [ 'NoSearch' ] } |
509 |
], |
510 |
"sPaginationType": "four_button" |
511 |
})); |
512 |
}); |
513 |
</script> |
514 |
[% END %] |
515 |
|
511 |
[% INCLUDE 'intranet-bottom.inc' %] |
516 |
[% INCLUDE 'intranet-bottom.inc' %] |
512 |
- |
|
|