From d1267f4977e462cbeccd5d87ea6d067f49b97e16 Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Thu, 25 Feb 2016 14:53:25 +0000 Subject: [PATCH] SSDM-3044 : Barcodes on parents/children links SVN: 35740 --- .../eln-lims/html/js/views/legacy/SampleLinksWidget.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/legacy/SampleLinksWidget.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/legacy/SampleLinksWidget.js index 29f058b4f16..ad59e82beb3 100644 --- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/legacy/SampleLinksWidget.js +++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/views/legacy/SampleLinksWidget.js @@ -439,7 +439,12 @@ function SampleLinksWidget(containerId, profile, serverFacade, title, sampleType var info = $("<span>"); - var codeLink = sampleToAdd.code; + var displayNameAsCode = sampleToAdd.code; + if(sampleToAdd.properties) { + displayNameAsCode = sampleToAdd.properties[profile.propertyReplacingCode]; + } + + var codeLink = displayNameAsCode; if(this.isDisabled) { var style = ""; var notFound = ""; @@ -449,7 +454,7 @@ function SampleLinksWidget(containerId, profile, serverFacade, title, sampleType } var href = Util.getURLFor(mainController.sideMenu.getCurrentNodeId(), "showViewSamplePageFromPermId", sampleToAdd.permId); - codeLink = $("<a>", { "style" : style, "href" : href, "class" : "browser-compatible-javascript-link" }).append(sampleToAdd.code + notFound); + codeLink = $("<a>", { "style" : style, "href" : href, "class" : "browser-compatible-javascript-link" }).append(displayNameAsCode + notFound); codeLink.click(function() { mainController.changeView("showViewSamplePageFromPermId", sampleToAdd.permId); -- GitLab