瀏覽代碼

Merge remote-tracking branch 'origin/dev' into dev

24282 1 年之前
父節點
當前提交
fc29a36dd0
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      hx-flow/src/main/java/com/fjhx/flow/service/flow/impl/FlowProcessServiceImpl.java

+ 2 - 2
hx-flow/src/main/java/com/fjhx/flow/service/flow/impl/FlowProcessServiceImpl.java

@@ -642,7 +642,7 @@ public class FlowProcessServiceImpl implements FlowProcessService {
             String flowName = flowInfo == null ? StringPool.EMPTY : flowInfo.getFlowName();
 
             pushUserId = SecurityUtils.getUserId();
-            title = StrUtil.format("您于【{}】发起的【{}}】已经审批通过。", DateUtil.formatDateTime(new Date()), flowName);
+            title = StrUtil.format("您于【{}】发起的【{}】已经审批通过。", DateUtil.formatDateTime(new Date()), flowName);
         } else {
             pushUserId = flowExample.getHandleUserId();
             title = "您有一条新的待审批事项,请及时处理。";
@@ -670,7 +670,7 @@ public class FlowProcessServiceImpl implements FlowProcessService {
             case SKIP_TO_NEXT:
                 // 如果下一节点为结束节点
                 if (NodeTypeEnum.END.equals(NodeTypeEnum.getEnum(nextUserNode.getNodeType()))) {
-                    title = StrUtil.format("您于【{}】发起的【{}}】已经审批通过。",
+                    title = StrUtil.format("您于【{}】发起的【{}】已经审批通过。",
                             DateUtil.formatDateTime(flowExample.getCreateTime()),
                             flowName);
                     pushUserId = flowExample.getCreateUser();