Fix NPE rendering terminology resources
This commit is contained in:
parent
049d8a1197
commit
eca93b0a76
|
@ -34,6 +34,9 @@ import org.hl7.fhir.utilities.xhtml.XhtmlNode;
|
|||
|
||||
public abstract class TerminologyRenderer extends ResourceRenderer {
|
||||
|
||||
private static final boolean DEBUG = false;
|
||||
|
||||
|
||||
public TerminologyRenderer(RenderingContext context) {
|
||||
super(context);
|
||||
}
|
||||
|
@ -309,8 +312,11 @@ public abstract class TerminologyRenderer extends ResourceRenderer {
|
|||
a.tx("SNOMED-CT");
|
||||
}
|
||||
else {
|
||||
if (value.startsWith("http://hl7.org") && !Utilities.existsInList(value, "http://hl7.org/fhir/sid/icd-10-us"))
|
||||
if (value.startsWith("http://hl7.org") && !Utilities.existsInList(value, "http://hl7.org/fhir/sid/icd-10-us")) {
|
||||
if (DEBUG) {
|
||||
System.out.println("Unable to resolve value set "+value);
|
||||
}
|
||||
}
|
||||
li.addText(value);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1292,7 +1292,7 @@ public class ValueSetRenderer extends TerminologyRenderer {
|
|||
for (ConceptReferenceComponent cc : inc.getConcept()) {
|
||||
String code = cc.getCode();
|
||||
ConceptDefinitionComponent v = null;
|
||||
if (e != null) {
|
||||
if (e != null && code != null) {
|
||||
v = getConceptForCode(e.getConcept(), code);
|
||||
}
|
||||
if (v == null && vse != null) {
|
||||
|
|
|
@ -134,6 +134,7 @@ public class RenderingContext {
|
|||
private DateTimeFormatter dateYearFormat;
|
||||
private DateTimeFormatter dateYearMonthFormat;
|
||||
private boolean copyButton;
|
||||
private ProfileKnowledgeProvider pkp;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -194,6 +195,7 @@ public class RenderingContext {
|
|||
res.locale = locale;
|
||||
res.showComments = showComments;
|
||||
res.copyButton = copyButton;
|
||||
res.pkp = pkp;
|
||||
|
||||
res.terminologyServiceOptions = terminologyServiceOptions.copy();
|
||||
return res;
|
||||
|
@ -210,7 +212,7 @@ public class RenderingContext {
|
|||
|
||||
public ProfileUtilities getProfileUtilities() {
|
||||
if (profileUtilitiesR == null) {
|
||||
profileUtilitiesR = new ProfileUtilities(worker, null, null);
|
||||
profileUtilitiesR = new ProfileUtilities(worker, null, pkp);
|
||||
}
|
||||
return profileUtilitiesR;
|
||||
}
|
||||
|
@ -608,5 +610,12 @@ public class RenderingContext {
|
|||
return this;
|
||||
}
|
||||
|
||||
public void setPkp(ProfileKnowledgeProvider pkp) {
|
||||
this.pkp = pkp;
|
||||
}
|
||||
public ProfileKnowledgeProvider getPkp() {
|
||||
return pkp;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue