- Timestamp:
- Jan 23, 2010, 10:42:41 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/TaskDetailedController.groovy
r262 r291 5 5 class TaskDetailedController extends BaseController { 6 6 7 def personService7 def authService 8 8 def taskService 9 9 def taskSearchService … … 45 45 def taskInstanceTotal 46 46 def filterParams = [:] 47 def personInstance = personService.currentUser47 def personInstance = authService.currentUser 48 48 49 49 // Quick Search: … … 125 125 if(!FilterUtils.isFilterApplied(params)) { 126 126 def taskInstanceList = [] 127 def personInstance = personService.currentUser127 def personInstance = authService.currentUser 128 128 129 129 if(params.quickSearch == "searchMyTodays") { … … 170 170 if(!FilterUtils.isFilterApplied(params)) { 171 171 def taskInstanceList = [] 172 def personInstance = personService.currentUser172 def personInstance = authService.currentUser 173 173 174 174 if(params.quickSearch == "budgetUnplanned") { … … 501 501 502 502 // Default leadPerson to current user, unless supplied in params. 503 taskInstance.leadPerson = personService.currentUser503 taskInstance.leadPerson = authService.currentUser 504 504 taskInstance.properties = params 505 505 return ['taskInstance': taskInstance]
Note: See TracChangeset
for help on using the changeset viewer.