This commit is contained in:
Peter Maquiran
2021-08-20 15:43:37 +01:00
parent 45da5303e3
commit 3000f712c1
6 changed files with 77 additions and 80 deletions
+13
View File
@@ -56,6 +56,19 @@ export class PedidoService {
return this.processes.CompleteTask(body)
}
arquivar({note = "", serialNumber, documents= [] }) {
let body = {
"serialNumber": serialNumber,
"action": "Arquivo",
"ActionTypeId": 95,
"dataFields": {
"ReviewUserComment": note,
},
"AttachmentList" :documents,
}
return this.processes.CompleteTask(body)
}
}