I would like to take out the Name field and requirement on the convert Lead to Opportunity Screen. I want the Name of the Lead to automatically transfer to the converted Opportunity, and also take out the Stage and probability so that the only field that comes up is Description. I could not find the right file to edit to get this done. I couldn't quite figure it out from the other forum posts that were close to this question.
This is at the bottom of my Lead.json in my custom entitydefs, since I'm in to B2C mode and I took out contact, opportunity is the only option that appears which is what I want:
This is at the bottom of my Lead.json in my custom entitydefs, since I'm in to B2C mode and I took out contact, opportunity is the only option that appears which is what I want:
Code:
"convertEntityList": [ "Account", "Opportunity" ], "convertFields": { "Account": { "name": "accountName", "billingAddressStreet": "addressStreet", "billingAddressCity": "addressCity", "billingAddressState": "addressState", "billingAddressPostalCode": "addressPostalCode", "billingAddressCountry": "addressCountry" }, "Opportunity": { "amount": "opportunityAmount", "leadSource": "source", "name": "name" } }
Comment