product filter removed

This commit is contained in:
sriram-at-840620226347 2019-11-18 18:54:34 +05:30
parent c22fa3fca3
commit 768977c975
2 changed files with 4 additions and 3 deletions

View File

@ -82,7 +82,7 @@ btnaccess:boolean = false;
proName:[this.productabbr != 'BL' && this.productabbr != 'LAEP' ? '' : '',Validators.compose([Validators.required])], proName:[this.productabbr != 'BL' && this.productabbr != 'LAEP' ? '' : '',Validators.compose([Validators.required])],
subProName:[''], subProName:[''],
customeSeg:[''], customeSeg:[''],
pdType:[''], pdType:['1'],
loanAmt:[''], loanAmt:[''],
// lender_stdcode:[''], // lender_stdcode:[''],
// lender_landline:[''], // lender_landline:[''],
@ -173,7 +173,8 @@ btnaccess:boolean = false;
let findIndex = getProductAbbr.indexOf(x); let findIndex = getProductAbbr.indexOf(x);
return this.proname.records.products[findIndex]; return this.proname.records.products[findIndex];
}); });
this.proname = FilteredAbbr.length > 0 ? FilteredAbbr : this.proname.records.products; // this.proname = FilteredAbbr.length > 0 ? FilteredAbbr : this.proname.records.products;
this.proname = this.proname.records.products;
} }
else{ else{
this.proname = this.proname.records.products; this.proname = this.proname.records.products;

View File

@ -50,7 +50,7 @@ export class ConstantsProvider {
lenUserPoolId: "ap-south-1_hFiGyr1Gw", // Username lenUserPoolId: "ap-south-1_hFiGyr1Gw", // Username
lenClientId: "38v9rpp1495v60e1gd14mj6rjr", // ClientName for Mobile lenClientId: "38v9rpp1495v60e1gd14mj6rjr", // ClientName for Mobile
} }
return production; return testing;
} }