SugarCRM——如何定制用户管理工具?
我刚开始使用 SugarCRM。我想要一个执行以下操作的用户页面:
- 允许用户创建子用户,然后每个子用户可以创建其他子用户
- 以可扩展和可折叠的分层树结构显示用户
- 为每个用户添加更多属性
- 任何新创建的用户都应该能够使用 Sugar 的现有身份验证登录 SugarCRM。
有谁知道该怎么做?或者他们是否可以推荐教程/资源供我学习?
I'm new to using SugarCRM. I want to have a users page that does the following:
- Allow a user to create sub-users, and each sub-user can then create additional sub users
- Display users in an expandable and collapse-able hierarchical tree structure
- Add more attributes to each user
- Any newly created user should be able to login to SugarCRM using sugar's existing authentication.
Does anyone know how to do this? Or if they can recommend tutorials/resources for me to study?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
约翰,您将需要基于自定义模块的一对多关系。
一个用户可以创建一个子用户。
因此,首先在 SugarCRM 工作室内部定义该模块和关系。
定义后,如果您尝试在用户模块上放置子面板,您会注意到一个添加/删除/编辑按钮,允许您添加/删除子用户。
要向您的用户添加更多属性,您只需进入工作室,选择该模块并将 _c(自定义字段)添加到相应的表中。您可以添加自定义文本、int、long、float、varchar 等字段。
John, you will need a one to many relationship based on a custom module.
One user can create a sub user.
So begin by defininig that module and relationship inside of SugarCRM studio.
Once this is defined if you try to throw a subpanel on the Users module you will notice an add / delete / edit button, allowing you to add / delete sub users.
To add more attributes to your user you simply go into studio, select that module and add _c (custom fields) to the corresponding table. You can add custom text, int, long, float, varchar, etc fields.