|
@@ -75,10 +75,11 @@ public class DpccController {
|
|
|
@PassToken
|
|
|
@GetMapping("/uploadHisData")
|
|
|
public String uploadHisData(@RequestParam("token") String token) throws Exception {
|
|
|
+ log.info("DPCC上传请求:{}", token);
|
|
|
List<PatientInfo> inpatientList = dao.getInpatientList();
|
|
|
List<PatientInfo> outpatientList = dao.getOutpatientList();
|
|
|
if (inpatientList.isEmpty() && outpatientList.isEmpty()) {
|
|
|
- return "OK";
|
|
|
+ return "没有需要上传的数据。";
|
|
|
}
|
|
|
|
|
|
ReportIndexInquiry inquiry = getReportIndexInquiry();
|