@ibiz/model-core 0.1.27 → 0.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/app/bi/iapp-bicube-dimension.d.ts +48 -0
- package/out/app/bi/iapp-bicube-dimension.js +1 -0
- package/out/app/bi/iapp-bicube-hierarchy.d.ts +35 -0
- package/out/app/bi/iapp-bicube-hierarchy.js +1 -0
- package/out/app/bi/iapp-bicube-level.d.ts +27 -0
- package/out/app/bi/iapp-bicube-level.js +1 -0
- package/out/app/bi/iapp-bicube-measure.d.ts +79 -0
- package/out/app/bi/iapp-bicube-measure.js +1 -0
- package/out/app/bi/iapp-bicube.d.ts +31 -0
- package/out/app/bi/iapp-bicube.js +1 -0
- package/out/app/bi/iapp-bireport-dimension.d.ts +15 -0
- package/out/app/bi/iapp-bireport-dimension.js +1 -0
- package/out/app/bi/iapp-bireport-measure.d.ts +15 -0
- package/out/app/bi/iapp-bireport-measure.js +1 -0
- package/out/app/bi/iapp-bireport.d.ts +64 -0
- package/out/app/bi/iapp-bireport.js +1 -0
- package/out/app/bi/iapp-bischeme.d.ts +28 -0
- package/out/app/bi/iapp-bischeme.js +1 -0
- package/out/app/dataentity/iapp-dereport.d.ts +29 -0
- package/out/app/iapplication.d.ts +10 -3
- package/out/app/theme/iapp-uitheme.d.ts +6 -0
- package/out/control/dataview/idedata-view.d.ts +8 -0
- package/out/control/drctrl/idedrctrl-item.d.ts +11 -3
- package/out/control/grid/idegrid.d.ts +8 -0
- package/out/control/list/idelist.d.ts +8 -0
- package/out/control/menu/iapp-menu-item.d.ts +7 -0
- package/out/control/toolbar/idetbseperator-item.d.ts +1 -0
- package/out/control/tree/idetree-data-set-node.d.ts +14 -0
- package/out/dataentity/ac/ideacmode.d.ts +8 -0
- package/out/dataentity/logic/idelogic.d.ts +9 -3
- package/out/dataentity/wizard/idewizard-form.d.ts +6 -0
- package/out/exports.d.ts +9 -0
- package/package.json +1 -1
- package/src/app/bi/iapp-bicube-dimension.ts +54 -0
- package/src/app/bi/iapp-bicube-hierarchy.ts +39 -0
- package/src/app/bi/iapp-bicube-level.ts +30 -0
- package/src/app/bi/iapp-bicube-measure.ts +103 -0
- package/src/app/bi/iapp-bicube.ts +34 -0
- package/src/app/bi/iapp-bireport-dimension.ts +16 -0
- package/src/app/bi/iapp-bireport-measure.ts +16 -0
- package/src/app/bi/iapp-bireport.ts +72 -0
- package/src/app/bi/iapp-bischeme.ts +31 -0
- package/src/app/dataentity/iapp-dereport.ts +33 -0
- package/src/app/iapplication.ts +11 -2
- package/src/app/theme/iapp-uitheme.ts +7 -0
- package/src/control/dataview/idedata-view.ts +9 -0
- package/src/control/drctrl/idedrctrl-item.ts +15 -2
- package/src/control/grid/idegrid.ts +9 -0
- package/src/control/list/idelist.ts +9 -0
- package/src/control/menu/iapp-menu-item.ts +8 -0
- package/src/control/toolbar/idetbseperator-item.ts +1 -0
- package/src/control/tree/idetree-data-set-node.ts +16 -0
- package/src/dataentity/ac/ideacmode.ts +9 -0
- package/src/dataentity/logic/idelogic.ts +11 -2
- package/src/dataentity/wizard/idewizard-form.ts +7 -0
- package/src/exports.ts +9 -0
package/package.json
CHANGED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { IAppBICubeHierarchy } from './iapp-bicube-hierarchy';
|
|
2
|
+
import { IModelObject } from '../../imodel-object';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @interface IAppBICubeDimension
|
|
8
|
+
*/
|
|
9
|
+
export interface IAppBICubeDimension extends IModelObject {
|
|
10
|
+
/**
|
|
11
|
+
* 代码标识
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getCodeName
|
|
14
|
+
*/
|
|
15
|
+
codeName?: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 维度标记
|
|
19
|
+
* @type {string}
|
|
20
|
+
* 来源 getDimensionTag
|
|
21
|
+
*/
|
|
22
|
+
dimensionTag?: string;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* 维度标记2
|
|
26
|
+
* @type {string}
|
|
27
|
+
* 来源 getDimensionTag2
|
|
28
|
+
*/
|
|
29
|
+
dimensionTag2?: string;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* 智能立方体维度体系集合
|
|
33
|
+
*
|
|
34
|
+
* @type {IAppBICubeHierarchy[]}
|
|
35
|
+
* 来源 getPSAppBICubeHierarchies
|
|
36
|
+
*/
|
|
37
|
+
appBICubeHierarchies?: IAppBICubeHierarchy[];
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* 应用代码表对象
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* 来源 getPSAppCodeList
|
|
44
|
+
*/
|
|
45
|
+
appCodeListId?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* 相关应用属性
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* 来源 getPSAppDEField
|
|
52
|
+
*/
|
|
53
|
+
appDEFieldId?: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { IAppBICubeLevel } from './iapp-bicube-level';
|
|
2
|
+
import { IModelObject } from '../../imodel-object';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @interface IAppBICubeHierarchy
|
|
8
|
+
*/
|
|
9
|
+
export interface IAppBICubeHierarchy extends IModelObject {
|
|
10
|
+
/**
|
|
11
|
+
* 体系标记
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getHierarchyTag
|
|
14
|
+
*/
|
|
15
|
+
hierarchyTag?: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 体系标记2
|
|
19
|
+
* @type {string}
|
|
20
|
+
* 来源 getHierarchyTag2
|
|
21
|
+
*/
|
|
22
|
+
hierarchyTag2?: string;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* 智能立方体维度体系级别集合
|
|
26
|
+
*
|
|
27
|
+
* @type {IAppBICubeLevel[]}
|
|
28
|
+
* 来源 getPSAppBICubeLevels
|
|
29
|
+
*/
|
|
30
|
+
appBICubeLevels?: IAppBICubeLevel[];
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* 相关应用实体对象
|
|
34
|
+
*
|
|
35
|
+
* @type {string}
|
|
36
|
+
* 来源 getPSAppDataEntity
|
|
37
|
+
*/
|
|
38
|
+
appDataEntityId?: string;
|
|
39
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { IModelObject } from '../../imodel-object';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface IAppBICubeLevel
|
|
7
|
+
*/
|
|
8
|
+
export interface IAppBICubeLevel extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 层级标记
|
|
11
|
+
* @type {string}
|
|
12
|
+
* 来源 getLevelTag
|
|
13
|
+
*/
|
|
14
|
+
levelTag?: string;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* 层级标记2
|
|
18
|
+
* @type {string}
|
|
19
|
+
* 来源 getLevelTag2
|
|
20
|
+
*/
|
|
21
|
+
levelTag2?: string;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* 相关应用属性
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* 来源 getPSAppDEField
|
|
28
|
+
*/
|
|
29
|
+
appDEFieldId?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { IModelObject } from '../../imodel-object';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface IAppBICubeMeasure
|
|
7
|
+
*/
|
|
8
|
+
export interface IAppBICubeMeasure extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 聚合模式
|
|
11
|
+
* @description 值模式 [数据聚合模式] {SUM:合计、 AVG:平均、 MAX:最大值、 MIN:最小值、 COUNT:计数、 EXISTS:存在、 NOTEXISTS:不存在、 GROUP:分组项、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
|
|
12
|
+
* @type {( string | 'SUM' | 'AVG' | 'MAX' | 'MIN' | 'COUNT' | 'EXISTS' | 'NOTEXISTS' | 'GROUP' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
|
|
13
|
+
* 来源 getAggMode
|
|
14
|
+
*/
|
|
15
|
+
aggMode?:
|
|
16
|
+
| string
|
|
17
|
+
| 'SUM'
|
|
18
|
+
| 'AVG'
|
|
19
|
+
| 'MAX'
|
|
20
|
+
| 'MIN'
|
|
21
|
+
| 'COUNT'
|
|
22
|
+
| 'EXISTS'
|
|
23
|
+
| 'NOTEXISTS'
|
|
24
|
+
| 'GROUP'
|
|
25
|
+
| 'USER'
|
|
26
|
+
| 'USER2'
|
|
27
|
+
| 'USER3'
|
|
28
|
+
| 'USER4';
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 代码标识
|
|
32
|
+
* @type {string}
|
|
33
|
+
* 来源 getCodeName
|
|
34
|
+
*/
|
|
35
|
+
codeName?: string;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Json值格式化
|
|
39
|
+
* @type {string}
|
|
40
|
+
* 来源 getJsonFormat
|
|
41
|
+
*/
|
|
42
|
+
jsonFormat?: string;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* 指标公式
|
|
46
|
+
* @type {string}
|
|
47
|
+
* 来源 getMeasureFormula
|
|
48
|
+
*/
|
|
49
|
+
measureFormula?: string;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* 指标组
|
|
53
|
+
* @type {string}
|
|
54
|
+
* 来源 getMeasureGroup
|
|
55
|
+
*/
|
|
56
|
+
measureGroup?: string;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* 指标标记
|
|
60
|
+
* @type {string}
|
|
61
|
+
* 来源 getMeasureTag
|
|
62
|
+
*/
|
|
63
|
+
measureTag?: string;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* 指标标记2
|
|
67
|
+
* @type {string}
|
|
68
|
+
* 来源 getMeasureTag2
|
|
69
|
+
*/
|
|
70
|
+
measureTag2?: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* 指标类型
|
|
74
|
+
* @description 值模式 [多维分析指标类别] {COMMON:常规、 CALCULATED:动态计算 }
|
|
75
|
+
* @type {( string | 'COMMON' | 'CALCULATED')}
|
|
76
|
+
* 来源 getMeasureType
|
|
77
|
+
*/
|
|
78
|
+
measureType?: string | 'COMMON' | 'CALCULATED';
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* 阈值应用代码表对象
|
|
82
|
+
*
|
|
83
|
+
* @type {string}
|
|
84
|
+
* 来源 getPSAppCodeList
|
|
85
|
+
*/
|
|
86
|
+
appCodeListId?: string;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* 相关应用属性
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* 来源 getPSAppDEField
|
|
93
|
+
*/
|
|
94
|
+
appDEFieldId?: string;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* 隐藏指标项
|
|
98
|
+
* @type {boolean}
|
|
99
|
+
* @default false
|
|
100
|
+
* 来源 isHiddenItem
|
|
101
|
+
*/
|
|
102
|
+
hiddenItem?: boolean;
|
|
103
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IAppBICubeDimension } from './iapp-bicube-dimension';
|
|
2
|
+
import { IAppBICubeMeasure } from './iapp-bicube-measure';
|
|
3
|
+
import { IModelObject } from '../../imodel-object';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @export
|
|
8
|
+
* @interface IAppBICube
|
|
9
|
+
*/
|
|
10
|
+
export interface IAppBICube extends IModelObject {
|
|
11
|
+
/**
|
|
12
|
+
* 智能立方体维度集合
|
|
13
|
+
*
|
|
14
|
+
* @type {IAppBICubeDimension[]}
|
|
15
|
+
* 来源 getPSAppBICubeDimensions
|
|
16
|
+
*/
|
|
17
|
+
appBICubeDimensions?: IAppBICubeDimension[];
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 智能立方体指标集合
|
|
21
|
+
*
|
|
22
|
+
* @type {IAppBICubeMeasure[]}
|
|
23
|
+
* 来源 getPSAppBICubeMeasures
|
|
24
|
+
*/
|
|
25
|
+
appBICubeMeasures?: IAppBICubeMeasure[];
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* 系统智能立方体
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* 来源 getPSAppDataEntity
|
|
32
|
+
*/
|
|
33
|
+
appDataEntityId?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IModelObject } from '../../imodel-object';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface IAppBIReportDimension
|
|
7
|
+
*/
|
|
8
|
+
export interface IAppBIReportDimension extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 应用智能报表维度
|
|
11
|
+
*
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getPSAppBIReportDimension
|
|
14
|
+
*/
|
|
15
|
+
appBIReportDimensionId?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IModelObject } from '../../imodel-object';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface IAppBIReportMeasure
|
|
7
|
+
*/
|
|
8
|
+
export interface IAppBIReportMeasure extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 应用智能报表指标
|
|
11
|
+
*
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getPSAppBIReportMeasure
|
|
14
|
+
*/
|
|
15
|
+
appBIReportMeasureId?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { IAppBIReportDimension } from './iapp-bireport-dimension';
|
|
2
|
+
import { IAppBIReportMeasure } from './iapp-bireport-measure';
|
|
3
|
+
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
4
|
+
import { IModelObject } from '../../imodel-object';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
* @export
|
|
9
|
+
* @interface IAppBIReport
|
|
10
|
+
*/
|
|
11
|
+
export interface IAppBIReport extends IModelObject {
|
|
12
|
+
/**
|
|
13
|
+
* 系统智能立方体
|
|
14
|
+
*
|
|
15
|
+
* @type {string}
|
|
16
|
+
* 来源 getPSAppBICube
|
|
17
|
+
*/
|
|
18
|
+
appBICubeId?: string;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 智能立方体维度集合
|
|
22
|
+
*
|
|
23
|
+
* @type {IAppBIReportDimension[]}
|
|
24
|
+
* 来源 getPSAppBIReportDimensions
|
|
25
|
+
*/
|
|
26
|
+
appBIReportDimensions?: IAppBIReportDimension[];
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* 智能立方体指标集合
|
|
30
|
+
*
|
|
31
|
+
* @type {IAppBIReportMeasure[]}
|
|
32
|
+
* 来源 getPSAppBIReportMeasures
|
|
33
|
+
*/
|
|
34
|
+
appBIReportMeasures?: IAppBIReportMeasure[];
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* 相关应用实体
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* 来源 getPSAppDataEntity
|
|
41
|
+
*/
|
|
42
|
+
appDataEntityId?: string;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* 布局面板
|
|
46
|
+
*
|
|
47
|
+
* @type {ILayoutPanel}
|
|
48
|
+
* 来源 getPSLayoutPanel
|
|
49
|
+
*/
|
|
50
|
+
layoutPanel?: ILayoutPanel;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* 报表标记
|
|
54
|
+
* @type {string}
|
|
55
|
+
* 来源 getReportTag
|
|
56
|
+
*/
|
|
57
|
+
reportTag?: string;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* 报表标记2
|
|
61
|
+
* @type {string}
|
|
62
|
+
* 来源 getReportTag2
|
|
63
|
+
*/
|
|
64
|
+
reportTag2?: string;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* 报表前端模型
|
|
68
|
+
* @type {string}
|
|
69
|
+
* 来源 getReportUIModel
|
|
70
|
+
*/
|
|
71
|
+
reportUIModel?: string;
|
|
72
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IModelObject } from '../../imodel-object';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface IAppBIScheme
|
|
7
|
+
*/
|
|
8
|
+
export interface IAppBIScheme extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 智能立方体集合
|
|
11
|
+
*
|
|
12
|
+
* @type {string[]}
|
|
13
|
+
* 来源 getPSAppBICubes
|
|
14
|
+
*/
|
|
15
|
+
appBICubeIds?: string[];
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 智能报表集合
|
|
19
|
+
*
|
|
20
|
+
* @type {string[]}
|
|
21
|
+
* 来源 getPSAppBIReports
|
|
22
|
+
*/
|
|
23
|
+
appBIReportIds?: string[];
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 智能报表唯一标记
|
|
27
|
+
* @type {string}
|
|
28
|
+
* 来源 getUniqueTag
|
|
29
|
+
*/
|
|
30
|
+
uniqueTag?: string;
|
|
31
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IAppDEReportItem } from './iapp-dereport-item';
|
|
2
|
+
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
2
3
|
import { IDEReport } from '../../dataentity/report/idereport';
|
|
3
4
|
|
|
4
5
|
/**
|
|
@@ -7,6 +8,30 @@ import { IDEReport } from '../../dataentity/report/idereport';
|
|
|
7
8
|
* @interface IAppDEReport
|
|
8
9
|
*/
|
|
9
10
|
export interface IAppDEReport extends IDEReport {
|
|
11
|
+
/**
|
|
12
|
+
* 应用智能报表立方体
|
|
13
|
+
*
|
|
14
|
+
* @type {string}
|
|
15
|
+
* 来源 getPSAppBICube
|
|
16
|
+
*/
|
|
17
|
+
appBICubeId?: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 应用智能报表
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* 来源 getPSAppBIReport
|
|
24
|
+
*/
|
|
25
|
+
appBIReportId?: string;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* 应用智能报表体系
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* 来源 getPSAppBIScheme
|
|
32
|
+
*/
|
|
33
|
+
appBISchemeId?: string;
|
|
34
|
+
|
|
10
35
|
/**
|
|
11
36
|
* 应用实体数据集合
|
|
12
37
|
*
|
|
@@ -46,4 +71,12 @@ export interface IAppDEReport extends IDEReport {
|
|
|
46
71
|
* 来源 getPSAppDEReportItems
|
|
47
72
|
*/
|
|
48
73
|
appDEReportItems?: IAppDEReportItem[];
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* 布局面板
|
|
77
|
+
*
|
|
78
|
+
* @type {ILayoutPanel}
|
|
79
|
+
* 来源 getPSLayoutPanel
|
|
80
|
+
*/
|
|
81
|
+
layoutPanel?: ILayoutPanel;
|
|
49
82
|
}
|
package/src/app/iapplication.ts
CHANGED
|
@@ -33,6 +33,14 @@ export interface IApplication extends IModelObject {
|
|
|
33
33
|
*/
|
|
34
34
|
accessKeys?: string[];
|
|
35
35
|
|
|
36
|
+
/**
|
|
37
|
+
* 应用智能报表体系集合
|
|
38
|
+
*
|
|
39
|
+
* @type {string[]}
|
|
40
|
+
* 来源 getAllPSAppBISchemes
|
|
41
|
+
*/
|
|
42
|
+
appBISchemeIds?: string[];
|
|
43
|
+
|
|
36
44
|
/**
|
|
37
45
|
* 应用界面行为集合
|
|
38
46
|
*
|
|
@@ -186,8 +194,8 @@ export interface IApplication extends IModelObject {
|
|
|
186
194
|
|
|
187
195
|
/**
|
|
188
196
|
* 应用模式
|
|
189
|
-
* @description 值模式 [应用模式] {DEFAULT:默认应用、 CLOUDHUBAPP:Cloud集成应用、 CLOUDHUBSUBAPP:Cloud集成子应用、 WFAPP:工作流应用、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
|
|
190
|
-
* @type {( string | 'DEFAULT' | 'CLOUDHUBAPP' | 'CLOUDHUBSUBAPP' | 'WFAPP' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
|
|
197
|
+
* @description 值模式 [应用模式] {DEFAULT:默认应用、 CLOUDHUBAPP:Cloud集成应用、 CLOUDHUBSUBAPP:Cloud集成子应用、 CLOUDHUBSUBAPP_EMBEDED:Cloud集成子应用(嵌入)、 WFAPP:工作流应用、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
|
|
198
|
+
* @type {( string | 'DEFAULT' | 'CLOUDHUBAPP' | 'CLOUDHUBSUBAPP' | 'CLOUDHUBSUBAPP_EMBEDED' | 'WFAPP' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
|
|
191
199
|
* 来源 getAppMode
|
|
192
200
|
*/
|
|
193
201
|
appMode?:
|
|
@@ -195,6 +203,7 @@ export interface IApplication extends IModelObject {
|
|
|
195
203
|
| 'DEFAULT'
|
|
196
204
|
| 'CLOUDHUBAPP'
|
|
197
205
|
| 'CLOUDHUBSUBAPP'
|
|
206
|
+
| 'CLOUDHUBSUBAPP_EMBEDED'
|
|
198
207
|
| 'WFAPP'
|
|
199
208
|
| 'USER'
|
|
200
209
|
| 'USER2'
|
|
@@ -6,6 +6,13 @@ import { IModelObject } from '../../imodel-object';
|
|
|
6
6
|
* @interface IAppUITheme
|
|
7
7
|
*/
|
|
8
8
|
export interface IAppUITheme extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 主题样式
|
|
11
|
+
* @type {string}
|
|
12
|
+
* 来源 getCssStyle
|
|
13
|
+
*/
|
|
14
|
+
cssStyle?: string;
|
|
15
|
+
|
|
9
16
|
/**
|
|
10
17
|
* 主题说明
|
|
11
18
|
* @type {string}
|
|
@@ -251,6 +251,15 @@ export interface IDEDataView
|
|
|
251
251
|
*/
|
|
252
252
|
dedataViewItems?: IDEDataViewItem[];
|
|
253
253
|
|
|
254
|
+
/**
|
|
255
|
+
* 分页模式
|
|
256
|
+
* @description 值模式 [数据分页模式] {0:不分页、 1:分页栏、 2:滚动加载、 3:加载更多 }
|
|
257
|
+
* @type {( number | 0 | 1 | 2 | 3)}
|
|
258
|
+
* @default 0
|
|
259
|
+
* 来源 getPagingMode
|
|
260
|
+
*/
|
|
261
|
+
pagingMode?: number | 0 | 1 | 2 | 3;
|
|
262
|
+
|
|
254
263
|
/**
|
|
255
264
|
* 分页大小
|
|
256
265
|
* @type {number}
|
|
@@ -31,6 +31,15 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
|
|
|
31
31
|
*/
|
|
32
32
|
counterId?: string;
|
|
33
33
|
|
|
34
|
+
/**
|
|
35
|
+
* 计数器模式
|
|
36
|
+
* @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
|
|
37
|
+
* @type {( number | 0 | 1)}
|
|
38
|
+
* @default 0
|
|
39
|
+
* 来源 getCounterMode
|
|
40
|
+
*/
|
|
41
|
+
counterMode?: number | 0 | 1;
|
|
42
|
+
|
|
34
43
|
/**
|
|
35
44
|
* 启用判断数据访问标识
|
|
36
45
|
* @type {string}
|
|
@@ -40,8 +49,8 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
|
|
|
40
49
|
|
|
41
50
|
/**
|
|
42
51
|
* 启用模式
|
|
43
|
-
* @description 值模式 [关系界面组成员启用模式] {ALL:全部启用、 INWF:流程中启用、 ALLWF:全部流程状态启用、 EDIT:编辑时启用、 DEOPPRIV:实体操作标识、 CUSTOM
|
|
44
|
-
* @type {( string | 'ALL' | 'INWF' | 'ALLWF' | 'EDIT' | 'DEOPPRIV' | 'CUSTOM')}
|
|
52
|
+
* @description 值模式 [关系界面组成员启用模式] {ALL:全部启用、 INWF:流程中启用、 ALLWF:全部流程状态启用、 EDIT:编辑时启用、 DEOPPRIV:实体操作标识、 DELOGIC:实体逻辑、 SCRIPT:脚本、 COUNT_GTE_ZERO:计数大于等于0、 COUNT_GT_ZERO:计数大于0、 CUSTOM:自定义(暂不使用) }
|
|
53
|
+
* @type {( string | 'ALL' | 'INWF' | 'ALLWF' | 'EDIT' | 'DEOPPRIV' | 'DELOGIC' | 'SCRIPT' | 'COUNT_GTE_ZERO' | 'COUNT_GT_ZERO' | 'CUSTOM')}
|
|
45
54
|
* 来源 getEnableMode
|
|
46
55
|
*/
|
|
47
56
|
enableMode?:
|
|
@@ -51,6 +60,10 @@ export interface IDEDRCtrlItem extends IControlItem, INavigateParamContainer {
|
|
|
51
60
|
| 'ALLWF'
|
|
52
61
|
| 'EDIT'
|
|
53
62
|
| 'DEOPPRIV'
|
|
63
|
+
| 'DELOGIC'
|
|
64
|
+
| 'SCRIPT'
|
|
65
|
+
| 'COUNT_GTE_ZERO'
|
|
66
|
+
| 'COUNT_GT_ZERO'
|
|
54
67
|
| 'CUSTOM';
|
|
55
68
|
|
|
56
69
|
/**
|
|
@@ -236,6 +236,15 @@ export interface IDEGrid
|
|
|
236
236
|
*/
|
|
237
237
|
degridEditItems?: IDEGridEditItem[];
|
|
238
238
|
|
|
239
|
+
/**
|
|
240
|
+
* 分页模式
|
|
241
|
+
* @description 值模式 [数据分页模式] {0:不分页、 1:分页栏、 2:滚动加载、 3:加载更多 }
|
|
242
|
+
* @type {( number | 0 | 1 | 2 | 3)}
|
|
243
|
+
* @default 0
|
|
244
|
+
* 来源 getPagingMode
|
|
245
|
+
*/
|
|
246
|
+
pagingMode?: number | 0 | 1 | 2 | 3;
|
|
247
|
+
|
|
239
248
|
/**
|
|
240
249
|
* 分页大小
|
|
241
250
|
* @type {number}
|
|
@@ -86,6 +86,15 @@ export interface IDEList extends IList, IMDControl2 {
|
|
|
86
86
|
*/
|
|
87
87
|
delistItems?: IDEListItem[];
|
|
88
88
|
|
|
89
|
+
/**
|
|
90
|
+
* 分页模式
|
|
91
|
+
* @description 值模式 [数据分页模式] {0:不分页、 1:分页栏、 2:滚动加载、 3:加载更多 }
|
|
92
|
+
* @type {( number | 0 | 1 | 2 | 3)}
|
|
93
|
+
* @default 0
|
|
94
|
+
* 来源 getPagingMode
|
|
95
|
+
*/
|
|
96
|
+
pagingMode?: number | 0 | 1 | 2 | 3;
|
|
97
|
+
|
|
89
98
|
/**
|
|
90
99
|
* 分页大小
|
|
91
100
|
* @type {number}
|
|
@@ -102,6 +102,14 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
|
|
|
102
102
|
*/
|
|
103
103
|
appDEDataSetId?: string;
|
|
104
104
|
|
|
105
|
+
/**
|
|
106
|
+
* 分页大小
|
|
107
|
+
* @type {number}
|
|
108
|
+
* @default -1
|
|
109
|
+
* 来源 getPagingSize
|
|
110
|
+
*/
|
|
111
|
+
pagingSize?: number;
|
|
112
|
+
|
|
105
113
|
/**
|
|
106
114
|
* 删除数据访问行为
|
|
107
115
|
* @type {string}
|
|
@@ -194,4 +202,12 @@ export interface IDETreeDataSetNode extends IDETreeNode, IControlMDObject {
|
|
|
194
202
|
* 来源 isAppendCaption
|
|
195
203
|
*/
|
|
196
204
|
appendCaption?: boolean;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* 支持分页
|
|
208
|
+
* @type {boolean}
|
|
209
|
+
* @default false
|
|
210
|
+
* 来源 isEnablePaging
|
|
211
|
+
*/
|
|
212
|
+
enablePaging?: boolean;
|
|
197
213
|
}
|
|
@@ -79,6 +79,15 @@ export interface IDEACMode extends IModelObject {
|
|
|
79
79
|
*/
|
|
80
80
|
deuiactionGroup?: IDEUIActionGroup;
|
|
81
81
|
|
|
82
|
+
/**
|
|
83
|
+
* 分页模式
|
|
84
|
+
* @description 值模式 [数据分页模式] {0:不分页、 1:分页栏、 2:滚动加载、 3:加载更多 }
|
|
85
|
+
* @type {( number | 0 | 1 | 2 | 3)}
|
|
86
|
+
* @default 0
|
|
87
|
+
* 来源 getPagingMode
|
|
88
|
+
*/
|
|
89
|
+
pagingMode?: number | 0 | 1 | 2 | 3;
|
|
90
|
+
|
|
82
91
|
/**
|
|
83
92
|
* 分页大小
|
|
84
93
|
* @type {number}
|