|
@@ -1764,6 +1764,13 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
algorithmDTO = (AlgorithmDTO) resMap.get("algorithmDTO");
|
|
algorithmDTO = (AlgorithmDTO) resMap.get("algorithmDTO");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ QcresultInfo qcresultInfo = qcresultInfoFacade.getOne(new QueryWrapper<QcresultInfo>()
|
|
|
|
+ .eq("hospital_id", analyzeVO.getHospitalId())
|
|
|
|
+ .eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
|
|
+ .eq("is_deleted", IsDeleteEnum.N.getKey()));
|
|
|
|
+ if (qcresultInfo != null && qcresultInfo.getId() != null) {
|
|
|
|
+ analyzeVO.setQcresultInfoId(qcresultInfo.getId());
|
|
|
|
+ }
|
|
List<MsgDTO> msgDTOList = getMsg(analyzeVO);
|
|
List<MsgDTO> msgDTOList = getMsg(analyzeVO);
|
|
if (ListUtil.isNotEmpty(msgDTOList)) {
|
|
if (ListUtil.isNotEmpty(msgDTOList)) {
|
|
msgDTOList.forEach(msgDTO -> {
|
|
msgDTOList.forEach(msgDTO -> {
|