integrate expediente-pr

This commit is contained in:
tiago.kayaya
2021-05-25 16:07:26 +01:00
parent ea83f4e2a6
commit 0cf08fc7b3
7 changed files with 112 additions and 115 deletions
+16
View File
@@ -183,6 +183,14 @@ export class ProcessesService {
return this.http.post<any>(`${geturl}`, body, options)
}
postDespatchoPr(body:any) {
const geturl = environment.apiURL + 'Processes/CreateExpedientePR';
let options = {
headers: this.headers,
};
return this.http.post<any>(`${geturl}`, body, options)
}
postParecer(body:any){
const geturl = environment.apiURL + 'Processes/CreateParecer';
let options = {
@@ -191,6 +199,14 @@ export class ProcessesService {
return this.http.post<any>(`${geturl}`, body, options)
}
postParecerPr(body:any){
const geturl = environment.apiURL + 'Processes/CreateParecerPR';
let options = {
headers: this.headers,
};
return this.http.post<any>(`${geturl}`, body, options)
}
postDeferimento(body:any){
const geturl = environment.apiURL + 'Processes/CreateDeferimento';
let options = {