Office Addin web scripts - removed unnecessary server-side task ordering

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6101 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mike Hatfield
2007-06-25 15:23:48 +00:00
parent ed10662b2d
commit 3e2823bf6a
2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@
<div id="taskList" class="containerMedium togglePanel"> <div id="taskList" class="containerMedium togglePanel">
<#assign taskNum=0> <#assign taskNum=0>
<#list workflow.assignedTasks?sort_by('startDate') as t> <#list workflow.assignedTasks as t>
<#assign taskNum=taskNum+1> <#assign taskNum=taskNum+1>
<#assign hasDue=t.properties["bpm:dueDate"]?exists> <#assign hasDue=t.properties["bpm:dueDate"]?exists>
<#if hasDue> <#if hasDue>

View File

@@ -46,7 +46,7 @@
<div id="taskList" class="containerMedium"> <div id="taskList" class="containerMedium">
<#assign taskNum=0> <#assign taskNum=0>
<#list workflow.assignedTasks?sort_by('startDate') as t> <#list workflow.assignedTasks as t>
<#assign taskNum=taskNum+1> <#assign taskNum=taskNum+1>
<#assign hasDue=t.properties["bpm:dueDate"]?exists> <#assign hasDue=t.properties["bpm:dueDate"]?exists>
<#if hasDue> <#if hasDue>