超声修改
This commit is contained in:
parent
a7a51fc7f8
commit
f45edf78f2
@ -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")) {
|
||||
// 如果存在,获取现有数据并更新
|
||||
|
Loading…
Reference in New Issue
Block a user