From 94414fc675d0813e06614ac607a888a14fd0d631 Mon Sep 17 00:00:00 2001 From: "feng.li" Date: Tue, 25 Jul 2023 18:51:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=9D=A2=E8=AF=95=E9=80=9A?= =?UTF-8?q?=E8=BF=87=E6=97=B6=E9=97=B4=E4=B8=BA=E6=9C=AC=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E6=8E=A5=E6=94=B6=E5=9B=9E=E8=B0=83=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/cool/store/service/impl/FlowServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/FlowServiceImpl.java b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/FlowServiceImpl.java index aa0e78442..47bfb7a1f 100644 --- a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/FlowServiceImpl.java +++ b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/FlowServiceImpl.java @@ -266,7 +266,8 @@ public class FlowServiceImpl implements FlowService { throw new ServiceException(ErrorCodeEnum.INTENT_INFO_NOT_EXIST); } // TODO pass_reason 暂无 - Date passDate = new Date(request.getModifiedTime()); + //将通过时间修改为本系统处理回调的时间,不以 request 的 modifiedTime 为准(有误) + Date passDate = new Date(); //3. 生成通过函并修改数据库相关信息 //TODO 问题:如果因为 pdf 生成失败或者其他原因导致异常,但是由于 MDM 只是做回调,不对回调是否成功负责,会导致流程信息缺失 genPassLetterAndUpdateDB(partnerName, verifyCity, passDate, interviewId);