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/controller/FlowsController.java |   49 +++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 45 insertions(+), 4 deletions(-)

diff --git a/src/main/java/com/highdatas/mdm/controller/FlowsController.java b/src/main/java/com/highdatas/mdm/controller/FlowsController.java
index 4c63758..f03d148 100644
--- a/src/main/java/com/highdatas/mdm/controller/FlowsController.java
+++ b/src/main/java/com/highdatas/mdm/controller/FlowsController.java
@@ -29,7 +29,7 @@
  * <p>
  *  鍓嶇鎺у埗鍣�
  * </p>
- *
+ * @description 娴佺▼瀹炰緥涓氬姟鎺ュ彛
  * @author kimi
  * @since 2019-12-16
  */
@@ -41,18 +41,28 @@
 
     @Autowired
     RuntimeService runtimeService;
+
+    /**
+     *
+     * @description:  鍒嗛〉鑾峰彇娴佺▼瀹炰緥
+     * @param pageno 椤垫暟
+     * @return: 娴佺▼瀹炰緥
+     *
+     */
     @RequestMapping(value = "/{pageno}", method = RequestMethod.GET)
     public Result<Page<Flows>> getAll(@PathVariable int pageno, HttpServletRequest request) {
+        //鑾峰彇姣忛〉鏁版嵁閲�
         String pageSize = request.getParameter("pageSize");
         if (StringUtils.isEmpty(pageSize)) {
             pageSize = "15";
         }
         EntityWrapper<Flows> flowsEntityWrapper = new EntityWrapper<>();
-
+        //绛涢��-- 寮�鍚敤鎴�
         String userId = request.getParameter("userId");
         if (!StringUtils.isEmpty(userId)) {
             flowsEntityWrapper.eq("user_id", userId);
         }
+        //绛涢��--鐘舵��
         String status = request.getParameter("status");
         if (!StringUtils.isEmpty(status)) {
             flowsEntityWrapper.eq("status", status);
@@ -60,48 +70,79 @@
         Integer size = Integer.valueOf(pageSize);
         Page page = new Page(pageno, size);
         Page<Flows> menuPage = flowsService.selectPage(page, flowsEntityWrapper);
+        //鑾峰彇鍒嗛〉鍚庣殑娴佺▼瀹炰緥
         List<Flows> records = menuPage.getRecords();
         List<Flows> recordsStr = new ArrayList<>();
         for (Flows flows : records) {
+            //鏇存柊鐘舵�佷腑鏂囧悕缁欏墠绔�
             flows.setBusinessTypeStr(flows.getBusinessType().toString());
             TUser userById = DbUtils.getUserById(flows.getUserId());
+            //鏌ヨ鐢ㄦ埛鐨勫悕绉扮粰鍓嶇
             flows.setUserName(userById.getUserName());
             recordsStr.add(flows);
         }
         menuPage.setRecords(recordsStr);
         return Result.success(menuPage);
     }
+    /**
+     *
+     * @description:  By 鐢ㄦ埛鍒犻櫎娴佺▼
+     * @param userId 鐢ㄦ埛id
+     * @return: 鏄惁鎴愬姛
+     *
+     */
 
     @RequestMapping(value = "closeByUser/{userId}", method = RequestMethod.GET)
     public Result closeByUser(@PathVariable String userId, HttpServletRequest request) {
         Wrapper<Flows> user_id = new EntityWrapper<Flows>().eq("user_id", userId);
+        //By user鏌ヨ娴佺▼
         List<Flows> flows = flowsService.selectList(user_id);
         for (Flows flow : flows) {
+            //寰幆鍒犻櫎娴佺▼浠ュ強瀵瑰簲鐨勬祦绋嬩俊鎭�
             closeById(flow.getId());
         }
         return Result.success(null);
     }
-
+    /**
+     *
+     * @description:  閫氳繃id鍒犻櫎娴佺▼
+     * @param id flows鐨刬d
+     * @return: 鏄惁鍒犻櫎
+     *
+     */
     @RequestMapping(value = "close/{id}", method = RequestMethod.GET)
     public Result close(@PathVariable String id, HttpServletRequest request) {
         return closeById(id);
     }
 
+    /**
+     *
+     * @description:  閫氳繃id鍒犻櫎娴佺▼
+     * @param id flows鐨刬d
+     * @return: 鏄惁鍒犻櫎
+     *
+     */
     private Result closeById(@PathVariable String id) {
+        //閫氳繃id鑾峰彇flow淇℃伅
         Flows flows = flowsService.selectById(id);
         if (flows == null) {
             return Result.error(CodeMsg.ERROR_PARAMS_NOT_MATHED);
         }
+        //鑾峰彇娴佺▼id
         String workflowId = flows.getWorkflowId();
+        //鑾峰彇activiti娴佺▼瀹炰緥
         ProcessInstance processInstance = runtimeService.createProcessInstanceQuery().processInstanceId(workflowId).singleResult();
         if (processInstance != null) {
+            //鍒犻櫎娴佺▼
             runtimeService.deleteProcessInstance(workflowId,"缁堟娴佺▼");
         }
+        //璁剧疆鐘舵��
         flows.setStatus(ActivitiStatus.close);
         if (!flows.getBusinessType().equals(ActivitiBusinessType.exists)) {
+            /*璋冭捣娴佺▼缁撴潫鍚庣殑鍔ㄤ綔*/
             flowsService.aduitFinish(flows);
         }
-
+        //鏇存柊鏁版嵁搴撲俊鎭�
         boolean update = flows.updateById();
         if (update) {
             return Result.success(flows);

--
Gitblit v1.8.0