在 vtiger 工作流程中分配给用户待办任务
我正在尝试添加在创建工作流程时将待办事项任务分配给特定用户的功能。我似乎无法弄清楚如何将值传递到下拉列表。我想使用现有的框架,而不是采取迂回的黑客方式。谁能帮忙解决这个问题吗?
似乎下拉列表值以某种方式最终出现在这个选项列表对象中,但不确定它们的设置位置。
I'm trying to add the ability to assign todo tasks to a specifc user when creating workflow. I cant seem to figure out how values are passed to the drop down list. I want to use the existing framework and not do it a roundabout hacked way. Can anyone help with this?
It seems dropdown list values somehow end up in this picklist object, but not sure where they are set.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您能否更详细地解释一下您想要实现的目标?创建新工作流程时,选择模块后,您可以设置条件。要将其分配给特定用户,您可以选择条件
创建者:(用户)用户名
是 xyz这是您要问的吗?或者您想问如何创建新任务?
Could you please provide a more detailed explanation of what you are trying to accomplish? When creating a new workflow and after selecting a module, you can set conditions. To assign it to a specific user, you can choose the condition
Created By : (Users) User Name
is xyzIs this what you are asking? Or are you asking how to create a new task?
1) 打开“includes/utils/EditViewUtils.php”
2) 搜索以下行开头的块:(在版本 5.4.0 中为第 #331 行):
条件的第一部分应该是:
3) Change '将“私人”更改为“非私人”(或其他任何内容),以便该行现在显示:
现在您可以将待办事项任务分配给任何人。
1) open "includes/utils/EditViewUtils.php"
2) Search for the block starting with the line below: (in Version 5.4.0 it is line #331):
the first part of the condition should be:
3) Change 'private' to 'not private' (or anything else) so that line now shows:
Now you can assing ToDo tasks to anyone.