Improve service for rules

This commit is contained in:
Peter Maquiran
2021-08-05 16:08:49 +01:00
parent 45066de8cd
commit bd00c2f15b
9 changed files with 165 additions and 0 deletions
+13
View File
@@ -80,6 +80,19 @@ export class DespachoService {
return this.processes.CompleteTask(body)
}
Finalizar({serialNumber}) {
const body = {
"serialNumber": serialNumber,
"action": "Conhecimento",
"ActionTypeId": 104,
"dataFields": {
"ReviewUserComment": '',
},
"AttachmentList" :null,
}
}
sendExpedienteToPending(serialnumber) {
return this.processes.SetTaskToPending(serialnumber)
}