@unifylib/ui-lib 1.0.3 → 1.1.3
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/ng-package.json +7 -7
- package/package.json +14 -12
- package/src/lib/base-model/SearchStrConfig.ts +12 -12
- package/src/lib/base-model/api-response.ts +23 -23
- package/src/lib/base-model/audit-log-entry.ts +7 -7
- package/src/lib/base-model/button-action-settings.ts +29 -25
- package/src/lib/base-model/column-def.model.ts +34 -34
- package/src/lib/base-model/do-action-request.ts +11 -11
- package/src/lib/base-model/feature-item.ts +9 -0
- package/src/lib/base-model/field-action.ts +7 -7
- package/src/lib/base-model/field-filter.model.ts +7 -14
- package/src/lib/base-model/field-info.ts +102 -98
- package/src/lib/base-model/field-predicate.model.ts +7 -7
- package/src/lib/base-model/filter-request.ts +27 -27
- package/src/lib/base-model/filter.model.ts +49 -49
- package/src/lib/base-model/get-items-list.ts +24 -24
- package/src/lib/base-model/index.ts +11 -11
- package/src/lib/base-model/items-total.model.ts +12 -0
- package/src/lib/base-model/line-item.model.ts +18 -0
- package/src/lib/base-model/lookupItem.ts +21 -21
- package/src/lib/base-model/null-snackmessage.ts +9 -9
- package/src/lib/base-model/page-info.ts +54 -51
- package/src/lib/base-model/report-request.model.ts +33 -33
- package/src/lib/base-model/response-envelop.model.ts +15 -15
- package/src/lib/base-model/snack-message.model.ts +14 -14
- package/src/lib/base-model/snackmessage-interface.ts +7 -7
- package/src/lib/base-model/table-column.interface.ts +29 -29
- package/src/lib/base-model/table-page-user-action.interface.ts +33 -33
- package/src/lib/base-model/workflow/workflow-steps.model.ts +9 -9
- package/src/lib/base-model/workflow/workflow.model.ts +52 -52
- package/src/lib/components/action-comment/action-comment.component.css +52 -0
- package/src/lib/components/action-comment/action-comment.component.html +47 -0
- package/src/lib/components/{rejection-comment → action-comment}/action-comment.component.spec.ts +23 -23
- package/src/lib/components/{rejection-comment → action-comment}/action-comment.component.ts +102 -86
- package/src/lib/components/action-confirmation/action-confirmation.component.css +46 -34
- package/src/lib/components/action-confirmation/action-confirmation.component.html +32 -18
- package/src/lib/components/action-confirmation/action-confirmation.component.spec.ts +23 -23
- package/src/lib/components/action-confirmation/action-confirmation.component.ts +58 -58
- package/src/lib/components/activity-report-form/activity-report-form.component.html +110 -109
- package/src/lib/components/activity-report-form/activity-report-form.component.scss +69 -0
- package/src/lib/components/activity-report-form/activity-report-form.component.spec.ts +25 -25
- package/src/lib/components/activity-report-form/activity-report-form.component.ts +616 -605
- package/src/lib/components/advanced-filter/field-filter/field-filter.component.html +8 -0
- package/src/lib/components/advanced-filter/field-filter/field-filter.component.scss +0 -0
- package/src/lib/components/advanced-filter/field-filter/field-filter.component.spec.ts +25 -0
- package/src/lib/components/advanced-filter/field-filter/field-filter.component.ts +55 -0
- package/src/lib/components/advanced-filter/filter-builder/filter-builder.component.html +36 -0
- package/src/lib/components/advanced-filter/filter-builder/filter-builder.component.scss +130 -0
- package/src/lib/components/advanced-filter/filter-builder/filter-builder.component.spec.ts +25 -0
- package/src/lib/components/advanced-filter/filter-builder/filter-builder.component.ts +186 -0
- package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.css +51 -51
- package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.html +23 -23
- package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.spec.ts +23 -23
- package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.ts +69 -69
- package/src/lib/components/audit-log-list/audit-log.component.html +26 -23
- package/src/lib/components/audit-log-list/audit-log.component.scss +50 -0
- package/src/lib/components/audit-log-list/audit-log.component.spec.ts +25 -25
- package/src/lib/components/audit-log-list/audit-log.component.ts +114 -116
- package/src/lib/components/auto-complete/auto-complete.component.css +55 -14
- package/src/lib/components/auto-complete/auto-complete.component.html +45 -29
- package/src/lib/components/auto-complete/auto-complete.component.spec.ts +23 -23
- package/src/lib/components/auto-complete/auto-complete.component.ts +331 -330
- package/src/lib/components/base-form/base-form.component.html +59 -58
- package/src/lib/components/base-form/base-form.component.scss +68 -0
- package/src/lib/components/base-form/base-form.component.spec.ts +25 -25
- package/src/lib/components/base-form/base-form.component.ts +323 -305
- package/src/lib/components/base-form-canvas/base-form-canvas.component.css +196 -22
- package/src/lib/components/base-form-canvas/base-form-canvas.component.html +1095 -1006
- package/src/lib/components/base-form-canvas/base-form-canvas.component.spec.ts +23 -23
- package/src/lib/components/base-form-canvas/base-form-canvas.component.ts +680 -573
- package/src/lib/components/base-input-dialog/base-input-dialog.component.css +67 -0
- package/src/lib/components/base-input-dialog/base-input-dialog.component.html +47 -42
- package/src/lib/components/base-input-dialog/base-input-dialog.component.spec.ts +23 -23
- package/src/lib/components/base-input-dialog/base-input-dialog.component.ts +77 -78
- package/src/lib/components/base-table/base-table.component.html +268 -242
- package/src/lib/components/base-table/base-table.component.scss +140 -31
- package/src/lib/components/base-table/base-table.component.spec.ts +25 -25
- package/src/lib/components/base-table/base-table.component.ts +621 -568
- package/src/lib/components/button-actions/button-actions.component.html +27 -28
- package/src/lib/components/button-actions/button-actions.component.scss +101 -6
- package/src/lib/components/button-actions/button-actions.component.spec.ts +23 -23
- package/src/lib/components/button-actions/button-actions.component.ts +70 -72
- package/src/lib/components/editable-base-table/editable-base-table.component.html +337 -372
- package/src/lib/components/editable-base-table/editable-base-table.component.scss +126 -44
- package/src/lib/components/editable-base-table/editable-base-table.component.spec.ts +25 -25
- package/src/lib/components/editable-base-table/editable-base-table.component.ts +579 -570
- package/src/lib/components/equation-builder/equation-builder.component.css +39 -0
- package/src/lib/components/equation-builder/equation-builder.component.html +31 -31
- package/src/lib/components/equation-builder/equation-builder.component.spec.ts +23 -23
- package/src/lib/components/equation-builder/equation-builder.component.ts +119 -121
- package/src/lib/components/item-line-editor/item-line-editor.component.html +102 -0
- package/src/lib/components/item-line-editor/item-line-editor.component.scss +152 -0
- package/src/lib/components/item-line-editor/item-line-editor.component.spec.ts +23 -0
- package/src/lib/components/item-line-editor/item-line-editor.component.ts +306 -0
- package/src/lib/components/multi-auto-complete/multi-auto-complete.component.css +19 -11
- package/src/lib/components/multi-auto-complete/multi-auto-complete.component.html +38 -38
- package/src/lib/components/multi-auto-complete/multi-auto-complete.component.spec.ts +23 -23
- package/src/lib/components/multi-auto-complete/multi-auto-complete.component.ts +315 -317
- package/src/lib/components/paginator/paginator.component.css +65 -25
- package/src/lib/components/paginator/paginator.component.html +30 -34
- package/src/lib/components/paginator/paginator.component.ts +87 -94
- package/src/lib/components/report-details-dialog/report-details-dialog.component.css +17 -17
- package/src/lib/components/report-details-dialog/report-details-dialog.component.html +16 -16
- package/src/lib/components/report-details-dialog/report-details-dialog.component.spec.ts +23 -23
- package/src/lib/components/report-details-dialog/report-details-dialog.component.ts +111 -113
- package/src/lib/components/report-form/report-form.component.html +92 -94
- package/src/lib/components/report-form/report-form.component.scss +51 -0
- package/src/lib/components/report-form/report-form.component.spec.ts +25 -25
- package/src/lib/components/report-form/report-form.component.ts +599 -588
- package/src/lib/components/search-bar/search-bar.component.html +51 -62
- package/src/lib/components/search-bar/search-bar.component.scss +63 -8
- package/src/lib/components/search-bar/search-bar.component.spec.ts +25 -25
- package/src/lib/components/search-bar/search-bar.component.ts +68 -70
- package/src/lib/components/section-form-canvas/section-form-canvas.component.html +43 -0
- package/src/lib/components/section-form-canvas/section-form-canvas.component.scss +81 -0
- package/src/lib/components/section-form-canvas/section-form-canvas.component.spec.ts +23 -0
- package/src/lib/components/section-form-canvas/section-form-canvas.component.ts +67 -0
- package/src/lib/components/shared/action-button/action-button.component.html +12 -0
- package/src/lib/components/shared/action-button/action-button.component.scss +45 -0
- package/src/lib/components/shared/action-button/action-button.component.ts +51 -0
- package/src/lib/components/shared/action-card/action-card.component.html +78 -0
- package/src/lib/components/shared/action-card/action-card.component.scss +238 -0
- package/src/lib/components/shared/action-card/action-card.component.ts +56 -0
- package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.css +135 -54
- package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.html +36 -22
- package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.spec.ts +23 -23
- package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.ts +71 -45
- package/src/lib/components/shared-list/shared-list.component.html +17 -17
- package/src/lib/components/shared-list/shared-list.component.spec.ts +23 -23
- package/src/lib/components/shared-list/shared-list.component.ts +53 -53
- package/src/lib/components/snackbar-static/snackbar-static.component.html +20 -0
- package/src/lib/components/snackbar-static/snackbar-static.component.scss +135 -0
- package/src/lib/components/snackbar-static/snackbar-static.component.ts +26 -0
- package/src/lib/components/title-bar/title-bar.component.html +35 -31
- package/src/lib/components/title-bar/title-bar.component.scss +126 -23
- package/src/lib/components/title-bar/title-bar.component.spec.ts +23 -23
- package/src/lib/components/title-bar/title-bar.component.ts +126 -119
- package/src/lib/services/backend-service.ts +287 -286
- package/src/lib/services/index.ts +3 -3
- package/src/lib/services/top-panel.ts +17 -17
- package/src/lib/services/trigger-form.service.ts +11 -11
- package/src/lib/share-module/shared-module.ts +10 -10
- package/src/lib/utils/base-utils.ts +102 -102
- package/src/lib/validators/date-range-validator.ts +31 -31
- package/src/lib/validators/index.ts +3 -3
- package/src/lib/validators/match-list.validator.ts +10 -10
- package/src/lib/validators/multi-email-validator.ts +15 -15
- package/src/public-api.ts +29 -21
- package/tsconfig.lib.json +15 -15
- package/tsconfig.lib.prod.json +11 -11
- package/tsconfig.spec.json +15 -15
- package/src/lib/components/rejection-comment/action-comment.component.css +0 -33
- package/src/lib/components/rejection-comment/action-comment.component.html +0 -46
- package/src/lib/styles/invoiceq-theme.scss +0 -252
- package/src/lib/styles/styles.scss +0 -1723
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
export class Filter {
|
|
2
|
-
id?: any;
|
|
3
|
-
key?: any;
|
|
4
|
-
label?: string;
|
|
5
|
-
fieldName?: string;
|
|
6
|
-
joinObjectName?: string;
|
|
7
|
-
valueObject?: any;
|
|
8
|
-
fieldType?: string;
|
|
9
|
-
objectFieldName?: string;
|
|
10
|
-
filterType?: 'ASSIGNED_TO_ME'|'FILED_FILTER' | 'CLEAR_FILTERS' | 'CUSTOMER_ID'| 'VENDOR_ID' | 'INVOICE_CUSTOMER_ID'|
|
|
11
|
-
'INVOICE_VENDOR_ID' | 'DATE' | 'ASSIGNED_DEPARTMENT'| 'ASSIGNED_DEPARTMENT_MANAGER_STEPS';
|
|
12
|
-
operator?: 'GREATER_THAN_EQUAL'|'GREATER_THAN'| 'LESS_THAN'|'LESS_THAN_EQUAL'| 'EQUALS'| 'LIKE'| 'NOT_EQ'| 'IN' | 'NOT_NULL';
|
|
13
|
-
firstValue?: any;
|
|
14
|
-
secondValue?: string;
|
|
15
|
-
values?: string[];
|
|
16
|
-
autoSelect?: boolean = false;
|
|
17
|
-
|
|
18
|
-
constructor(filter : Filter) {
|
|
19
|
-
this.id = filter.id;
|
|
20
|
-
this.key = filter.key;
|
|
21
|
-
this.label = filter.label;
|
|
22
|
-
this.fieldName = filter.fieldName;
|
|
23
|
-
this.joinObjectName = filter.joinObjectName;
|
|
24
|
-
this.objectFieldName = filter.objectFieldName;
|
|
25
|
-
this.valueObject = filter.valueObject;
|
|
26
|
-
this.filterType = filter.filterType || 'FILED_FILTER';
|
|
27
|
-
this.fieldType = filter.fieldType;
|
|
28
|
-
this.operator = filter.operator || 'EQUALS';
|
|
29
|
-
this.firstValue = filter.firstValue;
|
|
30
|
-
this.secondValue = filter.secondValue;
|
|
31
|
-
this.values = filter.values;
|
|
32
|
-
this.autoSelect = filter.autoSelect;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export const HIDE_TERMINATED: Filter = new Filter(
|
|
37
|
-
{key: 2, label: 'hideTerminated', filterType: 'FILED_FILTER', fieldType: 'number' , fieldName: 'statusId', firstValue: '3' , operator: 'NOT_EQ' , autoSelect:true});
|
|
38
|
-
|
|
39
|
-
export const ASSIGNED_TO_ME_FILTER: Filter = new Filter(
|
|
40
|
-
{key: -1, label: 'Assigned to me', fieldName: 'stepId', filterType: 'ASSIGNED_TO_ME', autoSelect: true});
|
|
41
|
-
|
|
42
|
-
export const PENDING_STATUS_FILTER: Filter = new Filter(
|
|
43
|
-
{key: -2, label: 'Pending Items', fieldName: 'statusId', firstValue: '2', filterType: 'FILED_FILTER'});
|
|
44
|
-
|
|
45
|
-
export const CLEAR_FILTERS: Filter = new Filter(
|
|
46
|
-
{key: -3, label: 'clear', filterType:'CLEAR_FILTERS'});
|
|
47
|
-
|
|
48
|
-
export const ASSIGNED_DEPARTMENT_FILTER : Filter = new Filter(
|
|
49
|
-
{key: -4, label: 'ASSIGNED_DEPARTMENT', filterType:'ASSIGNED_DEPARTMENT'});
|
|
1
|
+
export class Filter {
|
|
2
|
+
id?: any;
|
|
3
|
+
key?: any;
|
|
4
|
+
label?: string;
|
|
5
|
+
fieldName?: string;
|
|
6
|
+
joinObjectName?: string;
|
|
7
|
+
valueObject?: any;
|
|
8
|
+
fieldType?: string;
|
|
9
|
+
objectFieldName?: string;
|
|
10
|
+
filterType?: 'ASSIGNED_TO_ME'|'FILED_FILTER' | 'CLEAR_FILTERS' | 'CUSTOMER_ID'| 'VENDOR_ID' | 'INVOICE_CUSTOMER_ID'|
|
|
11
|
+
'INVOICE_VENDOR_ID' | 'DATE' | 'ASSIGNED_DEPARTMENT'| 'ASSIGNED_DEPARTMENT_MANAGER_STEPS';
|
|
12
|
+
operator?: 'GREATER_THAN_EQUAL'|'GREATER_THAN'| 'LESS_THAN'|'LESS_THAN_EQUAL'| 'EQUALS'| 'LIKE'| 'NOT_EQ'| 'IN' | 'NOT_NULL';
|
|
13
|
+
firstValue?: any;
|
|
14
|
+
secondValue?: string;
|
|
15
|
+
values?: string[];
|
|
16
|
+
autoSelect?: boolean = false;
|
|
17
|
+
|
|
18
|
+
constructor(filter : Filter) {
|
|
19
|
+
this.id = filter.id;
|
|
20
|
+
this.key = filter.key;
|
|
21
|
+
this.label = filter.label;
|
|
22
|
+
this.fieldName = filter.fieldName;
|
|
23
|
+
this.joinObjectName = filter.joinObjectName;
|
|
24
|
+
this.objectFieldName = filter.objectFieldName;
|
|
25
|
+
this.valueObject = filter.valueObject;
|
|
26
|
+
this.filterType = filter.filterType || 'FILED_FILTER';
|
|
27
|
+
this.fieldType = filter.fieldType;
|
|
28
|
+
this.operator = filter.operator || 'EQUALS';
|
|
29
|
+
this.firstValue = filter.firstValue;
|
|
30
|
+
this.secondValue = filter.secondValue;
|
|
31
|
+
this.values = filter.values;
|
|
32
|
+
this.autoSelect = filter.autoSelect;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const HIDE_TERMINATED: Filter = new Filter(
|
|
37
|
+
{key: 2, label: 'hideTerminated', filterType: 'FILED_FILTER', fieldType: 'number' , fieldName: 'statusId', firstValue: '3' , operator: 'NOT_EQ' , autoSelect:true});
|
|
38
|
+
|
|
39
|
+
export const ASSIGNED_TO_ME_FILTER: Filter = new Filter(
|
|
40
|
+
{key: -1, label: 'Assigned to me', fieldName: 'stepId', filterType: 'ASSIGNED_TO_ME', autoSelect: true});
|
|
41
|
+
|
|
42
|
+
export const PENDING_STATUS_FILTER: Filter = new Filter(
|
|
43
|
+
{key: -2, label: 'Pending Items', fieldName: 'statusId', firstValue: '2', filterType: 'FILED_FILTER'});
|
|
44
|
+
|
|
45
|
+
export const CLEAR_FILTERS: Filter = new Filter(
|
|
46
|
+
{key: -3, label: 'clear', filterType:'CLEAR_FILTERS'});
|
|
47
|
+
|
|
48
|
+
export const ASSIGNED_DEPARTMENT_FILTER : Filter = new Filter(
|
|
49
|
+
{key: -4, label: 'ASSIGNED_DEPARTMENT', filterType:'ASSIGNED_DEPARTMENT'});
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import {Filter} from "./filter.model";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export interface GetItemsList {
|
|
5
|
-
filters? : Filter[];
|
|
6
|
-
apiUri?: string;
|
|
7
|
-
pageNumber?: number;
|
|
8
|
-
pageSize?: number,
|
|
9
|
-
sortBy?: string;
|
|
10
|
-
sortDirection?: 'ASC' | 'DESC';
|
|
11
|
-
searchStr?:any;
|
|
12
|
-
status?: string;
|
|
13
|
-
columns?: any[]
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export const INIT_GET_ITEMS_LIST = {
|
|
17
|
-
apiUri: '',
|
|
18
|
-
pageNumber: 0,
|
|
19
|
-
pageSize: 10,
|
|
20
|
-
sortBy: 'id',
|
|
21
|
-
sortDirection: "DESC" as const,
|
|
22
|
-
filters: [],
|
|
23
|
-
columns: []
|
|
24
|
-
}
|
|
1
|
+
import {Filter} from "./filter.model";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export interface GetItemsList {
|
|
5
|
+
filters? : Filter[];
|
|
6
|
+
apiUri?: string;
|
|
7
|
+
pageNumber?: number;
|
|
8
|
+
pageSize?: number,
|
|
9
|
+
sortBy?: string;
|
|
10
|
+
sortDirection?: 'ASC' | 'DESC';
|
|
11
|
+
searchStr?:any;
|
|
12
|
+
status?: string;
|
|
13
|
+
columns?: any[]
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const INIT_GET_ITEMS_LIST = {
|
|
17
|
+
apiUri: '',
|
|
18
|
+
pageNumber: 0,
|
|
19
|
+
pageSize: 10,
|
|
20
|
+
sortBy: 'id',
|
|
21
|
+
sortDirection: "DESC" as const,
|
|
22
|
+
filters: [],
|
|
23
|
+
columns: []
|
|
24
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * from './button-action-settings';
|
|
2
|
-
export * from './table-column.interface';
|
|
3
|
-
export * from './field-info'
|
|
4
|
-
export * from './page-info'
|
|
5
|
-
export * from './report-request.model'
|
|
6
|
-
export * from './filter-request'
|
|
7
|
-
export * from './filter.model'
|
|
8
|
-
export * from './lookupItem'
|
|
9
|
-
export * from './snack-message.model'
|
|
10
|
-
export * from './table-page-user-action.interface'
|
|
11
|
-
export * from './do-action-request'
|
|
1
|
+
export * from './button-action-settings';
|
|
2
|
+
export * from './table-column.interface';
|
|
3
|
+
export * from './field-info'
|
|
4
|
+
export * from './page-info'
|
|
5
|
+
export * from './report-request.model'
|
|
6
|
+
export * from './filter-request'
|
|
7
|
+
export * from './filter.model'
|
|
8
|
+
export * from './lookupItem'
|
|
9
|
+
export * from './snack-message.model'
|
|
10
|
+
export * from './table-page-user-action.interface'
|
|
11
|
+
export * from './do-action-request'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export class ItemsTotal {
|
|
2
|
+
subtotal: number;
|
|
3
|
+
discount: number;
|
|
4
|
+
grandTotal: number;
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
constructor(subtotal: number, discount: number, grandTotal: number) {
|
|
8
|
+
this.subtotal = subtotal;
|
|
9
|
+
this.discount = discount;
|
|
10
|
+
this.grandTotal = grandTotal;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export class LineItem {
|
|
2
|
+
gtinCode: string;
|
|
3
|
+
description: string;
|
|
4
|
+
unitPrice: number;
|
|
5
|
+
qty: number;
|
|
6
|
+
discount: number;
|
|
7
|
+
total: number;
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
constructor(code: string, description: string, unitPrice: number, qty: number, discount: number, total: number) {
|
|
11
|
+
this.gtinCode = code;
|
|
12
|
+
this.description = description;
|
|
13
|
+
this.unitPrice = unitPrice;
|
|
14
|
+
this.qty = qty;
|
|
15
|
+
this.discount = discount;
|
|
16
|
+
this.total = total;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export class LookupItem {
|
|
2
|
-
id: number;
|
|
3
|
-
arabicName: string;
|
|
4
|
-
englishName: string;
|
|
5
|
-
defaultValue?: boolean = false;
|
|
6
|
-
|
|
7
|
-
constructor(lookup: LookupItem) {
|
|
8
|
-
this.id = lookup.id;
|
|
9
|
-
this.englishName = lookup.englishName;
|
|
10
|
-
this.arabicName = lookup.arabicName;
|
|
11
|
-
this.defaultValue = lookup.defaultValue;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export const ALL_ITEM= {
|
|
16
|
-
id: -100,
|
|
17
|
-
arabicName:'Select All',
|
|
18
|
-
englishName:'Select All',
|
|
19
|
-
defaultValue: false
|
|
20
|
-
}
|
|
21
|
-
|
|
1
|
+
export class LookupItem {
|
|
2
|
+
id: number;
|
|
3
|
+
arabicName: string;
|
|
4
|
+
englishName: string;
|
|
5
|
+
defaultValue?: boolean = false;
|
|
6
|
+
|
|
7
|
+
constructor(lookup: LookupItem) {
|
|
8
|
+
this.id = lookup.id;
|
|
9
|
+
this.englishName = lookup.englishName;
|
|
10
|
+
this.arabicName = lookup.arabicName;
|
|
11
|
+
this.defaultValue = lookup.defaultValue;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export const ALL_ITEM= {
|
|
16
|
+
id: -100,
|
|
17
|
+
arabicName:'Select All',
|
|
18
|
+
englishName:'Select All',
|
|
19
|
+
defaultValue: false
|
|
20
|
+
}
|
|
21
|
+
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {SnackMessageInterface} from "./snackmessage-interface";
|
|
2
|
-
|
|
3
|
-
export class NullSnackMessage implements SnackMessageInterface {
|
|
4
|
-
message = '';
|
|
5
|
-
translate = false;
|
|
6
|
-
type: 'info' | 'success' | 'error' | 'warning' = 'info';
|
|
7
|
-
translateParams = {};
|
|
8
|
-
|
|
9
|
-
}
|
|
1
|
+
import {SnackMessageInterface} from "./snackmessage-interface";
|
|
2
|
+
|
|
3
|
+
export class NullSnackMessage implements SnackMessageInterface {
|
|
4
|
+
message = '';
|
|
5
|
+
translate = false;
|
|
6
|
+
type: 'info' | 'success' | 'error' | 'warning' = 'info';
|
|
7
|
+
translateParams = {};
|
|
8
|
+
|
|
9
|
+
}
|
|
@@ -1,51 +1,54 @@
|
|
|
1
|
-
export interface PageInfo {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
1
|
+
export interface PageInfo {
|
|
2
|
+
hasHint?: boolean;
|
|
3
|
+
id: string;
|
|
4
|
+
labelsSection: string;
|
|
5
|
+
hasAddButton: boolean;
|
|
6
|
+
apiUri?: string;
|
|
7
|
+
selfRouting?: boolean;
|
|
8
|
+
addNewRoutePath?: string;
|
|
9
|
+
editRoutePath?: string;
|
|
10
|
+
listRoutePath?: string;
|
|
11
|
+
hideTitle?: boolean;
|
|
12
|
+
saveLabel?: string;
|
|
13
|
+
pageHeight?: 'full' | 'match',
|
|
14
|
+
processId?: number,
|
|
15
|
+
draftSupported: boolean;
|
|
16
|
+
hasExtraTabs?: boolean;
|
|
17
|
+
attachmentEnabled?: boolean;
|
|
18
|
+
attachmentDefaultExternal?: boolean;
|
|
19
|
+
printAction?: boolean;
|
|
20
|
+
completedStatusFilterLabel?: string;
|
|
21
|
+
enableHideTerminated?: boolean;
|
|
22
|
+
embededTableOnly?: boolean;
|
|
23
|
+
hasCustomFields?: boolean;
|
|
24
|
+
hidePagination?: boolean;
|
|
25
|
+
hideExtractButton?: boolean;
|
|
26
|
+
hideReportsExtractButton?: boolean;
|
|
27
|
+
externalPropertyName?: string;
|
|
28
|
+
lazyLoadData?: boolean;
|
|
29
|
+
groupByProperty?: string;
|
|
30
|
+
groupByValue?: string[];
|
|
31
|
+
supportGroupingInExport?: boolean;
|
|
32
|
+
pageSize?: number;
|
|
33
|
+
hideAuditLog?: boolean;
|
|
34
|
+
stayOnPage?: boolean;
|
|
35
|
+
hideAdvancedFilter?: boolean;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export const EMPTY_PAGE_INFO = {
|
|
39
|
+
id: "",
|
|
40
|
+
labelsSection: "",
|
|
41
|
+
hasAddButton: false,
|
|
42
|
+
selfRouting: true,
|
|
43
|
+
draftSupported: false,
|
|
44
|
+
hasExtraTabs: false,
|
|
45
|
+
attachmentEnabled: false,
|
|
46
|
+
printAction: false,
|
|
47
|
+
hidePagination: false,
|
|
48
|
+
attachmentDefaultExternal: false,
|
|
49
|
+
supportGroupingInExport: false,
|
|
50
|
+
hideReportsExtractButton: false,
|
|
51
|
+
hideAuditLog: false,
|
|
52
|
+
stayOnPage: true
|
|
53
|
+
|
|
54
|
+
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import {ColumnDef} from "./column-def.model";
|
|
2
|
-
import {FieldPredicate} from "./field-predicate.model";
|
|
3
|
-
import {FilterRequest} from "./filter-request";
|
|
4
|
-
|
|
5
|
-
export class ReportRequest {
|
|
6
|
-
sessionId: string;
|
|
7
|
-
title: string;
|
|
8
|
-
prefLang: string;
|
|
9
|
-
columns: ColumnDef[];
|
|
10
|
-
filter: string;
|
|
11
|
-
reportType: 'pdf' | 'xlsx'
|
|
12
|
-
dataset: any[];
|
|
13
|
-
orientation: string;
|
|
14
|
-
searchStr?: string;
|
|
15
|
-
filtersList?: FieldPredicate[];
|
|
16
|
-
filterRequest?: FilterRequest;
|
|
17
|
-
reportCode?: string;
|
|
18
|
-
constructor(br : any) {
|
|
19
|
-
this.sessionId = br.sessionId;
|
|
20
|
-
this.title = br.title;
|
|
21
|
-
this.prefLang = br.prefLang;
|
|
22
|
-
this.searchStr = br.searchStr;
|
|
23
|
-
this.filter = br.filter;
|
|
24
|
-
this.columns = br.columns;
|
|
25
|
-
this.reportType=br.reportType;
|
|
26
|
-
this.dataset = br.dataset;
|
|
27
|
-
this.orientation = br.orientation;
|
|
28
|
-
this.filtersList = br.filtersList;
|
|
29
|
-
this.filterRequest = br.filterRequest;
|
|
30
|
-
this.reportCode = br.reportCode;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
}
|
|
1
|
+
import {ColumnDef} from "./column-def.model";
|
|
2
|
+
import {FieldPredicate} from "./field-predicate.model";
|
|
3
|
+
import {FilterRequest} from "./filter-request";
|
|
4
|
+
|
|
5
|
+
export class ReportRequest {
|
|
6
|
+
sessionId: string;
|
|
7
|
+
title: string;
|
|
8
|
+
prefLang: string;
|
|
9
|
+
columns: ColumnDef[];
|
|
10
|
+
filter: string;
|
|
11
|
+
reportType: 'pdf' | 'xlsx'
|
|
12
|
+
dataset: any[];
|
|
13
|
+
orientation: string;
|
|
14
|
+
searchStr?: string;
|
|
15
|
+
filtersList?: FieldPredicate[];
|
|
16
|
+
filterRequest?: FilterRequest;
|
|
17
|
+
reportCode?: string;
|
|
18
|
+
constructor(br : any) {
|
|
19
|
+
this.sessionId = br.sessionId;
|
|
20
|
+
this.title = br.title;
|
|
21
|
+
this.prefLang = br.prefLang;
|
|
22
|
+
this.searchStr = br.searchStr;
|
|
23
|
+
this.filter = br.filter;
|
|
24
|
+
this.columns = br.columns;
|
|
25
|
+
this.reportType=br.reportType;
|
|
26
|
+
this.dataset = br.dataset;
|
|
27
|
+
this.orientation = br.orientation;
|
|
28
|
+
this.filtersList = br.filtersList;
|
|
29
|
+
this.filterRequest = br.filterRequest;
|
|
30
|
+
this.reportCode = br.reportCode;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export class ResponseEnvelop {
|
|
2
|
-
valid: boolean;
|
|
3
|
-
message: string[];
|
|
4
|
-
body: any;
|
|
5
|
-
pagesCount: number;
|
|
6
|
-
totalSize: number;
|
|
7
|
-
|
|
8
|
-
constructor(responseEnvelop:ResponseEnvelop) {
|
|
9
|
-
this.valid = responseEnvelop.valid;
|
|
10
|
-
this.message = responseEnvelop.message;
|
|
11
|
-
this.body = responseEnvelop.body;
|
|
12
|
-
this.pagesCount = responseEnvelop.pagesCount;
|
|
13
|
-
this.totalSize = responseEnvelop.totalSize;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
1
|
+
export class ResponseEnvelop {
|
|
2
|
+
valid: boolean;
|
|
3
|
+
message: string[];
|
|
4
|
+
body: any;
|
|
5
|
+
pagesCount: number;
|
|
6
|
+
totalSize: number;
|
|
7
|
+
|
|
8
|
+
constructor(responseEnvelop:ResponseEnvelop) {
|
|
9
|
+
this.valid = responseEnvelop.valid;
|
|
10
|
+
this.message = responseEnvelop.message;
|
|
11
|
+
this.body = responseEnvelop.body;
|
|
12
|
+
this.pagesCount = responseEnvelop.pagesCount;
|
|
13
|
+
this.totalSize = responseEnvelop.totalSize;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export class SnackMessage {
|
|
2
|
-
message: string='';
|
|
3
|
-
translate: boolean=false;
|
|
4
|
-
type: 'info' | 'success' | 'error' | 'warning';
|
|
5
|
-
translateParams: any;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
constructor(message: string, translate=false , type?:any , translateParams: any = {}) {
|
|
9
|
-
this.message = message;
|
|
10
|
-
this.translate = translate;
|
|
11
|
-
this.type = type;
|
|
12
|
-
this.translateParams = translateParams;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
1
|
+
export class SnackMessage {
|
|
2
|
+
message: string='';
|
|
3
|
+
translate: boolean=false;
|
|
4
|
+
type: 'info' | 'success' | 'error' | 'warning';
|
|
5
|
+
translateParams: any;
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
constructor(message: string, translate=false , type?:any , translateParams: any = {}) {
|
|
9
|
+
this.message = message;
|
|
10
|
+
this.translate = translate;
|
|
11
|
+
this.type = type;
|
|
12
|
+
this.translateParams = translateParams;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface SnackMessageInterface {
|
|
2
|
-
message: string;
|
|
3
|
-
translate: boolean;
|
|
4
|
-
type: 'info' | 'success' | 'error' | 'warning';
|
|
5
|
-
translateParams: any;
|
|
6
|
-
}
|
|
7
|
-
|
|
1
|
+
export interface SnackMessageInterface {
|
|
2
|
+
message: string;
|
|
3
|
+
translate: boolean;
|
|
4
|
+
type: 'info' | 'success' | 'error' | 'warning';
|
|
5
|
+
translateParams: any;
|
|
6
|
+
}
|
|
7
|
+
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
export interface TableColumn<T> {
|
|
2
|
-
property: string;
|
|
3
|
-
type: 'text' | 'croppedText' | 'image' | 'netAmount' | 'workflowStatus' | 'onOff' | 'progress' | 'checkbox' | 'button' | 'date' | 'number'| 'icon' |'bigdecimal'|'builder'|'localDateTime'|'report-sequence' | 'listAction' | 'info' | 'stateType' | 'hyper-text'|'year' | 'reportType' | 'status'
|
|
4
|
-
viewType?:string;
|
|
5
|
-
enableSorting: boolean;
|
|
6
|
-
visible?: boolean;
|
|
7
|
-
cssClasses?: string[];
|
|
8
|
-
reportVisible?:boolean | true;
|
|
9
|
-
reportProperty?: string;
|
|
10
|
-
reportType?: string;
|
|
11
|
-
showSum?:boolean;
|
|
12
|
-
showCount?:boolean;
|
|
13
|
-
translate?: boolean;
|
|
14
|
-
width?:number;
|
|
15
|
-
label?:string;
|
|
16
|
-
reportwidth?:number;
|
|
17
|
-
langDrivenName?:boolean;
|
|
18
|
-
additionalProperty?: string;
|
|
19
|
-
currency?: string;
|
|
20
|
-
orderByProperty?: string;
|
|
21
|
-
advancedFilter?: boolean;
|
|
22
|
-
enableQuickFilter?: boolean;
|
|
23
|
-
format?:string;
|
|
24
|
-
group?:string;
|
|
25
|
-
arraySubProperty?: string;
|
|
26
|
-
digitInfo?:string;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export const FRONT_END_COLUMN_TYPES = ['listAction', 'button','hyper-text'];
|
|
1
|
+
export interface TableColumn<T> {
|
|
2
|
+
property: string;
|
|
3
|
+
type: 'text' | 'croppedText' | 'image' | 'netAmount' | 'workflowStatus' | 'onOff' | 'progress' | 'checkbox' | 'button' | 'date' | 'number'| 'icon' |'bigdecimal'|'builder'|'localDateTime'|'report-sequence' | 'listAction' | 'info' | 'stateType' | 'hyper-text'|'year' | 'reportType' | 'status'
|
|
4
|
+
viewType?:string;
|
|
5
|
+
enableSorting: boolean;
|
|
6
|
+
visible?: boolean;
|
|
7
|
+
cssClasses?: string[];
|
|
8
|
+
reportVisible?:boolean | true;
|
|
9
|
+
reportProperty?: string;
|
|
10
|
+
reportType?: string;
|
|
11
|
+
showSum?:boolean;
|
|
12
|
+
showCount?:boolean;
|
|
13
|
+
translate?: boolean;
|
|
14
|
+
width?:number;
|
|
15
|
+
label?:string;
|
|
16
|
+
reportwidth?:number;
|
|
17
|
+
langDrivenName?:boolean;
|
|
18
|
+
additionalProperty?: string;
|
|
19
|
+
currency?: string;
|
|
20
|
+
orderByProperty?: string;
|
|
21
|
+
advancedFilter?: boolean;
|
|
22
|
+
enableQuickFilter?: boolean;
|
|
23
|
+
format?:string;
|
|
24
|
+
group?:string;
|
|
25
|
+
arraySubProperty?: string;
|
|
26
|
+
digitInfo?:string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export const FRONT_END_COLUMN_TYPES = ['listAction', 'button','hyper-text'];
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import {PageInfo} from "./page-info";
|
|
2
|
-
|
|
3
|
-
export interface TablePageUserAction {
|
|
4
|
-
type: 'add' | 'select' | 'extra';
|
|
5
|
-
id?:number;
|
|
6
|
-
item?:any;
|
|
7
|
-
actionKey?: string;
|
|
8
|
-
pageInfo?:PageInfo
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export const SELECT_RECORD_ACTION: TablePageUserAction = {
|
|
12
|
-
type:'select'
|
|
13
|
-
}
|
|
14
|
-
export const EXTRA_ACTION: TablePageUserAction = {
|
|
15
|
-
type:'extra'
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export const DRILL_DOWN_ACTION: TablePageUserAction = {
|
|
19
|
-
type:'extra'
|
|
20
|
-
}
|
|
21
|
-
export const JUNIOR_DOWN_ACTION: TablePageUserAction = {
|
|
22
|
-
type:'extra'
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export const ADD_NEW_RECORD_ACTION: TablePageUserAction = {
|
|
26
|
-
type:'add',
|
|
27
|
-
id: -1
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export const TABLE_RECORD_ACTION: TablePageUserAction = {
|
|
31
|
-
type:'extra',
|
|
32
|
-
id: -1
|
|
33
|
-
}
|
|
1
|
+
import {PageInfo} from "./page-info";
|
|
2
|
+
|
|
3
|
+
export interface TablePageUserAction {
|
|
4
|
+
type: 'add' | 'select' | 'extra';
|
|
5
|
+
id?:number;
|
|
6
|
+
item?:any;
|
|
7
|
+
actionKey?: string;
|
|
8
|
+
pageInfo?:PageInfo
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const SELECT_RECORD_ACTION: TablePageUserAction = {
|
|
12
|
+
type:'select'
|
|
13
|
+
}
|
|
14
|
+
export const EXTRA_ACTION: TablePageUserAction = {
|
|
15
|
+
type:'extra'
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export const DRILL_DOWN_ACTION: TablePageUserAction = {
|
|
19
|
+
type:'extra'
|
|
20
|
+
}
|
|
21
|
+
export const JUNIOR_DOWN_ACTION: TablePageUserAction = {
|
|
22
|
+
type:'extra'
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export const ADD_NEW_RECORD_ACTION: TablePageUserAction = {
|
|
26
|
+
type:'add',
|
|
27
|
+
id: -1
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export const TABLE_RECORD_ACTION: TablePageUserAction = {
|
|
31
|
+
type:'extra',
|
|
32
|
+
id: -1
|
|
33
|
+
}
|