mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
change words to english
This commit is contained in:
@@ -7,15 +7,15 @@ export class RequestForApproval {
|
||||
/**
|
||||
* @activityInstanceName 'Tarefa de Deferimento', 'Reapreciar Deferimento', 'Concluir Deferimento'
|
||||
*/
|
||||
static Arquivar() {
|
||||
static Archive(serialNumber, note, documents) {
|
||||
let body = {
|
||||
"serialNumber": 'serialNumber',
|
||||
"serialNumber": serialNumber,
|
||||
"action": "Arquivo",
|
||||
"ActionTypeId": 95,
|
||||
"dataFields": {
|
||||
"ReviewUserComment": 'note',
|
||||
"ReviewUserComment": note,
|
||||
},
|
||||
"AttachmentList" :'documents',
|
||||
"AttachmentList" :documents,
|
||||
}
|
||||
|
||||
return this.processes.CompleteTask(body)
|
||||
@@ -24,47 +24,40 @@ export class RequestForApproval {
|
||||
/**
|
||||
* @activityInstanceName 'Tarefa de Deferimento', 'Reapreciar Deferimento', 'Concluir Deferimento'
|
||||
*/
|
||||
static async Delegar() {
|
||||
let body = {
|
||||
"serialNumber": 'this.serialNumber',
|
||||
"action": "Registar",
|
||||
"ActionTypeId": 104,
|
||||
"dataFields": {
|
||||
"ReviewUserComment": 'this.note',
|
||||
},
|
||||
"AttachmentList": 'docs',
|
||||
}
|
||||
|
||||
return await this.processes.CompleteTask(body).toPromise();
|
||||
static async Delegate(task, serialNumber, note, EmailAddress) {
|
||||
return GenericBehaviorProcess.Delegate(task, note, EmailAddress)
|
||||
|
||||
}
|
||||
/**
|
||||
* @evactivityInstanceNameent 'Tarefa de Deferimento', 'Reapreciar Deferimento', 'Concluir Deferimento'
|
||||
*/
|
||||
static EfetuarDespacho(body) {
|
||||
static PerfomeceDispatch(body) {
|
||||
return GenericBehaviorProcess.PerformeDispatch(body)
|
||||
}
|
||||
/**
|
||||
* @activityInstanceName 'Tarefa de Deferimento', 'Reapreciar Deferimento', 'Concluir Deferimento'
|
||||
*/
|
||||
static MarcarReuniao() {}
|
||||
static SetUpMeeting(task) {
|
||||
return GenericBehaviorProcess.SetUpMeeting(task, {});
|
||||
}
|
||||
/**
|
||||
* @activityInstanceName 'Tarefa de Deferimento', 'Concluir Deferimento', 'Reapreciar Deferimento'
|
||||
*/
|
||||
static enviarParaPendente(serialNumber) {
|
||||
static SetTaskToPending(serialNumber) {
|
||||
return GenericBehaviorProcess.SetTaskToPending(serialNumber)
|
||||
}
|
||||
/**
|
||||
* @activityInstanceName 'Concluir Deferimento'
|
||||
*/
|
||||
static SolicitarParecer(task) {
|
||||
return GenericBehaviorProcess.requestAppear(task, {})
|
||||
static RequestAppear(task) {
|
||||
return GenericBehaviorProcess.RequestAppear(task, {})
|
||||
}
|
||||
|
||||
/**
|
||||
* @pt Solicitar Reapreciação
|
||||
* @activityInstanceName 'Concluir Deferimento'
|
||||
*/
|
||||
static SolicitarReapreciação() {
|
||||
static RequestReview() {
|
||||
let body = {
|
||||
"serialNumber": 'this.serialnumber',
|
||||
"action": "Reapreciação",
|
||||
|
||||
Reference in New Issue
Block a user