|
@@ -187,6 +187,8 @@ public class MappingConfigFacade extends MappingConfigServiceImpl {
|
|
|
conceptRespDTO = cdssCoreClient.getConceptNames(conceptVO);
|
|
|
if (RespDTOUtil.respIsOK(conceptRespDTO)) {
|
|
|
conceptIds = conceptRespDTO.data.stream().map(IndexBatchDTO::getId).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+ if (ListUtil.isNotEmpty(conceptIds)) {
|
|
|
mappingConfigPageVO.setConceptIds(conceptIds);
|
|
|
} else {
|
|
|
//没有启用禁用记录时返回空而不是全量
|
|
@@ -202,6 +204,9 @@ public class MappingConfigFacade extends MappingConfigServiceImpl {
|
|
|
conceptRespDTO = cdssCoreClient.getConceptNames(conceptVO);
|
|
|
if (RespDTOUtil.respIsOK(conceptRespDTO)) {
|
|
|
formConceptIds = conceptRespDTO.data.stream().map(IndexBatchDTO::getId).collect(Collectors.toList());
|
|
|
+
|
|
|
+ }
|
|
|
+ if (ListUtil.isNotEmpty(formConceptIds)) {
|
|
|
mappingConfigPageVO.setFormConceptIds(formConceptIds);
|
|
|
} else {
|
|
|
//没有启用禁用记录时返回空而不是全量
|
|
@@ -1739,10 +1744,11 @@ public class MappingConfigFacade extends MappingConfigServiceImpl {
|
|
|
if (formMap.containsKey(item.getForm())) {
|
|
|
item.setFormConceptId(formMap.get(item.getForm()).get(0));
|
|
|
} else {
|
|
|
- if (item.getIsMatch().equals(1)) {
|
|
|
+ //标准词已匹配,剂型未匹配,不做错误数据
|
|
|
+ /*if (item.getIsMatch().equals(1)) {
|
|
|
item.setIsMatch(0);
|
|
|
errorList.add(item);
|
|
|
- }
|
|
|
+ }*/
|
|
|
}
|
|
|
}
|
|
|
}
|