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

(-)a/admin/columns_settings.yml (+17 lines)
Lines 631-636 modules: Link Here
631
            -
631
            -
632
              columnname: stocknumber
632
              columnname: stocknumber
633
633
634
    concerns:
635
      table_concerns:
636
        default_sort_order: 0
637
        columns:
638
            -
639
              columnname: reported
640
            -
641
              columnname: details
642
            -
643
              columnname: title
644
            -
645
              columnname: status
646
            -
647
              columnname: actions
648
              cannot_be_toggled: 1
649
              cannot_be_modified: 1
650
634
    z3950_search:
651
    z3950_search:
635
      resultst:
652
      resultst:
636
        default_sort_order: 1
653
        default_sort_order: 1
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/concerns.tt (-2 / +3 lines)
Lines 111-116 Link Here
111
111
112
            var logged_in_user_borrowernumber = "[% logged_in_user.borrowernumber | html %]";
112
            var logged_in_user_borrowernumber = "[% logged_in_user.borrowernumber | html %]";
113
113
114
            var table_settings = [% TablesSettings.GetTableSettings( 'cataloguing', 'concerns', 'table_concerns', 'json' ) | $raw %];
115
114
            var concerns_url = '/api/v1/catalog/concerns';
116
            var concerns_url = '/api/v1/catalog/concerns';
115
            var concerns = $("#table_concerns").kohaTable({
117
            var concerns = $("#table_concerns").kohaTable({
116
                "ajax": {
118
                "ajax": {
Lines 194-200 Link Here
194
                        "orderable": false
196
                        "orderable": false
195
                    },
197
                    },
196
                ]
198
                ]
197
            });
199
            }, table_settings, 1);
198
200
199
            $('#hideResolved').on( "click", function() {
201
            $('#hideResolved').on( "click", function() {
200
                // It would be great if we could pass null here but it gets stringified
202
                // It would be great if we could pass null here but it gets stringified
201
- 

Return to bug 31028