Changeset 446
- Timestamp:
- Mar 16, 2010, 10:49:01 PM (15 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Task.groovy
r418 r446 35 35 static constraints = { 36 36 description(blank:false,maxSize:75) 37 comment( )37 comment(maxSize:1000) 38 38 targetStartDate() 39 targetCompletionDate() 39 targetCompletionDate(validator: {val, obj -> 40 if(val.before(obj.targetStartDate)) 41 return 'before.targetStartDate' 42 }) 40 43 leadPerson() 41 44 taskPriority() -
trunk/grails-app/i18n/messages.properties
r445 r446 92 92 task.assignedPersons.failedToSave=Could not complete operation, as assignedPerson record failed to save. 93 93 tast.taskRecurringSchedule.alreadyExists=This task already has a recurring schedule. 94 task.targetCompletionDate.before.targetStartDate=The target completion date must be equal to or greater than \ 95 the target start date. 94 96 95 97 taskRecurringSchedule.notFound=Could not complete operation, recurring schedule not found.
Note: See TracChangeset
for help on using the changeset viewer.