@@ -, +, @@ --- .../includes/html_helpers/tables/items/catalogue_detail.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc @@ -589,7 +589,10 @@ searchable: true, orderable: true, render: function (data, type, row, meta) { - return '%s'.format(row.biblio_id, row.item_id, row.external_id); + if ( row.external_id != null ) { + return '%s'.format(row.biblio_id, row.item_id, row.external_id); + } + return ''; } }, { --