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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-2 / +4 lines)
Lines 589-595 Link Here
589
                searchable: true,
589
                searchable: true,
590
                orderable: true,
590
                orderable: true,
591
                render: function (data, type, row, meta) {
591
                render: function (data, type, row, meta) {
592
                    return '<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=%s#item%s">%s</a>'.format(row.biblio_id, row.item_id, row.external_id);
592
                    if ( row.external_id != null ) {
593
                        return '<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=%s#item%s">%s</a>'.format(row.biblio_id, row.item_id, row.external_id);
594
                    }
595
                    return '';
593
                }
596
                }
594
            },
597
            },
595
            {
598
            {
596
- 

Return to bug 33568