Merge pull request #926 from gabriel0316/ConceptMap-show-all-displayName
Show display name of concepts which are not mapped
This commit is contained in:
commit
58d281a3f2
|
@ -246,7 +246,7 @@ public class ConceptMapRenderer extends TerminologyRenderer {
|
||||||
td.addText(ccl.getCode());
|
td.addText(ccl.getCode());
|
||||||
else
|
else
|
||||||
td.addText(grp.getSource()+" / "+ccl.getCode());
|
td.addText(grp.getSource()+" / "+ccl.getCode());
|
||||||
display = getDisplayForConcept(systemFromCanonical(grp.getSource()), versionFromCanonical(grp.getSource()), ccl.getCode());
|
display = ccl.hasDisplay() ? ccl.getDisplay() : getDisplayForConcept(systemFromCanonical(grp.getSource()), versionFromCanonical(grp.getSource()), ccl.getCode());
|
||||||
tr.td().style("border-left-width: 0px").tx(display == null ? "" : display);
|
tr.td().style("border-left-width: 0px").tx(display == null ? "" : display);
|
||||||
tr.td().colspan("4").style("background-color: #efefef").tx("(not mapped)");
|
tr.td().colspan("4").style("background-color: #efefef").tx("(not mapped)");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue