|
@@ -28,7 +28,7 @@ public class DataTask implements ITask {
|
|
|
if (record == null) {
|
|
|
continue;
|
|
|
}
|
|
|
- if (record.getStr("IMPRESSION") == null && record.getStr("DESCRPTION") == null) {
|
|
|
+ if (record.getStr("IMPRESSION") == null && record.getStr("DESCRPTION") == null && record.getStr("REVIEWDOCTOR") == null) {
|
|
|
continue;
|
|
|
}
|
|
|
Map<String, String> params = new HashMap<>();
|
|
@@ -72,7 +72,7 @@ public class DataTask implements ITask {
|
|
|
//门诊号
|
|
|
params.put("out_patient", record.getStr("OUTPATIENTNUM")==null?"":record.getStr("OUTPATIENTNUM"));
|
|
|
//病人ID
|
|
|
-// params.put("his_patient_id", record.getStr("patientNumber")==null?"":record.getStr("INPATIENTNUM"));
|
|
|
+ params.put("his_patient_id", record.getStr("PATIENTID")==null?"":record.getStr("PATIENTID"));
|
|
|
//检查方法
|
|
|
params.put("exam_project", record.getStr("PROIECT"));
|
|
|
ThreadPoolService tService = ServiceFactory.getService(ThreadPoolService.class);
|