@ibiz/model-core 0.1.31 → 0.1.33

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.
@@ -12,4 +12,18 @@ export interface IAppBIReportDimension extends IModelObject {
12
12
  * 来源 getPSAppBIReportDimension
13
13
  */
14
14
  appBIReportDimensionId?: string;
15
+ /**
16
+ * 放置类型
17
+ * @description 值模式 [智能报表报表项放置类型] {VISIBLE:默认显示、 INVISIBLE:默认隐藏、 FROZEN:固定 }
18
+ * @type {( string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN')}
19
+ * 来源 getPlaceType
20
+ */
21
+ placeType?: string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN';
22
+ /**
23
+ * 放置位置
24
+ * @description 值模式 [智能报表报表项放置位置] {NONE:无、 ROWHEADER:行头、 COLHEADER:列头 }
25
+ * @type {( string | 'NONE' | 'ROWHEADER' | 'COLHEADER')}
26
+ * 来源 getPlacement
27
+ */
28
+ placement?: string | 'NONE' | 'ROWHEADER' | 'COLHEADER';
15
29
  }
@@ -5,6 +5,13 @@ import { IModelObject } from '../../imodel-object';
5
5
  * @interface IAppBIReportMeasure
6
6
  */
7
7
  export interface IAppBIReportMeasure extends IModelObject {
8
+ /**
9
+ * 聚合模式
10
+ * @description 值模式 [数据聚合模式] {SUM:合计、 AVG:平均、 MAX:最大值、 MIN:最小值、 COUNT:计数、 EXISTS:存在、 NOTEXISTS:不存在、 GROUP:分组项、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
11
+ * @type {( string | 'SUM' | 'AVG' | 'MAX' | 'MIN' | 'COUNT' | 'EXISTS' | 'NOTEXISTS' | 'GROUP' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
12
+ * 来源 getAggMode
13
+ */
14
+ aggMode?: string | 'SUM' | 'AVG' | 'MAX' | 'MIN' | 'COUNT' | 'EXISTS' | 'NOTEXISTS' | 'GROUP' | 'USER' | 'USER2' | 'USER3' | 'USER4';
8
15
  /**
9
16
  * 应用智能报表指标
10
17
  *
@@ -12,4 +19,11 @@ export interface IAppBIReportMeasure extends IModelObject {
12
19
  * 来源 getPSAppBIReportMeasure
13
20
  */
14
21
  appBIReportMeasureId?: string;
22
+ /**
23
+ * 放置类型
24
+ * @description 值模式 [智能报表报表项放置类型] {VISIBLE:默认显示、 INVISIBLE:默认隐藏、 FROZEN:固定 }
25
+ * @type {( string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN')}
26
+ * 来源 getPlaceType
27
+ */
28
+ placeType?: string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN';
15
29
  }
@@ -0,0 +1,8 @@
1
+ import { IDBSysPortletPart } from './idbsys-portlet-part';
2
+ /**
3
+ *
4
+ * 继承父接口类型值[REPORT]
5
+ * @export
6
+ * @interface IDBReportPortlet
7
+ */
8
+ export type IDBReportPortlet = IDBSysPortletPart;
@@ -0,0 +1 @@
1
+ export {};
@@ -94,6 +94,13 @@ export interface IDEGridColumn extends IControlItem {
94
94
  * 来源 getHeaderPSSysCss
95
95
  */
96
96
  headerSysCss?: ISysCss;
97
+ /**
98
+ * 隐藏模式
99
+ * @type {number}
100
+ * @default 0
101
+ * 来源 getHideMode
102
+ */
103
+ hideMode?: number;
97
104
  /**
98
105
  * 无权限显示模式
99
106
  * @description 值模式 [应用无权限内容显示模式] {1:显示空或*内容、 2:隐藏 }
@@ -68,6 +68,13 @@ export interface IDETreeColumn extends IControlItem {
68
68
  * 来源 getHeaderPSSysCss
69
69
  */
70
70
  headerSysCss?: ISysCss;
71
+ /**
72
+ * 隐藏模式
73
+ * @type {number}
74
+ * @default 0
75
+ * 来源 getHideMode
76
+ */
77
+ hideMode?: number;
71
78
  /**
72
79
  * 头部图片对象
73
80
  *
package/out/exports.d.ts CHANGED
@@ -328,6 +328,7 @@ export { IDBListPortletPart } from './control/dashboard/idblist-portlet-part';
328
328
  export { IDBMenuPortletPart } from './control/dashboard/idbmenu-portlet-part';
329
329
  export { IDBPortletPart } from './control/dashboard/idbportlet-part';
330
330
  export { IDBRawItemPortletPart } from './control/dashboard/idbraw-item-portlet-part';
331
+ export { IDBReportPortlet } from './control/dashboard/idbreport-portlet';
331
332
  export { IDBSysPortletPart } from './control/dashboard/idbsys-portlet-part';
332
333
  export { IDBToolbarPortlet } from './control/dashboard/idbtoolbar-portlet';
333
334
  export { IDBViewPortletPart } from './control/dashboard/idbview-portlet-part';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -13,4 +13,20 @@ export interface IAppBIReportDimension extends IModelObject {
13
13
  * 来源 getPSAppBIReportDimension
14
14
  */
15
15
  appBIReportDimensionId?: string;
16
+
17
+ /**
18
+ * 放置类型
19
+ * @description 值模式 [智能报表报表项放置类型] {VISIBLE:默认显示、 INVISIBLE:默认隐藏、 FROZEN:固定 }
20
+ * @type {( string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN')}
21
+ * 来源 getPlaceType
22
+ */
23
+ placeType?: string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN';
24
+
25
+ /**
26
+ * 放置位置
27
+ * @description 值模式 [智能报表报表项放置位置] {NONE:无、 ROWHEADER:行头、 COLHEADER:列头 }
28
+ * @type {( string | 'NONE' | 'ROWHEADER' | 'COLHEADER')}
29
+ * 来源 getPlacement
30
+ */
31
+ placement?: string | 'NONE' | 'ROWHEADER' | 'COLHEADER';
16
32
  }
@@ -6,6 +6,27 @@ import { IModelObject } from '../../imodel-object';
6
6
  * @interface IAppBIReportMeasure
7
7
  */
8
8
  export interface IAppBIReportMeasure 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
+
9
30
  /**
10
31
  * 应用智能报表指标
11
32
  *
@@ -13,4 +34,12 @@ export interface IAppBIReportMeasure extends IModelObject {
13
34
  * 来源 getPSAppBIReportMeasure
14
35
  */
15
36
  appBIReportMeasureId?: string;
37
+
38
+ /**
39
+ * 放置类型
40
+ * @description 值模式 [智能报表报表项放置类型] {VISIBLE:默认显示、 INVISIBLE:默认隐藏、 FROZEN:固定 }
41
+ * @type {( string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN')}
42
+ * 来源 getPlaceType
43
+ */
44
+ placeType?: string | 'VISIBLE' | 'INVISIBLE' | 'FROZEN';
16
45
  }
@@ -0,0 +1,9 @@
1
+ import { IDBSysPortletPart } from './idbsys-portlet-part';
2
+
3
+ /**
4
+ *
5
+ * 继承父接口类型值[REPORT]
6
+ * @export
7
+ * @interface IDBReportPortlet
8
+ */
9
+ export type IDBReportPortlet = IDBSysPortletPart;
@@ -118,6 +118,14 @@ export interface IDEGridColumn extends IControlItem {
118
118
  */
119
119
  headerSysCss?: ISysCss;
120
120
 
121
+ /**
122
+ * 隐藏模式
123
+ * @type {number}
124
+ * @default 0
125
+ * 来源 getHideMode
126
+ */
127
+ hideMode?: number;
128
+
121
129
  /**
122
130
  * 无权限显示模式
123
131
  * @description 值模式 [应用无权限内容显示模式] {1:显示空或*内容、 2:隐藏 }
@@ -78,6 +78,14 @@ export interface IDETreeColumn extends IControlItem {
78
78
  */
79
79
  headerSysCss?: ISysCss;
80
80
 
81
+ /**
82
+ * 隐藏模式
83
+ * @type {number}
84
+ * @default 0
85
+ * 来源 getHideMode
86
+ */
87
+ hideMode?: number;
88
+
81
89
  /**
82
90
  * 头部图片对象
83
91
  *
package/src/exports.ts CHANGED
@@ -328,6 +328,7 @@ export { IDBListPortletPart } from './control/dashboard/idblist-portlet-part';
328
328
  export { IDBMenuPortletPart } from './control/dashboard/idbmenu-portlet-part';
329
329
  export { IDBPortletPart } from './control/dashboard/idbportlet-part';
330
330
  export { IDBRawItemPortletPart } from './control/dashboard/idbraw-item-portlet-part';
331
+ export { IDBReportPortlet } from './control/dashboard/idbreport-portlet';
331
332
  export { IDBSysPortletPart } from './control/dashboard/idbsys-portlet-part';
332
333
  export { IDBToolbarPortlet } from './control/dashboard/idbtoolbar-portlet';
333
334
  export { IDBViewPortletPart } from './control/dashboard/idbview-portlet-part';