是否可以以编程方式设置工作流注释?例如管理员用户“拒绝”工作箱中的项目,我们要求发表评论。稍后,我们的代理进程检索此评论并发送电子邮件。现在我需要我的自定义模块来做同样的事情(管理员拒绝功能)。
我猜这将与 Sitecore 用于设置工作流注释的代码相同......
下面是执行任何工作流命令的代码,假设您知道命令项的 ID:
public bool Execute(Item item, ID commandId, string comment)
{
var workflowId = item[FieldIDs.Workflow];
if (String.IsNullOrEmpty(workflowId))
{
throw new WorkflowException("Item is not in a workflow");
}
IWorkflow workflow = item.Database.WorkflowProvider.GetWorkflow(workflowId);
var workflowResult = workflow.Execute(commandId.ToString(), item, comment, false, new object[0]);
if (!workflowResult.Succeeded)
{
var message = workflowResult.Message;
if (String.IsNullOrEmpty(message))
{
message = "IWorkflow.Execute() failed for unknown reason.";
}
throw new Exception(message);
}
return true;
}