mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-09-02 08:09:19 +08:00
Fix #301 Contact not showing in Activites & history subpanel
Change the rname in tasks, calls, and Note to same as other Meetings
This commit is contained in:
parent
d1e7a20971
commit
72fa965138
3 changed files with 3 additions and 3 deletions
|
@ -263,7 +263,7 @@ $dictionary['Call'] = array('table' => 'calls', 'comment' => 'A Call is an activ
|
|||
'contact_name' =>
|
||||
array(
|
||||
'name' => 'contact_name',
|
||||
'rname' => 'name',
|
||||
'rname' => 'last_name',
|
||||
'db_concat_fields' => array(0 => 'first_name', 1 => 'last_name'),
|
||||
'id_name' => 'contact_id',
|
||||
'massupdate' => false,
|
||||
|
|
|
@ -289,7 +289,7 @@ $dictionary['Note'] = array(
|
|||
'contact_name'=>
|
||||
[
|
||||
'name'=>'contact_name',
|
||||
'rname'=>'name',
|
||||
'rname'=>'last_name',
|
||||
'id_name'=>'contact_id',
|
||||
'vname'=>'LBL_CONTACT_NAME',
|
||||
'table'=>'contacts',
|
||||
|
|
|
@ -168,7 +168,7 @@ $dictionary['Task'] = array(
|
|||
'contact_name' =>
|
||||
array(
|
||||
'name' => 'contact_name',
|
||||
'rname' => 'name',
|
||||
'rname' => 'last_name',
|
||||
'db_concat_fields' => array(0 => 'first_name', 1 => 'last_name'),
|
||||
'source' => 'non-db',
|
||||
'len' => '510',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue