yue 5 سال پیش
والد
کامیت
c9061b0a92
1فایلهای تغییر یافته به همراه20 افزوده شده و 0 حذف شده
  1. 20 0
      src/main/java/com/jeeplus/modules/sg/managementcenter/activiti/web/ConstructionController.java

+ 20 - 0
src/main/java/com/jeeplus/modules/sg/managementcenter/activiti/web/ConstructionController.java

@@ -5,6 +5,7 @@ package com.jeeplus.modules.sg.managementcenter.activiti.web;
 
 import java.util.*;
 
+import com.jeeplus.modules.sg.managementcenter.activiti.utils.MyImportUtils;
 import com.jeeplus.modules.sys.entity.User;
 
 import com.google.common.collect.Maps;
@@ -257,6 +258,25 @@ public class ConstructionController extends BaseController {
         return "modules/sg/managementcenter/activiti/documentsForm";
     }
 
+    /**
+     * 配网运行人员判定设计变更
+     * 人工审核页面
+     * */
+    /**
+     * 查看,增加,编辑请假申请表单页面
+     */
+    @RequestMapping(value = "humanReview")
+    public String humanReviewform(Construction construction, Model model) {
+//        String proId = construction.getAct().getProcDefId();
+//        String pInId = construction.getProcInsId();
+//        ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
+//        RepositoryService rs = processEngine.getRepositoryService();
+        System.out.println(construction);
+        //根据流程定义号获取所有的定义流程
+        MyImportUtils.getTheEcho(construction,model);
+        model.addAttribute("construction", construction);
+        return "modules/sg/managementcenter/activiti/humanReview";
+    }
 
 
     /**