|
@@ -5,6 +5,7 @@ package com.jeeplus.modules.sg.managementcenter.activiti.web;
|
|
|
|
|
|
import java.util.*;
|
|
import java.util.*;
|
|
|
|
|
|
|
|
+import com.jeeplus.modules.sg.managementcenter.activiti.utils.MyImportUtils;
|
|
import com.jeeplus.modules.sys.entity.User;
|
|
import com.jeeplus.modules.sys.entity.User;
|
|
|
|
|
|
import com.google.common.collect.Maps;
|
|
import com.google.common.collect.Maps;
|
|
@@ -257,6 +258,25 @@ public class ConstructionController extends BaseController {
|
|
return "modules/sg/managementcenter/activiti/documentsForm";
|
|
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";
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|