超声修改

This commit is contained in:
新用户名 2025-04-26 15:11:29 +08:00
parent a7a51fc7f8
commit f45edf78f2

View File

@ -996,7 +996,6 @@ public class InspectPatientController {
Map<String, Object> responseMap = objectMapper.readValue(response, Map.class);
Map<String, Object> dataMap = (Map<String, Object>) responseMap.get("data");
if (dataMap != null && dataMap.get("pdfurl") != null) {
// 获取 pdfurl pname
String pdfurl = (String) dataMap.get("pdfurl");
String pname = (String) dataMap.get("pname");
@ -1006,7 +1005,6 @@ public class InspectPatientController {
examDescription = (String) dataMap.get("examDescription");
diagResults = (String) dataMap.get("diagResults");
}
// 检查 pdfurl pname 是否为空
if (pdfurl != null && !pdfurl.isEmpty() && pname != null && !pname.isEmpty()) {
InspectPacsDataSaveReqVO inspectPacs = new InspectPacsDataSaveReqVO();
@ -1014,7 +1012,6 @@ public class InspectPatientController {
inspectPacs.setData(pdfurl);
inspectPacs.setType("US");
inspectPacs.setPersonName(pname);
// 检查数据是否存在
if (pacsDataService.IspacsDataExist(medicalSn, "US")) {
// 如果存在获取现有数据并更新