Improve local storage and fix expediente task strature

This commit is contained in:
Peter Maquiran
2021-08-26 13:48:29 +01:00
parent f8991b785b
commit f4de729e2f
41 changed files with 373 additions and 507 deletions
+16
View File
@@ -0,0 +1,16 @@
export interface ExpedienteFullTaskWorkflowInstanceDataFields {
FolderID: number;
Sender: string;
Subject: string;
Status: string;
}
export interface ExpedienteFullTask {
serialNumber: string;
taskStartDate: string;
workflowDisplayName: string;
activityInstanceName: string;
totalDocuments: number;
workflowInstanceDataFields: ExpedienteFullTaskWorkflowInstanceDataFields;
}
+14
View File
@@ -113,4 +113,18 @@ export interface expedienteTask {
DispatchNumber: any
AttachmentsProcessLastInstanceID: any
InstanceID: any
}
export interface ExpedienteTask {
SerialNumber: string
Senders : string
CreateDate : string
DocumentsQty : number
WorkflowName : string
activityInstanceName : string
Status : string
taskStartDate: string
Subject: string
}