|
@@ -56,7 +56,7 @@ public class DataTask implements ITask {
|
|
|
//申请医生
|
|
|
params.put("application_doctor", record.getStr("CLINICALDOCTOR"));
|
|
|
//临床诊断
|
|
|
- params.put("clin_diag", "");
|
|
|
+ params.put("clin_diag", record.getStr("DIAGNOSIS"));
|
|
|
//症状
|
|
|
params.put("clin_symp", "");
|
|
|
//patient_infos表
|
|
@@ -65,8 +65,8 @@ public class DataTask implements ITask {
|
|
|
//患者手机号
|
|
|
params.put("phone", record.getStr("PHONE"));
|
|
|
//患者身份证号
|
|
|
- params.put("card_num", "");
|
|
|
- params.put("report_result", "0");
|
|
|
+ params.put("card_num", record.getStr("IDCARD"));
|
|
|
+ params.put("report_result", record.getStr("F_STU_SPARE1").equals("阳性")?"2":"1");
|
|
|
ThreadPoolService tService = ServiceFactory.getService(ThreadPoolService.class);
|
|
|
tService.execute(() -> {
|
|
|
dService.saveReport(params);
|