我是vtiger的新手。我正在尝试在 TroubleTicket 模块的服务模块中插入字段“服务名称”,但到目前为止我还无法做到。
一般来说,是否可以在另一个模块的模块中插入字段?如果是这样,它应该怎么做?
问问题
4778 次
1 回答
5
您可以使用此代码,将其放在您的 vTiger 根目录下并从浏览器中调用它。
<?php
$Vtiger_Utils_Log = true;
include_once('vtlib/Vtiger/Menu.php');
include_once('vtlib/Vtiger/Module.php');
$module = Vtiger_Module::getInstance('HelpDesk');
if($module) {
$blockInstance = Vtiger_Block::getInstance('LBL_TICKET_INFORMATION', $module);
if($blockInstance) {
$fieldInstance = Vtiger_Field::getInstance('Service1', $module);
if(!$fieldInstance) {
$fieldInstance = new Vtiger_Field();
$fieldInstance->name = 'Service1';
$fieldInstance->label = 'Service Name';
$fieldInstance->uitype = 10;
$fieldInstance->typeofdata = 'V~O';
$blockInstance->addField($fieldInstance);
$fieldInstance->setRelatedModules(Array('Services'));
}
}
}
?>
于 2013-01-21T08:40:23.227 回答