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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 70-75 modules: Link Here
70
70
71
    lateorders:
71
    lateorders:
72
      late_orders:
72
      late_orders:
73
        default_display_length: 20
74
        default_sort_order: 0
73
        columns:
75
        columns:
74
            -
76
            -
75
              columnname: checkbox
77
              columnname: checkbox
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt (-3 / +2 lines)
Lines 303-309 Link Here
303
303
304
        $(document).ready(function() {
304
        $(document).ready(function() {
305
305
306
            var columns_settings = [% TablesSettings.GetColumns( 'acqui', 'lateorders', 'late_orders', 'json' ) | $raw %];
306
            var table_settings = [% TablesSettings.GetTableSettings( 'acqui', 'lateorders', 'late_orders', 'json' ) | $raw %];
307
            late_orderst = KohaTable("late_orders", {
307
            late_orderst = KohaTable("late_orders", {
308
                "sorting": [[ 1, "asc" ]],
308
                "sorting": [[ 1, "asc" ]],
309
                "sPaginationType": "full",
309
                "sPaginationType": "full",
Lines 314-320 Link Here
314
                        $('input:checkbox[name=ordernumber]').bind('click', check_uncheck);
314
                        $('input:checkbox[name=ordernumber]').bind('click', check_uncheck);
315
                    };
315
                    };
316
                }
316
                }
317
            }, columns_settings );
317
            }, table_settings );
318
            $('input:checkbox[name=ordernumber]').bind('click', check_uncheck);
318
            $('input:checkbox[name=ordernumber]').bind('click', check_uncheck);
319
            $('#CheckAll').click(function(e){
319
            $('#CheckAll').click(function(e){
320
                e.preventDefault();
320
                e.preventDefault();
321
- 

Return to bug 29648