|
@@ -212,7 +212,8 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
|
|
|
|
for (Concept i : conceptList) {
|
|
|
if (reCouMap.get(i.getId()) != null
|
|
|
- || (getAllForRelationVO.getExcludedConceptIds() != null && getAllForRelationVO.getExcludedConceptIds().contains(i.getId()))) {
|
|
|
+ || (getAllForRelationVO.getExcludedConceptIds() != null && getAllForRelationVO.getExcludedConceptIds().contains(i.getId()))
|
|
|
+ || (getAllForRelationVO.getRelationConceptId() != null && getAllForRelationVO.getRelationConceptId() == i.getId())) {
|
|
|
continue;
|
|
|
}
|
|
|
GetAllForRelationDTO getAllForRelationDTO = new GetAllForRelationDTO();
|