From 973deedae6d1f551d3040be5ca0819a1c947f6fe Mon Sep 17 00:00:00 2001 From: venbainfotech Date: Mon, 25 Jul 2022 16:48:34 +0530 Subject: [PATCH] pdf and zip issue fix --- .../app/personal-discussion/pd-service/pd-triger.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ng6-seed/src/app/personal-discussion/pd-service/pd-triger.service.ts b/ng6-seed/src/app/personal-discussion/pd-service/pd-triger.service.ts index 5e9c5ac..7c618a9 100755 --- a/ng6-seed/src/app/personal-discussion/pd-service/pd-triger.service.ts +++ b/ng6-seed/src/app/personal-discussion/pd-service/pd-triger.service.ts @@ -943,10 +943,10 @@ generatePDReportPDF(pdId: any): Observable { return this._http.post(this.apiUrl + "generatePDReportPDF", { "records": pdId }); } archivePDImages(Dtl : any): Observable { - return this._http.post(this.apiUrl + "archivePDImages", { "records": Dtl }); + return this._http.post(this.apiUrl + "archivePDSMCImages", { "records": Dtl }); } photoPDFDownload(params:any): Observable{ - return this._http.post(this.apiUrl + "photoPDFDownload", { "records": params }); + return this._http.post(this.apiUrl + "smcPhotoPDFDownload", { "records": params }); } checkExistPDDetails(datas,entity_id){ return this._http.post(this.apiUrl+'checkExistPDDetails',{records:datas,client:entity_id})