mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
Fix
This commit is contained in:
@@ -307,4 +307,19 @@ export class ProcessesService {
|
||||
return this.http.post<any>(`${url}`,body, options);
|
||||
}
|
||||
|
||||
getFileBase64(DocId: string | number) {
|
||||
let url = environment.apiURL + 'ecm/document/file';
|
||||
|
||||
let params = new HttpParams();
|
||||
|
||||
params = params.set("docid", DocId);
|
||||
|
||||
let options: any = {
|
||||
headers: this.headers,
|
||||
params
|
||||
}
|
||||
|
||||
return this.http.get<any>(`${url}`, options);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user