|
@@ -90,15 +90,15 @@ public class ViewController extends Controller {
|
|
|
// 报告医生姓名
|
|
|
params.put("report_doctor_name", reportdoctor);
|
|
|
// 报告时间
|
|
|
- params.put("report_datetime", parseStringToDate(reportdate).toString());
|
|
|
+ params.put("report_datetime", "2020-04-01 08:00:00");
|
|
|
// 审核医生姓名
|
|
|
params.put("review_doctor_name", reviewdoctor);
|
|
|
// 审核时间
|
|
|
- params.put("review_datetime", parseStringToDate(reportdate).toString());
|
|
|
+ params.put("review_datetime", "2020-04-01 08:00:00");
|
|
|
// 确认医生姓名
|
|
|
params.put("confirm_doctor_name", reviewdoctor);
|
|
|
// 确认时间
|
|
|
- params.put("confirm_datetime", parseStringToDate(reportdate).toString());
|
|
|
+ params.put("confirm_datetime", "2020-04-01 08:00:00");
|
|
|
// 意见建议
|
|
|
params.put("impression", impression);
|
|
|
// 影像所见
|
|
@@ -116,9 +116,9 @@ public class ViewController extends Controller {
|
|
|
// 患者姓名
|
|
|
params.put("name", patientname);
|
|
|
// 患者手机号
|
|
|
- params.put("phone", phone==null?"":phone);
|
|
|
+ params.put("phone", phone);
|
|
|
// 患者身份证号
|
|
|
- params.put("card_num", idcard==null?"":idcard);
|
|
|
+ params.put("card_num", idcard);
|
|
|
params.put("report_result", "0");
|
|
|
ThreadPoolService tService = ServiceFactory.getService(ThreadPoolService.class);
|
|
|
tService.execute(() -> {
|