Another couple of workflow fixes

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@22001 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2010-08-25 22:35:28 +00:00
parent b4a5b665a6
commit 56ce66ac47

View File

@@ -681,6 +681,12 @@ public class WorkflowServiceImpl implements WorkflowService
return false;
}
// if a task does not have an owner it can not be reassigned
if (task.getProperties().get(ContentModel.PROP_OWNER) == null)
{
return false;
}
// if the task has the 'reassignable' property set to false it can not be reassigned
Map<QName, Serializable> properties = task.getProperties();
Boolean reassignable = (Boolean)properties.get(WorkflowModel.PROP_REASSIGNABLE);