populate ValueSet.url in $expand Operation (#3241)
This commit is contained in:
parent
715a4c4602
commit
37e7d6eea5
|
@ -419,7 +419,6 @@ public abstract class BaseTermReadSvcImpl implements ITermReadSvc {
|
||||||
accumulator.addParameter().setName("count").setValue(new IntegerType(count));
|
accumulator.addParameter().setName("count").setValue(new IntegerType(count));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
expandValueSetIntoAccumulator(theValueSetToExpand, theExpansionOptions, accumulator, theFilter, true);
|
expandValueSetIntoAccumulator(theValueSetToExpand, theExpansionOptions, accumulator, theFilter, true);
|
||||||
|
|
||||||
if (accumulator.getTotalConcepts() != null) {
|
if (accumulator.getTotalConcepts() != null) {
|
||||||
|
@ -427,6 +426,7 @@ public abstract class BaseTermReadSvcImpl implements ITermReadSvc {
|
||||||
}
|
}
|
||||||
|
|
||||||
ValueSet valueSet = new ValueSet();
|
ValueSet valueSet = new ValueSet();
|
||||||
|
valueSet.setUrl(theValueSetToExpand.getUrl());
|
||||||
valueSet.setId(theValueSetToExpand.getId());
|
valueSet.setId(theValueSetToExpand.getId());
|
||||||
valueSet.setStatus(Enumerations.PublicationStatus.ACTIVE);
|
valueSet.setStatus(Enumerations.PublicationStatus.ACTIVE);
|
||||||
valueSet.setCompose(theValueSetToExpand.getCompose());
|
valueSet.setCompose(theValueSetToExpand.getCompose());
|
||||||
|
|
Loading…
Reference in New Issue