Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

82288: Merged V4.2-BUG-FIX (4.2.4) to HEAD-BUG-FIX (5.0/Cloud)
      80935: Merged DEV to V4.2-BUG-FIX (4.2.4)
         80901 : MNT-12221 : Due date is not displayed for Pooled Review and Approve task
            - task-delegate duedate property should be used for pooled review and approve workflow.
            - completing fix for ALF-8617 made in revision 28032
      81519: MNT-12221 : Due date is not displayed for Pooled Review and Approve task
         - Fixed build failure.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@83201 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Erik Winlof
2014-09-04 06:29:55 +00:00
parent e71d0e65f8
commit d9324747d0

View File

@@ -21,7 +21,7 @@
<activiti:taskListener event="create" class="org.alfresco.repo.workflow.activiti.tasklistener.ScriptTaskListener"> <activiti:taskListener event="create" class="org.alfresco.repo.workflow.activiti.tasklistener.ScriptTaskListener">
<activiti:field name="script"> <activiti:field name="script">
<activiti:string> <activiti:string>
if (typeof bpm_workflowDueDate != 'undefined') task.setVariable('bpm_dueDate', bpm_workflowDueDate); if (typeof bpm_workflowDueDate != 'undefined') task.dueDate = bpm_workflowDueDate
if (typeof bpm_workflowPriority != 'undefined') task.priority = bpm_workflowPriority; if (typeof bpm_workflowPriority != 'undefined') task.priority = bpm_workflowPriority;
</activiti:string> </activiti:string>
</activiti:field> </activiti:field>