|
@@ -73,13 +73,13 @@ public class DataTask implements ITask {
|
|
|
//患者身份证号
|
|
|
params.put("card_num", record.getStr("idcard"));
|
|
|
//检查结果1阴2阳
|
|
|
- params.put("report_result", "0");
|
|
|
+ params.put("report_result", record.getStr("result").contains("阳")?"2":"1");
|
|
|
//住院号
|
|
|
params.put("hopitalized_no", record.getStr("inPatientNum"));
|
|
|
//门诊号
|
|
|
params.put("out_patient", record.getStr("outPatientNum"));
|
|
|
//病人ID
|
|
|
- params.put("his_patient_id", record.getStr("patient_id"));
|
|
|
+// params.put("his_patient_id", record.getStr("patient_id"));
|
|
|
//检查方法
|
|
|
params.put("exam_project", record.getStr("project"));
|
|
|
|