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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-2 / +8 lines)
Lines 66-72 Link Here
66
//<![CDATA[
66
//<![CDATA[
67
    $(document).ready(function() {
67
    $(document).ready(function() {
68
        var orderst = $("#orders").dataTable($.extend(true, {}, dataTablesDefaults, {
68
        var orderst = $("#orders").dataTable($.extend(true, {}, dataTablesDefaults, {
69
            "sPaginationType": "four_button"
69
            "sPaginationType": "four_button",
70
            [% IF ( active ) %]
71
              [% UNLESS ( closedate ) %]
72
                "aoColumnDefs": [
73
                    { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
74
                ],
75
              [% END %]
76
            [% END %]
70
        } ) );
77
        } ) );
71
        var cancelledorderst = $("#cancelledorderst").dataTable($.extend(true, {}, dataTablesDefaults, {
78
        var cancelledorderst = $("#cancelledorderst").dataTable($.extend(true, {}, dataTablesDefaults, {
72
            "sPaginationType": "four_button"
79
            "sPaginationType": "four_button"
73
- 

Return to bug 8109