J'ai créé un flux de travail simple dans VS 2010. Ce qu'il fait est de créer une tâche pour une personne, lorsque la personne change le statut de la tâche en "Complet", il enregistre un message dans l'historique du workflow.
Quand je change l'état en complet, ça dit : "Une erreur s'est produite dans xxxx (le nom du flux de travail)".
Code :
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Collections;
using System.Drawing;
using System.Linq;
using System.Workflow.ComponentModel.Compiler;
using System.Workflow.ComponentModel.Serialization;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.Runtime;
using System.Workflow.Activities;
using System.Workflow.Activities.Rules;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Workflow;
using Microsoft.SharePoint.WorkflowActions;
namespace WorkflowProject2.Workflow1
{
public sealed partial class Workflow1 : SequentialWorkflowActivity
{
public Workflow1()
{
InitializeComponent();
}
public Guid workflowId = default(System.Guid);
public SPWorkflowActivationProperties workflowProperties = new SPWorkflowActivationProperties();
private void onWorkflowActived(object sender, ExternalDataEventArgs e)
{
}
public Guid taskID = default(System.Guid);
public SPWorkflowTaskProperties taskProperties = new Microsoft.SharePoint.Workflow.SPWorkflowTaskProperties();
private bool taskHasCompleted = false;
public SPWorkflowTaskProperties taskAfterProperties = new Microsoft.SharePoint.Workflow.SPWorkflowTaskProperties();
public SPWorkflowTaskProperties taskBeforeProperties = new Microsoft.SharePoint.Workflow.SPWorkflowTaskProperties();
public String taskOutcome = default(System.String);
public Guid TaskStatusFieldID = new Guid("c15b34c3-ce7d-490a-b133-3f4de8801b76");
private void createTask1_MethodInvoking(object sender, EventArgs e)
{
taskID = Guid.NewGuid();
taskProperties.AssignedTo = "spdev\\lzhang";
taskProperties.Description = "Please review";
taskProperties.Title = "Leave application";
}
private void completeTask1_MethodInvoking(object sender, EventArgs e)
{
// Finalize the task:
taskAfterProperties.PercentComplete = 100;
taskOutcome = "Completed";
}
private void notComplete(object sender, ConditionalEventArgs e)
{
e.Result = !taskHasCompleted; // **(A)**
}
private void onTaskChanged1_Invoked(object sender, ExternalDataEventArgs e)
{
string taskStatus = taskAfterProperties.ExtendedProperties[TaskStatusFieldID].ToString();
if (taskStatus == "Completed")
{
taskHasCompleted = true; // **(B)**
}
}
}
}
J'ai le sentiment qu'il doit y avoir un problème avec (A) ou (B) mais je ne sais pas comment le résoudre. Je n'ai pas trouvé d'erreur dans le fichier journal du dossier 14/LOGS...
J'apprécie toute aide ! Merci !