如何覆盖呼叫模块上的 create_export_query 函数
我喜欢将accounts.name 和signed_username 列添加到“呼叫”模块上的导出CSV 中。我可以通过编辑 module/Calls/Call.php 上的函数 create_export_query 来做到这一点
,但我希望以升级安全的方式完成此操作。我正在使用 SugarCRM Pro 6.2 版本
提前致谢
I like to add columns accounts.name and assigned_username to the exporting CSV on the Calls module. I can do that by editing the function create_export_query on the modules/Calls/Call.php
But I want this to be done on upgrade safe manner. I am using SugarCRM Pro 6.2 version
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,目前不可能“覆盖”/扩展任何 SugarBean 类。目前 SugarCRM 仅促进对 vardef、语言、快捷方式、布局、Web 服务和控制器+控制器方法的升级安全自定义。
我会正确地创建一个自定义模块,它模仿或扩展了调用模块的导出功能以使其升级安全。 (文档)
To my knowledge, it is currently not possible to "override"/extend any sugarBean classes. Currently SugarCRM only facilitates upgrade-safe customizing to vardefs, languages, shortcuts, layouts, web services, and controllers+controller methods.
I'd properly make a custom module, which mimicks or extends the call module's export function in order to make it upgrade safe. (documentation)