Hi All,
I have added a functionality to convert the lead as real estate request, after converting the lead. In the Lead -> Converted To panel, i wanted to display the Converted Real Estate Record name.
I have edited these codes from converted-to.js
if (this.getAcl().check('Opportunity') && !this.getMetadata().get('scopes.Opportunity.disabl ed')) {
this.fieldList.push('createdOpportunity');
}
I changed above codes to below to show real estate request in converted-to under lead
if (this.getAcl().check('RealEstateRequest') && !this.getMetadata().get('scopes.RealEstateRequest. disabled')) {
this.fieldList.push('createdRealEstateRequest');
}
This works, but this display 5b027552d40e9f3f1 in the converted to panel. And when i click that link - it redirects me to broken page - https://domain.com/crm/#/view/5b027552d40e9f3f1
Please help me to fix this thanks.
I have added a functionality to convert the lead as real estate request, after converting the lead. In the Lead -> Converted To panel, i wanted to display the Converted Real Estate Record name.
I have edited these codes from converted-to.js
if (this.getAcl().check('Opportunity') && !this.getMetadata().get('scopes.Opportunity.disabl ed')) {
this.fieldList.push('createdOpportunity');
}
I changed above codes to below to show real estate request in converted-to under lead
if (this.getAcl().check('RealEstateRequest') && !this.getMetadata().get('scopes.RealEstateRequest. disabled')) {
this.fieldList.push('createdRealEstateRequest');
}
This works, but this display 5b027552d40e9f3f1 in the converted to panel. And when i click that link - it redirects me to broken page - https://domain.com/crm/#/view/5b027552d40e9f3f1
Please help me to fix this thanks.
Comment