|
@@ -32,11 +32,7 @@ public class InfoTask implements ITask {
|
|
|
continue;
|
|
|
}
|
|
|
Map<String, String> params = new HashMap<>();
|
|
|
- params.put("type", "1");
|
|
|
-
|
|
|
- params.put("institution_id", PropKit.get("institution_id"));
|
|
|
-
|
|
|
- params.put("code", jsonObject.getString("id"));
|
|
|
+ params.put("exam_id", jsonObject.getString("id"));
|
|
|
//exams表
|
|
|
//申请科室
|
|
|
params.put("application_department", record.getStr("DEPARTMENT")==null?"":record.getStr("DEPARTMENT"));
|
|
@@ -53,6 +49,7 @@ public class InfoTask implements ITask {
|
|
|
params.put("phone", record.getStr("PHONE")==null?"":record.getStr("PHONE"));
|
|
|
//患者身份证号
|
|
|
params.put("card_num", record.getStr("IDCARD")==null?"":record.getStr("IDCARD"));
|
|
|
+ params.put("report_result", "0");
|
|
|
//门诊号住院号
|
|
|
params.put("hopitalized_no", record.getStr("INPATIENTNUM")==null?"":record.getStr("INPATIENTNUM"));
|
|
|
params.put("out_patient", record.getStr("OUTPATIENTNUM")==null?"":record.getStr("OUTPATIENTNUM"));
|