|
@@ -134,11 +134,9 @@ public class ModuleFacade extends ModuleInfoServiceImpl {
|
|
if(ListUtil.isNotEmpty(pacsConceptIds)){//如果存在辅检相关信息添加数据返回
|
|
if(ListUtil.isNotEmpty(pacsConceptIds)){//如果存在辅检相关信息添加数据返回
|
|
//将辅检标签放入出参
|
|
//将辅检标签放入出参
|
|
for (ModuleInfoDTO bean : data) {
|
|
for (ModuleInfoDTO bean : data) {
|
|
- if (moduleDetailMap.get(bean.getId()) != null) {
|
|
|
|
- for (ModuleDetailDTO detailDTO : moduleDetailDTOList) {
|
|
|
|
- if (Integer.parseInt(bean.getType()) == QuestionTypeEnum.Pacs.getKey() && pacsRespDTO.data != null) {
|
|
|
|
- detailDTO.setName(pacsRespDTO.data.get(detailDTO.getQuestionId()));
|
|
|
|
- }
|
|
|
|
|
|
+ if (Integer.parseInt(bean.getType()) == QuestionTypeEnum.Pacs.getKey() && pacsRespDTO.data != null) {
|
|
|
|
+ for (ModuleDetailDTO detailDTO : bean.getModuleDetailDTOList()) {
|
|
|
|
+ detailDTO.setName(pacsRespDTO.data.get(detailDTO.getQuestionId()));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|