|
@@ -201,7 +201,7 @@ public class ViewController extends Controller {
|
|
|
|
|
|
params.put("is_dcm", "2");
|
|
|
|
|
|
- params.put("exam_datetime", parseStringToDate("REVIEWDATE"));
|
|
|
+ params.put("exam_datetime", parseStringToDate(record.getStr("REVIEWDATE")));
|
|
|
|
|
|
params.put("patient_num", record.getStr("PATIENTID"));
|
|
|
|
|
@@ -417,7 +417,7 @@ public class ViewController extends Controller {
|
|
|
SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
Date date = new Date();
|
|
|
//4小时
|
|
|
- Date lastDate = new Date(date.getTime()-7200000);
|
|
|
+ Date lastDate = new Date(date.getTime()-1800000);
|
|
|
String timeString = null;
|
|
|
timeString = sdf.format(lastDate);
|
|
|
return timeString;
|