change words to english

This commit is contained in:
Peter Maquiran
2023-06-23 12:14:24 +01:00
parent e991ba5f4e
commit 2c28e37a4b
12 changed files with 110 additions and 128 deletions
+2 -11
View File
@@ -101,7 +101,7 @@ export class DispatchDomain {
* @event 'Reexecutar Despacho', 'Tarefa de Despacho'
*/
static async requestAppear() {
return GenericBehaviorProcess.requestAppear(task, {})
return GenericBehaviorProcess.RequestAppear(task, {})
}
/**
@@ -122,16 +122,7 @@ export class DispatchDomain {
* @event 'Reexecutar Despacho' , 'Tarefa de Despacho'
*/
static async Delegar(task, note, taskParticipants) {
let body = {
"SerialNumber": task.SerialNumber,
"DispatchDocId": task.DocId,
"FolderID": task.FolderId || task.FolderID,
"Subject": task.Folio,
"Comment": note,
"DelegatedUserEmail": taskParticipants[0].EmailAddress,
}
return this.processes.DelegateTask(body).toPromise()
return GenericBehaviorProcess.Delegate(task, note, taskParticipants)
}
}