|
@@ -33,15 +33,15 @@ public class UpdateTask implements ITask {
|
|
|
//报告医生姓名
|
|
|
params.put("report_doctor_name", "");
|
|
|
//报告时间
|
|
|
- params.put("report_datetime", record.getStr("REPORTDATE")==null?record.getStr("STUDY_DATE"):record.getStr("REPORTDATE"));
|
|
|
+ params.put("report_datetime", "");
|
|
|
//审核医生姓名
|
|
|
params.put("review_doctor_name", "");
|
|
|
//审核时间
|
|
|
- params.put("review_datetime", record.getStr("REPORTDATE")==null?record.getStr("STUDY_DATE"):record.getStr("REPORTDATE"));
|
|
|
+ params.put("review_datetime", "");
|
|
|
//确认医生姓名
|
|
|
params.put("confirm_doctor_name", "");
|
|
|
//确认时间
|
|
|
- params.put("confirm_datetime", record.getStr("REPORTDATE")==null?record.getStr("STUDY_DATE"):record.getStr("REPORTDATE"));
|
|
|
+ params.put("confirm_datetime", "");
|
|
|
//意见建议
|
|
|
params.put("impression", "");
|
|
|
//影像所见
|
|
@@ -65,7 +65,7 @@ public class UpdateTask implements ITask {
|
|
|
params.put("report_result", "0");
|
|
|
ThreadPoolService tService = ServiceFactory.getService(ThreadPoolService.class);
|
|
|
tService.execute(() -> {
|
|
|
- dService.saveReport(params);
|
|
|
+ dService.updatePatientInfo(params);
|
|
|
});
|
|
|
} catch (Exception e) {
|
|
|
// TODO: handle exception
|