Skip to content

Commit

Permalink
AAE-29345 Add date filtering to service tasks page
Browse files Browse the repository at this point in the history
  • Loading branch information
DudaRobert committed Dec 17, 2024
1 parent 4ab3040 commit d882a73
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ export interface ServiceTaskFilterCloudModel {
activityName?: string;
activityType?: string;
completedDate?: Date;
completedDateType?: DateCloudFilterType;
completedFrom?: string;
completedTo?: string;
elementId?: string;
executionId?: string;
processDefinitionId?: string;
Expand All @@ -240,6 +243,9 @@ export interface ServiceTaskFilterCloudModel {
serviceName?: string;
serviceVersion?: string;
startedDate?: Date;
startedDateType?: DateCloudFilterType;
startedFrom?: string;
startedTo?: string;
}

export interface FilterParamsModel {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,13 @@ export class ServiceTaskListCloudComponent extends BaseTaskListCloudComponent {
maxItems: this.size,
skipCount: this.skipCount,
sorting: this.sorting,
id: this.queryParams?.serviceTaskId,
serviceTaskId: this.queryParams?.serviceTaskId,
environmentId: this.queryParams?.environmentId,
activityName: this.queryParams?.activityName,
activityType: this.queryParams?.activityType,
completedDate: this.queryParams?.completedDate,
completedFrom: this.queryParams?.completedFrom,
completedTo: this.queryParams?.completedTo,
elementId: this.queryParams?.elementId,
executionId: this.queryParams?.executionId,
processDefinitionId: this.queryParams?.processDefinitionId,
Expand All @@ -99,6 +101,8 @@ export class ServiceTaskListCloudComponent extends BaseTaskListCloudComponent {
serviceName: this.queryParams?.serviceName,
serviceVersion: this.queryParams?.serviceVersion,
startedDate: this.queryParams?.startedDate,
startedFrom: this.queryParams?.startedFrom,
startedTo: this.queryParams?.startedTo,
status: this.queryParams?.status
} as ServiceTaskQueryCloudRequestModel;
return requestNode;
Expand Down

0 comments on commit d882a73

Please sign in to comment.