如何在cDevworkFlow中获取实例的任务列表

本文关键字:实例 任务 列表 获取 cDevworkFlow | 更新日期: 2023-09-27 18:30:21

我创建了一个工作流定义,其中包含许多任务步骤,并为此创建了实例。 如何在运行实例时获取所有任务的列表和每个任务的状态?

如何在cDevworkFlow中获取实例的任务列表

cDevWorkflow API 非常强大,它完全支持您的工作流任务。在deInstance类的帮助下,您将获得从实例创建的所有任务的列表。以下代码可能会对您有所帮助:

        string connectString = ""; //get your workflow db connection string
        string currentUserId = ""; //get current userid
        string instanceId = ""; //get instance id to get the tasks
        deRuntime oRuntime = new deRuntime(connectString, currentUserId);
        deInstance oInstance = oRuntime.getInstance(instanceId);
        DataTable oTasks = oInstance.getTasks();
        //from the datatable oTasks you can see the status of each task

希望这有帮助..!