diff --git a/com.actionsoft.apps.coe.pal/lib/com.actionsoft.apps.coe.pal.jar b/com.actionsoft.apps.coe.pal/lib/com.actionsoft.apps.coe.pal.jar index ab6339ba..77a309be 100644 Binary files a/com.actionsoft.apps.coe.pal/lib/com.actionsoft.apps.coe.pal.jar and b/com.actionsoft.apps.coe.pal/lib/com.actionsoft.apps.coe.pal.jar differ diff --git a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java index a093895f..166fba56 100755 --- a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java +++ b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java @@ -9193,13 +9193,13 @@ public class CoeProcessLevelWeb extends ActionWeb { AppAPI appApi = SDK.getAppAPI(); Date now = new Date(); Timestamp replyTime = new Timestamp(now.getTime()); - SimpleDateFormat sdf=new SimpleDateFormat("yyyy-mm-dd HH:mm:ss"); + SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); try { Map paramsMap = new HashMap<>(); paramsMap.put("ID", UUIDGener.getUUID()); paramsMap.put("DATAID", ruuid); paramsMap.put("REPLYER", me.getUID()); - paramsMap.put("REPLYTIME", sdf.format(replyTime)); + paramsMap.put("REPLYTIME", replyTime); paramsMap.put("REPLYCONTENT", replyContent); paramsMap.put("REPLYERIP", me.getClientIP()); paramsMap.put("ORGID", me.getDepartmentModel().getCompanyId());