1

我正在尝试以编程方式批准/拒绝 SharePoint 中的工作流。我可以成功地做到这一点,但我不能添加评论。我从一年前的问题中得到了我的代码,这个问题也没有得到回答,所以我想我会开始一个新问题。

我的代码:

Hashtable ht = new Hashtable();
ht[SPBuiltInFieldId.Completed] = "TRUE";
ht["Completed"] = "TRUE";
ht[SPBuiltInFieldId.PercentComplete] = 1.0f;
ht["PercentComplete"] = 1.0f;
ht["Status"] = "Completed";
ht[SPBuiltInFieldId.TaskStatus] = SPResource.GetString
    (new CultureInfo((int)task.Web.Language, false),
    Strings.WorkflowStatusCompleted, new object[0]);
if (param == "Approved")
{
    ht[SPBuiltInFieldId.WorkflowOutcome] = "Approved";
    ht["TaskStatus"] = "Approved";
    if (!string.IsNullOrEmpty(comments))
    {
        ht[SPBuiltInFieldId.Comments] = comments;
        ht["Comments"] = comments;
        ht[SPBuiltInFieldId.Comment] = comments;
    }
}
else
{

    ht[SPBuiltInFieldId.WorkflowOutcome] = "Rejected";
    ht["TaskStatus"] = "Rejected";
    if (!string.IsNullOrEmpty(comments))
    {
        ht[SPBuiltInFieldId.Comments] = comments;
        ht["Comments"] = comments;
        ht[SPBuiltInFieldId.Comment] = comments;
    }
}
ht["FormData"] = SPWorkflowStatus.Completed;
bool isApproveReject = AlterTask(task, ht, true, 5, 100);

private static bool AlterTask(SPListItem task, Hashtable htData, bool fSynchronous, int attempts, int millisecondsTimeout)
{
    if ((int)task[SPBuiltInFieldId.WorkflowVersion] != 1)
    {
        SPList parentList = task.ParentList.ParentWeb.Lists[new Guid(task[SPBuiltInFieldId.WorkflowListId].ToString())];
        SPListItem parentItem = parentList.Items.GetItemById((int)task[SPBuiltInFieldId.WorkflowItemId]);
        for (int i = 0; i < attempts; i++)
        {
            SPWorkflow workflow = parentItem.Workflows[new Guid(task[SPBuiltInFieldId.WorkflowInstanceID].ToString())];
            if (!workflow.IsLocked)
            {
                task[SPBuiltInFieldId.WorkflowVersion] = 1;
                task.SystemUpdate();
                break;
            }
            if (i != attempts - 1)
                Thread.Sleep(millisecondsTimeout);
        }
    }
    return SPWorkflowTask.AlterTask(task, htData, fSynchronous);
}
4

2 回答 2

3

要在批准/拒绝任务时添加评论,您只需要使用 AlterTask 之前的行:

ht["ows_FieldName_Comments"] = comments;

任务批准后,您可以在工作流历史列表中看到评论。

您还可以通过以下方式从任务中获取所有综合评论:

Hashtable extProperties = SPWorkflowTask.GetExtendedPropertiesAsHashtable(currentTask);

string consolidatedComments = extProperties["FieldName_ConsolidatedComments"].ToString();
于 2012-09-06T13:29:26.097 回答
1

也可以通过客户端对象模型批准/拒绝工作流任务

工作流任务审批代码

        ClientContext ctx = new ClientContext("http://SiteUrl");
        Web web = ctx.Web;
        List list = web.Lists.GetByTitle("My Task List");
        ListItem listitem = list.GetItemById(1);
        listitem["Completed"] = true;
        listitem["PercentComplete"] = 1;
        listitem["Status"] = "Approved";
        listitem["WorkflowOutcome"] = "Approved";
        listitem.Update();
        ctx.ExecuteQuery();

拒绝工作流任务代码

        ClientContext ctx = new ClientContext("http://SiteUrl");
        Web web = ctx.Web;
        List list = web.Lists.GetByTitle("My Task List");
        ListItem listitem = list.GetItemById(1);
        listitem["Completed"] = false;
        listitem["PercentComplete"] = 1;
        listitem["Status"] = "Rejected";
        listitem["WorkflowOutcome"] = "Rejected";
        listitem.Update();
        ctx.ExecuteQuery();
于 2016-11-07T14:04:33.197 回答