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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-3 / +4 lines)
Lines 85-95 Link Here
85
        var orderst = $("#orders").dataTable($.extend(true, {}, dataTablesDefaults, {
85
        var orderst = $("#orders").dataTable($.extend(true, {}, dataTablesDefaults, {
86
            "sPaginationType": "four_button",
86
            "sPaginationType": "four_button",
87
            [% IF ( active ) %]
87
            [% IF ( active ) %]
88
              [% UNLESS ( closedate ) %]
89
                "aoColumnDefs": [
88
                "aoColumnDefs": [
90
                    { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
89
                    [% UNLESS ( closedate ) %]
90
                        { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
91
                    [% END %]
92
                    { "sType": "anti-the", "aTargets": [ 0 ] }
91
                ],
93
                ],
92
              [% END %]
93
            [% END %]
94
            [% END %]
94
        } ) );
95
        } ) );
95
        var cancelledorderst = $("#cancelledorderst").dataTable($.extend(true, {}, dataTablesDefaults, {
96
        var cancelledorderst = $("#cancelledorderst").dataTable($.extend(true, {}, dataTablesDefaults, {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-1 / +4 lines)
Lines 27-33 Link Here
27
            bInfo: false,
27
            bInfo: false,
28
            bPaginate: false,
28
            bPaginate: false,
29
            bFilter: false,
29
            bFilter: false,
30
            sDom: "t"
30
            sDom: "t",
31
            "aoColumnDefs": [
32
                { "sType": "anti-the", "aTargets": [ 0 ] }
33
            ]
31
        }));
34
        }));
32
[% IF ( (Koha.Preference('AcqEnableFiles')) && files ) %]
35
[% IF ( (Koha.Preference('AcqEnableFiles')) && files ) %]
33
        $("#invoice_files_table").dataTable($.extend(true, {}, dataTablesDefaults, {
36
        $("#invoice_files_table").dataTable($.extend(true, {}, dataTablesDefaults, {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-3 / +2 lines)
Lines 32-38 Link Here
32
                { "sType": "html" },
32
                { "sType": "html" },
33
                { "sType": "html" },
33
                { "sType": "html" },
34
                { "sType": "num-html" },
34
                { "sType": "num-html" },
35
                { "sType": "html" },
35
                { "sType": "anti-the" },
36
                null,
36
                null,
37
                null,
37
                null,
38
                null,
38
                null,
Lines 76-82 Link Here
76
                { "sType": "html" },
76
                { "sType": "html" },
77
                { "sType": "html" },
77
                { "sType": "html" },
78
                { "sType": "num-html" },
78
                { "sType": "num-html" },
79
                null,
79
                { "sType": "anti-the" },
80
                null,
80
                null,
81
                null,
81
                null,
82
                null,
82
                null,
83
- 

Return to bug 11203