在 SugarCRM 中设置模块字段的默认值

Set the default value for a module field in SugarCRM

我的 SugarCRM 环境中有一个名为 Cases 的模块,它有几个字段,例如 nameidaccount_namedate_created, description 等等,以及一个名为 custom_account_number.

的自定义字段

我想将其值设置为 account_name 字段之一,如何使用自定义文件夹中的自定义 php 脚本来实现?

如果你用的是Sugar 7.2,那就简单了,

1。转到 Admin->Studio->Modulename->fields->Select custom field.
2check 计算值然后点击 Edit Formula .
3。来自字段 select 您的姓名字段。
4。然后部署它。

现在转到您的模块并保存您的姓名,它也会出现在您的自定义字段中。

我没有在 Community Edition 上工作,但我可以给你一个想法,你必须写一个 logic hook after save,在那个钩子里你可以写逻辑将名称复制到您的自定义字段。

For more info Logic hook click here ...