mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 06:14:45 +00:00
Show display name of concepts which are not mapped
This commit is contained in:
parent
45a4ad77ad
commit
1f7fff8d9d
@ -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…
x
Reference in New Issue
Block a user