@ibiz/model-core 0.1.31 → 0.1.32
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-bireport-dimension.d.ts +14 -0
- package/out/app/bi/iapp-bireport-measure.d.ts +14 -0
- package/out/control/dashboard/idbreport-portlet.d.ts +8 -0
- package/out/control/dashboard/idbreport-portlet.js +1 -0
- package/out/exports.d.ts +1 -0
- package/package.json +1 -1
- package/src/app/bi/iapp-bireport-dimension.ts +16 -0
- package/src/app/bi/iapp-bireport-measure.ts +29 -0
- package/src/control/dashboard/idbreport-portlet.ts +9 -0
- package/src/exports.ts +1 -0
|
@@ -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 @@
|
|
|
1
|
+
export {};
|
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
|
@@ -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
|
}
|
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';
|