Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
6798f9e8
提交
6798f9e8
编写于
11月 08, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Mosher 发布系统代码 [后台服务,演示应用]
上级
4d00be4a
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
320 行增加
和
269 行删除
+320
-269
grid-load-ui-logic-base.ts
app_Web/src/uiservice/ibizbook/grid-load-ui-logic-base.ts
+191
-170
list-exp-list-base.vue
...rc/widgets/ibizorder/list-exp-list/list-exp-list-base.vue
+4
-4
IBIZBOOK.json
...remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
+124
-94
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+1
-1
未找到文件。
app_Web/src/uiservice/ibizbook/grid-load-ui-logic-base.ts
浏览文件 @
6798f9e8
...
...
@@ -29,25 +29,29 @@ export default class GridLoadUILogicBase {
* @memberof GridLoadUILogicBase
*/
protected
logicParams
:
any
[]
=
[
{
name
:
'当前表格'
,
codeName
:
'grid'
,
ctrlParam
:
true
,
},
{
name
:
'应用上下文'
,
codeName
:
'context'
,
navContextParam
:
true
,
},
{
name
:
'路由会话变量'
,
codeName
:
'routerParam'
,
routeViewSessionParam
:
true
,
},
{
name
:
'当前视图参数'
,
codeName
:
'viewParam'
,
viewNavDataParam
:
true
,
},
{
name
:
'当前搜索表单'
,
codeName
:
'searchForm'
,
ctrlParam
:
true
,
name
:
'额外参数'
,
codeName
:
'otherParam'
,
entityParam
:
true
,
},
{
name
:
'当前系统名称'
,
codeName
:
'systemName'
,
},
{
name
:
'传入变量'
,
...
...
@@ -56,15 +60,20 @@ export default class GridLoadUILogicBase {
entityParam
:
true
,
},
{
name
:
'
额外参数
'
,
codeName
:
'
otherPara
m'
,
entity
Param
:
true
,
name
:
'
当前搜索表单
'
,
codeName
:
'
searchFor
m'
,
ctrl
Param
:
true
,
},
{
name
:
'当前视图'
,
codeName
:
'view'
,
activeViewParam
:
true
,
},
{
name
:
'当前表格'
,
codeName
:
'grid'
,
ctrlParam
:
true
,
},
];
/**
...
...
@@ -119,6 +128,101 @@ export default class GridLoadUILogicBase {
await
this
.
execute_bindparam1_node
(
actionContext
);
}
/**
* 搜索表单loadDraft
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_viewctrlinvoke1_node
(
actionContext
:
UIActionContext
)
{
const
invokeCtrl
=
'searchForm'
;
const
invokeMethod
=
'loadDraft'
;
const
invokeParam
=
'viewParam'
;
if
(
!
invokeCtrl
||
!
invokeMethod
)
{
throw
new
Error
(
`界面对象或者调用方法缺失`
);
}
const
invokeUICtrl
=
actionContext
.
getParam
(
invokeCtrl
).
getReal
();
if
(
invokeUICtrl
[
invokeMethod
]
&&
invokeUICtrl
[
invokeMethod
]
instanceof
Function
)
{
try
{
const
result
=
await
invokeUICtrl
[
invokeMethod
]();
if
(
invokeParam
)
{
actionContext
.
getParam
(
invokeParam
).
bind
(
result
);
}
actionContext
.
bindLastReturnParam
(
result
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`
${
invokeCtrl
}
界面对象调用
${
invokeMethod
}
方法发生异常`
);
}
}
else
{
throw
new
Error
(
`
${
invokeCtrl
}
界面对象不存在
${
invokeMethod
}
方法`
);
}
console
.
log
(
'已完成执行 搜索表单loadDraft 节点'
);
await
this
.
execute_viewctrlinvoke2_node
(
actionContext
);
}
/**
* 准备参数
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_preparejsparam1_node
(
actionContext
:
UIActionContext
)
{
try
{
// 目标数据
const
dstParam_1
:
any
=
actionContext
.
getParam
(
'otherParam'
);
// 无值类型
// 直接值
const
result_1
=
'12'
;
dstParam_1
.
set
(
'book'
,
result_1
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑节点 准备参数
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 准备参数 节点'
);
await
this
.
execute_deaction1_node
(
actionContext
);
}
/**
* 实体处理逻辑
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_delogic1_node
(
actionContext
:
UIActionContext
)
{
const
dstParam
=
actionContext
.
getParam
(
'viewParam'
);
const
retParam
=
actionContext
.
getParam
(
'viewParam'
);
if
(
dstParam
)
{
try
{
const
deLogic
:
InitDataLogic
=
new
InitDataLogic
({
context
:
actionContext
.
context
,
data
:
dstParam
.
getReal
()
?
dstParam
.
getReal
()
:
{}
});
const
result
=
await
deLogic
.
onExecute
(
actionContext
.
context
,
dstParam
.
getReal
()
?
dstParam
.
getReal
()
:
{},
false
);
if
(
result
)
{
if
(
retParam
){
retParam
.
bind
(
result
);
}
actionContext
.
bindLastReturnParam
(
result
);
}
else
{
throw
new
Error
(
`调用实体处理逻辑异常`
);
}
}
catch
(
error
:
any
)
{
throw
new
Error
(
`调用实体处理逻辑异常
${
error
&&
error
.
message
?
error
.
message
:
''
}
`
);
}
}
else
{
throw
new
Error
(
`操作参数缺失!`
);
}
console
.
log
(
'已完成执行 实体处理逻辑 节点'
);
await
this
.
execute_msgbox1_node
(
actionContext
);
await
this
.
execute_preparejsparam1_node
(
actionContext
);
}
/**
* 调试逻辑参数
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_debugparam1_node
(
actionContext
:
UIActionContext
)
{
// TODO 等待补充
console
.
log
(
'已完成执行 调试逻辑参数 节点'
);
}
/**
* 表格加载
*
...
...
@@ -150,6 +254,60 @@ export default class GridLoadUILogicBase {
await
this
.
execute_preparejsparam2_node
(
actionContext
);
}
/**
* 绑定搜索表单
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_bindparam1_node
(
actionContext
:
UIActionContext
)
{
try
{
// 源数据
const
srcParam
=
actionContext
.
getParam
(
'view'
);
// 目标数据
const
dstParam
=
actionContext
.
getParam
(
'searchForm'
);
// 源属性
const
srcFieldName
:
string
=
'searchform'
;
if
(
srcFieldName
)
{
dstParam
.
bind
(
srcParam
.
get
(
srcFieldName
));
}
else
{
dstParam
.
bind
(
srcParam
.
getReal
());
}
actionContext
.
bindLastReturnParam
(
null
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑参数当前搜索表单
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 绑定搜索表单 节点'
);
await
this
.
execute_bindparam2_node
(
actionContext
);
}
/**
* 绑定表格
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_bindparam2_node
(
actionContext
:
UIActionContext
)
{
try
{
// 源数据
const
srcParam
=
actionContext
.
getParam
(
'view'
);
// 目标数据
const
dstParam
=
actionContext
.
getParam
(
'grid'
);
// 源属性
const
srcFieldName
:
string
=
'grid'
;
if
(
srcFieldName
)
{
dstParam
.
bind
(
srcParam
.
get
(
srcFieldName
));
}
else
{
dstParam
.
bind
(
srcParam
.
getReal
());
}
actionContext
.
bindLastReturnParam
(
null
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑参数当前表格
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 绑定表格 节点'
);
await
this
.
execute_viewctrlinvoke1_node
(
actionContext
);
}
/**
* 实体行为
*
...
...
@@ -228,35 +386,30 @@ export default class GridLoadUILogicBase {
}
/**
*
实体处理逻辑
*
结束
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_delogic1_node
(
actionContext
:
UIActionContext
)
{
const
dstParam
=
actionContext
.
getParam
(
'viewParam'
);
const
retParam
=
actionContext
.
getParam
(
'viewParam'
);
if
(
dstParam
)
{
try
{
const
deLogic
:
InitDataLogic
=
new
InitDataLogic
({
context
:
actionContext
.
context
,
data
:
dstParam
.
getReal
()
?
dstParam
.
getReal
()
:
{}
});
const
result
=
await
deLogic
.
onExecute
(
actionContext
.
context
,
dstParam
.
getReal
()
?
dstParam
.
getReal
()
:
{},
false
);
if
(
result
)
{
if
(
retParam
){
retParam
.
bind
(
result
);
}
actionContext
.
bindLastReturnParam
(
result
);
}
else
{
throw
new
Error
(
`调用实体处理逻辑异常`
);
}
}
catch
(
error
:
any
)
{
throw
new
Error
(
`调用实体处理逻辑异常
${
error
&&
error
.
message
?
error
.
message
:
''
}
`
);
protected
async
execute_end1_node
(
actionContext
:
UIActionContext
)
{
const
strReturnType
:
string
=
'LOGICPARAM'
;
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
NONEVALUE
)
||
Object
.
is
(
strReturnType
,
LogicReturnType
.
NULLVALUE
))
{
actionContext
.
setResult
(
null
);
}
else
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
SRCVALUE
))
{
actionContext
.
setResult
(
''
);
}
else
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
BREAK
))
{
actionContext
.
setResult
(
LogicReturnType
.
BREAK
);
}
else
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAM
)
||
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAMFIELD
))
{
const
returnParam
=
actionContext
.
getParam
(
'Default'
);
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAM
))
{
actionContext
.
setResult
(
returnParam
.
getReal
());
}
else
{
actionContext
.
setResult
(
returnParam
.
get
(
''
));
}
}
else
{
throw
new
Error
(
`
操作参数缺失!
`
);
throw
new
Error
(
`
无法识别的返回值类型
${
strReturnType
}
`
);
}
console
.
log
(
'已完成执行 实体处理逻辑 节点'
);
await
this
.
execute_msgbox1_node
(
actionContext
);
await
this
.
execute_preparejsparam1_node
(
actionContext
);
console
.
log
(
'已完成执行 结束 节点'
);
}
/**
...
...
@@ -265,50 +418,19 @@ export default class GridLoadUILogicBase {
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_preparejsparam
1
_node
(
actionContext
:
UIActionContext
)
{
protected
async
execute_preparejsparam
2
_node
(
actionContext
:
UIActionContext
)
{
try
{
// 目标数据
const
dstParam_1
:
any
=
actionContext
.
getParam
(
'
otherParam
'
);
const
dstParam_1
:
any
=
actionContext
.
getParam
(
'
context
'
);
// 无值类型
// 直接值
const
result_1
=
'12'
;
dstParam_1
.
set
(
'book'
,
result_1
);
dstParam_1
.
set
(
'
ibiz
book'
,
result_1
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑节点 准备参数
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 准备参数 节点'
);
await
this
.
execute_deaction1_node
(
actionContext
);
}
/**
* 搜索表单loadDraft
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_viewctrlinvoke1_node
(
actionContext
:
UIActionContext
)
{
const
invokeCtrl
=
'searchForm'
;
const
invokeMethod
=
'loadDraft'
;
const
invokeParam
=
'viewParam'
;
if
(
!
invokeCtrl
||
!
invokeMethod
)
{
throw
new
Error
(
`界面对象或者调用方法缺失`
);
}
const
invokeUICtrl
=
actionContext
.
getParam
(
invokeCtrl
).
getReal
();
if
(
invokeUICtrl
[
invokeMethod
]
&&
invokeUICtrl
[
invokeMethod
]
instanceof
Function
)
{
try
{
const
result
=
await
invokeUICtrl
[
invokeMethod
]();
if
(
invokeParam
)
{
actionContext
.
getParam
(
invokeParam
).
bind
(
result
);
}
actionContext
.
bindLastReturnParam
(
result
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`
${
invokeCtrl
}
界面对象调用
${
invokeMethod
}
方法发生异常`
);
}
}
else
{
throw
new
Error
(
`
${
invokeCtrl
}
界面对象不存在
${
invokeMethod
}
方法`
);
}
console
.
log
(
'已完成执行 搜索表单loadDraft 节点'
);
await
this
.
execute_viewctrlinvoke2_node
(
actionContext
);
await
this
.
execute_delogic1_node
(
actionContext
);
}
/**
...
...
@@ -350,108 +472,7 @@ export default class GridLoadUILogicBase {
}
});
console
.
log
(
'已完成执行 消息弹窗 节点'
);
}
/**
* 结束
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_end1_node
(
actionContext
:
UIActionContext
)
{
const
strReturnType
:
string
=
'LOGICPARAM'
;
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
NONEVALUE
)
||
Object
.
is
(
strReturnType
,
LogicReturnType
.
NULLVALUE
))
{
actionContext
.
setResult
(
null
);
}
else
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
SRCVALUE
))
{
actionContext
.
setResult
(
''
);
}
else
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
BREAK
))
{
actionContext
.
setResult
(
LogicReturnType
.
BREAK
);
}
else
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAM
)
||
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAMFIELD
))
{
const
returnParam
=
actionContext
.
getParam
(
'Default'
);
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAM
))
{
actionContext
.
setResult
(
returnParam
.
getReal
());
}
else
{
actionContext
.
setResult
(
returnParam
.
get
(
''
));
}
}
else
{
throw
new
Error
(
`无法识别的返回值类型
${
strReturnType
}
`
);
}
console
.
log
(
'已完成执行 结束 节点'
);
}
/**
* 绑定表格
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_bindparam2_node
(
actionContext
:
UIActionContext
)
{
try
{
// 源数据
const
srcParam
=
actionContext
.
getParam
(
'view'
);
// 目标数据
const
dstParam
=
actionContext
.
getParam
(
'grid'
);
// 源属性
const
srcFieldName
:
string
=
'grid'
;
if
(
srcFieldName
)
{
dstParam
.
bind
(
srcParam
.
get
(
srcFieldName
));
}
else
{
dstParam
.
bind
(
srcParam
.
getReal
());
}
actionContext
.
bindLastReturnParam
(
null
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑参数当前表格
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 绑定表格 节点'
);
await
this
.
execute_viewctrlinvoke1_node
(
actionContext
);
}
/**
* 绑定搜索表单
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_bindparam1_node
(
actionContext
:
UIActionContext
)
{
try
{
// 源数据
const
srcParam
=
actionContext
.
getParam
(
'view'
);
// 目标数据
const
dstParam
=
actionContext
.
getParam
(
'searchForm'
);
// 源属性
const
srcFieldName
:
string
=
'searchform'
;
if
(
srcFieldName
)
{
dstParam
.
bind
(
srcParam
.
get
(
srcFieldName
));
}
else
{
dstParam
.
bind
(
srcParam
.
getReal
());
}
actionContext
.
bindLastReturnParam
(
null
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑参数当前搜索表单
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 绑定搜索表单 节点'
);
await
this
.
execute_bindparam2_node
(
actionContext
);
}
/**
* 准备参数
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof GridLoadUILogicBase
*/
protected
async
execute_preparejsparam2_node
(
actionContext
:
UIActionContext
)
{
try
{
// 目标数据
const
dstParam_1
:
any
=
actionContext
.
getParam
(
'context'
);
// 无值类型
// 直接值
const
result_1
=
'12'
;
dstParam_1
.
set
(
'ibizbook'
,
result_1
);
}
catch
(
error
:
any
)
{
throw
new
Error
(
`逻辑节点 准备参数
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 准备参数 节点'
);
await
this
.
execute_delogic1_node
(
actionContext
);
await
this
.
execute_debugparam1_node
(
actionContext
);
}
...
...
app_Web/src/widgets/ibizorder/list-exp-list/list-exp-list-base.vue
浏览文件 @
6798f9e8
...
...
@@ -530,7 +530,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{...
opt
};
...
...
@@ -646,7 +646,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.removeAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.removeAction'
)
as
string
)
});
return
;
}
if
(
datas
.
length
===
0
)
{
...
...
@@ -741,7 +741,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
!
this
.
createAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
...
...
@@ -749,7 +749,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.warning'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.warning'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
if
(
item
.
ibizorder
){
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
浏览文件 @
6798f9e8
...
...
@@ -2076,62 +2076,57 @@
}
],
"parallelOutput"
:
true
},
{
"codeName"
:
"VIEWCTRLINVOKE
2
"
,
"codeName"
:
"VIEWCTRLINVOKE
1
"
,
"getInvokeCtrl"
:
{
"modelref"
:
true
,
"id"
:
"
grid
"
"id"
:
"
searchForm
"
},
"invokeMethod"
:
"load"
,
"invokeMethod"
:
"load
Draft
"
,
"getInvokeParam"
:
{
"modelref"
:
true
,
"id"
:
"viewParam"
},
"logicNodeType"
:
"VIEWCTRLINVOKE"
,
"name"
:
"
表格加载
"
,
"name"
:
"
搜索表单loadDraft
"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
PREPAREJSPARAM
2"
"id"
:
"
VIEWCTRLINVOKE
2"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"VIEWCTRLINVOKE
2
"
"id"
:
"VIEWCTRLINVOKE
1
"
}
}
]
},
{
"codeName"
:
"DEACTION1"
,
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Get"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"otherParam"
},
"logicNodeType"
:
"DEACTION"
,
"name"
:
"实体行为"
,
"codeName"
:
"PREPAREJSPARAM1"
,
"logicNodeType"
:
"PREPAREJSPARAM"
,
"name"
:
"准备参数"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
END
1"
"id"
:
"
DEACTION
1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
DEACTION
1"
"id"
:
"
PREPAREJSPARAM
1"
}
}
],
"getRetPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
}
"getPSDEUILogicNodeParams"
:
[
{
"dstFieldName"
:
"book"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"otherParam"
},
"name"
:
"直接值[12] ==> otherParam[book]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"12"
,
"srcValueType"
:
"SRCVALUE"
}
]
},
{
"codeName"
:
"DELOGIC1"
,
"getDstPSAppDELogic"
:
{
...
...
@@ -2172,75 +2167,63 @@
}
}
]
},
{
"codeName"
:
"PREPAREJSPARAM1"
,
"logicNodeType"
:
"PREPAREJSPARAM"
,
"name"
:
"准备参数"
,
"codeName"
:
"DEBUGPARAM1"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"context"
},
"logicNodeType"
:
"DEBUGPARAM"
,
"name"
:
"调试逻辑参数"
},
{
"codeName"
:
"VIEWCTRLINVOKE2"
,
"getInvokeCtrl"
:
{
"modelref"
:
true
,
"id"
:
"grid"
},
"invokeMethod"
:
"load"
,
"getInvokeParam"
:
{
"modelref"
:
true
,
"id"
:
"viewParam"
},
"logicNodeType"
:
"VIEWCTRLINVOKE"
,
"name"
:
"表格加载"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
DEACTION1
"
"id"
:
"
PREPAREJSPARAM2
"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
PREPAREJSPARAM1
"
"id"
:
"
VIEWCTRLINVOKE2
"
}
}
],
"getPSDEUILogicNodeParams"
:
[
{
"dstFieldName"
:
"book"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"otherParam"
},
"name"
:
"直接值[12] ==> otherParam[book]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"12"
,
"srcValueType"
:
"SRCVALUE"
}
]
},
{
"codeName"
:
"
VIEWCTRLINVOKE
1"
,
"get
InvokeCtrl
"
:
{
"codeName"
:
"
BINDPARAM
1"
,
"get
DstPSDEUILogicParam
"
:
{
"modelref"
:
true
,
"id"
:
"searchForm"
},
"invokeMethod"
:
"loadDraft"
,
"getInvokeParam"
:
{
"modelref"
:
true
,
"id"
:
"viewParam"
},
"logicNodeType"
:
"VIEWCTRLINVOKE"
,
"name"
:
"搜索表单loadDraft"
,
"logicNodeType"
:
"BINDPARAM"
,
"name"
:
"绑定搜索表单"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
VIEWCTRLINVOKE
2"
"id"
:
"
BINDPARAM
2"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
VIEWCTRLINVOKE
1"
"id"
:
"
BINDPARAM
1"
}
}
]
},
{
"buttonsType"
:
"OK"
,
"codeName"
:
"MSGBOX1"
,
"logicNodeType"
:
"MSGBOX"
,
"message"
:
"我被触发啦"
,
"msgBoxType"
:
"INFO"
,
"name"
:
"消息弹窗"
,
"showMode"
:
"CENTER"
,
"title"
:
"触发"
},
{
"codeName"
:
"END1"
,
"logicNodeType"
:
"END"
,
"name"
:
"结束"
,
"getReturnParam"
:
{
}
],
"srcFieldName"
:
"searchform"
,
"getSrcPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"returnType"
:
"LOGICPARAM"
"id"
:
"view"
}
},
{
"codeName"
:
"BINDPARAM2"
,
"getDstPSDEUILogicParam"
:
{
...
...
@@ -2267,30 +2250,46 @@
"id"
:
"view"
}
},
{
"codeName"
:
"BINDPARAM1"
,
"codeName"
:
"DEACTION1"
,
"getDstPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Get"
},
"getDstPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"
searchFor
m"
"id"
:
"
otherPara
m"
},
"logicNodeType"
:
"
BINDPARAM
"
,
"name"
:
"
绑定搜索表单
"
,
"logicNodeType"
:
"
DEACTION
"
,
"name"
:
"
实体行为
"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
BINDPARAM2
"
"id"
:
"
END1
"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
BINDPARAM
1"
"id"
:
"
DEACTION
1"
}
}
],
"srcFieldName"
:
"searchform"
,
"getSrcPSDEUILogicParam"
:
{
"getRetPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"
view
"
"id"
:
"
Default
"
}
},
{
"codeName"
:
"END1"
,
"logicNodeType"
:
"END"
,
"name"
:
"结束"
,
"getReturnParam"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"returnType"
:
"LOGICPARAM"
},
{
"codeName"
:
"PREPAREJSPARAM2"
,
"logicNodeType"
:
"PREPAREJSPARAM"
,
...
...
@@ -2318,27 +2317,53 @@
"srcValue"
:
"12"
,
"srcValueType"
:
"SRCVALUE"
}
]
},
{
"buttonsType"
:
"OK"
,
"codeName"
:
"MSGBOX1"
,
"logicNodeType"
:
"MSGBOX"
,
"message"
:
"我被触发啦"
,
"msgBoxType"
:
"INFO"
,
"name"
:
"消息弹窗"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"MSGBOX1"
}
}
],
"showMode"
:
"CENTER"
,
"title"
:
"触发"
}
],
"getPSDEUILogicParams"
:
[
{
"codeName"
:
"grid"
,
"logicName"
:
"当前表格"
,
"name"
:
"当前表格"
,
"ctrlParam"
:
true
},
{
"codeName"
:
"context"
,
"logicName"
:
"应用上下文"
,
"name"
:
"应用上下文"
,
"navContextParam"
:
true
},
{
"codeName"
:
"routerParam"
,
"logicName"
:
"路由会话变量"
,
"name"
:
"路由会话变量"
,
"paramFieldName"
:
"testParam"
,
"routeViewSessionParam"
:
true
},
{
"codeName"
:
"viewParam"
,
"logicName"
:
"当前视图参数"
,
"name"
:
"当前视图参数"
,
"viewNavDataParam"
:
true
},
{
"codeName"
:
"searchForm"
,
"logicName"
:
"当前搜索表单"
,
"name"
:
"当前搜索表单"
,
"ctrlParam"
:
true
"codeName"
:
"otherParam"
,
"logicName"
:
"额外参数"
,
"name"
:
"额外参数"
,
"entityParam"
:
true
},
{
"codeName"
:
"systemName"
,
"logicName"
:
"当前系统名称"
,
"name"
:
"当前系统名称"
},
{
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
...
...
@@ -2346,15 +2371,20 @@
"default"
:
true
,
"entityParam"
:
true
},
{
"codeName"
:
"
otherPara
m"
,
"logicName"
:
"
额外参数
"
,
"name"
:
"
额外参数
"
,
"
entity
Param"
:
true
"codeName"
:
"
searchFor
m"
,
"logicName"
:
"
当前搜索表单
"
,
"name"
:
"
当前搜索表单
"
,
"
ctrl
Param"
:
true
},
{
"codeName"
:
"view"
,
"logicName"
:
"当前视图"
,
"name"
:
"当前视图"
,
"activeViewParam"
:
true
},
{
"codeName"
:
"grid"
,
"logicName"
:
"当前表格"
,
"name"
:
"当前表格"
,
"ctrlParam"
:
true
}
],
"getStartPSDEUILogicNode"
:
{
"modelref"
:
true
,
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
6798f9e8
...
...
@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-3
47
-7"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-3
51
-7"
>
<createTable
tableName=
"T_IBIZBOOK"
>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录