LogoLogo
  • What is Itgrix
  • Contacts
  • Our story
  • Connector installation
    • System requirements
    • Itgrix for Bitrix24 and Asterisk
      • How to perform offline authorization
      • How to obtain a license offline
      • Configuring the connector to work in a closed network
      • Call tests
    • Itgrix for Kommo and Asterisk
      • Restricted mode setting features
      • Call card
      • Call tests
  • Additional functions
    • Automatic call transfer to responsible manager
    • Setting up click-to-call features
      • Features of customization after Bitrix24 23.300.0 update
    • Autoreplacement for phone numbers
    • How to view employee call statistics in Bx24
    • FMC number recognition
    • Configuring WebRTC in Asterisk (FreePBX)
    • Itgrix AsterPhone for Bitrix24
    • Itgrix AsterPhone for Kommo
  • For admins
    • Running an additional copy of the module
    • Deploying a module backup
    • Call processing for the period
    • Examples of the structure of registered calls from CEL
    • Wrong time in created cases in Bitrix24
    • SSH access
    • Useful commands
    • Script to test the module service
    • Changing login and password to enter the admin panel
    • Module files
    • Status monitoring
    • Application update
    • In the CEL table, there is no internal employee number in the cid_num column
    • How to fix click-to-call
    • Custom SSL certificates for https requests
    • Examples of configuring WSS connections
    • Converting recordings to MP3 before sending to Bitrix24
    • How to fix call recording problems
    • Install and configure CEL
    • B24 authorization bugfix
  • Useful customizations (any CRM)
    • Audio file name customization
    • Call data (call_full) in customizations
    • Change the number / context for calling to asterisk
    • Change phone number before sending data to CRM
    • Black and white lists
  • Useful customizations itgrix_bx (Bitrix24)
  • Useful customizations itgrix_kmo (Kommo)
  • FAQ
    • How to pay
    • How to check licence status
    • Differences in connection to B24 via SIP-connector and Itgrix
    • How to turn off the display of calls in the calendar
    • How to view statistics on employee calls
    • Updating the app
    • Offline install (only for Bitrix24)
    • Offline update
    • Reliable softphones for Asterisk
    • Detail-call-statuses
  • Changelog Itgrix_bx
  • Changelog Itgrix_kommo
  • Policy of interaction with Asterisk
Powered by GitBook
On this page

Was this helpful?

  1. For admins

In the CEL table, there is no internal employee number in the cid_num column

Observable issues:

  • No call card windows when making calls

  • Wrong responsible user in activities

How to diagnose the issue:

  1. Find a call that didn't display the call card window in the application log file (e.g. incoming from 89123456 to 123). Use call ID to find all log entries related to this call.

  2. Find an event message "Conversation requested" - that's the moment when the call card should be displayed.

Example message:

{
    "0_ts": "2024-07-09 10:37:05.099 +05:00",
    "1_level": "info",
    "2_call_id": "1517576391.958",
    "3_call_stage": "Conversation requested",
    "4_command": "Start",
    "5_msg": {
        "active_conversation_id": "1517576399.959",
        "channel": {
            "answer_time": "0001-01-01 00:00:00",
            "bridged_with": "",
            "end_time": "0001-01-01 00:00:00",
            "extra": {},
            "from": {
                "is_local": false,
                "original": "89123456"
            },
            "id": "1517576391.958",
            "is_primary": true,
            "name": "SIP/MTS_83432723033_INCOMING-000003bc",
            "start_time": "2018-02-02 17:59:51",
            "state": "ringing",
            "to": {
                "original": "3432723033" // should be internal number 123, but it's trunk instead
            },
            "trunk": {
                "original": "3432723033"
            },
            "type": "incoming",
            "was_answered": false
        },
        ...

3. Here the trunk number is listed instead of the internal number ("to").

How to fix it:

  1. In the /etc/asterisk/sip.conf file (can be sip_additional.conf, sip_custom.conf, or user.conf for Elastix), add a line in a block for [123]: cid_number=123 Do that for all numbers with similar issues.

  2. Otherwise, you can add:callerid=Name <123> Name – is the employee name to be displayed on the phone. Re-read the Asterisk configs: asterisk -rx “sip reload”.

PreviousApplication updateNextHow to fix click-to-call

Last updated 10 months ago

Was this helpful?