Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz4j Spring R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7后台标准模板
iBiz4j Spring R7
提交
15b1eeed
提交
15b1eeed
编写于
10月 29, 2020
作者:
zhouweidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
预置代码表
上级
54eac910
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
136 行增加
和
0 行删除
+136
-0
RuntimeDict.json.ftl
...RJ%-core/src/main/resources/sysmodel/RuntimeDict.json.ftl
+45
-0
IBZDictFallback.java.ftl
...n/java/%SYS_PKGPATH%/util/client/IBZDictFallback.java.ftl
+31
-0
IBZDictFeignClient.java.ftl
...ava/%SYS_PKGPATH%/util/client/IBZDictFeignClient.java.ftl
+32
-0
PermissionSyncJob.java.ftl
...in/java/%SYS_PKGPATH%/util/job/PermissionSyncJob.java.ftl
+28
-0
未找到文件。
SLN/%PUBPRJ%-core/src/main/resources/sysmodel/RuntimeDict.json.ftl
0 → 100644
浏览文件 @
15b1eeed
<#ibiztemplate>
TARGET=PSSYSTEM
</#ibiztemplate>
<#comment>系统是否包含预定义代码表</#comment>
<#assign hasPredefinedCodeList=false>
<#list sys.getAllPSCodeLists() as codelist>
<#if codelist.getPredefinedType()?? && codelist.getPredefinedType()=='RUNTIME'>
<#assign hasPredefinedCodeList=true>
<#break>
</#if>
</#list>
<#if hasPredefinedCodeList>
<#assign isFirstCodeList=true>
[ <#list sys.getAllPSCodeLists() as codelist>
<#if codelist.getPredefinedType()?? && codelist.getPredefinedType()=='RUNTIME'>
<#if isFirstCodeList==false>,</#if>
{
"name":"${codelist.name}",
"code":"${sys.codeName}-${codelist.codeName}",
"group":"",
"memo":"",
"enable":"",
<#if codelist.getAllPSCodeItems()??>
"items":[<#list codelist.getAllPSCodeItems() as codeItem>
{
"catalog_id":"${sys.codeName}-${codelist.codeName}",
"catalog_name":"${codelist.name}",
"value_key":"${sys.codeName}-${codelist.codeName}-${codeItem.codeName}",
"value":"${codeItem.value}",
"label":"${codeItem.text}",
"disabled":"",
"showorder":""
<#if codeItem.getParentCodeItem?? && codeItem.getParentCodeItem()??>
"parent":"${sys.codeName}-${codelist.codeName}-${codeItem.getParentCodeItem().codeName}"
</#if>
}<#if codeItem_has_next>,</#if>
</#list>
]
</#if>
}
<#assign isFirstCodeList==false>
</#if>
</#list>
]
</#if>
\ No newline at end of file
SLN/%PUBPRJ%-util/src/main/java/%SYS_PKGPATH%/util/client/IBZDictFallback.java.ftl
0 → 100644
浏览文件 @
15b1eeed
<#
ibiztemplate
>
TARGET
=
PSSYSTEM
</#
ibiztemplate
>
<#
comment
>
系统是否包含预定义代码表
</#
comment
>
<#
assign
hasPredefinedCodeList
=
false
>
<#
list
sys
.
getAllPSCodeLists
()
as
codelist
>
<#
if
codelist
.
getPredefinedType
()??
&&
codelist
.
getPredefinedType
()==
'RUNTIME'
>
<#
assign
hasPredefinedCodeList
=
true
>
<#
break
>
</#
if
>
</#
list
>
<#
if
hasPredefinedCodeList
>
package
${
pub
.
getPKGCodeName
()}.
util
.
client
;
import
com
.
alibaba
.
fastjson
.
JSONObject
;
import
org
.
springframework
.
http
.
ResponseEntity
;
import
org
.
springframework
.
stereotype
.
Component
;
import
java
.
util
.
List
;
import
java
.
util
.
Map
;
import
java
.
util
.
Set
;
@
Component
public
class
IBZDictFallback
implements
IBZDictFeignClient
{
@
Override
public
ResponseEntity
<
Boolean
>
syncRuntimeDict
(
List
<
JSONObject
>
catalogs
)
{
return
null
;
}
}
</#
if
>
\ No newline at end of file
SLN/%PUBPRJ%-util/src/main/java/%SYS_PKGPATH%/util/client/IBZDictFeignClient.java.ftl
0 → 100644
浏览文件 @
15b1eeed
<#
ibiztemplate
>
TARGET
=
PSSYSTEM
</#
ibiztemplate
>
<#
comment
>
系统是否包含预定义代码表
</#
comment
>
<#
assign
hasPredefinedCodeList
=
false
>
<#
list
sys
.
getAllPSCodeLists
()
as
codelist
>
<#
if
codelist
.
getPredefinedType
()??
&&
codelist
.
getPredefinedType
()==
'RUNTIME'
>
<#
assign
hasPredefinedCodeList
=
true
>
<#
break
>
</#
if
>
</#
list
>
<#
if
hasPredefinedCodeList
>
package
${
pub
.
getPKGCodeName
()}.
util
.
client
;
import
com
.
alibaba
.
fastjson
.
JSONArray
;
import
com
.
alibaba
.
fastjson
.
JSONObject
;
import
org
.
springframework
.
cloud
.
openfeign
.
FeignClient
;
import
org
.
springframework
.
http
.
ResponseEntity
;
import
org
.
springframework
.
web
.
bind
.
annotation
.
PathVariable
;
import
org
.
springframework
.
web
.
bind
.
annotation
.
RequestBody
;
import
org
.
springframework
.
web
.
bind
.
annotation
.
RequestMapping
;
import
org
.
springframework
.
web
.
bind
.
annotation
.
RequestMethod
;
import
java
.
util
.
List
;
import
java
.
util
.
Map
;
@
FeignClient
(
value
=
"${r'${ibiz.ref.service.dict:ibzdict-api}'}"
,
contextId
=
"dict"
,
fallback
=
IBZDictFallback
.
class
)
public
interface
IBZDictFeignClient
{
@
RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/dictionarys/catalogs/sync"
)
Boolean
syncRuntimeDict
(@
RequestBody
JSONArray
catalogs
);
}
</#
if
>
\ No newline at end of file
SLN/%PUBPRJ%-util/src/main/java/%SYS_PKGPATH%/util/job/PermissionSyncJob.java.ftl
浏览文件 @
15b1eeed
...
@@ -20,6 +20,14 @@ TARGET=PSSYSTEM
...
@@ -20,6 +20,14 @@ TARGET=PSSYSTEM
<#
break
>
<#
break
>
</#
list
>
</#
list
>
</#
if
>
</#
if
>
<#
comment
>
系统是否包含预定义代码表
</#
comment
>
<#
assign
hasPredefinedCodeList
=
false
>
<#
list
sys
.
getAllPSCodeLists
()
as
codelist
>
<#
if
codelist
.
getPredefinedType
()??
&&
codelist
.
getPredefinedType
()==
'RUNTIME'
>
<#
assign
hasPredefinedCodeList
=
true
>
<#
break
>
</#
if
>
</#
list
>
package
${
pub
.
getPKGCodeName
()}.
util
.
job
;
package
${
pub
.
getPKGCodeName
()}.
util
.
job
;
import
${
pub
.
getPKGCodeName
()}.
util
.
client
.
IBZUAAFeignClient
;
import
${
pub
.
getPKGCodeName
()}.
util
.
client
.
IBZUAAFeignClient
;
...
@@ -73,6 +81,12 @@ public class PermissionSyncJob implements ApplicationRunner {
...
@@ -73,6 +81,12 @@ public class PermissionSyncJob implements ApplicationRunner {
@
Lazy
@
Lazy
IBZLiteFeignClient
liteFeignClient
;
IBZLiteFeignClient
liteFeignClient
;
<#
if
hasPredefinedCodeList
>
@
Autowired
@
Lazy
${
pub
.
getPKGCodeName
()}.
util
.
client
.
IBZDictFeignClient
dictFeignClient
;
</#
if
>
@
Override
@
Override
public
void
run
(
ApplicationArguments
args
)
{
public
void
run
(
ApplicationArguments
args
)
{
try
{
try
{
...
@@ -142,5 +156,19 @@ public class PermissionSyncJob implements ApplicationRunner {
...
@@ -142,5 +156,19 @@ public class PermissionSyncJob implements ApplicationRunner {
log
.
error
(
"推送消息模板失败"
);
log
.
error
(
"推送消息模板失败"
);
}
}
</#
if
>
</#
if
>
<#
if
hasPredefinedCodeList
>
try
{
InputStream
runtimeDict
=
this
.
getClass
().
getResourceAsStream
(
"/sysmodel/RuntimeDict.json"
);
//
获取当前系统所有实体资源能力
String
strRuntimeDict
=
IOUtils
.
toString
(
runtimeDict
,
"UTF-8"
);
if
(
dictFeignClient
.
syncRuntimeDict
(
JSONArray
.
parseArray
(
strRuntimeDict
))){
log
.
info
(
"推送系统预置代码表成功"
);
}
else
{
log
.
error
(
"推送系统预置代码表失败"
);
}
}
catch
(
Exception
e
)
{
log
.
error
(
"推送系统预置代码表失败"
);
}
</#
if
>
}
}
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录