|
@@ -55,7 +55,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表
|
|
@@ -67,7 +67,7 @@ public class DataTask implements ITask {
|
|
|
params.put("card_num", record.getStr("IDCARD"));
|
|
|
//检查结果1阴2阳
|
|
|
String report_result = "0";
|
|
|
- if (report_result != null) {
|
|
|
+ if (record.getStr("F_STU_SPARE1") != null) {
|
|
|
report_result = record.getStr("F_STU_SPARE1").contains("阳")?"2":"1";
|
|
|
}
|
|
|
params.put("report_result", report_result);
|