This commit is contained in:
saravanakumarkandasami 2018-11-09 15:51:12 +05:30
commit 13fdf54f0b
2 changed files with 2 additions and 1 deletions

View File

@ -200,6 +200,7 @@ pdFullDetails:any=[];
"template_id": selectedQuestions.fk_template_id,
"category_id": selectedQuestions.fk_template_question_category_id
}
this.getAnswers(serachQuestions);
}
// loadTemplates(startID:string){

View File

@ -266,7 +266,7 @@ getPDFormDetailsWithID(pdID, formID ):Observable<any> {
// saveData[0].fk_updatedby = this._aws.getlocale();
// saveData[0].updatedon = currentdate;
return this._http.post<any>(this.apiUrl+"savePDQuestions",{"records1":saveData})
return this._http.post<any>(this.apiUrl+"savePDQuestions",{"records":saveData})
.pipe(
catchError(this.handleError('operation', []))
)