|
@@ -35,11 +35,11 @@ public class DataTask implements ITask {
|
|
|
//报告时间
|
|
|
params.put("report_datetime",record.getStr("REPORTDATE"));
|
|
|
//审核医生姓名
|
|
|
- params.put("review_doctor_name",record.getStr("REVIEWDOCTOR"));
|
|
|
+ params.put("review_doctor_name",record.getStr("REVIEWDOCTOR")==null?"":record.getStr("REVIEWDOCTOR"));
|
|
|
//审核时间
|
|
|
params.put("review_datetime",record.getStr("REPORTDATE"));
|
|
|
//确认医生姓名
|
|
|
- params.put("confirm_doctor_name",record.getStr("REVIEWDOCTOR"));
|
|
|
+ params.put("confirm_doctor_name",record.getStr("REVIEWDOCTOR")==null?"":record.getStr("REVIEWDOCTOR"));
|
|
|
//确认时间
|
|
|
params.put("confirm_datetime",record.getStr("REPORTDATE"));
|
|
|
//意见建议
|