我在custom/Extension/modules/Calls/Ext/Vardefs中创建了一个自定义字段Sugarfield_ast_rec_link_c.php ,其中包含以下内容:`
<?php
$dictionary['Calls']['fields']['ast_rec_link_c'] = array
('name' => 'ast_rec_link_c',
'vname' => 'LBL_AST_REC_LINK_C',
'type' => 'varchar',
'len' => '255',
'source' => 'non-db',
'function' => array('name'=>'getRecordLink',
'returns'=>'html',
'include'=>'custom/modules/Calls/CustomLogic.php')
);
?>
` 还在custom/Extension/modules/Calls/Ext/Language中添加了语言文件。快速修复后,我的自定义字段没有出现在 Studio -> Calls -> Fields 中。所以我不能把它放在视图上。任何人都可以帮忙吗?