Hello Espo Users,
per default, it is only possible to convert a lead once, no matter for which of the three entities (Oppertunity, Account ,Contact).
Now, we want the possibility to convert a lead multiple times, until all three entities are converted.
Example:
Someone converts a lead to a contact. Now he should be able to convert the lead again to a oppertunity.
Still at the moment this is not possible because the "Convert" button is hidden. As a workaround, we've done this
in "client/modules/crm/src/views/lead/detail.js." and the button is always shown.
Is there any nice solution for this?
Best regards from Germany,
Daniel
per default, it is only possible to convert a lead once, no matter for which of the three entities (Oppertunity, Account ,Contact).
Now, we want the possibility to convert a lead multiple times, until all three entities are converted.
Example:
Someone converts a lead to a contact. Now he should be able to convert the lead again to a oppertunity.
Still at the moment this is not possible because the "Convert" button is hidden. As a workaround, we've done this
Code:
//if (['Converted', 'Dead'].indexOf(this.model.get('status')) == -1) { this.menu.buttons.push({ label: 'Convert', action: 'convert', acl: 'edit', }); //}
Is there any nice solution for this?
Best regards from Germany,
Daniel
Comment