Changeset 68
- Timestamp:
- Mar 7, 2009, 4:35:58 AM (16 years ago)
- Location:
- trunk/doc/Definitions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Definitions/EntryTerms.txt
r63 r68 6 6 - Default = required so nothing. 7 7 - Larger text area. 8 - What was done for this entry. 8 9 9 enteredBy 10 - Default = current person. 10 dateDone 11 - Default = now. 12 - Precision = day. 13 - Can be changed. 14 - Date that person is reporting as the date entry was done. 15 16 dateEntered 17 - Default = now. 18 - Precision = second. 11 19 - Cannot be changed. 12 - Of Class Person.20 - Date the entry was actually entered. 13 21 14 22 durationHour … … 20 28 - Integer representing minutes spent on this entry. 21 29 22 dateDone 23 - Default = now. 24 - Precision = day. 25 - Can be changed. 26 27 dateEntered 28 - Default = now. 29 - Precision = second. 30 enteredBy 31 - Default = current person. 30 32 - Cannot be changed. 33 - Of Class Person. 31 34 32 35 task … … 35 38 36 39 entryType 37 - Default = one of "Work Done", "Fault", "Production ", "Work Request".40 - Default = one of "Work Done", "Fault", "Production Report", "Work Request". 38 41 - Default depends on where the entry comes from. 39 42 - Of Class EntryType. -
trunk/doc/Definitions/TaskActions.txt
r63 r68 4 4 Create -> recordModification("Created") <- is the date created. 5 5 6 Schedule -> recordModification(" TargetStartDate")-> set: Task.targetStartDate6 Schedule -> recordModification("SetTargetStartDate") -> set: Task.targetStartDate 7 7 8 recordModification(" TargetCompletionDate")-> set: Task.targetCompletionDate8 recordModification("SetTargetCompletionDate") -> set: Task.targetCompletionDate 9 9 10 10 Start -> recordModification("ActualStartDate") <- is the date started … … 26 26 recordModification(String type) { 27 27 Modification.modificationType = ModificationType.findByName(type) 28 Modification.date Time= now28 Modification.date = now 29 29 Modification.person = userName 30 30 Modification.comment = "" … … 32 32 recordModification(String type, String comment) { 33 33 Modification.modificationType = ModificationType.findByName(type) 34 Modification.date Time= now34 Modification.date = now 35 35 Modification.person = userName 36 36 Modification.comment = comment -
trunk/doc/Definitions/TaskTerms.txt
r63 r68 9 9 - Default = "". 10 10 - Longer for additional info only shown in detail views. 11 12 leadPerson13 - Default = current person.14 - The primay contact.15 11 16 12 targetStartDate … … 42 38 - Ignore when viewing old associations or creating lists for searching etc. 43 39 40 taskGroup 41 - The taskGroup this task belongs to. 42 - Of Class TaskGroup. 43 44 taskStatus 45 - Default = "Not Started" 46 - The current status of this task. 47 - Of Class TaskStatus. 48 - One of "Not Started", "In Progress" or "Completed" 49 - Automagically set to "In Progress" on first "Work Done" entry. 50 - Automagically set to "Completed" by action button. 51 52 leadPerson 53 - Default = current person. 54 - The primay contact. 55 - Of Class Person. 56 44 57 assignedPersons 45 - A task may have many assingedPersons of Class AssignedPerson.58 - A task may have many assingedPersons of Class Person. 46 59 47 60 entries … … 56 69 - Master/Slave/Parent/Child/FollowUp relationship still to sort out. 57 70 58 #Should these be calulated or set by manual action? 59 TaskStatus 60 Not Started 61 In Progress 62 Completed 71 72 #Calculated dates 73 actualStartDate 74 actualCompletionDate 75 76 #Should these be calculated or set by manual action? 77 TaskPriority 78 Low 79 Normal 80 High 81 Immediate 63 82 64 83 TaskType
Note: See TracChangeset
for help on using the changeset viewer.