0

例如,在 Opportunities 和 Cases 中有直接指向客户的关系字段。我有一个集成到这些模块中的自定义模块。我可以为自定义模块添加一个单独的关联字段,但我想要的是一个仅允许帐户和自定义模块的 flexrelate。这可以通过在 parent_name 中设置一个特殊选项列表来正常工作。但会在 db 中产生 parent_type 和 parent_id 字段。

如何配置 flexrelate 以便在选择帐户作为 parent_type 时保存到 account_id 并在选择自定义模块时保存到它的 id 字段?

flexrelate 的选项:

$app_list_strings['parent_type_display_custom']['CustomMod'] = 'CustomMod';
$app_list_strings['parent_type_display_custom']['Accounts'] = 'Accounts';
$app_list_strings['record_type_display_custom']['CustomMod'] = 'CustomMod';
$app_list_strings['record_type_display_custom']['Accounts'] = 'Accounts';

案例的附加 vardef:

$dictionary["Case"]["fields"]["parent_type"] = array (
  'name' => 'parent_type',
  'type' => 'link',
            'vname' => 'LBL_PARENT_TYPE',
            'type' => 'parent_type',
            'dbType' => 'varchar',
            'group' => 'parent_name',
            'options' => 'parent_type_display_custom',
            'len' => '255',

        );
$dictionary["Case"]["fields"]['parent_name'] =
        array(
            'name' => 'parent_name',
            'parent_type' => 'record_type_display',
            'type_name' => 'parent_type',
            'id_name' => 'parent_id', 
            'vname' => 'LBL_RELATED_TO',
            'type' => 'parent(_custom)',
            'source' => 'non-db',
            'options' => 'record_type_display_custom',
        );
$dictionary["Case"]["fields"]['parent_id'] =
        array(
            'name' => 'parent_id',
            'vname' => 'LBL_PARENT_ID',
            'type' => 'id',
            'required' => false,
            'reportable' => true,
            'comment' => 'eighter the Id of an account or a custommodule'
        );
4

1 回答 1

1

这篇 SugarCRM 开发人员博客文章有帮助吗?

http://developers.sugarcrm.com/wordpress/2011/05/16/howto-create-a-flex-relate-for-other-modules/

于 2013-03-15T19:45:19.680 回答