source: branches/TaskRewrite/src/grails-app/domain/Task.groovy @ 69

Last change on this file since 69 was 69, checked in by gav, 15 years ago

Add TaskPriority? and TaskType? domains, generate views and controllers.
Tweak security extensively.
Use 'extend BaseController?' to pass ROLE_USER to most controllers.
Add parentTask and subTask to Task Domain.

File size: 928 bytes
Line 
1class Task {
2    TaskGroup taskGroup
3    TaskStatus taskStatus
4    TaskPriority taskPriority
5    TaskType taskType
6    Task    parentTask
7    Person leadPerson
8    String description
9    String comment = ""
10    Date targetStartDate = new Date()
11    Date targetCompletionDate = new Date()
12    boolean isScheduled = false
13    boolean isApproved = false
14    boolean isActive = true
15
16    static hasMany = [entries: Entry, 
17                        modifications: Modification, 
18                        assignedPersons: Person, 
19                        subTasks: Task]
20
21    static belongsTo = [TaskGroup, TaskStatus, Task, Person]
22
23    static constraints = {
24        targetStartDate()
25        description(blank:false,maxSize:50)
26        leadPerson()
27        taskPriority()
28        taskStatus()
29        parentTask(blank: true, nullable:true)
30        comment(maxSize:255)
31       
32    }
33
34    String toString() {"${this.description}"}
35}
Note: See TracBrowser for help on using the repository browser.