@ibiz/model-core 0.1.43 → 0.1.45
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-measure.d.ts +14 -0
- package/out/app/bi/iapp-bireport-measure.d.ts +14 -0
- package/out/control/dashboard/idbfilter-portlet-part.d.ts +17 -0
- package/out/control/dashboard/idbfilter-portlet-part.js +1 -0
- package/out/control/dashboard/idbreport-portlet-part.d.ts +8 -0
- package/out/control/dashboard/idbreport-portlet-part.js +1 -0
- package/out/control/searchbar/isearch-bar-group.d.ts +8 -0
- package/out/dataentity/ds/idedqcustom-condition.d.ts +6 -0
- package/out/exports.d.ts +2 -1
- package/out/valuerule/isys-value-rule.d.ts +6 -0
- package/package.json +1 -1
- package/src/app/bi/iapp-bicube-measure.ts +16 -0
- package/src/app/bi/iapp-bireport-measure.ts +16 -0
- package/src/control/dashboard/idbfilter-portlet-part.ts +18 -0
- package/src/control/dashboard/idbreport-portlet-part.ts +9 -0
- package/src/control/searchbar/isearch-bar-group.ts +9 -0
- package/src/dataentity/ds/idedqcustom-condition.ts +7 -0
- package/src/exports.ts +2 -1
- package/src/valuerule/isys-value-rule.ts +7 -0
|
@@ -18,6 +18,20 @@ export interface IAppBICubeMeasure extends IModelObject {
|
|
|
18
18
|
* 来源 getCodeName
|
|
19
19
|
*/
|
|
20
20
|
codeName?: string;
|
|
21
|
+
/**
|
|
22
|
+
* 反查数据展示视图
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* 来源 getDrillDetailPSAppView
|
|
26
|
+
*/
|
|
27
|
+
drillDetailAppViewId?: string;
|
|
28
|
+
/**
|
|
29
|
+
* 钻取数据展示视图
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* 来源 getDrillDownPSAppView
|
|
33
|
+
*/
|
|
34
|
+
drillDownAppViewId?: string;
|
|
21
35
|
/**
|
|
22
36
|
* Json值格式化
|
|
23
37
|
* @type {string}
|
|
@@ -12,6 +12,20 @@ export interface IAppBIReportMeasure extends IModelObject {
|
|
|
12
12
|
* 来源 getAggMode
|
|
13
13
|
*/
|
|
14
14
|
aggMode?: string | 'SUM' | 'AVG' | 'MAX' | 'MIN' | 'COUNT' | 'EXISTS' | 'NOTEXISTS' | 'GROUP' | 'USER' | 'USER2' | 'USER3' | 'USER4';
|
|
15
|
+
/**
|
|
16
|
+
* 反查数据展示视图
|
|
17
|
+
*
|
|
18
|
+
* @type {string}
|
|
19
|
+
* 来源 getDrillDetailPSAppView
|
|
20
|
+
*/
|
|
21
|
+
drillDetailAppViewId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 钻取数据展示视图
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* 来源 getDrillDownPSAppView
|
|
27
|
+
*/
|
|
28
|
+
drillDownAppViewId?: string;
|
|
15
29
|
/**
|
|
16
30
|
* 报表项标记
|
|
17
31
|
* @type {string}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IDBSysPortletPart } from './idbsys-portlet-part';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* 继承父接口类型值[FILTER]
|
|
6
|
+
* @export
|
|
7
|
+
* @interface IDBFilterPortletPart
|
|
8
|
+
*/
|
|
9
|
+
export interface IDBFilterPortletPart extends IDBSysPortletPart {
|
|
10
|
+
/**
|
|
11
|
+
* 过滤器条件
|
|
12
|
+
*
|
|
13
|
+
* @type {IDEDQCondition[]}
|
|
14
|
+
* 来源 getFilterPSDEDQConditions
|
|
15
|
+
*/
|
|
16
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ISearchBarItem } from './isearch-bar-item';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
2
3
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
@@ -6,6 +7,13 @@ import { ILanguageRes } from '../../res/ilanguage-res';
|
|
|
6
7
|
* @interface ISearchBarGroup
|
|
7
8
|
*/
|
|
8
9
|
export interface ISearchBarGroup extends ISearchBarItem {
|
|
10
|
+
/**
|
|
11
|
+
* 过滤器条件
|
|
12
|
+
*
|
|
13
|
+
* @type {IDEDQCondition[]}
|
|
14
|
+
* 来源 getFilterPSDEDQConditions
|
|
15
|
+
*/
|
|
16
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
9
17
|
/**
|
|
10
18
|
* 分组提示信息
|
|
11
19
|
* @type {string}
|
package/out/exports.d.ts
CHANGED
|
@@ -323,12 +323,13 @@ export { IDBAppViewPortletPart } from './control/dashboard/idbapp-view-portlet-p
|
|
|
323
323
|
export { IDBChartPortlet } from './control/dashboard/idbchart-portlet';
|
|
324
324
|
export { IDBContainerPortletPart } from './control/dashboard/idbcontainer-portlet-part';
|
|
325
325
|
export { IDBCustomPortletPart } from './control/dashboard/idbcustom-portlet-part';
|
|
326
|
+
export { IDBFilterPortletPart } from './control/dashboard/idbfilter-portlet-part';
|
|
326
327
|
export { IDBHtmlPortletPart } from './control/dashboard/idbhtml-portlet-part';
|
|
327
328
|
export { IDBListPortletPart } from './control/dashboard/idblist-portlet-part';
|
|
328
329
|
export { IDBMenuPortletPart } from './control/dashboard/idbmenu-portlet-part';
|
|
329
330
|
export { IDBPortletPart } from './control/dashboard/idbportlet-part';
|
|
330
331
|
export { IDBRawItemPortletPart } from './control/dashboard/idbraw-item-portlet-part';
|
|
331
|
-
export {
|
|
332
|
+
export { IDBReportPortletPart } from './control/dashboard/idbreport-portlet-part';
|
|
332
333
|
export { IDBSysPortletPart } from './control/dashboard/idbsys-portlet-part';
|
|
333
334
|
export { IDBToolbarPortlet } from './control/dashboard/idbtoolbar-portlet';
|
|
334
335
|
export { IDBViewPortletPart } from './control/dashboard/idbview-portlet-part';
|
package/package.json
CHANGED
|
@@ -34,6 +34,22 @@ export interface IAppBICubeMeasure extends IModelObject {
|
|
|
34
34
|
*/
|
|
35
35
|
codeName?: string;
|
|
36
36
|
|
|
37
|
+
/**
|
|
38
|
+
* 反查数据展示视图
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* 来源 getDrillDetailPSAppView
|
|
42
|
+
*/
|
|
43
|
+
drillDetailAppViewId?: string;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* 钻取数据展示视图
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* 来源 getDrillDownPSAppView
|
|
50
|
+
*/
|
|
51
|
+
drillDownAppViewId?: string;
|
|
52
|
+
|
|
37
53
|
/**
|
|
38
54
|
* Json值格式化
|
|
39
55
|
* @type {string}
|
|
@@ -27,6 +27,22 @@ export interface IAppBIReportMeasure extends IModelObject {
|
|
|
27
27
|
| 'USER3'
|
|
28
28
|
| 'USER4';
|
|
29
29
|
|
|
30
|
+
/**
|
|
31
|
+
* 反查数据展示视图
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* 来源 getDrillDetailPSAppView
|
|
35
|
+
*/
|
|
36
|
+
drillDetailAppViewId?: string;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* 钻取数据展示视图
|
|
40
|
+
*
|
|
41
|
+
* @type {string}
|
|
42
|
+
* 来源 getDrillDownPSAppView
|
|
43
|
+
*/
|
|
44
|
+
drillDownAppViewId?: string;
|
|
45
|
+
|
|
30
46
|
/**
|
|
31
47
|
* 报表项标记
|
|
32
48
|
* @type {string}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IDBSysPortletPart } from './idbsys-portlet-part';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* 继承父接口类型值[FILTER]
|
|
7
|
+
* @export
|
|
8
|
+
* @interface IDBFilterPortletPart
|
|
9
|
+
*/
|
|
10
|
+
export interface IDBFilterPortletPart extends IDBSysPortletPart {
|
|
11
|
+
/**
|
|
12
|
+
* 过滤器条件
|
|
13
|
+
*
|
|
14
|
+
* @type {IDEDQCondition[]}
|
|
15
|
+
* 来源 getFilterPSDEDQConditions
|
|
16
|
+
*/
|
|
17
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
18
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ISearchBarItem } from './isearch-bar-item';
|
|
2
|
+
import { IDEDQCondition } from '../../dataentity/ds/idedqcondition';
|
|
2
3
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
|
|
4
5
|
/**
|
|
@@ -7,6 +8,14 @@ import { ILanguageRes } from '../../res/ilanguage-res';
|
|
|
7
8
|
* @interface ISearchBarGroup
|
|
8
9
|
*/
|
|
9
10
|
export interface ISearchBarGroup extends ISearchBarItem {
|
|
11
|
+
/**
|
|
12
|
+
* 过滤器条件
|
|
13
|
+
*
|
|
14
|
+
* @type {IDEDQCondition[]}
|
|
15
|
+
* 来源 getFilterPSDEDQConditions
|
|
16
|
+
*/
|
|
17
|
+
filterDEDQConditions?: IDEDQCondition[];
|
|
18
|
+
|
|
10
19
|
/**
|
|
11
20
|
* 分组提示信息
|
|
12
21
|
* @type {string}
|
package/src/exports.ts
CHANGED
|
@@ -323,12 +323,13 @@ export { IDBAppViewPortletPart } from './control/dashboard/idbapp-view-portlet-p
|
|
|
323
323
|
export { IDBChartPortlet } from './control/dashboard/idbchart-portlet';
|
|
324
324
|
export { IDBContainerPortletPart } from './control/dashboard/idbcontainer-portlet-part';
|
|
325
325
|
export { IDBCustomPortletPart } from './control/dashboard/idbcustom-portlet-part';
|
|
326
|
+
export { IDBFilterPortletPart } from './control/dashboard/idbfilter-portlet-part';
|
|
326
327
|
export { IDBHtmlPortletPart } from './control/dashboard/idbhtml-portlet-part';
|
|
327
328
|
export { IDBListPortletPart } from './control/dashboard/idblist-portlet-part';
|
|
328
329
|
export { IDBMenuPortletPart } from './control/dashboard/idbmenu-portlet-part';
|
|
329
330
|
export { IDBPortletPart } from './control/dashboard/idbportlet-part';
|
|
330
331
|
export { IDBRawItemPortletPart } from './control/dashboard/idbraw-item-portlet-part';
|
|
331
|
-
export {
|
|
332
|
+
export { IDBReportPortletPart } from './control/dashboard/idbreport-portlet-part';
|
|
332
333
|
export { IDBSysPortletPart } from './control/dashboard/idbsys-portlet-part';
|
|
333
334
|
export { IDBToolbarPortlet } from './control/dashboard/idbtoolbar-portlet';
|
|
334
335
|
export { IDBViewPortletPart } from './control/dashboard/idbview-portlet-part';
|