pdf and zip issue fix

This commit is contained in:
venbainfotech 2022-07-25 16:48:34 +05:30
parent ac7b38ed7d
commit 973deedae6

View File

@ -943,10 +943,10 @@ generatePDReportPDF(pdId: any): Observable<any> {
return this._http.post<any>(this.apiUrl + "generatePDReportPDF", { "records": pdId });
}
archivePDImages(Dtl : any): Observable<any> {
return this._http.post<any>(this.apiUrl + "archivePDImages", { "records": Dtl });
return this._http.post<any>(this.apiUrl + "archivePDSMCImages", { "records": Dtl });
}
photoPDFDownload(params:any): Observable<any>{
return this._http.post<any>(this.apiUrl + "photoPDFDownload", { "records": params });
return this._http.post<any>(this.apiUrl + "smcPhotoPDFDownload", { "records": params });
}
checkExistPDDetails(datas,entity_id){
return this._http.post(this.apiUrl+'checkExistPDDetails',{records:datas,client:entity_id})