add deadline to list

This commit is contained in:
Peter Maquiran
2023-04-12 09:01:03 +01:00
parent 3607a34ed3
commit 8cc4181c41
21 changed files with 139 additions and 15 deletions
+6 -1
View File
@@ -24,6 +24,7 @@ export class fullTask {
manager: string,
username: string,
};
deadline: string;
serialNumber: string;
taskStartDate: string;
workflowDisplayName: string;
@@ -93,6 +94,7 @@ export interface fullTaskList {
workflowDisplayName: string;
activityInstanceName: activityInstanceName;
totalDocuments: number;
deadline: string;
workflowInstanceDataFields: {
Subject: string;
Sender: string;
@@ -140,6 +142,8 @@ export class customTask {
WorkflowName : string
activityInstanceName : string
Status : string
Deadline: string
TaskStartDate: string
}
@@ -170,8 +174,9 @@ export interface ExpedienteTask {
WorkflowName : string
activityInstanceName : string
Status : string
taskStartDate: string
TaskStartDate: string
Subject: string
Deadline: string
}