在 vtiger 工作流程中分配给用户待办任务

发布于 2024-11-04 13:03:50 字数 143 浏览 4 评论 0原文

我正在尝试添加在创建工作流程时将待办事项任务分配给特定用户的功能。我似乎无法弄清楚如何将值传递到下拉列表。我想使用现有的框架,而不是采取迂回的黑客方式。谁能帮忙解决这个问题吗?

似乎下拉列表值以某种方式最终出现在这个选项列表对象中,但不确定它们的设置位置。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少女净妖师 2024-11-11 13:03:50

您能否更详细地解释一下您想要实现的目标?创建新工作流程时,选择模块后,您可以设置条件。要将其分配给特定用户,您可以选择条件

创建者:(用户)用户名是 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 xyz

Is this what you are asking? Or are you asking how to create a new task?

瞳孔里扚悲伤 2024-11-11 13:03:50

1) 打开“includes/utils/EditViewUtils.php”

2) 搜索以下行开头的块:(在版本 5.4.0 中为第 #331 行):

if($fieldname == 'assigned_user_id' && $is_admin==false && $profileGlobalPermission[2] == 1 && ($defaultOrgSharingPermission[getTabid($module_name)] == 3 or $defaultOrgSharingPermission[getTabid($module_name)] == 0))

条件的第一部分应该是:

 
$users_combo = get_select_options_array(get_user_array(FALSE, "Active", $assigned_user_id,'private'), $assigned_user_id);

3) Change '将“私人”更改为“非私人”(或其他任何内容),以便该行现在显示:

 
$users_combo = get_select_options_array(get_user_array(FALSE, "Active", $assigned_user_id,'not private'), $assigned_user_id);

现在您可以将待办事项任务分配给任何人。

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):

if($fieldname == 'assigned_user_id' && $is_admin==false && $profileGlobalPermission[2] == 1 && ($defaultOrgSharingPermission[getTabid($module_name)] == 3 or $defaultOrgSharingPermission[getTabid($module_name)] == 0))

the first part of the condition should be:

 
$users_combo = get_select_options_array(get_user_array(FALSE, "Active", $assigned_user_id,'private'), $assigned_user_id);

3) Change 'private' to 'not private' (or anything else) so that line now shows:

 
$users_combo = get_select_options_array(get_user_array(FALSE, "Active", $assigned_user_id,'not private'), $assigned_user_id);

Now you can assing ToDo tasks to anyone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文