From c007f0ca1785db093d48f4846cda82fe8e955765 Mon Sep 17 00:00:00 2001
From: kimi <kimi42345@gmail.com>
Date: 星期三, 27 五月 2020 09:59:29 +0800
Subject: [PATCH] merage

---
 src/main/java/com/highdatas/mdm/service/impl/FlowsServiceImpl.java |  151 +++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 148 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/highdatas/mdm/service/impl/FlowsServiceImpl.java b/src/main/java/com/highdatas/mdm/service/impl/FlowsServiceImpl.java
index fa14220..1ed36ab 100644
--- a/src/main/java/com/highdatas/mdm/service/impl/FlowsServiceImpl.java
+++ b/src/main/java/com/highdatas/mdm/service/impl/FlowsServiceImpl.java
@@ -1,10 +1,24 @@
 package com.highdatas.mdm.service.impl;
 
-import com.highdatas.mdm.entity.Flows;
-import com.highdatas.mdm.mapper.FlowsMapper;
-import com.highdatas.mdm.service.IFlowsService;
+import com.baomidou.mybatisplus.mapper.EntityWrapper;
 import com.baomidou.mybatisplus.service.impl.ServiceImpl;
+import com.highdatas.mdm.entity.Flows;
+import com.highdatas.mdm.entity.MaintainField;
+import com.highdatas.mdm.mapper.FlowsMapper;
+import com.highdatas.mdm.mapper.SysFieldMapper;
+import com.highdatas.mdm.pojo.ActivitiBusinessType;
+import com.highdatas.mdm.pojo.ActivitiStatus;
+import com.highdatas.mdm.pojo.NextTaskUserInfo;
+import com.highdatas.mdm.service.*;
+import com.highdatas.mdm.service.act.IdentityService;
+import com.highdatas.mdm.service.act.TaskService;
+import com.highdatas.mdm.util.DbUtils;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.lang3.StringUtils;
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
+
+import java.util.List;
 
 /**
  * <p>
@@ -15,6 +29,137 @@
  * @since 2019-12-19
  */
 @Service
+@Slf4j
 public class FlowsServiceImpl extends ServiceImpl<FlowsMapper, Flows> implements IFlowsService {
+    @Autowired
+    IMaintainFieldService maintainFieldService;
+    @Autowired
+    TaskService taskService;
+    @Autowired
+    SysFieldMapper fieldMapper;
+    @Autowired
+    IMasterModifiedService masterModifiedService;
+    @Autowired
+    IMaintainService maintainService;
+    @Autowired
+    IdentityService identityService;
+    @Autowired
+    ISysViewService viewService;
+    @Autowired
+    IMasterAuthorSubscribeService subscribeService;
+    @Autowired
+    ISysMenuService menuService;
 
+    /**
+     *
+     * @description:  鍒涘缓鏂板瓧娈电増鏈�
+     * @param userId 鐢ㄦ埛id
+     * @param maintainId 鏁版嵁鐗堟湰id
+     * @param tableName 琛ㄥ悕
+     *
+     * @return: maintainfielid 瀛楁鐗堟湰瀵硅薄
+     *
+     */
+    @Override
+    public MaintainField createNowVerion(String tableName, String maintainId, String userId) {
+        MaintainField nowMaintain = maintainFieldService.getNextMaintain(tableName, userId);
+        // 鎼繍鏂扮増鏈瓧娈�
+        String maintainParams;
+        if (StringUtils.isEmpty(maintainId)) {
+            maintainParams = "maintain_field_id is null and table_name = " + DbUtils.quotedStr(tableName);
+        }else {
+            maintainParams = "maintain_field_id = " + DbUtils.quotedStr(maintainId);
+        }
+
+        if (nowMaintain != null) {
+            String maintainFieldId = DbUtils.quotedStr(nowMaintain.getId());
+            fieldMapper.tansNewVersion(maintainFieldId, maintainParams);
+        }
+
+        return nowMaintain;
+    }
+    /**
+     *
+     * @description:  閫氳繃涓氬姟id鑾峰彇瀹℃壒鐘舵��
+     * @param businessId 涓氬姟id
+     * @return: status
+     *
+     */
+    @Override
+    public ActivitiStatus getStatusByBusinessId(String businessId) {
+        Flows flows = selectOne(new EntityWrapper<Flows>().eq("business_id", businessId).orderBy("create_time desc"));
+        if (flows == null){
+            return null;
+        }
+        return flows.getStatus();
+    }
+    /**
+     *
+     * @description:  鍒ゆ柇鏄惁涓轰笅涓�鑺傜偣瀹℃壒浜�
+     * @param flows 娴佺▼
+     * @param userId 鐢ㄦ埛id
+     * @return: status
+     *
+     */
+    @Override
+    public boolean isNextAudit(Flows flows, String userId) {
+        NextTaskUserInfo nestTaskAssignee = taskService.getNestTaskAssignee(flows.getWorkflowId());
+        if (nestTaskAssignee == null){
+            return false;
+        }
+        List<String> userIdList = nestTaskAssignee.getUserIdList();
+        if (userIdList.contains(userId)) {
+            return true;
+        }
+
+        List<String> roleIdList = nestTaskAssignee.getRoleIdList();
+        if (roleIdList == null || roleIdList.isEmpty()) {
+            return false;
+        }
+
+        List<String> roleByUser = identityService.getRoleByUser(userId);
+        if (roleByUser == null || roleByUser.isEmpty()) {
+            return false;
+        }
+        long count = roleByUser.stream().filter(roleId -> roleIdList.contains(roleId)).count();
+        if (count == 0) {
+            return false;
+        }else {
+            return true;
+        }
+    }
+
+    /**
+     *
+     * @description:  娴佺▼瀹屾垚鍚庣殑鎿嶄綔
+     * @param flows 娴佺▼瀹炰緥
+     *
+     */
+
+    @Override
+    public void aduitFinish(Flows flows) {
+        // 鏂板绾跨▼
+        new Thread(() -> {
+            log.info("澶勭悊 鐢熸垚鐗堟湰鍚庣殑鎿嶄綔");
+            if (flows.getBusinessType().equals(ActivitiBusinessType.maintain)){
+                String maintainId = flows.getBusinessId();
+                log.info("flow-maintain:" + maintainId);
+                masterModifiedService.dealFlow(maintainId, flows.getStatus());
+                log.info("flow-masterModifiedService end");
+                maintainService.dealFlow(maintainId, flows.getStatus());
+                log.info("flow-maintainService end");
+                viewService.dealFlow(maintainId, flows.getStatus());
+                log.info("flow-viewService end");
+                subscribeService.dealFlow(maintainId, flows.getStatus());
+                log.info("flow-subscribeService end");
+                menuService.dealFlow(maintainId, flows.getStatus(), flows.getUserId());
+                log.info("flow-menuService end");
+            }
+            if (flows.getBusinessType().equals(ActivitiBusinessType.field)){
+                String maintainId = flows.getBusinessId();
+                maintainFieldService.dealFlow(maintainId, flows.getStatus());
+
+            }
+        }).start();
+    }
 }

--
Gitblit v1.8.0