Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
872a6538
提交
872a6538
编写于
11月 08, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Mosher 发布系统代码 [后台服务,演示应用]
上级
835d9e45
变更
9
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
205 行增加
和
109 行删除
+205
-109
form-load-ui-logic-base.ts
app_Web/src/uiservice/ibizbook/form-load-ui-logic-base.ts
+84
-58
default-searchform-base.vue
...zappeditor/default-searchform/default-searchform-base.vue
+2
-2
default-searchform-base.vue
...s/ibizbook/default-searchform/default-searchform-base.vue
+2
-2
guide-borrow-form-form-base.vue
...ok/guide-borrow-form-form/guide-borrow-form-form-base.vue
+5
-5
IBIZBOOK.json
...remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
+107
-39
index.json
...atic/remotemodel/PSSYSAPPS/Web/PSAPPINDEXVIEWS/index.json
+1
-0
PSSYSAPP.json
.../resources/static/remotemodel/PSSYSAPPS/Web/PSSYSAPP.json
+1
-0
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+2
-2
view.xml
demo-core/src/main/resources/liquibase/view.xml
+1
-1
未找到文件。
app_Web/src/uiservice/ibizbook/form-load-ui-logic-base.ts
浏览文件 @
872a6538
...
...
@@ -28,26 +28,11 @@ export default class FormLoadUILogicBase {
* @memberof FormLoadUILogicBase
*/
protected
logicParams
:
any
[]
=
[
{
name
:
'导航视图参数'
,
codeName
:
'viewParam'
,
viewNavDataParam
:
true
,
},
{
name
:
'其他参数'
,
codeName
:
'otherParam'
,
entityParam
:
true
,
},
{
name
:
'当前视图'
,
codeName
:
'view'
,
activeViewParam
:
true
,
},
{
name
:
'上一次调用返回数据'
,
codeName
:
'lastReturn'
,
lastReturnParam
:
true
},
{
name
:
'上下文'
,
codeName
:
'context'
,
...
...
@@ -58,6 +43,21 @@ export default class FormLoadUILogicBase {
codeName
:
'form'
,
ctrlParam
:
true
,
},
{
name
:
'当前视图'
,
codeName
:
'view'
,
activeViewParam
:
true
,
},
{
name
:
'导航视图参数'
,
codeName
:
'viewParam'
,
viewNavDataParam
:
true
,
},
{
name
:
'上一次调用返回数据'
,
codeName
:
'lastReturn'
,
lastReturnParam
:
true
},
{
name
:
'传入变量'
,
codeName
:
'Default'
,
...
...
@@ -163,7 +163,34 @@ export default class FormLoadUILogicBase {
throw
new
Error
(
`
${
invokeCtrl
}
界面对象不存在
${
invokeMethod
}
方法`
);
}
console
.
log
(
'已完成执行 视图部件调用 节点'
);
await
this
.
execute_msgbox1_node
(
actionContext
);
await
this
.
execute_end1_node
(
actionContext
);
}
/**
* 结束
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof FormLoadUILogicBase
*/
protected
async
execute_end1_node
(
actionContext
:
UIActionContext
)
{
const
strReturnType
:
string
=
'NONEVALUE'
;
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
(
''
);
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAM
))
{
actionContext
.
setResult
(
returnParam
.
getReal
());
}
else
{
actionContext
.
setResult
(
returnParam
.
get
(
''
));
}
}
else
{
throw
new
Error
(
`无法识别的返回值类型
${
strReturnType
}
`
);
}
console
.
log
(
'已完成执行 结束 节点'
);
}
/**
...
...
@@ -205,7 +232,12 @@ export default class FormLoadUILogicBase {
}
});
console
.
log
(
'已完成执行 消息弹窗 节点'
);
await
this
.
execute_debugparam1_node
(
actionContext
);
if
(
Verify
.
testCond
(
this
.
getCondParam
(
actionContext
,
'otherParam'
,
''
),
'EQ'
,
'ok'
))
{
await
this
.
execute_preparejsparam1_node
(
actionContext
);
}
if
(
Verify
.
testCond
(
this
.
getCondParam
(
actionContext
,
'otherParam'
,
''
),
'NOTEQ'
,
'ok'
))
{
await
this
.
execute_debugparam1_node
(
actionContext
);
}
}
/**
...
...
@@ -236,50 +268,9 @@ export default class FormLoadUILogicBase {
throw
new
Error
(
`
${
invokeCtrl
}
界面对象不存在
${
invokeMethod
}
方法`
);
}
console
.
log
(
'已完成执行 视图部件调用 节点'
);
await
this
.
execute_msgbox1_node
(
actionContext
);
}
/**
* 调试逻辑参数
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof FormLoadUILogicBase
*/
protected
async
execute_debugparam1_node
(
actionContext
:
UIActionContext
)
{
const
dstParamValue
=
actionContext
.
getParam
(
'otherParam'
).
getReal
();
actionContext
.
bindLastReturnParam
(
null
);
console
.
log
(
'逻辑节点 调试逻辑参数 操作参数值: '
,
dstParamValue
);
console
.
log
(
'已完成执行 调试逻辑参数 节点'
);
await
this
.
execute_end1_node
(
actionContext
);
}
/**
* 结束
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof FormLoadUILogicBase
*/
protected
async
execute_end1_node
(
actionContext
:
UIActionContext
)
{
const
strReturnType
:
string
=
'NONEVALUE'
;
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
(
''
);
if
(
Object
.
is
(
strReturnType
,
LogicReturnType
.
LOGICPARAM
))
{
actionContext
.
setResult
(
returnParam
.
getReal
());
}
else
{
actionContext
.
setResult
(
returnParam
.
get
(
''
));
}
}
else
{
throw
new
Error
(
`无法识别的返回值类型
${
strReturnType
}
`
);
}
console
.
log
(
'已完成执行 结束 节点'
);
}
/**
* 绑定表单
*
...
...
@@ -304,6 +295,41 @@ export default class FormLoadUILogicBase {
throw
new
Error
(
`逻辑参数当前表单
${
error
&&
error
.
message
?
error
.
message
:
'发生未知错误!'
}
`
);
}
console
.
log
(
'已完成执行 绑定表单 节点'
);
await
this
.
execute_msgbox1_node
(
actionContext
);
}
/**
* 准备参数
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof FormLoadUILogicBase
*/
protected
async
execute_preparejsparam1_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_debugparam1_node
(
actionContext
);
}
/**
* 调试逻辑参数
*
* @param {UIActionContext} actionContext 界面逻辑上下文
* @memberof FormLoadUILogicBase
*/
protected
async
execute_debugparam1_node
(
actionContext
:
UIActionContext
)
{
const
dstParamValue
=
actionContext
.
getParam
(
'context'
).
getReal
();
actionContext
.
bindLastReturnParam
(
null
);
console
.
log
(
'逻辑节点 调试逻辑参数 操作参数值: '
,
dstParamValue
);
console
.
log
(
'已完成执行 调试逻辑参数 节点'
);
if
(
Verify
.
testCond
(
this
.
getCondParam
(
actionContext
,
'context'
,
'ibizbook'
),
'ISNULL'
,
''
))
{
await
this
.
execute_viewctrlinvoke1_node
(
actionContext
);
}
...
...
app_Web/src/widgets/ibizappeditor/default-searchform/default-searchform-base.vue
浏览文件 @
872a6538
...
...
@@ -598,7 +598,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -634,7 +634,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
void
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
Grid
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZAPPEDITOR
List
View'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/default-searchform/default-searchform-base.vue
浏览文件 @
872a6538
...
...
@@ -671,7 +671,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CustomView_layout
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr9GridView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -707,7 +707,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
void
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CustomView_layout
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr9GridView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/guide-borrow-form-form/guide-borrow-form-form-base.vue
浏览文件 @
872a6538
...
...
@@ -1308,7 +1308,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView
_layout
'
+
(
this
.
$t
(
'app.formpage.notconfig.loadaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView'
+
(
this
.
$t
(
'app.formpage.notconfig.loadaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -1343,7 +1343,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/
public
loadDraft
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView
_layout
'
+
(
this
.
$t
(
'app.formpage.notconfig.loaddraftaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView'
+
(
this
.
$t
(
'app.formpage.notconfig.loaddraftaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
@@ -1404,7 +1404,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const
action
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)
?
this
.
updateAction
:
this
.
createAction
;
if
(
!
action
){
let
actionName
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)?
"updateAction"
:
"createAction"
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView
_layout
'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
return
;
}
Object
.
assign
(
arg
,{
viewparams
:
this
.
viewparams
});
...
...
@@ -1512,7 +1512,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const
action
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)
?
this
.
updateAction
:
this
.
createAction
;
if
(
!
action
){
let
actionName
:
any
=
Object
.
is
(
data
.
srfuf
,
'1'
)?
"updateAction"
:
"createAction"
;
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView
_layout
'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView'
+
(
this
.
$t
(
'app.formpage.notconfig.actionname'
)
as
string
)
});
return
;
}
Object
.
assign
(
arg
,{
viewparams
:
this
.
viewparams
});
...
...
@@ -1586,7 +1586,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
public
remove
(
opt
:
Array
<
any
>
=
[],
showResultInfo
?:
boolean
):
Promise
<
any
>
{
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView
_layout
'
+
(
this
.
$t
(
'app.formpage.notconfig.removeaction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOKWizardView'
+
(
this
.
$t
(
'app.formpage.notconfig.removeaction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
opt
[
0
];
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json
浏览文件 @
872a6538
...
...
@@ -2091,7 +2091,7 @@
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
MSGBOX
1"
"id"
:
"
END
1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
...
...
@@ -2100,6 +2100,11 @@
"id"
:
"VIEWCTRLINVOKE1"
}
}
]
},
{
"codeName"
:
"END1"
,
"logicNodeType"
:
"END"
,
"name"
:
"结束"
,
"returnType"
:
"NONEVALUE"
},
{
"buttonsType"
:
"OKCANCEL"
,
"codeName"
:
"MSGBOX1"
,
...
...
@@ -2112,12 +2117,53 @@
"msgBoxType"
:
"QUESTION"
,
"name"
:
"消息弹窗"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREJSPARAM1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"EQ"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"otherParam"
},
"logicType"
:
"SINGLE"
,
"name"
:
"otherParam 等于(=) ok"
,
"paramValue"
:
"ok"
,
"value"
:
"ok"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"MSGBOX1"
}
},
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getPSDEUILogicLinkGroupCond"
:
{
"groupOP"
:
"AND"
,
"logicType"
:
"GROUP"
,
"getPSDEUILogicLinkConds"
:
[
{
"condOP"
:
"NOTEQ"
,
"getDstLogicParam"
:
{
"modelref"
:
true
,
"id"
:
"otherParam"
},
"logicType"
:
"SINGLE"
,
"name"
:
"otherParam 不等于(<>) ok"
,
"paramValue"
:
"ok"
,
"value"
:
"ok"
}
]
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"MSGBOX1"
...
...
@@ -2141,7 +2187,7 @@
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
MSGBOX
1"
"id"
:
"
END
1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
...
...
@@ -2151,38 +2197,65 @@
}
}
]
},
{
"codeName"
:
"
DEBUG
PARAM1"
,
"codeName"
:
"
BIND
PARAM1"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"
otherPara
m"
"id"
:
"
for
m"
},
"logicNodeType"
:
"
DEBUG
PARAM"
,
"name"
:
"
调试逻辑参数
"
,
"logicNodeType"
:
"
BIND
PARAM"
,
"name"
:
"
绑定表单
"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
END
1"
"id"
:
"
MSGBOX
1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"BINDPARAM1"
}
}
],
"srcFieldName"
:
"form"
,
"getSrcPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"view"
}
},
{
"codeName"
:
"PREPAREJSPARAM1"
,
"logicNodeType"
:
"PREPAREJSPARAM"
,
"name"
:
"准备参数"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"DEBUGPARAM1"
},
"linkMode"
:
0
,
"name"
:
"连接名称"
,
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"PREPAREJSPARAM1"
}
}
],
"getPSDEUILogicNodeParams"
:
[
{
"dstFieldName"
:
"ibizbook"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"context"
},
"name"
:
"直接值[12] ==> context[ibizbook]"
,
"paramAction"
:
"SETPARAMVALUE"
,
"srcValue"
:
"12"
,
"srcValueType"
:
"SRCVALUE"
}
]
},
{
"codeName"
:
"END1"
,
"logicNodeType"
:
"END"
,
"name"
:
"结束"
,
"returnType"
:
"NONEVALUE"
},
{
"codeName"
:
"BINDPARAM1"
,
"codeName"
:
"DEBUGPARAM1"
,
"getDstPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"
form
"
"id"
:
"
context
"
},
"logicNodeType"
:
"
BIND
PARAM"
,
"name"
:
"
绑定表单
"
,
"logicNodeType"
:
"
DEBUG
PARAM"
,
"name"
:
"
调试逻辑参数
"
,
"getPSDEUILogicLinks"
:
[
{
"getDstPSDEUILogicNode"
:
{
"modelref"
:
true
,
...
...
@@ -2206,7 +2279,7 @@
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
BIND
PARAM1"
"id"
:
"
DEBUG
PARAM1"
}
},
{
"getDstPSDEUILogicNode"
:
{
...
...
@@ -2231,35 +2304,15 @@
},
"getSrcPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"
BIND
PARAM1"
"id"
:
"
DEBUG
PARAM1"
}
}
],
"srcFieldName"
:
"form"
,
"getSrcPSDEUILogicParam"
:
{
"modelref"
:
true
,
"id"
:
"view"
}
}
]
}
],
"getPSDEUILogicParams"
:
[
{
"codeName"
:
"viewParam"
,
"logicName"
:
"导航视图参数"
,
"name"
:
"导航视图参数"
,
"viewNavDataParam"
:
true
},
{
"codeName"
:
"otherParam"
,
"logicName"
:
"其他参数"
,
"name"
:
"其他参数"
,
"entityParam"
:
true
},
{
"codeName"
:
"view"
,
"logicName"
:
"当前视图"
,
"name"
:
"当前视图"
,
"activeViewParam"
:
true
},
{
"codeName"
:
"lastReturn"
,
"logicName"
:
"上一次调用返回数据"
,
"name"
:
"上一次调用返回数据"
,
"lastReturnParam"
:
true
},
{
"codeName"
:
"context"
,
"logicName"
:
"上下文"
,
...
...
@@ -2270,6 +2323,21 @@
"logicName"
:
"当前表单"
,
"name"
:
"当前表单"
,
"ctrlParam"
:
true
},
{
"codeName"
:
"view"
,
"logicName"
:
"当前视图"
,
"name"
:
"当前视图"
,
"activeViewParam"
:
true
},
{
"codeName"
:
"viewParam"
,
"logicName"
:
"导航视图参数"
,
"name"
:
"导航视图参数"
,
"viewNavDataParam"
:
true
},
{
"codeName"
:
"lastReturn"
,
"logicName"
:
"上一次调用返回数据"
,
"name"
:
"上一次调用返回数据"
,
"lastReturnParam"
:
true
},
{
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPINDEXVIEWS/index.json
浏览文件 @
872a6538
...
...
@@ -119,6 +119,7 @@
"layout"
:
"BORDER"
,
"layoutPos"
:
"NORTH"
,
"spacingBottom"
:
"INNERSMALL"
,
"spacingLeft"
:
"INNERMEDIUM"
,
"spacingTop"
:
"INNERSMALL"
,
"vAlignSelf"
:
"MIDDLE"
},
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
872a6538
...
...
@@ -15071,6 +15071,7 @@
"layout"
:
"BORDER"
,
"layoutPos"
:
"NORTH"
,
"spacingBottom"
:
"INNERSMALL"
,
"spacingLeft"
:
"INNERMEDIUM"
,
"spacingTop"
:
"INNERSMALL"
,
"vAlignSelf"
:
"MIDDLE"
},
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
872a6538
...
...
@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-4
48
-7"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizbook-4
53
-7"
>
<createTable
tableName=
"T_IBIZBOOK"
>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
...
...
@@ -390,7 +390,7 @@
<!--输出实体[IBIZORDERDETAIL]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-
4
-15"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizorderdetail-
5
-15"
>
<createTable
tableName=
"T_IBIZORDERDETAIL"
>
<column
name=
"IBIZORDERDETAILNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
...
...
demo-core/src/main/resources/liquibase/view.xml
浏览文件 @
872a6538
...
...
@@ -43,7 +43,7 @@
</createView>
</changeSet>
<!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-
4
-9"
runOnChange=
"true"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"view-ibizorderdetail-
5
-9"
runOnChange=
"true"
>
<createView
fullDefinition=
"false"
replaceIfExists=
"true"
viewName=
"V_IBIZORDERDETAIL"
>
<![CDATA[ SELECT t1.[QUANTITY]*t11.[UNITPRICE] AS [AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[IBIZORDERDETAILA], t1.[IBIZORDERDETAILID], t1.[IBIZORDERDETAILNAME], t1.[IBIZORDERID], t21.[IBIZORDERNAME], t1.[IBIZUNIPRODUCTID], t11.[IBIZUNIPRODUCTNAME], t21.[ORDERUID], t1.[QUANTITY], t11.[UNIT], t11.[UNITPRICE], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZORDERDETAIL] t1 LEFT JOIN T_IBIZUNIPRODUCT t11 ON t1.IBIZUNIPRODUCTID = t11.IBIZUNIPRODUCTID LEFT JOIN T_IBIZORDER t21 ON t1.IBIZORDERID = t21.IBIZORDERID ]]>
</createView>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录