Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz4j Spring R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7后台标准模板
iBiz4j Spring R7
提交
ca80edb4
提交
ca80edb4
编写于
9月 08, 2020
作者:
zhouweidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
将逻辑中的id调整为codename
上级
c7b60415
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
16 行增加
和
14 行删除
+16
-14
%DE%%ITEM%RuleFlow.bpmn.ftl
...core/src/main/resources/rules/%DE%%ITEM%RuleFlow.bpmn.ftl
+16
-14
未找到文件。
SLN/%PUBPRJ%-core/src/main/resources/rules/%DE%%ITEM%RuleFlow.bpmn.ftl
浏览文件 @
ca80edb4
...
@@ -24,24 +24,25 @@ TARGET=PSDELOGIC
...
@@ -24,24 +24,25 @@ TARGET=PSDELOGIC
<#if item.getPSDELogicNodes?? && item.getPSDELogicNodes()??>
<#if item.getPSDELogicNodes?? && item.getPSDELogicNodes()??>
<#list item.getPSDELogicNodes() as logicNode>
<#list item.getPSDELogicNodes() as logicNode>
<#if logicNode.getLogicNodeType()=='BEGIN'>
<#if logicNode.getLogicNodeType()=='BEGIN'>
<startEvent id="${logicNode.get
Id
()}" isInterrupting="true"/>
<startEvent id="${logicNode.get
CodeName
()}" isInterrupting="true"/>
<#else>
<#else>
<businessRuleTask activiti:exclusive="true" g:ruleFlowGroup="${logicName+logicNode.getCodeName()?lower_case}" id="${logicNode.get
Id
()}" implementation="http://www.jboss.org/drools/rule" name="${logicNode.getName()}"/>
<businessRuleTask activiti:exclusive="true" g:ruleFlowGroup="${logicName+logicNode.getCodeName()?lower_case}" id="${logicNode.get
CodeName
()}" implementation="http://www.jboss.org/drools/rule" name="${logicNode.getName()}"/>
</#if>
</#if>
<#if !(logicNode.getPSDELogicLinks()??)><#comment>是否为流程最后一个处理节点,若为最后一个处理节点则生成End节点</#comment>
<#if !(logicNode.getPSDELogicLinks()??)><#comment>是否为流程最后一个处理节点,若为最后一个处理节点则生成End节点</#comment>
<endEvent id="${logicNode.get
Id
()}_End" name="End"/>
<endEvent id="${logicNode.get
CodeName
()}_End" name="End"/>
<sequenceFlow id="${logicNode.get
Id()}_End_Line" sourceRef="${logicNode.getId()}" targetRef="${logicNode.getId
()}_End"/><#comment>生成流程最后一个处理节点与End节点之间的连线</#comment>
<sequenceFlow id="${logicNode.get
CodeName()}_End_Line" sourceRef="${logicNode.getCodeName()}" targetRef="${logicNode.getCodeName
()}_End"/><#comment>生成流程最后一个处理节点与End节点之间的连线</#comment>
</#if>
</#if>
</#list>
</#list>
</#if>
</#if>
<#comment>绘制节点连线</#comment>
<#comment>绘制节点连线</#comment>
<#if item.getPSDELogicLinks?? && item.getPSDELogicLinks()??>
<#if item.getPSDELogicLinks?? && item.getPSDELogicLinks()??>
<#list item.getPSDELogicLinks() as LogicLink>
<#list item.getPSDELogicLinks() as LogicLink>
<#assign sourceNode
id=LogicLink.getSrcPSDELogicNode().getId
()>
<#assign sourceNode
Id=LogicLink.getSrcPSDELogicNode().getCodeName
()>
<#if LogicLink.getPSDELogicLinkGroupCond?? && LogicLink.getPSDELogicLinkGroupCond()??><#comment>判断连接线含有条件,若有条件,则将源节点指向网关</#comment>
<#if LogicLink.getPSDELogicLinkGroupCond?? && LogicLink.getPSDELogicLinkGroupCond()??><#comment>判断连接线含有条件,若有条件,则将源节点指向网关</#comment>
<#assign sourceNode
id="gateway-"+LogicLink.getSrcPSDELogicNode().getId
()>
<#assign sourceNode
Id="gateway-"+LogicLink.getSrcPSDELogicNode().getCodeName
()>
</#if>
</#if>
<sequenceFlow id="${LogicLink.getId()}" sourceRef="${sourceNodeid}" targetRef="${LogicLink.getDstPSDELogicNode().getId()}">
<#assign targetNodeId=LogicLink.getDstPSDELogicNode().getCodeName()>
<sequenceFlow id="${sourceNodeId}_${targetNodeId}" sourceRef="${sourceNodeId}" targetRef="${targetNodeId}">
<#if LogicLink.getPSDELogicLinkGroupCond?? && LogicLink.getPSDELogicLinkGroupCond()??><#comment>连接线含有条件</#comment>
<#if LogicLink.getPSDELogicLinkGroupCond?? && LogicLink.getPSDELogicLinkGroupCond()??><#comment>连接线含有条件</#comment>
<conditionExpression language="http://www.jboss.org/drools/rule" ><![CDATA[
<conditionExpression language="http://www.jboss.org/drools/rule" ><![CDATA[
<#comment>准备逻辑参数</#comment>
<#comment>准备逻辑参数</#comment>
...
@@ -70,17 +71,18 @@ TARGET=PSDELOGIC
...
@@ -70,17 +71,18 @@ TARGET=PSDELOGIC
<#if item.getPSDELogicLinks?? && item.getPSDELogicLinks()??>
<#if item.getPSDELogicLinks?? && item.getPSDELogicLinks()??>
<#list item.getPSDELogicLinks() as LogicLink>
<#list item.getPSDELogicLinks() as LogicLink>
<#if LogicLink.getPSDELogicLinkGroupCond?? && LogicLink.getPSDELogicLinkGroupCond()??><#comment>连接线含有条件</#comment>
<#if LogicLink.getPSDELogicLinkGroupCond?? && LogicLink.getPSDELogicLinkGroupCond()??><#comment>连接线含有条件</#comment>
<#assign gateway
id="gateway-"+LogicLink.getSrcPSDELogicNode().getId
()>
<#assign gateway
Id="gateway-"+LogicLink.getSrcPSDELogicNode().getCodeName
()>
<#if !P.exists("gateway",gateway
i
d)>
<#if !P.exists("gateway",gateway
I
d)>
<#comment>绘制网关</#comment>
<#comment>绘制网关</#comment>
<exclusiveGateway id="${gateway
id}" name="Gateway" gatewayDirection="Diverging" default="${gatewayi
d}_End_Line"></exclusiveGateway>
<exclusiveGateway id="${gateway
Id}" name="Gateway" gatewayDirection="Diverging" default="${gatewayI
d}_End_Line"></exclusiveGateway>
<#comment>绘制网关与源节点的连线</#comment>
<#comment>绘制网关与源节点的连线</#comment>
<sequenceFlow id="${LogicLink.getId()}-gatewayline" sourceRef="${LogicLink.getSrcPSDELogicNode().getId()}" targetRef="${gatewayid}"></sequenceFlow>
<#assign sourceNodeId=LogicLink.getSrcPSDELogicNode().getCodeName()>
<sequenceFlow id="${sourceNodeId}_${gatewayId}_gatewayLine" sourceRef="${sourceNodeId}" targetRef="${gatewayId}"></sequenceFlow>
</#if>
</#if>
<#comment>绘制网关默认结束节点</#comment>
<#comment>绘制网关默认结束节点</#comment>
<#if !P.exists("gateway-end",gateway
i
d)>
<#if !P.exists("gateway-end",gateway
I
d)>
<sequenceFlow id="${gateway
id}_End_Line" sourceRef="${gatewayid}" targetRef="${gatewayi
d}_End"/><#comment>生成流程最后一个处理节点与End节点之间的连线</#comment>
<sequenceFlow id="${gateway
Id}_End_Line" sourceRef="${gatewayId}" targetRef="${gatewayI
d}_End"/><#comment>生成流程最后一个处理节点与End节点之间的连线</#comment>
<endEvent id="${gateway
i
d}_End" name="End"/>
<endEvent id="${gateway
I
d}_End" name="End"/>
</#if>
</#if>
</#if>
</#if>
</#list>
</#list>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录