更多ruoyi-nbcio功能请看演示系统
gitee源代码地址
前后端代码: https://gitee.com/nbacheng/ruoyi-nbcio
演示地址:RuoYi-Nbcio后台管理系统
更多nbcio-boot功能请看演示系统
gitee源代码地址
后端代码: https://gitee.com/nbacheng/nbcio-boot
前端代码:https://gitee.com/nbacheng/nbcio-vue.git
在线演示(包括H5) : http://122.227.135.243:9888
1、对应发布流程中,自定业务流程做特殊处理,就是下面这个方法
@Overridepublic boolean saveCustomDeployForm(String procDefKey, String deployId, String deployName, BpmnModel bpmnModel) {// 获取开始节点StartEvent startEvent = ModelUtils.getStartEvent(bpmnModel);if (ObjectUtil.isNull(startEvent)) {throw new RuntimeException("开始节点不存在,请检查流程设计是否有误!");}// 更新开始节点表单信息与流程信息到自定义业务关联表WfCustomFormBo customFormBo = buildCustomForm(procDefKey, deployId, deployName, startEvent);if (ObjectUtil.isNotNull(customFormBo)) {updateByBo(customFormBo);return true;}return false;}
2、其中buildCustomForm修改一下,同时增加一个proDefKey参数
/*** 构建部署表单关联信息对象* @param procDefKey 流程定义Key* @param deployId 部署ID* @param deployName 部署名称ID* @param node 节点信息* @return 部署表单关联对象。若无表单信息(formKey),则返回null*/private WfCustomFormBo buildCustomForm(String procDefKey, String deployId, String deployName, FlowNode node) {//获取业务流程关联表信息,以便更新// 创建流程查询条件ProcessDefinitionQuery processDefinitionQuery = repositoryService.createProcessDefinitionQuery().processDefinitionKey(procDefKey).orderByProcessDefinitionVersion().desc();long defTotal = processDefinitionQuery.count();if (defTotal > 1L) {//有老版本,搜索业务流程关联表List<ProcessDefinition> definitionList = processDefinitionQuery.list();//获取上一个版本的流程发布idString preDeployId = definitionList.get(1).getDeploymentId();WfCustomFormBo wfCustomFormbo = selectSysCustomFormByDeployId(preDeployId);if (ObjectUtil.isNotEmpty(wfCustomFormbo)) {//找到有就用最新的deployId进行更新wfCustomFormbo.setDeployId(deployId);updateByBo(wfCustomFormbo);}}//获取流程模型的表单信息String formKey = ModelUtils.getFormKey(node);if (StringUtils.isEmpty(formKey)) {return null;}Long formId = Convert.toLong(StringUtils.substringAfter(formKey, "key_"));WfCustomFormVo customFormVo = queryById(formId);if (ObjectUtil.isNull(customFormVo)) {throw new ServiceException("表单信息查询错误");}WfCustomFormBo customFormBo = new WfCustomFormBo();customFormBo.setId(formId);customFormBo.setBusinessName(customFormVo.getBusinessName());customFormBo.setBusinessService(customFormVo.getBusinessService());customFormBo.setCreateBy(customFormBo.getCreateBy());customFormBo.setRouteName(customFormVo.getRouteName());customFormBo.setDeployId(deployId);customFormBo.setFlowName(deployName);return customFormBo;}
3、WfCustomFormMapper.xml
<select id="selectSysCustomFormByDeployId" parameterType="String" resultType="com.ruoyi.workflow.domain.bo.WfCustomFormBo">select id, business_name, business_service, deploy_id, route_name,component,authorize,create_time, update_time, create_by, update_by from wf_custom_form where deploy_id = #{deployId}</select>