- Integrate combined profile events at home

-Added another button to change profile
This commit is contained in:
Tiago Kayaya
2020-11-20 10:55:51 +01:00
parent 5ef476f8a1
commit b3d709037a
24 changed files with 464 additions and 89 deletions
+2 -2
View File
@@ -50,9 +50,9 @@ export class ProcessesService {
};
return this.http.get<any>(`${geturl}`, options);
}
FindTask(serialnumber:string): Observable<any>
FindTaskDocId(serialnumber:string): Observable<any>
{
const geturl = environment.apiURL + 'Tasks/FindExpedient';
const geturl = environment.apiURL + 'Tasks/FindExpedienteDocId';
let params = new HttpParams();
params = params.set("serialNumber", serialnumber);