|
@@ -34,7 +34,7 @@ public class PrintNumTask implements ITask {
|
|
|
annex_params.put("institution_id", PropKit.get("institution_id"));
|
|
|
annex_params.put("type", "2");
|
|
|
annex_params.put("code", record.getStr("CHECKID"));
|
|
|
- annex_params.put("print_time", parseStringToDate(record.getStr("PRINTTIME")));
|
|
|
+ annex_params.put("print_time", record.getStr("PRINTTIME"));
|
|
|
ThreadPoolService tService = ServiceFactory.getService(ThreadPoolService.class);
|
|
|
tService.execute(() -> {
|
|
|
dService.savePrint(annex_params);
|
|
@@ -89,7 +89,7 @@ public class PrintNumTask implements ITask {
|
|
|
Date date = new Date();
|
|
|
String timeString = null;
|
|
|
Long i = date.getTime();
|
|
|
- Long j = i - 21600000;
|
|
|
+ Long j = i - 54000000;
|
|
|
Date newdate = new Date(j);
|
|
|
timeString = sdf.format(newdate);
|
|
|
return timeString;
|