Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
91e09813
提交
91e09813
编写于
8月 29, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhujiamin 发布系统代码 [TrainSys,网页端]
上级
4071d499
变更
8
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
184 行增加
和
7 行删除
+184
-7
dynamic-codelist-service.ts
...src/service/code-list-service/dynamic-codelist-service.ts
+8
-0
app-panel-base.tsx
.../components/control/app-common-control/app-panel-base.tsx
+4
-0
h2_table.xml
trainsys-core/src/main/resources/liquibase/h2_table.xml
+1
-1
EditorTest.json
...YSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
+53
-2
Phone.json
...izlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json
+3
-0
bookBookEditViewEditorTest.json
...SSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
+53
-2
phonePhoneView.json
...b/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json
+3
-0
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+59
-2
未找到文件。
app_Web/packages/ibiz-core/src/service/code-list-service/dynamic-codelist-service.ts
浏览文件 @
91e09813
...
@@ -196,6 +196,7 @@ export class DynamicCodeListService {
...
@@ -196,6 +196,7 @@ export class DynamicCodeListService {
const
pValueField
=
this
.
codeListInstance
.
getPValuePSAppDEField
()?.
codeName
;
const
pValueField
=
this
.
codeListInstance
.
getPValuePSAppDEField
()?.
codeName
;
const
iconPathField
=
this
.
codeListInstance
.
getIconPathPSAppDEField
()?.
codeName
;
const
iconPathField
=
this
.
codeListInstance
.
getIconPathPSAppDEField
()?.
codeName
;
const
iconClsField
=
this
.
codeListInstance
.
getIconClsPSAppDEField
()?.
codeName
;
const
iconClsField
=
this
.
codeListInstance
.
getIconClsPSAppDEField
()?.
codeName
;
const
disabledField
=
this
.
codeListInstance
.
getDisablePSAppDEField
()?.
codeName
;
const
keyField
=
ModelTool
.
getAppEntityKeyField
(
dataEntity
)?.
codeName
;
const
keyField
=
ModelTool
.
getAppEntityKeyField
(
dataEntity
)?.
codeName
;
const
majorField
=
ModelTool
.
getAppEntityMajorField
(
dataEntity
)?.
codeName
;
const
majorField
=
ModelTool
.
getAppEntityMajorField
(
dataEntity
)?.
codeName
;
if
(
items
&&
items
.
length
>
0
)
{
if
(
items
&&
items
.
length
>
0
)
{
...
@@ -215,6 +216,9 @@ export class DynamicCodeListService {
...
@@ -215,6 +216,9 @@ export class DynamicCodeListService {
if
(
iconClsField
)
{
if
(
iconClsField
)
{
Object
.
assign
(
itemdata
,
{
iconcls
:
item
[
iconClsField
.
toLowerCase
()]
});
Object
.
assign
(
itemdata
,
{
iconcls
:
item
[
iconClsField
.
toLowerCase
()]
});
}
}
if
(
disabledField
)
{
Object
.
assign
(
itemdata
,
{
disabled
:
item
[
disabledField
.
toLowerCase
()]
});
}
_items
.
push
(
itemdata
);
_items
.
push
(
itemdata
);
})
})
}
}
...
@@ -237,6 +241,7 @@ export class DynamicCodeListService {
...
@@ -237,6 +241,7 @@ export class DynamicCodeListService {
const
valueField
=
this
.
codeListInstance
.
getValuePSAppDEField
()?.
codeName
;
const
valueField
=
this
.
codeListInstance
.
getValuePSAppDEField
()?.
codeName
;
const
textField
=
this
.
codeListInstance
.
getTextPSAppDEField
()?.
codeName
;
const
textField
=
this
.
codeListInstance
.
getTextPSAppDEField
()?.
codeName
;
const
pValueField
=
this
.
codeListInstance
.
getPValuePSAppDEField
()?.
codeName
;
const
pValueField
=
this
.
codeListInstance
.
getPValuePSAppDEField
()?.
codeName
;
const
disabledField
=
this
.
codeListInstance
.
getDisablePSAppDEField
()?.
codeName
;
const
keyField
=
ModelTool
.
getAppEntityKeyField
(
dataEntity
)?.
codeName
;
const
keyField
=
ModelTool
.
getAppEntityKeyField
(
dataEntity
)?.
codeName
;
const
majorField
=
ModelTool
.
getAppEntityMajorField
(
dataEntity
)?.
codeName
;
const
majorField
=
ModelTool
.
getAppEntityMajorField
(
dataEntity
)?.
codeName
;
items
.
forEach
((
item
:
any
)
=>
{
items
.
forEach
((
item
:
any
)
=>
{
...
@@ -248,6 +253,9 @@ export class DynamicCodeListService {
...
@@ -248,6 +253,9 @@ export class DynamicCodeListService {
if
(
pValueField
)
{
if
(
pValueField
)
{
Object
.
assign
(
itemdata
,
{
pvalue
:
item
[
pValueField
.
toLowerCase
()]
});
Object
.
assign
(
itemdata
,
{
pvalue
:
item
[
pValueField
.
toLowerCase
()]
});
}
}
if
(
disabledField
)
{
Object
.
assign
(
itemdata
,
{
disabled
:
item
[
disabledField
.
toLowerCase
()]
});
}
})
})
}
}
return
_items
;
return
_items
;
...
...
app_Web/packages/ibiz-vue/src/components/control/app-common-control/app-panel-base.tsx
浏览文件 @
91e09813
...
@@ -427,6 +427,8 @@ export class AppPanelBase extends PanelControlBase {
...
@@ -427,6 +427,8 @@ export class AppPanelBase extends PanelControlBase {
this
.
findDEFieldForPanelField
(
modelJson
);
this
.
findDEFieldForPanelField
(
modelJson
);
}
}
let
labelPos
=
'LEFT'
;
let
labelPos
=
'LEFT'
;
const
detailClass
=
this
.
layoutDetailsModel
[
name
]?.
getDetailClass
();
const
detailStyle
=
this
.
layoutDetailsModel
[
name
].
getBoxStyle
();
return
(
return
(
!
hidden
&&
(
!
hidden
&&
(
<
app
-
panel
-
field
<
app
-
panel
-
field
...
@@ -437,6 +439,8 @@ export class AppPanelBase extends PanelControlBase {
...
@@ -437,6 +439,8 @@ export class AppPanelBase extends PanelControlBase {
error=
{
this
.
rules
[
editor
.
name
]?.
message
}
error=
{
this
.
rules
[
editor
.
name
]?.
message
}
data=
{
this
.
data
}
data=
{
this
.
data
}
value=
{
this
.
data
[
name
]
}
value=
{
this
.
data
[
name
]
}
class=
{
detailClass
}
style=
{
detailStyle
}
itemRules=
{
this
.
rules
[
editor
.
name
]
}
itemRules=
{
this
.
rules
[
editor
.
name
]
}
required=
{
this
.
layoutDetailsModel
[
modelJson
.
name
]?.
required
}
required=
{
this
.
layoutDetailsModel
[
modelJson
.
name
]?.
required
}
>
>
...
...
trainsys-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
91e09813
...
@@ -132,7 +132,7 @@
...
@@ -132,7 +132,7 @@
</changeSet>
</changeSet>
<!--输出实体[PHONE]数据结构 -->
<!--输出实体[PHONE]数据结构 -->
<changeSet
author=
"root"
id=
"tab-phone-4
3
-5"
>
<changeSet
author=
"root"
id=
"tab-phone-4
5
-5"
>
<createTable
tableName=
"T_PHONE"
>
<createTable
tableName=
"T_PHONE"
>
<column
name=
"PHONEID"
remarks=
""
type=
"VARCHAR(100)"
>
<column
name=
"PHONEID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_PHONE"
/>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_PHONE"
/>
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
浏览文件 @
91e09813
...
@@ -162,6 +162,14 @@
...
@@ -162,6 +162,14 @@
"name"
:
"FIELD8"
,
"name"
:
"FIELD8"
,
"codeName"
:
"Field8"
"codeName"
:
"Field8"
}
}
},
{
"id"
:
"field16"
,
"hidden"
:
true
,
"dataType"
:
25
,
"getPSAppDEField"
:
{
"name"
:
"FIELD16"
,
"codeName"
:
"Field16"
}
},
{
},
{
"id"
:
"field9"
,
"id"
:
"field9"
,
"dataType"
:
25
,
"dataType"
:
25
,
...
@@ -631,6 +639,33 @@
...
@@ -631,6 +639,33 @@
},
},
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
"caption"
:
"隐藏"
,
"codeName"
:
"field16"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"name"
:
"field16"
,
"noPrivDisplayMode"
:
1
,
"getPSAppDEField"
:
{
"name"
:
"FIELD16"
,
"codeName"
:
"Field16"
},
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"field16"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
},
{
},
{
"caption"
:
"数据选择"
,
"caption"
:
"数据选择"
,
"codeName"
:
"field9"
,
"codeName"
:
"field9"
,
...
@@ -677,7 +712,7 @@
...
@@ -677,7 +712,7 @@
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"viewType"
:
"DEGRIDVIEW"
"viewType"
:
"DEGRIDVIEW"
},
},
"valueItemName"
:
"
type
"
,
"valueItemName"
:
"
field16
"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -688,7 +723,7 @@
...
@@ -688,7 +723,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"
type
"
,
"valueItemName"
:
"
field16
"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -716,6 +751,12 @@
...
@@ -716,6 +751,12 @@
"editorType"
:
"PICKEREX_NOAC"
,
"editorType"
:
"PICKEREX_NOAC"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"name"
:
"field15"
,
"name"
:
"field15"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"viewType"
:
"DEGRIDVIEW"
},
"valueItemName"
:
"field16"
,
"enableAC"
:
false
,
"enableAC"
:
false
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -726,6 +767,7 @@
...
@@ -726,6 +767,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -765,6 +807,7 @@
...
@@ -765,6 +807,7 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
},
},
"valueItemName"
:
"field16"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enablePickupView"
:
false
,
"enablePickupView"
:
false
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -775,6 +818,7 @@
...
@@ -775,6 +818,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -802,7 +846,13 @@
...
@@ -802,7 +846,13 @@
},
},
"editorType"
:
"PICKEREX_LINK"
,
"editorType"
:
"PICKEREX_LINK"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"getLinkPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/BookTypeGridView.json"
,
"viewType"
:
"DEGRIDVIEW"
},
"name"
:
"field12"
,
"name"
:
"field12"
,
"valueItemName"
:
"field16"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enableLinkView"
:
true
,
"enableLinkView"
:
true
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
...
@@ -814,6 +864,7 @@
...
@@ -814,6 +864,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json
浏览文件 @
91e09813
...
@@ -742,10 +742,13 @@
...
@@ -742,10 +742,13 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
},
},
"paramItem"
:
"cccc"
,
"textItem"
:
"bbbb"
,
"timeout"
:
60000
,
"timeout"
:
60000
,
"uIActionMode"
:
"BACKEND"
,
"uIActionMode"
:
"BACKEND"
,
"uIActionTag"
:
"backEnd"
,
"uIActionTag"
:
"backEnd"
,
"uIActionType"
:
"DEUIACTION"
,
"uIActionType"
:
"DEUIACTION"
,
"valueItem"
:
"aaaa"
,
"enableConfirm"
:
true
,
"enableConfirm"
:
true
,
"id"
:
"backEnd@Phone"
"id"
:
"backEnd@Phone"
},
{
},
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
浏览文件 @
91e09813
...
@@ -283,6 +283,14 @@
...
@@ -283,6 +283,14 @@
"name"
:
"FIELD8"
,
"name"
:
"FIELD8"
,
"codeName"
:
"Field8"
"codeName"
:
"Field8"
}
}
},
{
"id"
:
"field16"
,
"hidden"
:
true
,
"dataType"
:
25
,
"getPSAppDEField"
:
{
"name"
:
"FIELD16"
,
"codeName"
:
"Field16"
}
},
{
},
{
"id"
:
"field9"
,
"id"
:
"field9"
,
"dataType"
:
25
,
"dataType"
:
25
,
...
@@ -752,6 +760,33 @@
...
@@ -752,6 +760,33 @@
},
},
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
"caption"
:
"隐藏"
,
"codeName"
:
"field16"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"name"
:
"field16"
,
"noPrivDisplayMode"
:
1
,
"getPSAppDEField"
:
{
"name"
:
"FIELD16"
,
"codeName"
:
"Field16"
},
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"field16"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
},
{
},
{
"caption"
:
"数据选择"
,
"caption"
:
"数据选择"
,
"codeName"
:
"field9"
,
"codeName"
:
"field9"
,
...
@@ -798,7 +833,7 @@
...
@@ -798,7 +833,7 @@
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"viewType"
:
"DEGRIDVIEW"
"viewType"
:
"DEGRIDVIEW"
},
},
"valueItemName"
:
"
type
"
,
"valueItemName"
:
"
field16
"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -809,7 +844,7 @@
...
@@ -809,7 +844,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"
type
"
,
"valueItemName"
:
"
field16
"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -837,6 +872,12 @@
...
@@ -837,6 +872,12 @@
"editorType"
:
"PICKEREX_NOAC"
,
"editorType"
:
"PICKEREX_NOAC"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"name"
:
"field15"
,
"name"
:
"field15"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"viewType"
:
"DEGRIDVIEW"
},
"valueItemName"
:
"field16"
,
"enableAC"
:
false
,
"enableAC"
:
false
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -847,6 +888,7 @@
...
@@ -847,6 +888,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -886,6 +928,7 @@
...
@@ -886,6 +928,7 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
},
},
"valueItemName"
:
"field16"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enablePickupView"
:
false
,
"enablePickupView"
:
false
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -896,6 +939,7 @@
...
@@ -896,6 +939,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -923,7 +967,13 @@
...
@@ -923,7 +967,13 @@
},
},
"editorType"
:
"PICKEREX_LINK"
,
"editorType"
:
"PICKEREX_LINK"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"getLinkPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/BookTypeGridView.json"
,
"viewType"
:
"DEGRIDVIEW"
},
"name"
:
"field12"
,
"name"
:
"field12"
,
"valueItemName"
:
"field16"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enableLinkView"
:
true
,
"enableLinkView"
:
true
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
...
@@ -935,6 +985,7 @@
...
@@ -935,6 +985,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json
浏览文件 @
91e09813
...
@@ -682,10 +682,13 @@
...
@@ -682,10 +682,13 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
},
},
"paramItem"
:
"cccc"
,
"textItem"
:
"bbbb"
,
"timeout"
:
60000
,
"timeout"
:
60000
,
"uIActionMode"
:
"BACKEND"
,
"uIActionMode"
:
"BACKEND"
,
"uIActionTag"
:
"backEnd"
,
"uIActionTag"
:
"backEnd"
,
"uIActionType"
:
"DEUIACTION"
,
"uIActionType"
:
"DEUIACTION"
,
"valueItem"
:
"aaaa"
,
"enableConfirm"
:
true
,
"enableConfirm"
:
true
,
"id"
:
"backEnd@Phone"
"id"
:
"backEnd@Phone"
},
},
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
91e09813
...
@@ -3539,10 +3539,13 @@
...
@@ -3539,10 +3539,13 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
},
},
"paramItem"
:
"cccc"
,
"textItem"
:
"bbbb"
,
"timeout"
:
60000
,
"timeout"
:
60000
,
"uIActionMode"
:
"BACKEND"
,
"uIActionMode"
:
"BACKEND"
,
"uIActionTag"
:
"backEnd"
,
"uIActionTag"
:
"backEnd"
,
"uIActionType"
:
"DEUIACTION"
,
"uIActionType"
:
"DEUIACTION"
,
"valueItem"
:
"aaaa"
,
"enableConfirm"
:
true
,
"enableConfirm"
:
true
,
"id"
:
"backEnd@Phone"
"id"
:
"backEnd@Phone"
},
},
...
@@ -3868,6 +3871,14 @@
...
@@ -3868,6 +3871,14 @@
"name"
:
"FIELD8"
,
"name"
:
"FIELD8"
,
"codeName"
:
"Field8"
"codeName"
:
"Field8"
}
}
},
{
"id"
:
"field16"
,
"hidden"
:
true
,
"dataType"
:
25
,
"getPSAppDEField"
:
{
"name"
:
"FIELD16"
,
"codeName"
:
"Field16"
}
},
{
},
{
"id"
:
"field9"
,
"id"
:
"field9"
,
"dataType"
:
25
,
"dataType"
:
25
,
...
@@ -4337,6 +4348,33 @@
...
@@ -4337,6 +4348,33 @@
},
},
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
"caption"
:
"隐藏"
,
"codeName"
:
"field16"
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"enableCond"
:
3
,
"ignoreInput"
:
0
,
"labelPos"
:
"LEFT"
,
"labelWidth"
:
130
,
"name"
:
"field16"
,
"noPrivDisplayMode"
:
1
,
"getPSAppDEField"
:
{
"name"
:
"FIELD16"
,
"codeName"
:
"Field16"
},
"getPSEditor"
:
{
"editorType"
:
"HIDDEN"
,
"name"
:
"field16"
},
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
},
"allowEmpty"
:
true
,
"hidden"
:
true
,
"showCaption"
:
true
},
{
},
{
"caption"
:
"数据选择"
,
"caption"
:
"数据选择"
,
"codeName"
:
"field9"
,
"codeName"
:
"field9"
,
...
@@ -4383,7 +4421,7 @@
...
@@ -4383,7 +4421,7 @@
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"viewType"
:
"DEGRIDVIEW"
"viewType"
:
"DEGRIDVIEW"
},
},
"valueItemName"
:
"
type
"
,
"valueItemName"
:
"
field16
"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -4394,7 +4432,7 @@
...
@@ -4394,7 +4432,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"
type
"
,
"valueItemName"
:
"
field16
"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -4422,6 +4460,12 @@
...
@@ -4422,6 +4460,12 @@
"editorType"
:
"PICKEREX_NOAC"
,
"editorType"
:
"PICKEREX_NOAC"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"name"
:
"field15"
,
"name"
:
"field15"
,
"getPickupPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/phonePhoneView.json"
,
"viewType"
:
"DEGRIDVIEW"
},
"valueItemName"
:
"field16"
,
"enableAC"
:
false
,
"enableAC"
:
false
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -4432,6 +4476,7 @@
...
@@ -4432,6 +4476,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -4471,6 +4516,7 @@
...
@@ -4471,6 +4516,7 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
},
},
"valueItemName"
:
"field16"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enablePickupView"
:
false
,
"enablePickupView"
:
false
,
"forceSelection"
:
true
,
"forceSelection"
:
true
,
...
@@ -4481,6 +4527,7 @@
...
@@ -4481,6 +4527,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -4508,7 +4555,13 @@
...
@@ -4508,7 +4555,13 @@
},
},
"editorType"
:
"PICKEREX_LINK"
,
"editorType"
:
"PICKEREX_LINK"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"getLinkPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/BookTypeGridView.json"
,
"viewType"
:
"DEGRIDVIEW"
},
"name"
:
"field12"
,
"name"
:
"field12"
,
"valueItemName"
:
"field16"
,
"enableAC"
:
true
,
"enableAC"
:
true
,
"enableLinkView"
:
true
,
"enableLinkView"
:
true
,
"enablePickupView"
:
true
,
"enablePickupView"
:
true
,
...
@@ -4520,6 +4573,7 @@
...
@@ -4520,6 +4573,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"valueItemName"
:
"field16"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -8929,10 +8983,13 @@
...
@@ -8929,10 +8983,13 @@
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Phone.json"
},
},
"paramItem"
:
"cccc"
,
"textItem"
:
"bbbb"
,
"timeout"
:
60000
,
"timeout"
:
60000
,
"uIActionMode"
:
"BACKEND"
,
"uIActionMode"
:
"BACKEND"
,
"uIActionTag"
:
"backEnd"
,
"uIActionTag"
:
"backEnd"
,
"uIActionType"
:
"DEUIACTION"
,
"uIActionType"
:
"DEUIACTION"
,
"valueItem"
:
"aaaa"
,
"enableConfirm"
:
true
,
"enableConfirm"
:
true
,
"id"
:
"backEnd@Phone"
"id"
:
"backEnd@Phone"
},
{
},
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录