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

(-)a/admin/columns_settings.yml (+17 lines)
Lines 633-638 modules: Link Here
633
            -
633
            -
634
              columnname: stocknumber
634
              columnname: stocknumber
635
635
636
    concerns:
637
      table_concerns:
638
        default_sort_order: 0
639
        columns:
640
            -
641
              columnname: reported
642
            -
643
              columnname: details
644
            -
645
              columnname: title
646
            -
647
              columnname: status
648
            -
649
              columnname: actions
650
              cannot_be_toggled: 1
651
              cannot_be_modified: 1
652
636
    z3950_search:
653
    z3950_search:
637
      resultst:
654
      resultst:
638
        default_sort_order: 1
655
        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