Changeset 869 for trunk/grails-app/controllers
- Timestamp:
- Mar 16, 2011, 7:40:06 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/TaskDetailedController.groovy
r840 r869 757 757 else { 758 758 params.max = Math.min( params.max ? params.max.toInteger() : 200, 200) 759 def filterParams = [:] 759 760 def subTaskInstanceList = Task.findAllByParentTaskAndTrash(parentTaskInstance, false, params) 760 761 def subTaskInstanceTotal = Task.countByParentTaskAndTrash(parentTaskInstance, false) … … 762 763 [ taskInstanceList: subTaskInstanceList, 763 764 taskInstanceTotal: subTaskInstanceTotal, 764 parentTaskInstance: parentTaskInstance] 765 parentTaskInstance: parentTaskInstance, 766 filterParams: filterParams] 765 767 } 766 768 }
Note: See TracChangeset
for help on using the changeset viewer.