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

(-)a/admin/columns_settings.yml (-2 lines)
Lines 1064-1071 modules: Link Here
1064
              columnname: orderid
1064
              columnname: orderid
1065
            -
1065
            -
1066
              columnname: patron
1066
              columnname: patron
1067
            -
1068
              columnname: biblio_id
1069
            -
1067
            -
1070
              columnname: library_branchname
1068
              columnname: library_branchname
1071
            -
1069
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill-list-table.inc (-1 lines)
Lines 13-19 Link Here
13
            <th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="type" data-related-search-on="value">Request type</th>
13
            <th scope="col" data-datatype="related-object" data-related="extended_attributes" data-related-key="type" data-related-value="type" data-related-search-on="value">Request type</th>
14
            <th scope="col">Order ID</th>
14
            <th scope="col">Order ID</th>
15
            <th scope="col">Patron</th>
15
            <th scope="col">Patron</th>
16
            <th scope="col">Bibliographic record ID</th>
17
            <th scope="col">Library</th>
16
            <th scope="col">Library</th>
18
            <th scope="col">Status</th>
17
            <th scope="col">Status</th>
19
            <th scope="col" class="placed_formatted">Placed on</th>
18
            <th scope="col" class="placed_formatted">Placed on</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js (-15 / +8 lines)
Lines 286-292 $(document).ready(function () { Link Here
286
                                ) +
286
                                ) +
287
                                "</span>";
287
                                "</span>";
288
                        }
288
                        }
289
                        if (display_extended_attribute(row, "title") !== "") {
289
                        if (row.biblio_id !== null) {
290
                            display +=
291
                                '<span style="display:block"> Title: ' +
292
                                $biblio_to_html(row.biblio, { link: 1 }) +
293
                                "</span>";
294
                        } else if (
295
                            display_extended_attribute(row, "title") !== ""
296
                        ) {
290
                            display +=
297
                            display +=
291
                                '<span style="display:block"> Title: ' +
298
                                '<span style="display:block"> Title: ' +
292
                                display_extended_attribute(row, "title") +
299
                                display_extended_attribute(row, "title") +
Lines 364-382 $(document).ready(function () { Link Here
364
                            : "";
371
                            : "";
365
                    },
372
                    },
366
                },
373
                },
367
                {
368
                    data: "biblio_id",
369
                    orderable: true,
370
                    render: function (data, type, row, meta) {
371
                        if (data === null) {
372
                            return "";
373
                        }
374
                        return $biblio_to_html(row.biblio, {
375
                            biblio_id_only: 1,
376
                            link: 1,
377
                        });
378
                    },
379
                },
380
                {
374
                {
381
                    data: "library.name",
375
                    data: "library.name",
382
                    orderable: true,
376
                    orderable: true,
383
- 

Return to bug 33544