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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-2 / +1 lines)
Lines 613-619 Link Here
613
                orderable: true,
613
                orderable: true,
614
                render: function (data, type, row, meta) {
614
                render: function (data, type, row, meta) {
615
                    if ( row.external_id != null ) {
615
                    if ( row.external_id != null ) {
616
                        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);
616
                        return '<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=%s&itemnumber=%s#item%s">%s</a>'.format(row.biblio_id, row.item_id, row.item_id, row.external_id);
617
                    }
617
                    }
618
                    return '';
618
                    return '';
619
                }
619
                }
620
- 

Return to bug 37496