Hello,
I noticed that on a fresh pull from git install when a pbx event takes place(incoming or outgoing) it is not displayed in the module's listview
Upon further inspection i noticed that the events were recorded in table vtiger_pbxmanager but the sql querry:
-as it was presented by the debug header in PBXManager listview- yeld 0 results. I noticed the ON vtiger_pbxmanager.pbxmanagerid = vtiger_crmentity.crmid and checked the table vtiger_crmentity as it is part of the statement. There were no PBXManager entries so that's why the SELECT did not return anything. On older versions I can locate the crmid in that vtiger_crmentity.
Can someone replicate that or it is just my installation?
Any pointers as to where would the problem lay?
Thanks
I noticed that on a fresh pull from git install when a pbx event takes place(incoming or outgoing) it is not displayed in the module's listview
Upon further inspection i noticed that the events were recorded in table vtiger_pbxmanager but the sql querry:
Code:
SELECT vtiger_pbxmanager.callfrom, vtiger_pbxmanager.callto, vtiger_pbxmanager.timeofcall, vtiger_pbxmanager.status, vtiger_pbxmanager.pbxmanagerid FROM vtiger_pbxmanager INNER JOIN vtiger_crmentity ON vtiger_pbxmanager.pbxmanagerid = vtiger_crmentity.crmid WHERE vtiger_crmentity.deleted=0 AND vtiger_pbxmanager.pbxmanagerid > 0
-as it was presented by the debug header in PBXManager listview- yeld 0 results. I noticed the ON vtiger_pbxmanager.pbxmanagerid = vtiger_crmentity.crmid and checked the table vtiger_crmentity as it is part of the statement. There were no PBXManager entries so that's why the SELECT did not return anything. On older versions I can locate the crmid in that vtiger_crmentity.
Can someone replicate that or it is just my installation?
Any pointers as to where would the problem lay?
Thanks