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

(-)a/admin/columns_settings.yml (-2 lines)
Lines 1141-1148 modules: Link Here
1141
              columnname: orderid
1141
              columnname: orderid
1142
            -
1142
            -
1143
              columnname: patron
1143
              columnname: patron
1144
            -
1145
              columnname: biblio_id
1146
            -
1144
            -
1147
              columnname: library_branchname
1145
              columnname: library_branchname
1148
            -
1146
            -
(-)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 344-350 $(document).ready(function () { Link Here
344
                                ) +
344
                                ) +
345
                                "</span>";
345
                                "</span>";
346
                        }
346
                        }
347
                        if (display_extended_attribute(row, "title") !== "") {
347
                        if (row.biblio_id !== null) {
348
                            display +=
349
                                '<span style="display:block"> Title: ' +
350
                                $biblio_to_html(row.biblio, { link: 1 }) +
351
                                "</span>";
352
                        } else if (
353
                            display_extended_attribute(row, "title") !== ""
354
                        ) {
348
                            display +=
355
                            display +=
349
                                '<span style="display:block"> Title: ' +
356
                                '<span style="display:block"> Title: ' +
350
                                display_extended_attribute(row, "title") +
357
                                display_extended_attribute(row, "title") +
Lines 422-440 $(document).ready(function () { Link Here
422
                            : "";
429
                            : "";
423
                    },
430
                    },
424
                },
431
                },
425
                {
426
                    data: "biblio_id",
427
                    orderable: true,
428
                    render: function (data, type, row, meta) {
429
                        if (data === null) {
430
                            return "";
431
                        }
432
                        return $biblio_to_html(row.biblio, {
433
                            biblio_id_only: 1,
434
                            link: 1,
435
                        });
436
                    },
437
                },
438
                {
432
                {
439
                    data: "library.name",
433
                    data: "library.name",
440
                    orderable: true,
434
                    orderable: true,
441
- 

Return to bug 33544