@ibiz/model-core 0.1.44 → 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.
@@ -18,6 +18,13 @@ 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;
21
28
  /**
22
29
  * 钻取数据展示视图
23
30
  *
@@ -12,6 +12,13 @@ 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;
15
22
  /**
16
23
  * 钻取数据展示视图
17
24
  *
@@ -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,8 @@
1
+ import { IDBSysPortletPart } from './idbsys-portlet-part';
2
+ /**
3
+ *
4
+ * 继承父接口类型值[REPORT]
5
+ * @export
6
+ * @interface IDBReportPortletPart
7
+ */
8
+ export type IDBReportPortletPart = IDBSysPortletPart;
@@ -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}
@@ -12,4 +12,10 @@ export interface IDEDQCustomCondition extends IDEDQCondition {
12
12
  * 来源 getCondition
13
13
  */
14
14
  condition?: string;
15
+ /**
16
+ * 自定义条件
17
+ * @type {string}
18
+ * 来源 getCustomType
19
+ */
20
+ customType?: string;
15
21
  }
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 { IDBReportPortlet } from './control/dashboard/idbreport-portlet';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.44",
3
+ "version": "0.1.45",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -34,6 +34,14 @@ 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
+
37
45
  /**
38
46
  * 钻取数据展示视图
39
47
  *
@@ -27,6 +27,14 @@ 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
+
30
38
  /**
31
39
  * 钻取数据展示视图
32
40
  *
@@ -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
+ }
@@ -0,0 +1,9 @@
1
+ import { IDBSysPortletPart } from './idbsys-portlet-part';
2
+
3
+ /**
4
+ *
5
+ * 继承父接口类型值[REPORT]
6
+ * @export
7
+ * @interface IDBReportPortletPart
8
+ */
9
+ export type IDBReportPortletPart = IDBSysPortletPart
@@ -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}
@@ -13,4 +13,11 @@ export interface IDEDQCustomCondition extends IDEDQCondition {
13
13
  * 来源 getCondition
14
14
  */
15
15
  condition?: string;
16
+
17
+ /**
18
+ * 自定义条件
19
+ * @type {string}
20
+ * 来源 getCustomType
21
+ */
22
+ customType?: string;
16
23
  }
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 { IDBReportPortlet } from './control/dashboard/idbreport-portlet';
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';