remove unwanted codes

This commit is contained in:
gandhimathi 2018-12-22 17:16:59 +05:30
parent de0cbc7dd3
commit 1eb2fc8c21

View File

@ -40,14 +40,12 @@ export class PdTrigerService {
// get add pd master details
getAllMasterDatas(TableName: string): Observable<any> {
console.log('table', TableName);
return this._http.post(this.apiUrl + 'getListOfMaster', {"master_name": TableName})
.pipe(
catchError(this.handleError('role', []))
)
}
saveForm(records: any): Observable<any> {
console.log('table', records);
records.fk_createdby = this._aws.getlocale();
let params = {records}
return this._http.post(this.apiUrl + 'savePDFormDetails', params)
@ -56,7 +54,6 @@ export class PdTrigerService {
)
}
retriveForm(params): Observable<any> {
console.log('data', params);
return this._http.post(this.apiUrl + 'getPDFormDetails', params)
.pipe(
catchError(this.handleError('role', []))