Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz4j Spring R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7后台标准模板
iBiz4j Spring R7
提交
67ef31bf
提交
67ef31bf
编写于
9月 07, 2020
作者:
zhouweidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
处理逻辑启动工作流
上级
955f2a66
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
34 行增加
和
1 行删除
+34
-1
%DE%%ITEM%LogicImpl.java.ftl
..._PKGPATH%/service/logic/impl/%DE%%ITEM%LogicImpl.java.ftl
+14
-0
%DE%%ITEM%Rule.drl.ftl
...PRJ%-core/src/main/resources/rules/%DE%%ITEM%Rule.drl.ftl
+8
-1
IBZWFFallback.java.ftl
...ain/java/%SYS_PKGPATH%/util/client/IBZWFFallback.java.ftl
+6
-0
IBZWFFeignClient.java.ftl
.../java/%SYS_PKGPATH%/util/client/IBZWFFeignClient.java.ftl
+6
-0
未找到文件。
SLN/%PUBPRJ%-core/src/main/java/%SYS_PKGPATH%/core/%MOD_PKGPATH%/service/logic/impl/%DE%%ITEM%LogicImpl.java.ftl
浏览文件 @
67ef31bf
<#
ibiztemplate
>
<#
ibiztemplate
>
TARGET
=
PSDELOGIC
TARGET
=
PSDELOGIC
</#
ibiztemplate
>
</#
ibiztemplate
>
<#
assign
startWF
=
false
>
package
${
pub
.
getPKGCodeName
()}.
core
.${
item
.
getPSDataEntity
().
getPSSystemModule
().
getCodeName
()?
lower_case
}.
service
.
logic
.
impl
;
package
${
pub
.
getPKGCodeName
()}.
core
.${
item
.
getPSDataEntity
().
getPSSystemModule
().
getCodeName
()?
lower_case
}.
service
.
logic
.
impl
;
import
java
.
sql
.
Timestamp
;
import
java
.
sql
.
Timestamp
;
...
@@ -42,6 +43,15 @@ public class ${de.codeName}${item.codeName}LogicImpl implements I${de.codeName}$
...
@@ -42,6 +43,15 @@ public class ${de.codeName}${item.codeName}LogicImpl implements I${de.codeName}$
return
this
.${
deLogicNode
.
getDstPSDataEntity
().
getCodeName
()?
lower_case
}
service
;
return
this
.${
deLogicNode
.
getDstPSDataEntity
().
getCodeName
()?
lower_case
}
service
;
}
}
</#
if
>
</#
if
>
<#
comment
>
启动工作流
</#
comment
>
<#
if
deLogicNode
.
getLogicNodeType
()==
'STARTWF'
>
<#
assign
startWF
=
true
>
<#
if
!P.exists("delogic","wfclient")>
@
Autowired
${
pub
.
getPKGCodeName
()}.
util
.
client
.
IBZWFFeignClient
wfClient
;
</#
if
>
</#
if
>
</#
if
>
</#
if
>
</#
list
>
</#
list
>
...
@@ -91,6 +101,10 @@ public class ${de.codeName}${item.codeName}LogicImpl implements I${de.codeName}$
...
@@ -91,6 +101,10 @@ public class ${de.codeName}${item.codeName}LogicImpl implements I${de.codeName}$
<#
comment
>
插入当前实体的
defaultService
对象,供自定义查询使用
</#
comment
>
<#
comment
>
插入当前实体的
defaultService
对象,供自定义查询使用
</#
comment
>
kieSession
.
setGlobal
(
"iBzSys${de.codeName?lower_case?cap_first}DefaultService"
,
iBzSysDefaultService
);<#
comment
>
将逻辑中引用到的
service
存储到
global
中
</#
comment
>
kieSession
.
setGlobal
(
"iBzSys${de.codeName?lower_case?cap_first}DefaultService"
,
iBzSysDefaultService
);<#
comment
>
将逻辑中引用到的
service
存储到
global
中
</#
comment
>
kieSession
.
setGlobal
(
"curuser"
,
${
pub
.
getPKGCodeName
()}.
util
.
security
.
AuthenticationUser
.
getAuthenticationUser
());
kieSession
.
setGlobal
(
"curuser"
,
${
pub
.
getPKGCodeName
()}.
util
.
security
.
AuthenticationUser
.
getAuthenticationUser
());
<#
comment
>
插入
wfclient
</#
comment
>
<#
if
startWF
>
kieSession
.
setGlobal
(
"wfclient"
,
wfClient
);
</#
if
>
kieSession
.
startProcess
(
"${pub.getPKGCodeName()}.core.${de.getPSSystemModule().codeName?lower_case}.service.logic.${de.codeName?lower_case}${item.getCodeName()?lower_case}"
);<#
comment
>
执行所要执行的流程
</#
comment
>
kieSession
.
startProcess
(
"${pub.getPKGCodeName()}.core.${de.getPSSystemModule().codeName?lower_case}.service.logic.${de.codeName?lower_case}${item.getCodeName()?lower_case}"
);<#
comment
>
执行所要执行的流程
</#
comment
>
}
catch
(
Exception
e
){
}
catch
(
Exception
e
){
...
...
SLN/%PUBPRJ%-core/src/main/resources/rules/%DE%%ITEM%Rule.drl.ftl
浏览文件 @
67ef31bf
...
@@ -161,6 +161,13 @@ ruleflow-group "${logicName+deLogicNode.getCodeName()?lower_case}"
...
@@ -161,6 +161,13 @@ ruleflow-group "${logicName+deLogicNode.getCodeName()?lower_case}"
}
}
</#
if
>
</#
if
>
}
}
<#
elseif
deLogicNode
.
getLogicNodeType
()==
'STARTWF'
><#
comment
>
启动工作流
</#
comment
>
<#
assign
wfDE
=
deLogicNode
.
getPSDEWF
().
getPSDataEntity
()>
<#
assign
wfDEKeyField
=
srfcaseformat
(
wfDE
.
getKeyPSDEField
().
codeName
,
'l_u2lC'
)>
<#
assign
wfParam
=
deLogicNode
.
getDstPSDELogicParam
>
<#
assign
wfLogicParam
=(
logicName
+
wfParam
.
codeName
)?
lower_case
>
JSONObject
activeData
=(
JSONObject
)
JSONObject
.
toJSON
(${
wfLogicParam
});
wfClient
.
wfstart
(
"${sys.codeName}"
,
""
,
"${wfDE.codeName}"
,${
wfLogicParam
}.
get
(
"${wfDEKeyField}"
),
activeData
);
</#
if
>
</#
if
>
<#
if
delogic
.
getPSDELogicParams
??
&&
delogic
.
getPSDELogicParams
()??>
<#
if
delogic
.
getPSDELogicParams
??
&&
delogic
.
getPSDELogicParams
()??>
<#
list
delogic
.
getPSDELogicParams
()
as
logicParam
>
<#
list
delogic
.
getPSDELogicParams
()
as
logicParam
>
...
...
SLN/%PUBPRJ%-util/src/main/java/%SYS_PKGPATH%/util/client/IBZWFFallback.java.ftl
浏览文件 @
67ef31bf
...
@@ -4,6 +4,7 @@ TARGET=PSSYSTEM
...
@@ -4,6 +4,7 @@ TARGET=PSSYSTEM
package
${
pub
.
getPKGCodeName
()}.
util
.
client
;
package
${
pub
.
getPKGCodeName
()}.
util
.
client
;
import
org
.
springframework
.
stereotype
.
Component
;
import
org
.
springframework
.
stereotype
.
Component
;
import
com
.
alibaba
.
fastjson
.
JSONObject
;
import
java
.
util
.*;
import
java
.
util
.*;
@
Component
@
Component
...
@@ -23,4 +24,9 @@ public class IBZWFFallback implements IBZWFFeignClient {
...
@@ -23,4 +24,9 @@ public class IBZWFFallback implements IBZWFFeignClient {
public
Boolean
deployBpmnFile
(
List
<
Map
<
String
,
Object
>>
bpmnfiles
)
{
public
Boolean
deployBpmnFile
(
List
<
Map
<
String
,
Object
>>
bpmnfiles
)
{
return
null
;
return
null
;
}
}
@
Override
public
JSONObject
wfstart
(
String
system
,
String
appname
,
String
entity
,
String
businessKey
,
JSONObject
instance
)
{
return
null
;
}
}
}
SLN/%PUBPRJ%-util/src/main/java/%SYS_PKGPATH%/util/client/IBZWFFeignClient.java.ftl
浏览文件 @
67ef31bf
...
@@ -5,6 +5,7 @@ package ${pub.getPKGCodeName()}.util.client;
...
@@ -5,6 +5,7 @@ package ${pub.getPKGCodeName()}.util.client;
import
org
.
springframework
.
cloud
.
openfeign
.
FeignClient
;
import
org
.
springframework
.
cloud
.
openfeign
.
FeignClient
;
import
org
.
springframework
.
web
.
bind
.
annotation
.*;
import
org
.
springframework
.
web
.
bind
.
annotation
.*;
import
com
.
alibaba
.
fastjson
.
JSONObject
;
import
java
.
util
.*;
import
java
.
util
.*;
@
FeignClient
(
value
=
"${r'${ibiz.ref.service.wf:ibzwf-api}'}"
,
fallback
=
IBZWFFallback
.
class
)
@
FeignClient
(
value
=
"${r'${ibiz.ref.service.wf:ibzwf-api}'}"
,
fallback
=
IBZWFFallback
.
class
)
...
@@ -21,4 +22,9 @@ public interface IBZWFFeignClient
...
@@ -21,4 +22,9 @@ public interface IBZWFFeignClient
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/deploybpmn"
)
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/deploybpmn"
)
Boolean
deployBpmnFile
(@
RequestBody
List
<
Map
<
String
,
Object
>>
bpmnfiles
);
Boolean
deployBpmnFile
(@
RequestBody
List
<
Map
<
String
,
Object
>>
bpmnfiles
);
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/{system}-app-{appname}/{entity}/{businessKey}/process-instances"
)
JSONObject
wfstart
(@
PathVariable
(
"system"
)
String
system
,
@
PathVariable
(
"appname"
)
String
appname
,
@
PathVariable
(
"entity"
)
String
entity
,
@
PathVariable
(
"businessKey"
)
String
businessKey
,
@
RequestBody
JSONObject
instance
);
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录