05-31-2018, 08:53 PM
I use chrome also and I can see the lists correctly both in my local install and in the online demo.
The list of related and non-related entities is calculated in this range of code:
https://github.com/tsolucio/corebos/blob/master/modules/Settings/LayoutBlockList.php#L101:L136
exactly it is the difference between the SQL launched here:
https://github.com/tsolucio/corebos/blob/master/modules/Settings/LayoutBlockList.php#L1205
and here:
https://github.com/tsolucio/corebos/blob/master/modules/PickList/PickListUtils.php#L231
For Campaigns that SQL would be:
select *
from vtiger_relatedlists
left join vtiger_tab on vtiger_relatedlists.related_tabid = vtiger_tab.tabid and vtiger_tab.presence = 0
where vtiger_relatedlists.tabid = 26 order by sequence
SELECT name FROM vtiger_tab WHERE isentitytype=1 and name NOT IN ('Rss','Recyclebin','Events');
Launch those two directly against your database to see what it is calculating.
The list of related and non-related entities is calculated in this range of code:
https://github.com/tsolucio/corebos/blob/master/modules/Settings/LayoutBlockList.php#L101:L136
exactly it is the difference between the SQL launched here:
https://github.com/tsolucio/corebos/blob/master/modules/Settings/LayoutBlockList.php#L1205
and here:
https://github.com/tsolucio/corebos/blob/master/modules/PickList/PickListUtils.php#L231
For Campaigns that SQL would be:
select *
from vtiger_relatedlists
left join vtiger_tab on vtiger_relatedlists.related_tabid = vtiger_tab.tabid and vtiger_tab.presence = 0
where vtiger_relatedlists.tabid = 26 order by sequence
SELECT name FROM vtiger_tab WHERE isentitytype=1 and name NOT IN ('Rss','Recyclebin','Events');
Launch those two directly against your database to see what it is calculating.
Joe
TSolucio
TSolucio