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