|
@@ -32,6 +32,22 @@ public class InfoTask implements ITask {
|
|
}
|
|
}
|
|
Map<String, String> params = new HashMap<>();
|
|
Map<String, String> params = new HashMap<>();
|
|
params.put("exam_id", jsonObject.getString("id"));
|
|
params.put("exam_id", jsonObject.getString("id"));
|
|
|
|
+ //报告医生姓名
|
|
|
|
+ params.put("report_doctor_name", "");
|
|
|
|
+ //报告时间
|
|
|
|
+ params.put("report_datetime", parseStringToDate());
|
|
|
|
+ //审核医生姓名
|
|
|
|
+ params.put("review_doctor_name", "");
|
|
|
|
+ //审核时间
|
|
|
|
+ params.put("review_datetime", parseStringToDate());
|
|
|
|
+ //确认医生姓名
|
|
|
|
+ params.put("confirm_doctor_name", "");
|
|
|
|
+ //确认时间
|
|
|
|
+ params.put("confirm_datetime", parseStringToDate());
|
|
|
|
+ //意见建议
|
|
|
|
+ params.put("impression", "");
|
|
|
|
+ //影像所见
|
|
|
|
+ params.put("description", "");
|
|
//exams表
|
|
//exams表
|
|
//申请科室
|
|
//申请科室
|
|
params.put("application_department", record.getStr("ReqDept"));
|
|
params.put("application_department", record.getStr("ReqDept"));
|
|
@@ -50,7 +66,7 @@ public class InfoTask implements ITask {
|
|
params.put("card_num", record.getStr("IDCard")==null?"":record.getStr("IDCard"));
|
|
params.put("card_num", record.getStr("IDCard")==null?"":record.getStr("IDCard"));
|
|
//检查结果1阴2阳
|
|
//检查结果1阴2阳
|
|
// params.put("report_result", record.getStr("Result").contains("阳")?"2":"1");
|
|
// params.put("report_result", record.getStr("Result").contains("阳")?"2":"1");
|
|
- params.put("report_result", "");
|
|
|
|
|
|
+ params.put("report_result", "0");
|
|
|
|
|
|
//住院号
|
|
//住院号
|
|
params.put("hopitalized_no", record.getStr("InPatientNum"));
|
|
params.put("hopitalized_no", record.getStr("InPatientNum"));
|