Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
1b85c180
提交
1b85c180
编写于
1月 17, 2022
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
版本升级
上级
79700e8b
变更
3
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
517 行增加
和
1 行删除
+517
-1
pom.xml
modules/ibizlab-generator-core/pom.xml
+1
-1
WorkflowModel.java
...src/main/java/cn/ibizlab/codegen/model/WorkflowModel.java
+138
-0
{{workflow}}.bpmn.hbs
...}}-core/src/main/resources/workflow/{{workflow}}.bpmn.hbs
+378
-0
未找到文件。
modules/ibizlab-generator-core/pom.xml
浏览文件 @
1b85c180
...
...
@@ -156,7 +156,7 @@
<dependency>
<groupId>
net.ibizsys.model
</groupId>
<artifactId>
ibiz-model
</artifactId>
<version>
0.
2.8
</version>
<version>
0.
3.0
</version>
<exclusions>
<exclusion>
<artifactId>
slf4j-simple
</artifactId>
...
...
modules/ibizlab-generator-core/src/main/java/cn/ibizlab/codegen/model/WorkflowModel.java
0 → 100644
浏览文件 @
1b85c180
package
cn
.
ibizlab
.
codegen
.
model
;
import
cn.ibizlab.codegen.utils.StringAdvUtils
;
import
lombok.Getter
;
import
lombok.NoArgsConstructor
;
import
lombok.Setter
;
import
lombok.experimental.Accessors
;
import
net.ibizsys.model.app.wf.IPSAppWFVer
;
import
net.ibizsys.model.dataentity.action.IPSDEAction
;
import
net.ibizsys.model.dataentity.action.IPSDELogicAction
;
import
net.ibizsys.model.dataentity.action.IPSDEScriptAction
;
import
net.ibizsys.model.wf.*
;
import
org.springframework.util.ObjectUtils
;
import
java.util.*
;
@Getter
@Setter
@NoArgsConstructor
@Accessors
(
chain
=
true
)
public
class
WorkflowModel
extends
BaseModel
{
public
WorkflowModel
(
SystemModel
systemModel
,
IPSWFVersion
ver
)
{
this
.
opt
=
ver
;
this
.
system
=
systemModel
;
this
.
setCodeName
(
ver
.
getCodeName
());
this
.
setName
(
ver
.
getName
());
this
.
setId
(
String
.
format
(
"%1$s-%2$s"
,
system
.
getCodeName
().
toLowerCase
(),
ver
.
getCodeName
().
toLowerCase
()));
}
public
IPSWFVersion
getWFVersion
()
{
return
(
IPSWFVersion
)
opt
;
}
private
SystemModel
system
;
private
Map
<
String
,
IPSWFProcessRole
>
refGroups
;
public
Map
<
String
,
IPSWFProcessRole
>
getRefGroups
()
{
if
(
refGroups
==
null
)
{
refGroups
=
new
LinkedHashMap
<>();
if
(
ObjectUtils
.
isEmpty
(
getWFVersion
().
getPSWFProcesses
()))
{
getWFVersion
().
getPSWFProcesses
().
forEach
(
WFProcess
->{
List
<
IPSWFProcessRole
>
roles
=
null
;
if
(
WFProcess
instanceof
IPSWFInteractiveProcess
)
roles
=((
IPSWFInteractiveProcess
)
WFProcess
).
getPSWFProcessRoles
();
else
if
(
WFProcess
instanceof
IPSWFCallOrgActivityProcess
)
roles
=((
IPSWFCallOrgActivityProcess
)
WFProcess
).
getPSWFProcessRoles
();
if
(!
ObjectUtils
.
isEmpty
(
roles
))
{
roles
.
forEach
(
role
->{
String
roleId
=
role
.
getPSWFRole
().
getCodeName
()+
"|"
+
role
.
getPSWFRole
().
getName
()+
"|"
+
role
.
getPSWFRole
().
getWFRoleType
();
if
(
"DEDATASET"
.
equalsIgnoreCase
(
role
.
getPSWFRole
().
getWFRoleType
())&&
role
.
getPSWFRole
()
instanceof
IPSWFDEDataSetRole
)
{
IPSWFDEDataSetRole
dsRole
=(
IPSWFDEDataSetRole
)
role
.
getPSWFRole
();
if
(
dsRole
.
getWFUserIdPSDEF
()!=
null
&&
dsRole
.
getPSDEDataSet
()!=
null
&&
dsRole
.
getPSDataEntity
()!=
null
)
roleId
+=
(
"/"
+
StringAdvUtils
.
pluralize
(
dsRole
.
getPSDataEntity
().
getCodeName
())+
"/fetch"
+
dsRole
.
getPSDEDataSet
().
getCodeName
().
toLowerCase
()+
"."
+
StringAdvUtils
.
camelcase
(
dsRole
.
getWFUserIdPSDEF
().
getCodeName
()));
}
refGroups
.
put
(
roleId
,
role
);
});
}
});
}
}
return
refGroups
;
}
private
Map
<
String
,
EntityModel
>
bookings
;
public
Map
<
String
,
EntityModel
>
getBookings
()
{
if
(
bookings
==
null
)
{
bookings
=
new
LinkedHashMap
<>();
getWFVersion
().
getPSWorkflow
().
getPSWFDEs
().
forEach
(
de
->{
bookings
.
put
(
de
.
getCodeName
(),
getSystem
().
getEntity
(
de
.
getCodeName
()));
});
}
return
bookings
;
}
private
Map
<
String
,
AppModel
>
mobApps
;
public
Map
<
String
,
AppModel
>
getMobApps
()
{
if
(
mobApps
==
null
)
{
mobApps
=
new
LinkedHashMap
<>();
getBookings
().
keySet
().
forEach
(
entity
->{
if
(
ObjectUtils
.
isEmpty
(
getSystem
().
getApps
()))
return
;
getSystem
().
getApps
().
forEach
(
app
->{
if
(!
app
.
getApplication
().
isMobileApp
())
return
;
if
(
ObjectUtils
.
isEmpty
(
app
.
getAppEntities
()))
return
;
for
(
AppEntityModel
appEntity:
app
.
getAppEntities
())
{
if
(
appEntity
.
getEntity
()!=
null
&&
entity
.
equalsIgnoreCase
(
appEntity
.
getEntity
().
getCodeName
()))
{
mobApps
.
put
(
app
.
codeName
,
app
);
return
;
}
}
});
});
}
return
mobApps
;
}
private
Map
<
String
,
AppModel
>
webApps
;
public
Map
<
String
,
AppModel
>
getWebApps
()
{
if
(
webApps
==
null
)
{
webApps
=
new
LinkedHashMap
<>();
getBookings
().
keySet
().
forEach
(
entity
->{
if
(
ObjectUtils
.
isEmpty
(
getSystem
().
getApps
()))
return
;
getSystem
().
getApps
().
forEach
(
app
->{
if
(
app
.
getApplication
().
isMobileApp
())
return
;
if
(
ObjectUtils
.
isEmpty
(
app
.
getAppEntities
()))
return
;
for
(
AppEntityModel
appEntity:
app
.
getAppEntities
())
{
if
(
appEntity
.
getEntity
()!=
null
&&
entity
.
equalsIgnoreCase
(
appEntity
.
getEntity
().
getCodeName
()))
{
webApps
.
put
(
app
.
codeName
,
app
);
return
;
}
}
});
});
}
return
webApps
;
}
}
modules/ibizlab-generator-core/src/main/resources/templ/r7/{{projectName}}-core/src/main/resources/workflow/{{workflow}}.bpmn.hbs
0 → 100644
浏览文件 @
1b85c180
此差异已折叠。
点击以展开。
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录