[Vtigercrm-developers] emails related lists in vtiger 6.3
Alan Bell
alan.bell at libertus.co.uk
Fri Jul 3 12:57:37 GMT 2015
in 6.3.0 there has been a change to the function getRelatedListFields in
modules/Vtiger/models/Module.php, it now expects columnname to be the
[1]th element of the array that is in list_fields.
In modules/Emails/Emails.php there is:
var $list_fields = Array(
'Subject' => Array('activity' => 'subject'),
'Related to' => Array('seactivityrel' => 'parent_id'),
'Date Sent' => Array('activity' => 'date_start'),
'Time Sent' => Array('activity' => 'time_start'),
'Assigned To' => Array('crmentity', 'smownerid'),
'Access Count' => Array('email_track', 'access_count')
);
this has been like that for a long time. Note carefully the last two
arrays have a comma, and the previous ones have =>
These things together are breaking the related list of emails on
organisations and contacts and so on, so that you only see the time
sent, assigned to and access count columns.
Alan.
More information about the vtigercrm-developers
mailing list