Is possible disable button Convert and fallow in Leads?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zdrojak
    Junior Member
    • Nov 2017
    • 28

    Is possible disable button Convert and fallow in Leads?

    Hi Tanya
    Is possible disable button Convert and fallow in Leads?
  • tanya
    Senior Member
    • Jun 2014
    • 4308

    #2
    Hello
    You need to override detail view of lead


    client/modules/crm/src/views/lead/detail.js - file, where Convert button is add

    Comment

    • rouhu
      Member
      • Sep 2020
      • 39

      #3
      Instructions:
      Create file and path:
      /client/custom/src/views/lead/detail.js
      Content:
      define('custom:views/lead/detail', ['views/detail'], function (Dep) {
      return Dep.extend({
      });
      });​
      Change file
      /custom/Espo/Custom/Resources/metadata/clientDefs/Lead.json
      Add to this file:
      "views": {
      "detail": "custom:views/lead/detail"
      },
      and rebuilt and clear all caches.​

      Comment

      Working...