0

我的 VTiger 自定义模块在“关系”选项卡中没有显示任何内容。我如何添加与其他模块的关系,例如潜在客户。

我已经使用 console.php 创建了模块

谢谢

4

1 回答 1

3

这里第一种方法使用 PHP 代码。

在 vtiger 的根目录中创建一个 php 文件作为create_relation.php.

<?php
/*
create_relation.php
Create this file into your root directory of vtiger i.e. vtigercrm/
and then run this file directly using your browser 
for example localhost/vtigercrm/create_relation.php
*/
include_once('vtlib/Vtiger/Module.php');
$moduleInstance = Vtiger_Module::getInstance('Leads');
$accountsModule = Vtiger_Module::getInstance('new_module');
$relationLabel  = 'New_modules';
$moduleInstance->setRelatedList(
      $accountsModule, $relationLabel, Array('ADD') //you can do select also Array('ADD','SELECT')
);

echo "done";

使用这个 vtiger_relatedlists 表,正在建立关系

阅读上述代码的注释,并vtiger_relatedlists在需要时更新数据库表。这是您必须确保该表中的relationfieldid字段(列)正确的表(vtiger_relatedlists)。

于 2017-06-14T15:03:05.167 回答