Refified processService methods;

Add approve page and criate its layout;
Finish functionality for list approve page
This commit is contained in:
Tiago Kayaya
2020-11-05 16:43:01 +01:00
parent 6fa19e7795
commit bfa4f2ec91
44 changed files with 160897 additions and 28 deletions
+4 -2
View File
@@ -35,11 +35,13 @@ export class AttachmentsService {
}
getAttachments(source: number, sourceid: string): Observable<Attachment[]>{
let geturl = environment.apiURL + 'attachments/GetAttachments';
let geturl = environment.apiURL + 'attachments/GetSourceName';
let params = new HttpParams();
params = params.set("Source", source.toString());
params = params.set("SourceId", sourceid);
/* params = params.set("SourceId", sourceid); */
let options = {
headers: this.headers,