Contacts phone numbers in calls list

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Truin
    Junior Member
    • Sep 2015
    • 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
    Member
    • Mar 2014
    • 8458

    #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.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    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...