Add integration of create new event from expedient

This commit is contained in:
Tiago Kayaya
2020-11-18 21:55:58 +01:00
parent 52908b509d
commit 5ef476f8a1
14 changed files with 317 additions and 157 deletions
+16
View File
@@ -50,6 +50,19 @@ export class ProcessesService {
};
return this.http.get<any>(`${geturl}`, options);
}
FindTask(serialnumber:string): Observable<any>
{
const geturl = environment.apiURL + 'Tasks/FindExpedient';
let params = new HttpParams();
params = params.set("serialNumber", serialnumber);
let options = {
headers: this.headers,
params: params
};
return this.http.get<any>(`${geturl}`, options);
}
GetMDOficialTasks(): Observable<any>
{
@@ -125,6 +138,9 @@ export class ProcessesService {
});
}
}