Announcement

Collapse
No announcement yet.

Is possible disable button Convert and fallow in Leads?

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

  • Is possible disable button Convert and fallow in Leads?

    Hi Tanya
    Is possible disable button Convert and fallow in Leads?

  • #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


    • #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...
      X