merge
This commit is contained in:
commit
1aa1e288ec
|
@ -2367,7 +2367,7 @@ public class FHIRPathEngine {
|
|||
if (vs != null) {
|
||||
for (Base l : left) {
|
||||
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;
|
||||
}
|
||||
} else if (l.fhirType().equals("Coding")) {
|
||||
|
@ -5734,4 +5734,4 @@ public class FHIRPathEngine {
|
|||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -75,6 +75,10 @@ public class VersionUtilities {
|
|||
if (isR4BVer(v)) {
|
||||
return "hl7.fhir.r4b.core";
|
||||
}
|
||||
|
||||
if (isR5Ver(v)) {
|
||||
return "hl7.fhir.r5.core";
|
||||
}
|
||||
|
||||
if ("current".equals(v)) {
|
||||
return "hl7.fhir.r5.core";
|
||||
|
@ -101,6 +105,9 @@ public class VersionUtilities {
|
|||
if (isR4Ver(v)) {
|
||||
return "4.0.1";
|
||||
}
|
||||
if (isR5Ver(v)) {
|
||||
return "5.0.0";
|
||||
}
|
||||
if (v != null && v.startsWith(CURRENT_VERSION)) {
|
||||
return "current";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue