mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
Fix
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import * as internal from "stream";
|
||||
|
||||
export class DailyWorkTask{
|
||||
SerialNumber: string;
|
||||
Folio: string;
|
||||
@@ -67,11 +69,29 @@ export class fullTask {
|
||||
workflowName: string
|
||||
}
|
||||
|
||||
export const activityInstanceNameArray = [
|
||||
'Concluir Despacho',
|
||||
'Tarefa de Despacho','Reexecutar Despacho','Concluir Parecer',
|
||||
'Concluir Deferimento',
|
||||
'Reapreciar Deferimento',
|
||||
'Tarefa de Deferimento',
|
||||
'Assinar Diploma',
|
||||
'Diploma Assinado',
|
||||
'Retificar Diploma',
|
||||
'Gerar Diploma',
|
||||
'Editar Evento',
|
||||
'Revisar Diploma',
|
||||
'Tarefa de Parecer'
|
||||
] as const; // TS3.4 syntax
|
||||
|
||||
|
||||
export type activityInstanceName = typeof activityInstanceNameArray[number];
|
||||
|
||||
export interface fullTaskList {
|
||||
serialNumber: string;
|
||||
taskStartDate: string;
|
||||
workflowDisplayName: string;
|
||||
activityInstanceName: string;
|
||||
activityInstanceName: activityInstanceName;
|
||||
totalDocuments: number;
|
||||
workflowInstanceDataFields: {
|
||||
Subject: string;
|
||||
@@ -142,6 +162,7 @@ export interface expedienteTask {
|
||||
}
|
||||
|
||||
export interface ExpedienteTask {
|
||||
Folio: string
|
||||
SerialNumber: string
|
||||
Senders : string
|
||||
CreateDate : any
|
||||
@@ -151,4 +172,23 @@ export interface ExpedienteTask {
|
||||
Status : string
|
||||
taskStartDate: string
|
||||
Subject: string
|
||||
}
|
||||
|
||||
|
||||
export interface PedidoDeDeferimento {
|
||||
serialNumber: string;
|
||||
taskStartDate: Date;
|
||||
deadline: Date | null;
|
||||
workflowDisplayName: string;
|
||||
activityInstanceName: string;
|
||||
totalDocuments: number;
|
||||
workflowInstanceDataFields: PedidoDeDeferimentoWorkflowInstanceDataFields;
|
||||
}
|
||||
|
||||
export interface PedidoDeDeferimentoWorkflowInstanceDataFields {
|
||||
Sender: string;
|
||||
Subject: string;
|
||||
FolderID: number;
|
||||
Status: string;
|
||||
originator: string;
|
||||
}
|
||||
Reference in New Issue
Block a user