Announcement

Collapse
No announcement yet.

Convert to

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Convert to

    Hey guys, question, how do I add / remove entities from the lead "Convert" button on the lead?

  • #2
    you can't add / remove entities from the lead Convert button one way to remove them is to go to entity manager > account > layouts > convert Lead and then just make sure that you don't include any any fields there, same goes for opportunities and contacts. Otherwise you could create a custom convert to logic to override the existing one.

    Comment


    • #3
      Originally posted by rabii View Post
      you can't add / remove entities from the lead Convert button one way to remove them is to go to entity manager > account > layouts > convert Lead and then just make sure that you don't include any any fields there, same goes for opportunities and contacts. Otherwise you could create a custom convert to logic to override the existing one.
      Hi, thanks,
      1. I tried to remove Account from Lead conversion, but it is not allowing me to delete all fields from the layout (screen attached)
      2. I am trying to add a custom entity to a lead conversion, can't add it since there is no such option on the "Entity manager"
      Attached Files

      Comment


      • #4
        And one more question (secondary), how can I restrict a conversion in such a way, if "Opportunity" was selected, "Contact" must be as well, no way to bypass it

        Comment


        • #5
          Hey Russ

          I have doubled checked and it seems that it is possible to add / remove scopes to the convert button of the lead, below is an expample on how to add Case to the convert button:

          1 - Create a new file if doesn't exist under custom\Espo\Custom\Resources\metadata\entityDefs\L ead.json and paste the code below: (Use only one of the two code - each code below represent a Lead.json file)

          PHP Code:
          // Use this code if you want to only add more entities e.g below i have added Case to the existing list using (Append)
          // // convertFields is used to map the fields between the converted entity and the lead (name of the case) => accountName of the Lead
          {
              
          "convertEntityList": [
                  
          "__APPEND__",
                  
          "Case"
              
          ],
              
          "convertFields": {
                  
          "Case": {
                       
          "name""accountName"
                  
          }
              }
          }

          // Use this code if you want to override existing list and remove entities e.g below i have removed opportunity and added Case
          // convertFields is used to map the fields between the converted entity and the lead (name of the case) => accountName of the Lead
          {
              
          "convertEntityList": [
                  
          "Account",
                  
          "Contact",
                  
          "Case"
              
          ],
              
          "convertFields": {
                  
          "Case": {
                       
          "name""accountName"
                  
          }
              }
          }
          ​ 


          2 - Create a convertDetail.json under custom\Espo\Custom\Resources\layouts\Case and pase into the code below (you need to customise this to show the correct field you want to use for the conversion), in example below i am using only name and description but you can customise it to your need:

          PHP Code:
          [
              {
                  
          "label":"Overview",
                  
          "rows":[
                      [{
          "name":"name"},false]
                  ]
              }, {
                  
          "label":"Details",
                  
          "rows":[
                      [{
          "name":"description""fullWidth"true}]
                  ]
              }
          ]
          ​ 

          If you follow that then just clear the cache and rebuild the system and you should see the Case in the converion list entity when you click on convert.

          As per your question about making one entity required based on selection of another i think it is possible but require some code adjustment. will see if i come up with something i will share with you.

          I hope this helps.

          Cheers
          Last edited by rabii; 06-07-2023, 08:08 AM.

          Comment


          • #6
            Thanks a lot rabii, I will try, so you example shows how to add an entity, how do we remove one? Let's say "Account"?

            Comment


            • #7
              Originally posted by Russ View Post
              Thanks a lot rabii, I will try, so you example shows how to add an entity, how do we remove one? Let's say "Account"?
              Oh, sorry, my bad, I see in your code comment:
              // Use this code if you want to override existing list and remove entities e.g below i have removed opportunity and added Case


              Thanks

              Comment


              • #8
                >As per your question about making one entity required based on selection of another i think it is possible but require some code adjustment. will see if i come up with something i will share with you.


                Thanks

                Comment

                Working...
                X