添加了对批准工作项目进行分页的选项,以避免页面超时。(ID-18544) 现在,approval.jsp 页接受以下属性:
Paging。如果存在,则启用分页。
MaxRows。每页显示的行数
orderBy。排序参数
通过添加以下字段修改 WorkItemList 表单:
<Field name='PagingButtons'>
<Display class='ButtonRow'>
<Property name='align' value='right'/>
</Display>
<Disable>
<not>
<ref>viewOptions.Paging</ref>
</not>
</Disable>
<Field name='action'>
<Display class='Button'>
<Property name='command' value='Recalculate'/>
<Property name='label' value='<<'/>
<Property name='value' value='first'/>
</Display>
</Field>
<Field name='action'>
<Display class='Button'>
<Property name='command' value='Recalculate'/>
<Property name='label' value='<'/>
<Property name='value' value='previous'/>
</Display>
</Field>
<Field name='action'>
<Display class='Button'>
<Property name='command' value='Recalculate'/>
<Property name='label' value='>'/>
<Property name='value' value='next'/>
</Display>
</Field>
<Field name='action'>
<Display class='Button'>
<Property name='command' value='Recalculate'/>
<Property name='label' value='>>'/>
<Property name='value' value='last'/>
</Display>
</Field>
</Field>
改进了多重批准工作流进程,以支持自动将 approvers 列表转换为用于生成批准工作项目的 approverObjects 列表。(ID-19238)