Contacts phone numbers in calls list

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Truin
    Junior Member
    • Sep 2015
    • 1

    #1

    Contacts phone numbers in calls list

    Hello

    I want to display contacts phone number in the list of call entity.

    how can I do this please?

    Thank you
  • yuri
    EspoCRM product developer
    • Mar 2014
    • 9639

    #2
    Hi

    That's not easy. You need to create notStorable field. Then in custom Call Service class call define method oadAdditionalFieldsForList where you will load phone numbers.

    Comment


    • Maryam123
      Maryam123 commented
      Editing a comment
      Hello my phone numbers are not showing
  • Maryam123
    Junior Member
    • Apr 2020
    • 19

    #3
    My phone numbers are not showing
    Attached Files

    Comment

    • maryam1234
      Junior Member
      • Apr 2020
      • 1

      #4
      phone numbers are not showing.
      public function loadAdditionalFieldsForList(Entity $entity) { parent::loadAdditionalFieldsForList($entity); $entity->loadLinkMultipleField('users'); $entity->loadLinkMultipleField('contacts'); $entity->loadLinkMultipleField('phoneNumbers'); }

      Comment

      Working...