merge
This commit is contained in:
commit
1aa1e288ec
|
@ -2367,7 +2367,7 @@ public class FHIRPathEngine {
|
||||||
if (vs != null) {
|
if (vs != null) {
|
||||||
for (Base l : left) {
|
for (Base l : left) {
|
||||||
if (Utilities.existsInList(l.fhirType(), "code", "string", "uri")) {
|
if (Utilities.existsInList(l.fhirType(), "code", "string", "uri")) {
|
||||||
if (worker.validateCode(terminologyServiceOptions.guessSystem(), TypeConvertor.castToCoding(l), vs).isOk()) {
|
if (worker.validateCode(terminologyServiceOptions.guessSystem() , TypeConvertor.castToCoding(l), vs).isOk()) {
|
||||||
ans = true;
|
ans = true;
|
||||||
}
|
}
|
||||||
} else if (l.fhirType().equals("Coding")) {
|
} else if (l.fhirType().equals("Coding")) {
|
||||||
|
@ -5734,4 +5734,4 @@ public class FHIRPathEngine {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,6 +75,10 @@ public class VersionUtilities {
|
||||||
if (isR4BVer(v)) {
|
if (isR4BVer(v)) {
|
||||||
return "hl7.fhir.r4b.core";
|
return "hl7.fhir.r4b.core";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isR5Ver(v)) {
|
||||||
|
return "hl7.fhir.r5.core";
|
||||||
|
}
|
||||||
|
|
||||||
if ("current".equals(v)) {
|
if ("current".equals(v)) {
|
||||||
return "hl7.fhir.r5.core";
|
return "hl7.fhir.r5.core";
|
||||||
|
@ -101,6 +105,9 @@ public class VersionUtilities {
|
||||||
if (isR4Ver(v)) {
|
if (isR4Ver(v)) {
|
||||||
return "4.0.1";
|
return "4.0.1";
|
||||||
}
|
}
|
||||||
|
if (isR5Ver(v)) {
|
||||||
|
return "5.0.0";
|
||||||
|
}
|
||||||
if (v != null && v.startsWith(CURRENT_VERSION)) {
|
if (v != null && v.startsWith(CURRENT_VERSION)) {
|
||||||
return "current";
|
return "current";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue