View | Details | Raw Unified | Return to bug 11719
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt (-13 / +10 lines)
Lines 12-29 Link Here
12
        [% UNLESS ( preview ) %]
12
        [% UNLESS ( preview ) %]
13
         var sTable = $("#claimst").dataTable($.extend(true, {}, dataTablesDefaults, {
13
         var sTable = $("#claimst").dataTable($.extend(true, {}, dataTablesDefaults, {
14
            "sDom": 't',
14
            "sDom": 't',
15
            [% IF ( letter ) %]
16
                "aoColumnDefs": [
15
                "aoColumnDefs": [
17
                    { "aTargets": [ 0,1 ], "bSortable": false, "bSearchable": false }
16
                    [% IF ( letter ) %]
17
                        { "aTargets": [ 0,1 ], "bSortable": false, "bSearchable": false },
18
                    [% ELSE %]
19
                        { "aTargets": [ 0 ], "bSortable": false, "bSearchable": false },
20
                    [% END %]
21
                    { 'sType': "anti-the", 'aTargets' : [ 'anti-the'] },
22
                    { 'sType': "title-string", 'aTargets' : [ 'title-string'] }
18
                ],
23
                ],
19
            [% ELSE %]
20
                "aoColumnDefs": [
21
                    { "aTargets": [ 0 ], "bSortable": false, "bSearchable": false }
22
                ],
23
            [% END %]
24
            "aoColumns": [
25
                [% IF ( letter ) %]null,[% END %]null,null,{ "sType": "anti-the" },null,null,{ "sType": "title-string" },{ "sType": "title-string" }
26
        ],
27
            "bPaginate": false
24
            "bPaginate": false
28
        }));
25
        }));
29
        [% END %]
26
        [% END %]
Lines 268-279 Link Here
268
                    <th><input type="checkbox" id="CheckAll"></th>
265
                    <th><input type="checkbox" id="CheckAll"></th>
269
                    <th>Vendor</th>
266
                    <th>Vendor</th>
270
                    <th>Library</th>
267
                    <th>Library</th>
271
                    <th>Title</th>
268
                    <th class="anti-the">Title</th>
272
                    <th>ISSN</th>
269
                    <th>ISSN</th>
273
                    <th>Issue number</th>
270
                    <th>Issue number</th>
274
                    <th>Status</th>
271
                    <th>Status</th>
275
                    <th>Since</th>
272
                    <th class="title-string">Since</th>
276
                    <th>Claim date</th>
273
                    <th class="title-string">Claim date</th>
277
                </tr></thead>
274
                </tr></thead>
278
                <tbody>[% FOREACH missingissue IN missingissues %]
275
                <tbody>[% FOREACH missingissue IN missingissues %]
279
                    <tr>
276
                    <tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt (-6 / +1 lines)
Lines 60-72 function CheckNone( node ) { Link Here
60
}
60
}
61
$(document).ready(function() {
61
$(document).ready(function() {
62
    $('#subscription_years').tabs();
62
    $('#subscription_years').tabs();
63
    [% IF dateformat == "metric" %]
64
      dt_add_type_uk_date();
65
    [% END %]
66
67
    $(".subscription-year-table").dataTable($.extend(true, {}, dataTablesDefaults, {
63
    $(".subscription-year-table").dataTable($.extend(true, {}, dataTablesDefaults, {
68
        "aoColumnDefs": [
64
        "aoColumnDefs": [
69
            { "aTargets": [ 0 ], "bSortable": false, "bSearchable": false },
65
            { "aTargets": [ 0,-1 ], "bSortable": false, "bSearchable": false },
70
            { "sType": "title-string", "aTargets" : [ "title-string" ] }
66
            { "sType": "title-string", "aTargets" : [ "title-string" ] }
71
        ],
67
        ],
72
        "aaSorting": [[0, 'desc']],
68
        "aaSorting": [[0, 'desc']],
73
- 

Return to bug 11719