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

(-)a/admin/columns_settings.yml (-2 lines)
Lines 905-912 modules: Link Here
905
              columnname: orderid
905
              columnname: orderid
906
            -
906
            -
907
              columnname: patron
907
              columnname: patron
908
            -
909
              columnname: biblio_id
910
            -
908
            -
911
              columnname: library_branchname
909
              columnname: library_branchname
912
            -
910
            -
(-)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 (-12 / +3 lines)
Lines 235-241 $(document).ready(function() { Link Here
235
                    if ( display_extended_attribute(row, 'article_title') !== "" ) {
235
                    if ( display_extended_attribute(row, 'article_title') !== "" ) {
236
                        display += '<span style="display:block"> Article: ' + display_extended_attribute(row, 'article_title') + '</span>';
236
                        display += '<span style="display:block"> Article: ' + display_extended_attribute(row, 'article_title') + '</span>';
237
                    }
237
                    }
238
                    if ( display_extended_attribute(row, 'title') !== "" ) {
238
                    if ( row.biblio_id !== null ) {
239
                        display += '<span style="display:block"> Title: ' + $biblio_to_html(row.biblio, { link: 1 }) + '</span>';
240
                    } else if ( display_extended_attribute(row, 'title') !== "" ) {
239
                        display += '<span style="display:block"> Title: ' + display_extended_attribute(row, 'title') + '</span>';
241
                        display += '<span style="display:block"> Title: ' + display_extended_attribute(row, 'title') + '</span>';
240
                    }
242
                    }
241
                    if ( display_extended_attribute(row, 'author') !== "" ) {
243
                    if ( display_extended_attribute(row, 'author') !== "" ) {
Lines 274-289 $(document).ready(function() { Link Here
274
                "data": "patron.firstname:patron.surname:patron.cardnumber",
276
                "data": "patron.firstname:patron.surname:patron.cardnumber",
275
                "render": function(data, type, row, meta) {
277
                "render": function(data, type, row, meta) {
276
                    return (row.patron) ? $patron_to_html( row.patron, { display_cardnumber: true, url: true } ) : ''; }                    },
278
                    return (row.patron) ? $patron_to_html( row.patron, { display_cardnumber: true, url: true } ) : ''; }                    },
277
            {
278
                "data": "biblio_id",
279
                "orderable": true,
280
                "render": function(data, type, row, meta) {
281
                    if ( data === null ) {
282
                        return "";
283
                    }
284
                    return $biblio_to_html(row.biblio, { biblio_id_only: 1, link: 1 });
285
                }
286
            },
287
            {
279
            {
288
                "data": "library.name",
280
                "data": "library.name",
289
                "orderable": true,
281
                "orderable": true,
290
- 

Return to bug 33544