mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4321] Add Task Id filter to task cloud filters (#4571)
This commit is contained in:
committed by
Eugenio Romano
parent
fb9308ddbf
commit
7a2c5762ff
@@ -16,6 +16,7 @@
|
||||
[processDefinitionId]="editedFilter.processDefinitionId"
|
||||
[processInstanceId]="editedFilter.processInstanceId"
|
||||
[name]="editedFilter.taskName"
|
||||
[id]="editedFilter.taskId"
|
||||
[parentTaskId]="editedFilter.parentTaskId"
|
||||
[priority]="editedFilter.priority"
|
||||
[owner]="editedFilter.owner"
|
||||
|
@@ -82,6 +82,7 @@ given below:
|
||||
| **_status_** | Execution state of the task. |
|
||||
| **_assignee_** | User the task is assigned to |
|
||||
| **_taskName_** | Name of the task |
|
||||
| **_taskId_** | ID of the task |
|
||||
| **_parentTaskId_** | ID of the task's parent task |
|
||||
| **_priority_** | Task priority |
|
||||
| **_createdDate_** | Date the task was created |
|
||||
|
@@ -113,6 +113,7 @@
|
||||
},
|
||||
"LABEL": {
|
||||
"APP_NAME": "ApplicationName",
|
||||
"TASK_ID": "Task ID",
|
||||
"PROCESS_DEF_ID": "ProcessDefinitionId",
|
||||
"STATUS": "Status",
|
||||
"ASSIGNMENT": "Assignee",
|
||||
|
@@ -439,6 +439,12 @@ export class EditTaskFilterCloudComponent implements OnInit, OnChanges {
|
||||
value: currentTaskFilter.appName || '',
|
||||
options: this.applicationNames
|
||||
}),
|
||||
new TaskFilterProperties({
|
||||
label: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.TASK_ID',
|
||||
type: 'text',
|
||||
key: 'taskId',
|
||||
value: ''
|
||||
}),
|
||||
new TaskFilterProperties({
|
||||
label: 'ADF_CLOUD_EDIT_TASK_FILTER.LABEL.STATUS',
|
||||
type: 'select',
|
||||
|
@@ -32,6 +32,7 @@ export class TaskFilterCloudModel {
|
||||
createdDate: Date;
|
||||
dueDate: Date;
|
||||
taskName: string;
|
||||
taskId: string;
|
||||
parentTaskId: string;
|
||||
priority: number;
|
||||
standAlone: boolean;
|
||||
@@ -56,6 +57,7 @@ export class TaskFilterCloudModel {
|
||||
this.createdDate = obj.createdDate || null;
|
||||
this.dueDate = obj.dueDate || null;
|
||||
this.taskName = obj.taskName || null;
|
||||
this.taskId = obj.taskId || null;
|
||||
this.parentTaskId = obj.parentTaskId || null;
|
||||
this.priority = obj.priority || null;
|
||||
this.standAlone = obj.standAlone || null;
|
||||
|
Reference in New Issue
Block a user